1[package] 2name = "dragonos_kernel" 3version = "0.1.9" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8 9[lib] 10crate-type = ["staticlib"] 11 12[workspace] 13members = [ 14 "crates/*", 15 "src/libs/intertrait" 16] 17 18[features] 19default = ["backtrace", "kvm"] 20# 内核栈回溯 21backtrace = [] 22# kvm 23kvm = [] 24 25 26# 运行时依赖项 27[dependencies] 28acpi = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/acpi-rs.git", rev = "fb69243dcf" } 29asm_macros = { path = "crates/asm_macros" } 30atomic_enum = "=0.2.0" 31bit_field = "=0.10" 32bitfield-struct = "=0.5.3" 33bitflags = "=1.3.2" 34bitmap = { path = "crates/bitmap" } 35driver_base_macros = { "path" = "crates/driver_base_macros" } 36# 一个no_std的hashmap、hashset 37elf = { version = "=0.7.2", default-features = false } 38hashbrown = "=0.13.2" 39ida = { path = "src/libs/ida" } 40intertrait = { path = "src/libs/intertrait" } 41kdepends = { path = "crates/kdepends" } 42klog_types = { path = "crates/klog_types" } 43linkme = "=0.2" 44num = { version = "=0.4.0", default-features = false } 45num-derive = "=0.3" 46num-traits = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false } 47smoltcp = { version = "=0.11.0", default-features = false, features = ["log", "alloc", "socket-raw", "socket-udp", "socket-tcp", "socket-icmp", "socket-dhcpv4", "socket-dns", "proto-ipv4", "proto-ipv6"]} 48system_error = { path = "crates/system_error" } 49unified-init = { path = "crates/unified-init" } 50virtio-drivers = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/virtio-drivers.git", rev = "61ece509c4" } 51fdt = "=0.1.5" 52uefi = { version = "=0.26.0", features = ["alloc"] } 53uefi-raw = "=0.5.0" 54paste = "=1.0.14" 55slabmalloc = { path = "crates/rust-slabmalloc" } 56 57 58# target为x86_64时,使用下面的依赖 59[target.'cfg(target_arch = "x86_64")'.dependencies] 60mini-backtrace = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/mini-backtrace.git", rev = "e0b1d90940" } 61raw-cpuid = "11.0.1" 62x86 = "=0.52.0" 63x86_64 = "=0.14.10" 64 65# target为riscv64时,使用下面的依赖 66[target.'cfg(target_arch = "riscv64")'.dependencies] 67riscv = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/riscv.git", revision = "cc4d3ea82a", features = [ "s-mode" ] } 68sbi-rt = { version = "=0.0.3", features = ["legacy"] } 69 70 71# 构建时依赖项 72[build-dependencies] 73kernel_build = { path = "../build-scripts/kernel_build" } 74 75[dependencies.lazy_static] 76version = "=1.4.0" 77# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std 78features = ["spin_no_std"] 79 80# The development profile, used for `cargo build` 81[profile.dev] 82# opt-level = 0 # Controls the --opt-level the compiler builds with 83debug = true # Controls whether the compiler passes `-g` 84 85# The release profile, used for `cargo build --release` 86[profile.release] 87debug = false 88