diff --git a/Cargo.lock b/Cargo.lock index e6a1622..56956e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -174,6 +174,15 @@ 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_locate" version = "4.2.0" @@ -182,7 +191,7 @@ checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" dependencies = [ "bytecount", "memchr", - "nom", + "nom 7.1.3", ] [[package]] @@ -191,7 +200,7 @@ version = "0.1.0" dependencies = [ "iced-x86", "memmap2", - "nom", + "nom 8.0.0", "nom_locate", "rustyline", ] diff --git a/Cargo.toml b/Cargo.toml index 71bcd83..b09fb6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Michael Melanson "] edition = "2021" [dependencies] -"nom" = "7" +"nom" = "8" "nom_locate" = "4" "rustyline" = { version = "10", default-features = false } memmap2 = "0.9"