mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
* 从fdt的chosen段获取几个需要的字段 * merge patch-early-ioremap * feature: 增加early io remap的fixmap功能 允许在内存管理初始化之前,使用fixmap功能,映射一些物理内存,并记录. * riscv64: 映射uefi systemtable,并完善了riscv64页表填写的部分内容 * 更新仓库网址
82 lines
2.6 KiB
TOML
82 lines
2.6 KiB
TOML
[package]
|
||
name = "dragonos_kernel"
|
||
version = "0.1.0"
|
||
edition = "2021"
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
||
|
||
[lib]
|
||
crate-type = ["staticlib"]
|
||
|
||
[workspace]
|
||
members = [
|
||
"crates/*",
|
||
"src/libs/intertrait"
|
||
]
|
||
|
||
[features]
|
||
default = ["backtrace"]
|
||
# 内核栈回溯
|
||
backtrace = []
|
||
|
||
|
||
# 运行时依赖项
|
||
[dependencies]
|
||
acpi = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/acpi-rs.git", rev = "fb69243dcf" }
|
||
atomic_enum = "0.2.0"
|
||
bit_field = "0.10"
|
||
bitfield-struct = "0.5.3"
|
||
bitflags = "1.3.2"
|
||
bitmap = { path = "crates/bitmap" }
|
||
# 一个no_std的hashmap、hashset
|
||
elf = { version = "0.7.2", default-features = false }
|
||
hashbrown = "0.13.2"
|
||
ida = { path = "src/libs/ida" }
|
||
intertrait = { path = "src/libs/intertrait" }
|
||
kdepends = { path = "crates/kdepends" }
|
||
klog_types = { path = "crates/klog_types" }
|
||
linkme = "0.2"
|
||
num = { version = "0.4.0", default-features = false }
|
||
num-derive = "0.3"
|
||
num-traits = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false }
|
||
raw-cpuid = "11.0.1"
|
||
smoltcp = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/smoltcp.git", rev = "9027825", default-features = false, features = ["log", "alloc", "socket-raw", "socket-udp", "socket-tcp", "socket-icmp", "socket-dhcpv4", "socket-dns", "proto-ipv4", "proto-ipv6"]}
|
||
system_error = { path = "crates/system_error" }
|
||
unified-init = { path = "crates/unified-init" }
|
||
virtio-drivers = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/virtio-drivers.git", rev = "f1d1cbb" }
|
||
fdt = "0.1.5"
|
||
uefi = { version = "0.26.0", features = ["alloc"] }
|
||
uefi-raw = "0.5.0"
|
||
|
||
|
||
# target为x86_64时,使用下面的依赖
|
||
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
||
mini-backtrace = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/mini-backtrace.git", rev = "e0b1d90940" }
|
||
x86 = "0.52.0"
|
||
x86_64 = "0.14.10"
|
||
|
||
|
||
# target为riscv64时,使用下面的依赖
|
||
[target.'cfg(target_arch = "riscv64")'.dependencies]
|
||
riscv = { version = "0.11.0", features = [ "s-mode" ] }
|
||
|
||
|
||
# 构建时依赖项
|
||
[build-dependencies]
|
||
kernel_build = { path = "../build-scripts/kernel_build" }
|
||
|
||
[dependencies.lazy_static]
|
||
version = "1.4.0"
|
||
# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std
|
||
features = ["spin_no_std"]
|
||
|
||
# The development profile, used for `cargo build`
|
||
[profile.dev]
|
||
# opt-level = 0 # Controls the --opt-level the compiler builds with
|
||
debug = true # Controls whether the compiler passes `-g`
|
||
|
||
# The release profile, used for `cargo build --release`
|
||
[profile.release]
|
||
debug = false
|