mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
21 lines
918 B
TOML
21 lines
918 B
TOML
[package]
|
|
name = "aster-network"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
align_ext = { path = "../../../ostd/libs/align_ext" }
|
|
aster-util = { path = "../../libs/aster-util" }
|
|
aster-rights = { path = "../../libs/aster-rights" }
|
|
bitflags = "1.3"
|
|
bitvec = { version = "1.0.1", default-features = false, features = ["alloc"]}
|
|
component = { path = "../../libs/comp-sys/component" }
|
|
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
|
|
log = "0.4"
|
|
ostd = { path = "../../../ostd" }
|
|
ringbuf = { version = "0.3.2", default-features = false, features = ["alloc"] }
|
|
smoltcp = { version = "0.9.1", default-features = false, features = ["alloc", "log", "medium-ethernet", "medium-ip", "proto-dhcpv4", "proto-ipv4", "proto-igmp", "socket-icmp", "socket-udp", "socket-tcp", "socket-raw", "socket-dhcpv4"] }
|
|
spin = "0.9.4"
|