summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-01-02 04:11:49 +0000
committerGitHub <noreply@github.com>2023-01-02 04:11:49 +0000
commit85e2746813fae17c5deb7188cd2385d18779b768 (patch)
tree1ff8e0ae8327ce217e8cca3f02ad60925e626b79
parent388ff139c9551e1b8b077fcdcf72a09fff4e525b (diff)
Bump nom from 7.1.1 to 7.1.2
Bumps [nom](https://github.com/Geal/nom) from 7.1.1 to 7.1.2. - [Release notes](https://github.com/Geal/nom/releases) - [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md) - [Commits](https://github.com/Geal/nom/compare/7.1.1...7.1.2) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-format/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0b8e5f6..9383a52 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -408,9 +408,9 @@ dependencies = [
[[package]]
name = "nom"
-version = "7.1.1"
+version = "7.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
+checksum = "e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c"
dependencies = [
"memchr",
"minimal-lexical",
diff --git a/Cargo.toml b/Cargo.toml
index 3b9f269..7e8777a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -32,7 +32,7 @@ clap = { version = "4.0.32", optional = true, features = ["derive"] }
dashmap = "5.4.0"
futures = "0.3.25"
mqtt-format = { version = "0.2.0", path = "mqtt-format", features = ["yoke"] }
-nom = { version = "7.1.1" }
+nom = { version = "7.1.2" }
thiserror = "1.0.38"
tokio = { version = "1.23.0", default-features = false, features = [
"net",
diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml
index 0a67777..1ccc580 100644
--- a/mqtt-format/Cargo.toml
+++ b/mqtt-format/Cargo.toml
@@ -16,7 +16,7 @@ yoke = ["dep:yoke"]
[dependencies]
futures = "0.3.25"
-nom = "7.1.1"
+nom = "7.1.2"
nom-supreme = "0.8.0"
thiserror = "1.0.38"
yoke = { version = "0.6.1", features = ["derive"], optional = true }