From 6ecc53552d2d7660e61fd22d3226777254d6372f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 23:37:27 +0000 Subject: [PATCH] chore(deps): Bump nom from 7.1.3 to 8.0.0 Bumps [nom](https://github.com/rust-bakery/nom) from 7.1.3 to 8.0.0. - [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-bakery/nom/compare/7.1.3...8.0.0) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 ++++++++++++++++++--------- Cargo.toml | 2 +- lib/prometheus-parser/Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aaca3b6c342ce..ff7fd87c044a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,7 +146,7 @@ dependencies = [ "amq-protocol-types", "amq-protocol-uri", "cookie-factory", - "nom", + "nom 7.1.3", "serde", ] @@ -168,7 +168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7412353b58923fa012feb9a64ccc0c811747babee2e5a2fd63eb102dc8054c3" dependencies = [ "cookie-factory", - "nom", + "nom 7.1.3", "serde", "serde_json", ] @@ -4240,7 +4240,7 @@ dependencies = [ "byteorder", "crossbeam-channel", "flate2", - "nom", + "nom 7.1.3", "num-traits", ] @@ -5054,7 +5054,7 @@ checksum = "22fa7ee6be451ea0b1912b962c91c8380835e97cf1584a77e18264e908448dcb" dependencies = [ "bytes 1.9.0", "log", - "nom", + "nom 7.1.3", "smallvec", "snafu 0.7.5", ] @@ -6348,6 +6348,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nonzero_ext" version = "0.3.0" @@ -7521,7 +7530,7 @@ name = "prometheus-parser" version = "0.1.0" dependencies = [ "indexmap 2.7.1", - "nom", + "nom 8.0.0", "prost 0.12.6", "prost-build 0.12.6", "prost-types 0.12.6", @@ -7777,7 +7786,7 @@ dependencies = [ "log", "lz4", "native-tls", - "nom", + "nom 7.1.3", "oauth2", "openidconnect", "pem", @@ -9704,7 +9713,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "161028c00842709450114c39db3b29f44c898055ed8833bb9b535aba7facf30e" dependencies = [ "chrono", - "nom", + "nom 7.1.3", ] [[package]] @@ -11092,7 +11101,7 @@ dependencies = [ "netlink-sys", "nix 0.26.2", "nkeys 0.4.4", - "nom", + "nom 8.0.0", "notify", "num-format", "number_prefix", @@ -11589,7 +11598,7 @@ dependencies = [ "lalrpop-util 0.22.0", "md-5", "mlua", - "nom", + "nom 7.1.3", "ofb", "once_cell", "onig", diff --git a/Cargo.toml b/Cargo.toml index e7caf7ef15a64..1d59868250986 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -345,7 +345,7 @@ md-5 = { version = "0.10", default-features = false, optional = true } mongodb = { version = "2.8.2", default-features = false, features = ["tokio-runtime"], optional = true } async-nats = { version = "0.33.0", default-features = false, optional = true } nkeys = { version = "0.4.4", default-features = false, optional = true } -nom = { version = "7.1.3", default-features = false, optional = true } +nom = { version = "8.0.0", default-features = false, optional = true } notify = { version = "8.0.0", default-features = false, features = ["macos_fsevent"] } openssl = { version = "0.10.70", default-features = false, features = ["vendored"] } openssl-probe = { version = "0.1.6", default-features = false } diff --git a/lib/prometheus-parser/Cargo.toml b/lib/prometheus-parser/Cargo.toml index 4e1c261b094f2..4d6213a5a4322 100644 --- a/lib/prometheus-parser/Cargo.toml +++ b/lib/prometheus-parser/Cargo.toml @@ -10,7 +10,7 @@ license = "MPL-2.0" [dependencies] indexmap.workspace = true -nom = "7.1.3" +nom = "8.0.0" prost.workspace = true prost-types.workspace = true snafu.workspace = true