network-monitor/Cargo.toml

19 lines
483 B
TOML
Raw Normal View History

[package]
edition = "2021"
name = "network-monitor"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-14 11:55:43 +08:00
anyhow = "1.0.71"
clap = {version = "4.2.7", features = ["derive"]}
2023-05-14 11:55:43 +08:00
env_logger = "0.10.0"
futures-util = "0.3.28"
2023-05-14 11:55:43 +08:00
log = "0.4.17"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
tokio = {version = "1.11.0", features = ["full"]}
tokio-tungstenite = "0.18.0"
url = "2.3.1"