diff --git a/Cargo.lock b/Cargo.lock index 6bc0577..73ae0ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,7 +577,7 @@ dependencies = [ "hashbrown 0.15.5", "indexmap", "insta", - "nom", + "nom 8.0.0", "nom-tracable", "nom_locate", "proptest", @@ -594,13 +594,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-tracable" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a39d3ec4e5bc9816ca540bd6b1e4885c0275536eb3293d317d984bb17f9a294" dependencies = [ - "nom", + "nom 7.1.3", "nom-tracable-macros", "nom_locate", ] @@ -623,7 +632,7 @@ checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" dependencies = [ "bytecount", "memchr", - "nom", + "nom 7.1.3", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cbf8a99..fe0e65c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ color-eyre = "0.6" fast-float2 = "0.2" hashbrown = { version = "0.15", features = ["serde"] } indexmap = { version = "2.0", features = ["serde"] } -nom = "7.1" +nom = "8.0" nom-tracable = "0.9" nom_locate = "4.2" serde = { version = "1.0", features = ["serde_derive"], optional = true }