summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-03-27 11:47:05 +0000
committerGitHub <noreply@github.com>2023-03-27 11:47:05 +0000
commitedeab02b1202c5206b07719f28775529328eb0a2 (patch)
tree826432b937f8f9b31f998389f6c41f55dda338da
parent1181ac276e204f237619a20c25b6c5aed5c947c5 (diff)
Bump clap from 4.1.11 to 4.1.13
Bumps [clap](https://github.com/clap-rs/clap) from 4.1.11 to 4.1.13. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.1.11...v4.1.13) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock21
-rw-r--r--Cargo.toml2
2 files changed, 8 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2ad0854..adecdf3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -30,12 +30,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
-name = "bitflags"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1"
-
-[[package]]
name = "bumpalo"
version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -55,11 +49,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.1.11"
+version = "4.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098"
+checksum = "3c911b090850d79fc64fe9ea01e28e465f65e821e08813ced95bced72f7a8a9b"
dependencies = [
- "bitflags 2.0.2",
+ "bitflags",
"clap_derive",
"clap_lex",
"is-terminal",
@@ -70,15 +64,14 @@ dependencies = [
[[package]]
name = "clap_derive"
-version = "4.1.9"
+version = "4.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644"
+checksum = "9a932373bab67b984c790ddf2c9ca295d8e3af3b7ef92de5a5bacdccdee4b09b"
dependencies = [
"heck",
- "proc-macro-error",
"proc-macro2",
"quote",
- "syn 1.0.109",
+ "syn 2.0.10",
]
[[package]]
@@ -298,7 +291,7 @@ version = "0.36.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23"
dependencies = [
- "bitflags 1.3.2",
+ "bitflags",
"errno",
"io-lifetimes",
"libc",
diff --git a/Cargo.toml b/Cargo.toml
index 7bef74c..fcac4bd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,7 @@ render = ["indexmap"]
bin = ["clap", "serde_json"]
[dependencies]
-clap = { version = "4.1.11", features = ["derive"], optional = true }
+clap = { version = "4.1.13", features = ["derive"], optional = true }
indexmap = { version = "1.9.2", optional = true }
serde = { version = "1.0.158", features = ["derive"] }
serde_json = { version = "1.0.94", optional = true }