25 lines
590 B
TOML
25 lines
590 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/smoltcp-rs/smoltcp", rev = "dc08e0b", 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",
|
|
] }
|