12345678910111213141516171819202122232425262728293031323334353637 |
- [package]
- name = "dragonos_kernel"
- version = "0.1.0"
- edition = "2021"
- [lib]
- crate-type = ["staticlib"]
- [dependencies]
- x86 = "0.52.0"
- x86_64 = "0.14.10"
- bitflags = "1.3.2"
- virtio-drivers = { git = "https://github.com/DragonOS-Community/virtio-drivers.git", rev = "f1d1cbb" }
- thingbuf = { version = "0.1.3", default-features = false, features = ["alloc"] }
- smoltcp = { 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"]}
- num-traits = { git = "https://github.com/DragonOS-Community/num-traits.git", rev="1597c1c", default-features = false }
- num = { version = "0.4.0", default-features = false }
- num-derive = "0.3"
- [build-dependencies]
- bindgen = "0.61.0"
- [dependencies.lazy_static]
- version = "1.4.0"
- features = ["spin_no_std"]
|