summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 }