summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-27 17:09:14 +0000
committerGitHub <noreply@github.com>2023-03-27 17:09:14 +0000
commita48fd020fda6bcea875c36fea1b94a4ff4893619 (patch)
tree9a07f462a79817aec4b05b32178cd2dbc408fc35
parent30ba9c8f739f1d9678638bd592247601a03096bd (diff)
parentedeab02b1202c5206b07719f28775529328eb0a2 (diff)
Merge #145
145: Bump clap from 4.1.11 to 4.1.13 r=TheNeikos a=dependabot[bot] Bumps [clap](https://github.com/clap-rs/clap) from 4.1.11 to 4.1.13. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.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 }