summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-12-15 17:11:51 +0100
committerJustus Winter <justus@sequoia-pgp.org>2022-12-23 10:52:57 +0100
commit75bb553e573da523c78ef33a4b92bd57f34c73b2 (patch)
tree6bc4b3bd6dc3d9ff26ee19a82e4b3230510ed41e
parent0d0d757f90b8b49010f998435a7e295cc0719ed2 (diff)
ipc: Bump clap to 3.
-rw-r--r--Cargo.lock20
-rw-r--r--ipc/Cargo.toml2
2 files changed, 3 insertions, 19 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e00df35b..1177f26a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -422,13 +422,9 @@ version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
- "ansi_term",
- "atty",
"bitflags",
- "strsim 0.8.0",
"textwrap 0.11.0",
"unicode-width",
- "vec_map",
]
[[package]]
@@ -443,7 +439,7 @@ dependencies = [
"clap_lex",
"indexmap",
"once_cell",
- "strsim 0.10.0",
+ "strsim",
"termcolor",
"terminal_size",
"textwrap 0.15.0",
@@ -2725,7 +2721,7 @@ dependencies = [
"anyhow",
"buffered-reader",
"capnp-rpc",
- "clap 2.34.0",
+ "clap 3.2.19",
"ctor",
"dirs",
"fs2",
@@ -3093,12 +3089,6 @@ dependencies = [
[[package]]
name = "strsim"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-
-[[package]]
-name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
@@ -3775,12 +3765,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
-name = "vec_map"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-
-[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index d5c9bc1a..00e6e7a0 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -48,7 +48,7 @@ ctor = "0.1"
lalrpop = { version = ">=0.17", default-features = false }
[dev-dependencies]
-clap = "2.33"
+clap = "3"
quickcheck = { version = "1", default-features = false }
tokio = { version = "1", features = [ "macros" ] }