diff --git a/Cargo.lock b/Cargo.lock index 27037db..782376f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ "lazy_static", "log", "mdbook", - "nom", + "nom 8.0.0", "parse-hyperlinks", "semver", "serde", @@ -1038,6 +1038,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 = "normpath" version = "1.2.0" @@ -1153,7 +1162,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92ac700657cc7a89620d1c28b310d594ff0491c11fd3dd1ae748ed5c5c8640e6" dependencies = [ "html-escape", - "nom", + "nom 7.1.3", "percent-encoding", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 1549c3c..6b4429e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ html-escape = "0.2.13" lazy_static = "1.4.0" log = { version = "0.4.22", features = ["std"] } mdbook = { version = "0.4.40" } -nom = { version = "7.1.3", features = ["alloc"] } +nom = { version = "8.0.0", features = ["alloc"] } parse-hyperlinks = "0.27.2" semver = { version = "1.0.23" } serde = { version = "1.0.202", features = ["derive"] }