46 lines
646 B
TOML
Raw Normal View History

2024-01-22 14:41:09 +02:00
[package]
name = "netutils"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-11-04 16:29:09 +02:00
log.workspace = true
yggdrasil-abi.workspace = true
bytemuck.workspace = true
serde_json.workspace = true
serde.workspace = true
thiserror.workspace = true
clap.workspace = true
clap-num.workspace = true
rand.workspace = true
url = "2.5.0"
2024-11-04 16:29:09 +02:00
http = "1.1.0"
2024-01-22 14:41:09 +02:00
[lib]
path = "src/lib.rs"
[[bin]]
name = "netconf"
path = "src/netconf.rs"
[[bin]]
name = "dhcp-client"
path = "src/dhcp_client.rs"
[[bin]]
name = "nc"
path = "src/netcat.rs"
[[bin]]
name = "http"
path = "src/http.rs"
[[bin]]
name = "dnsq"
path = "src/dnsq.rs"
2024-01-30 16:14:57 +02:00
[[bin]]
name = "ping"
path = "src/ping.rs"