From a38b080c2c57183fe34fabebbbc77c3090a05f37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Jul 2025 07:52:26 +0000 Subject: [PATCH] Bump rusticata-macros from 4.1.0 to 5.0.0 Bumps [rusticata-macros](https://github.com/rusticata/rusticata-macros) from 4.1.0 to 5.0.0. - [Commits](https://github.com/rusticata/rusticata-macros/compare/rusticata-macros-4.1.0...rusticata-macros-5.0.0) --- updated-dependencies: - dependency-name: rusticata-macros dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 ++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44fc024..0060e68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,13 +264,22 @@ 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 = "nom-derive" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ff943d68b88d0b87a6e0d58615e8fa07f9fd5a1319fa0a72efc1f62275c79a7" dependencies = [ - "nom", + "nom 7.1.3", "nom-derive-impl", "rustversion", ] @@ -418,11 +427,11 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rusticata-macros" -version = "4.1.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +checksum = "f40620447734539bcc6c64e9c66fed2410e17b46986733f1090c922d85f7105b" dependencies = [ - "nom", + "nom 8.0.0", ] [[package]] @@ -478,7 +487,7 @@ dependencies = [ "clap", "cookie-factory", "hex-literal", - "nom", + "nom 7.1.3", "nom-derive", "num_enum", "phf", diff --git a/Cargo.toml b/Cargo.toml index 9ac228d..bdc5242 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ num_enum = "0.7.2" nom = "7.0" nom-derive = "0.10" phf = { version="0.11", default-features=false } -rusticata-macros = "4.0" +rusticata-macros = "5.0" [dev-dependencies] clap = { version="4.5", features = ["derive"]}