diff --git a/Cargo.lock b/Cargo.lock index 095424c..e1e0b66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -543,13 +543,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", ] @@ -804,7 +813,7 @@ name = "smaf" version = "0.1.0" dependencies = [ "anyhow", - "nom", + "nom 8.0.0", "nom-derive", ] diff --git a/smaf/Cargo.toml b/smaf/Cargo.toml index 675a92d..4fb2aa3 100644 --- a/smaf/Cargo.toml +++ b/smaf/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" [dependencies] anyhow = { version = "^1.0" } -nom = { version = "^7.1" } +nom = { version = "^8.0" } nom-derive = { version = "^0.10" }