20 lines
506 B
TOML
20 lines
506 B
TOML
[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]
|
|
keyable-arc = { path = "../keyable-arc" }
|
|
ostd = { path = "../../../ostd" }
|
|
smoltcp = { git = "https://github.com/asterinas/smoltcp", tag = "r_2024-11-08_f07e5b5", default-features = false, features = [
|
|
"alloc",
|
|
"log",
|
|
"medium-ethernet",
|
|
"medium-ip",
|
|
"proto-ipv4",
|
|
"socket-udp",
|
|
"socket-tcp",
|
|
] }
|