monitoring kit
Diffstat (limited to 'network/Cargo.toml')
-rw-r--r--network/Cargo.toml29
1 files changed, 29 insertions, 0 deletions
diff --git a/network/Cargo.toml b/network/Cargo.toml
new file mode 100644
index 0000000..7203477
--- /dev/null
+++ b/network/Cargo.toml
@@ -0,0 +1,29 @@
+[package]
+name = "network"
+version = "1.0.0"
+edition = "2021"
+authors = ["bend-n <[email protected]>"]
+repository = "https://github.com/bend-n/monitorkit"
+license = "MIT"
+rust-version = "1.85"
+
+[dependencies]
+anyhow = "1.0.97"
+termion = "4.0.4"
+grapher = { path = "../grapher" }
+ping-rs = "0.1.2"
+oneshot = { version = "0.1.11", default-features = false, features = ["std"] }
+libc = "0.2.171"
+atools = "0.1.6"
+implicit-fn = "0.1.0"
+
+
+[[bin]]
+name = "ping"
+doc = false
+path = "src/ping.rs"
+
+[[bin]]
+name = "net"
+doc = false
+path = "src/net.rs"