From 92d322b0641ce7635decfc385914f23090bcbd9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 12:14:54 +0000 Subject: [PATCH] Bump the cargo group with 4 updates Bumps the cargo group with 4 updates: [clap](https://github.com/clap-rs/clap), [chrono](https://github.com/chronotope/chrono), [serde_json](https://github.com/serde-rs/json) and [cargo_metadata](https://github.com/oli-obk/cargo_metadata). Updates `clap` from 4.4.2 to 4.4.3 - [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.4.2...v4.4.3) Updates `chrono` from 0.4.30 to 0.4.31 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.30...v0.4.31) Updates `serde_json` from 1.0.106 to 1.0.107 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.106...v1.0.107) Updates `cargo_metadata` from 0.17.0 to 0.18.0 - [Release notes](https://github.com/oli-obk/cargo_metadata/releases) - [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md) - [Commits](https://github.com/oli-obk/cargo_metadata/compare/0.17.0...0.18.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: cargo_metadata dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- crates/fj/Cargo.toml | 2 +- tools/automator/Cargo.toml | 6 +++--- tools/release-operator/Cargo.toml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afe845024..1c56a9d2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,9 +414,9 @@ dependencies = [ [[package]] name = "cargo_metadata" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7daec1a2a2129eeba1644b220b4647ec537b0b5d4bfd6876fcc5a540056b592" +checksum = "fb9ac64500cc83ce4b9f8dafa78186aa008c8dea77a09b94cd307fd0cd5022a8" dependencies = [ "camino", "cargo-platform", @@ -450,9 +450,9 @@ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] name = "chrono" -version = "0.4.30" +version = "0.4.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" dependencies = [ "android-tzdata", "iana-time-zone", @@ -465,9 +465,9 @@ dependencies = [ [[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", @@ -2638,9 +2638,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", diff --git a/crates/fj/Cargo.toml b/crates/fj/Cargo.toml index e8893d29a..b2df260b2 100644 --- a/crates/fj/Cargo.toml +++ b/crates/fj/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.48" tracing = "0.1.37" [dependencies.clap] -version = "4.4.2" +version = "4.4.3" features = ["derive"] [dependencies.tracing-subscriber] diff --git a/tools/automator/Cargo.toml b/tools/automator/Cargo.toml index 2bb121faf..0205a78b1 100644 --- a/tools/automator/Cargo.toml +++ b/tools/automator/Cargo.toml @@ -6,19 +6,19 @@ publish = false [dependencies] anyhow = "1.0.75" -chrono = "0.4.30" +chrono = "0.4.31" map-macro = "0.2.6" octocrab = "0.30.1" semver = "1.0.18" serde = "1.0.188" -serde_json = "1.0.106" +serde_json = "1.0.107" url = "2.4.1" [dependencies.autolib] path = "../autolib" [dependencies.clap] -version = "4.4.2" +version = "4.4.3" features = ["derive"] [dependencies.tokio] diff --git a/tools/release-operator/Cargo.toml b/tools/release-operator/Cargo.toml index b94c7e9cc..ad8bc1ba0 100644 --- a/tools/release-operator/Cargo.toml +++ b/tools/release-operator/Cargo.toml @@ -7,13 +7,13 @@ publish = false [dependencies] anyhow = "1.0.75" -cargo_metadata = "0.17.0" +cargo_metadata = "0.18.0" cmd_lib = "1.3.0" env_logger = "0.10.0" log = "0.4.20" secstr = "0.5.0" semver = "1.0.18" -serde_json = "1.0.106" +serde_json = "1.0.107" thiserror = "1.0.48" [dependencies.autolib] @@ -24,7 +24,7 @@ version = "0.11.20" features = ["blocking"] [dependencies.clap] -version = "4.4.2" +version = "4.4.3" features = ["std", "derive", "env"] default_features = false