26 lines
620 B
TOML
26 lines
620 B
TOML
[package]
|
|
name = "redox_netstack"
|
|
version = "0.1.0"
|
|
|
|
[[bin]]
|
|
name = "smolnetd"
|
|
path = "src/smolnetd/main.rs"
|
|
|
|
[dependencies]
|
|
netutils = { git = "https://github.com/redox-os/netutils.git" }
|
|
redox_event = { git = "https://github.com/redox-os/event.git" }
|
|
redox_syscall = { git = "https://github.com/redox-os/syscall.git" }
|
|
|
|
[dependencies.log]
|
|
version = "0.3"
|
|
default-features = false
|
|
features = ["release_max_level_off"]
|
|
|
|
[dependencies.smoltcp]
|
|
git = "https://github.com/m-labs/smoltcp.git"
|
|
default-features = false
|
|
features = ["std", "socket-raw", "socket-udp", "socket-tcp", "socket-icmp"]
|
|
|
|
[profile.release]
|
|
lto = true
|