summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-09-18 07:37:00 +0000
committerGitHub <noreply@github.com>2023-09-18 07:37:00 +0000
commit7f30dd2a5fe35a1d00590eefacb1e7a2714fc415 (patch)
tree5bb4bb4873a6709685b87e4fc7e528e55f513746
parenta428266967ff905c262ebd51633a326627f026b7 (diff)
parent6fb81c1fcd6674a9a8b7a86aea9df388faa8d31b (diff)
Merge #254
254: Bump the dependencies group with 4 updates r=matthiasbeyer a=dependabot[bot] Bumps the dependencies group with 4 updates: [clap](https://github.com/clap-rs/clap), [serde_json](https://github.com/serde-rs/json), [trybuild](https://github.com/dtolnay/trybuild) and [proc-macro2](https://github.com/dtolnay/proc-macro2). Updates `clap` from 4.4.2 to 4.4.3 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml8
-rw-r--r--online_description_generator/Cargo.toml2
-rw-r--r--type_description_derive/Cargo.toml2
4 files changed, 14 insertions, 14 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3ef1353..82f65be 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -112,9 +112,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.4.2"
+version = "4.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6"
+checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6"
dependencies = [
"clap_builder",
"clap_derive",
@@ -522,9 +522,9 @@ dependencies = [
[[package]]
name = "proc-macro2"
-version = "1.0.66"
+version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
+checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
dependencies = [
"unicode-ident",
]
@@ -610,9 +610,9 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.106"
+version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2"
+checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
dependencies = [
"itoa",
"ryu",
@@ -755,9 +755,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "trybuild"
-version = "1.0.84"
+version = "1.0.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5c89fd17b7536f2cf66c97cff6e811e89e728ca0ed13caeed610c779360d8b4"
+checksum = "196a58260a906cedb9bf6d8034b6379d0c11f552416960452f267402ceeddff1"
dependencies = [
"basic-toml",
"glob",
diff --git a/Cargo.toml b/Cargo.toml
index 07e1ba5..18f7b09 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,12 +29,12 @@ url = ["dep:url"]
uuid = ["dep:uuid"]
[dependencies]
-clap = { version = "4.4.2", features = ["derive"], optional = true }
+clap = { version = "4.4.3", features = ["derive"], optional = true }
indexmap = { version = "2.0.0", optional = true }
nu-ansi-term = { version = "0.49.0", optional = true }
pretty = { version = "0.12.1", optional = true }
serde = { version = "1.0.188", features = ["derive"] }
-serde_json = { version = "1.0.106", optional = true }
+serde_json = { version = "1.0.107", optional = true }
term_size = { version = "0.3.2", optional = true }
termimad = { version = "0.25.2", optional = true }
type_description_derive = { version = "0.6.0", path = "type_description_derive" }
@@ -45,8 +45,8 @@ uuid = { version = "1", optional = true }
[dev-dependencies]
serde = { version = "1.0.188", features = ["derive"] }
-serde_json = "1.0.106"
-trybuild = "1.0.84"
+serde_json = "1.0.107"
+trybuild = "1.0.85"
[package.metadata.docs.rs]
all-features = true
diff --git a/online_description_generator/Cargo.toml b/online_description_generator/Cargo.toml
index ee50d7d..ac1faae 100644
--- a/online_description_generator/Cargo.toml
+++ b/online_description_generator/Cargo.toml
@@ -9,7 +9,7 @@ edition = "2021"
base64 = "0.21.4"
console_error_panic_hook = "0.1.7"
markdown = "1.0.0-alpha.13"
-serde_json = "1.0.106"
+serde_json = "1.0.107"
type_description = { version = "0.6.0", path = "..", features = ["render_markdown"] }
wasm-bindgen = "0.2.84"
web-sys = { version = "0.3.61", features = [
diff --git a/type_description_derive/Cargo.toml b/type_description_derive/Cargo.toml
index 75ab573..6b5a897 100644
--- a/type_description_derive/Cargo.toml
+++ b/type_description_derive/Cargo.toml
@@ -13,7 +13,7 @@ keywords = ["proc-macro", "type_description"]
proc-macro = true
[dependencies]
-proc-macro2 = "1.0.66"
+proc-macro2 = "1.0.67"
quote = "1.0.33"
syn = { version = "1.0.109", features = ["extra-traits"] }
proc-macro-error = "1.0.4"