asterinas/kernel/libs/aster-bigtcp/Cargo.toml

28 lines
666 B
TOML
Raw Normal View History

2024-09-06 10:49:37 +00:00
[package]
name = "aster-bigtcp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aster-softirq = { path = "../../comps/softirq" }
2024-11-13 15:39:55 +00:00
bitflags = "1.3"
2025-03-31 07:07:47 +00:00
int-to-c-enum = { path = "../int-to-c-enum" }
2024-12-27 08:28:11 +00:00
jhash = { path = "../jhash" }
2024-09-06 10:49:37 +00:00
ostd = { path = "../../../ostd" }
2024-10-19 09:38:30 +00:00
smoltcp = { git = "https://github.com/asterinas/smoltcp", tag = "r_2024-11-08_f07e5b5", default-features = false, features = [
2024-09-06 10:49:37 +00:00
"alloc",
"log",
"medium-ethernet",
"medium-ip",
"proto-ipv4",
"socket-udp",
"socket-tcp",
] }
2024-12-02 15:11:43 +00:00
spin = "0.9.4"
takeable = "0.2.2"
2025-01-24 16:56:07 +00:00
[lints]
workspace = true