46 lines
956 B
TOML
46 lines
956 B
TOML
[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]
|
|
yggdrasil-abi = { path = "../../lib/abi", features = ["serde", "alloc", "bytemuck"] }
|
|
|
|
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"
|
|
clap-num = "1.1.1"
|
|
|
|
[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"
|
|
|
|
[[bin]]
|
|
name = "ping"
|
|
path = "src/ping.rs"
|