1[package] 2name = "dragonos_kernel" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[lib] 9crate-type = ["staticlib"] 10 11# 运行时依赖项 12[dependencies] 13x86 = "0.52.0" 14x86_64 = "0.14.10" 15bitflags = "1.3.2" 16virtio-drivers = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/virtio-drivers.git", rev = "f1d1cbb" } 17# 一个无锁MPSC队列 18thingbuf = { version = "0.1.3", default-features = false, features = ["alloc"] } 19# smoltcp 0.9.1 20smoltcp = { git = "https://git.mirrors.dragonos.org/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"]} 21# num-traits 0.2.15 22num-traits = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false } 23num = { version = "0.4.0", default-features = false } 24num-derive = "0.3" 25# 一个no_std的hashmap、hashset 26hashbrown = "0.13.2" 27elf = { version = "0.7.2", default-features = false } 28 29# 构建时依赖项 30[build-dependencies] 31bindgen = "0.61.0" 32 33 34[dependencies.lazy_static] 35version = "1.4.0" 36# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std 37features = ["spin_no_std"] 38 39 40# The release profile, used for `cargo build --release` 41[profile.release] 42debug = false 43 44 45