Update dependencies, including clap v4

Also fix Clippy lints for rustc 1.65 along the way.
This commit is contained in:
Eric Zhang
2022-11-11 01:08:50 -05:00
parent f1ed0b2ecb
commit d3d5d434ad
6 changed files with 184 additions and 218 deletions

View File

@@ -17,7 +17,7 @@ path = "src/main.rs"
[dependencies]
anyhow = { version = "1.0.56", features = ["backtrace"] }
clap = { version = "3.1.8", features = ["derive", "env"] }
clap = { version = "4.0.22", features = ["derive", "env"] }
dashmap = "5.2.0"
futures-util = { version = "0.3.21", features = ["sink"] }
hex = "0.4.3"
@@ -29,7 +29,7 @@ tokio = { version = "1.17.0", features = ["rt-multi-thread", "io-util", "macros"
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = "0.1.32"
tracing-subscriber = "0.3.10"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
uuid = { version = "1.2.1", features = ["serde", "v4"] }
[dev-dependencies]
lazy_static = "1.4.0"