dep cleanup

This commit is contained in:
Graham McIntire 2026-02-02 13:32:06 -06:00
parent b4d9fb9677
commit 3dec5fbe36
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

1
Cargo.lock generated
View file

@ -1028,6 +1028,7 @@ dependencies = [
"serde",
"serde_json",
"snmp",
"thiserror",
"tokio",
"tokio-rustls",
"tokio-tungstenite",

View file

@ -5,7 +5,8 @@ edition = "2021"
[dependencies]
snmp = "0.2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "process", "signal", "io-util"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "signal", "io-util"] }
thiserror = "2"
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
tokio-rustls = "0.26"
futures = "0.3"