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 = "0.3.0" 17# 一个无锁MPSC队列 18thingbuf = { version = "0.1.3", default-features = false, features = ["alloc"] } 19# smoltcp 0.9.1 20smoltcp = { git = "https://github.com/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://github.com/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false } 23num = { version = "0.4.0", default-features = false } 24num-derive = "0.3" 25 26# 构建时依赖项 27[build-dependencies] 28bindgen = "0.61.0" 29 30[dependencies.lazy_static] 31version = "1.4.0" 32# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std 33features = ["spin_no_std"] 34 35 36 37