diff --git a/Cargo.lock b/Cargo.lock index 0a6d5f7..0fabcbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2558,12 +2558,6 @@ dependencies = [ "triomphe", ] -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - [[package]] name = "miniz_oxide" version = "0.8.9" @@ -2646,7 +2640,7 @@ dependencies = [ "netcalyx-parse-utils", "netcalyx-pcap-reader", "netcalyx-serde-macros", - "nom 7.1.3", + "nom", "pcap-parser", "rstest", "schemars 1.2.1", @@ -2703,7 +2697,7 @@ dependencies = [ "netcalyx-parse-utils", "netcalyx-pcap-reader", "netcalyx-serde-macros", - "nom 7.1.3", + "nom", "pcap-parser", "rstest", "schemars 1.2.1", @@ -2819,7 +2813,7 @@ dependencies = [ "netcalyx-parse-utils", "netcalyx-pcap-reader", "netcalyx-serde-macros", - "nom 7.1.3", + "nom", "ordered-float 5.3.0", "pcap-parser", "rstest", @@ -2908,7 +2902,7 @@ dependencies = [ name = "netcalyx-locate" version = "0.12.1" dependencies = [ - "nom 7.1.3", + "nom", ] [[package]] @@ -2941,7 +2935,7 @@ name = "netcalyx-parse-utils" version = "0.12.1" dependencies = [ "netcalyx-locate", - "nom 7.1.3", + "nom", "serde", ] @@ -2979,7 +2973,7 @@ version = "0.12.1" dependencies = [ "netcalyx-locate", "netcalyx-parse-utils", - "nom 7.1.3", + "nom", "quote", "syn", "trybuild", @@ -3001,7 +2995,7 @@ dependencies = [ "netcalyx-parse-utils", "netcalyx-pcap-reader", "netcalyx-serde-macros", - "nom 7.1.3", + "nom", "pcap-parser", "rstest", "serde", @@ -3074,16 +3068,6 @@ dependencies = [ "libc", ] -[[package]] -name = "nom" -version = "7.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" -dependencies = [ - "memchr", - "minimal-lexical", -] - [[package]] name = "nom" version = "8.0.0" @@ -3552,7 +3536,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1099a3a64b376c536394622c9e5ea8ecfac3e3e44f88857b1e7da114135d3df4" dependencies = [ "circular", - "nom 8.0.0", + "nom", "rusticata-macros", ] @@ -4506,7 +4490,7 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40620447734539bcc6c64e9c66fed2410e17b46986733f1090c922d85f7105b" dependencies = [ - "nom 8.0.0", + "nom", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 12a619c..bddbe82 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ strum = "0.28" strum_macros = "0.28" serde = { version = "1.0" } serde_json = "1" -nom = { version = "7.1" } +nom = { version = "8.0" } reqwest = { version = "0.13", default-features = false } roxmltree = "0.21" arbitrary = { version = "1" }