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