46 lines
956 B
TOML
Raw Normal View History

2024-01-22 14:41:09 +02:00
[package]
name = "netutils"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-12 18:17:47 +02:00
yggdrasil-abi = { path = "../../lib/abi", features = ["serde", "alloc", "bytemuck"] }
2024-01-22 14:41:09 +02:00
clap = { version = "4.3.19", features = ["std", "derive", "help", "usage"], default-features = false }
thiserror = "1.0.50"
bytemuck = { version = "1.14.0", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.111"
rand = { git = "https://git.alnyan.me/yggdrasil/rand.git", branch = "alnyan/yggdrasil" }
url = "2.5.0"
2024-01-30 16:14:57 +02:00
clap-num = "1.1.1"
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"