1[package] 2name = "dragonos_kernel" 3version = "0.1.10" 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] 16 17[features] 18default = ["backtrace", "kvm", "fatfs", "fatfs-secure"] 19# 内核栈回溯 20backtrace = [] 21# kvm 22kvm = [] 23 24fatfs = [] 25fatfs-secure = ["fatfs"] 26 27# kprobe 28kprobe_test = [] 29 30# 运行时依赖项 31[dependencies] 32acpi = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/acpi-rs.git", rev = "282df2af7b" } 33asm_macros = { path = "crates/asm_macros" } 34atomic_enum = "=0.2.0" 35bit_field = "=0.10" 36bitfield-struct = "=0.5.3" 37bitflags = "=1.3.2" 38bitmap = { path = "crates/bitmap" } 39driver_base_macros = { "path" = "crates/driver_base_macros" } 40elf = { version = "=0.7.2", default-features = false } 41fdt = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/fdt", rev = "9862813020" } 42# 一个no_std的hashmap、hashset 43hashbrown = "=0.13.2" 44ida = { path = "crates/ida" } 45intertrait = { path = "crates/intertrait" } 46kcmdline_macros = { path = "crates/kcmdline_macros" } 47kdepends = { path = "crates/kdepends" } 48klog_types = { path = "crates/klog_types" } 49linkme = "=0.3.27" 50num = { version = "=0.4.0", default-features = false } 51num-derive = "=0.3" 52num-traits = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false } 53smoltcp = { 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"]} 54system_error = { path = "crates/system_error" } 55uefi = { version = "=0.26.0", features = ["alloc"] } 56uefi-raw = "=0.5.0" 57unified-init = { path = "crates/unified-init" } 58virtio-drivers = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/virtio-drivers", rev = "f91c807965" } 59wait_queue_macros = { path = "crates/wait_queue_macros" } 60paste = "=1.0.14" 61slabmalloc = { path = "crates/rust-slabmalloc" } 62log = "0.4.21" 63kprobe = { path = "crates/kprobe" } 64xarray = "0.1.0" 65lru = "0.12.3" 66 67rbpf = { path = "crates/rbpf" } 68printf-compat = { version = "0.1.1", default-features = false } 69# target为x86_64时,使用下面的依赖 70[target.'cfg(target_arch = "x86_64")'.dependencies] 71mini-backtrace = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/mini-backtrace.git", rev = "e0b1d90940" } 72multiboot2 = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/multiboot2", rev = "05739aab40" } 73raw-cpuid = "11.0.1" 74x86 = "=0.52.0" 75x86_64 = "=0.14.10" 76 77# target为riscv64时,使用下面的依赖 78[target.'cfg(target_arch = "riscv64")'.dependencies] 79riscv = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/riscv.git", rev = "4241a97", features = [ "s-mode" ] } 80sbi-rt = { version = "=0.0.3", features = ["legacy"] } 81 82 83# 构建时依赖项 84[build-dependencies] 85kernel_build = { path = "../build-scripts/kernel_build" } 86 87[dependencies.lazy_static] 88version = "=1.4.0" 89# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std 90features = ["spin_no_std"] 91 92# The development profile, used for `cargo build` 93[profile.dev] 94# opt-level = 0 # Controls the --opt-level the compiler builds with 95debug = true # Controls whether the compiler passes `-g` 96 97# The release profile, used for `cargo build --release` 98[profile.release] 99debug = false 100