2023-05-13 19:01:27 +08:00
|
|
|
[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]
|
2024-03-29 18:24:58 +08:00
|
|
|
anyhow = "1.0.81"
|
|
|
|
clap = {version = "4.5.3", features = ["derive", "env"]}
|
|
|
|
dotenvy = { version = "0.15.7", features = ["clap", "cli"] }
|
|
|
|
env_logger = "0.11.3"
|
|
|
|
futures-util = "0.3.30"
|
|
|
|
http-body-util = "0.1"
|
|
|
|
hyper = {version = "1.2.0", features = ["full"]}
|
|
|
|
hyper-util = {version = "0.1", features = ["full"]}
|
2023-05-14 11:55:43 +08:00
|
|
|
log = "0.4.17"
|
2024-03-29 18:24:58 +08:00
|
|
|
serde = {version = "1.0.197", features = ["derive"]}
|
|
|
|
serde_json = "1.0.114"
|
|
|
|
tokio = {version = "1.36.0", features = ["full"]}
|
|
|
|
tokio-tungstenite = "0.21.0"
|
|
|
|
url = "2.5.0"
|