From 3a7b5b2be1e2deef0ca812788186032c96eaaec1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:04:05 +0000 Subject: [PATCH] Bump the production-dependencies group with 3 updates (#50) Bumps the production-dependencies group with 3 updates: [clap](https://github.com/clap-rs/clap), [miette](https://github.com/zkat/miette) and [serde_yaml](https://github.com/dtolnay/serde-yaml). Updates `clap` from 4.5.0 to 4.5.1 - [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/clap_complete-v4.5.0...clap_complete-v4.5.1) Updates `miette` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/compare/miette-derive-v7.0.0...miette-derive-v7.1.0) Updates `serde_yaml` from 0.9.31 to 0.9.32 - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.9.31...0.9.32) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: serde_yaml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 20 ++++++++++---------- protox-parse/Cargo.toml | 2 +- protox/Cargo.toml | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4b56174..e1273f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -177,9 +177,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.0" +version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" +checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" dependencies = [ "clap_builder", "clap_derive", @@ -187,9 +187,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.0" +version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" +checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" dependencies = [ "anstream", "anstyle", @@ -471,9 +471,9 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "miette" -version = "7.0.0" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98a72adfa0c7ae88ba0abcbd00047a476616c66b831d628b8ac7f1e9de0cfd67" +checksum = "baed61d13cc3723ee6dbed730a82bfacedc60a85d81da2d77e9c3e8ebc0b504a" dependencies = [ "backtrace", "backtrace-ext", @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "miette-derive" -version = "7.0.0" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279def6bf114a34b3cf887489eb440d4dfcf709ab3ce9955e4a6f957ce5cce77" +checksum = "f301c3f54f98abc6c212ee722f5e5c62e472a334415840669e356f04850051ec" dependencies = [ "proc-macro2", "quote", @@ -895,9 +895,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.31" +version = "0.9.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" +checksum = "8fd075d994154d4a774f95b51fb96bdc2832b0ea48425c92546073816cda1f2f" dependencies = [ "indexmap", "itoa", diff --git a/protox-parse/Cargo.toml b/protox-parse/Cargo.toml index cd3ced8..351484b 100644 --- a/protox-parse/Cargo.toml +++ b/protox-parse/Cargo.toml @@ -20,7 +20,7 @@ include = [ [dependencies] logos = "0.14.0" -miette = "7.0.0" +miette = "7.1.0" prost-types = "0.12.1" thiserror = "1.0.57" diff --git a/protox/Cargo.toml b/protox/Cargo.toml index 5eeb782..44bf257 100644 --- a/protox/Cargo.toml +++ b/protox/Cargo.toml @@ -41,8 +41,8 @@ bin = ["dep:clap", "miette/fancy"] [dependencies] bytes = "1.5.0" -clap = { version = "4.5.0", features = ["derive"], optional = true } -miette = "7.0.0" +clap = { version = "4.5.1", features = ["derive"], optional = true } +miette = "7.1.0" prost = "0.12.1" prost-reflect = { version = "0.13.0", features = ["miette", "text-format"] } prost-types = "0.12.1" @@ -55,7 +55,7 @@ prost-build = { version = "0.12.1" } prost-reflect = { version = "0.13.0", features = ["serde"] } once_cell = { version = "1.12.0", default_features = false } scopeguard = "1.1.0" -serde_yaml = "0.9.27" +serde_yaml = "0.9.32" similar-asserts = { version = "1.2.0", features = ["serde"] } tempfile = "3.8.1" serde_json = "1.0.108"