xref: /DragonOS/kernel/Cargo.toml (revision 863a3cff06e618a5f0fc03920dfd5732452344c9)
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 }
28atomic_enum = "0.2.0"
29
30# 构建时依赖项
31[build-dependencies]
32bindgen = "0.61.0"
33
34
35[dependencies.lazy_static]
36version = "1.4.0"
37# 由于在no_std环境,而lazy_static依赖了spin库,因此需要指定其使用no_std
38features = ["spin_no_std"]
39
40
41# The release profile, used for `cargo build --release`
42[profile.release]
43debug = false
44
45
46