diff --git a/sds/Cargo.lock b/sds/Cargo.lock index 775b11e7..657e3e66 100644 --- a/sds/Cargo.lock +++ b/sds/Cargo.lock @@ -1904,12 +1904,6 @@ version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - [[package]] name = "mio" version = "1.0.4" @@ -1971,12 +1965,11 @@ dependencies = [ [[package]] name = "nom" -version = "7.1.3" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ "memchr", - "minimal-lexical", ] [[package]] diff --git a/sds/Cargo.toml b/sds/Cargo.toml index c4db4e5d..6c15835f 100644 --- a/sds/Cargo.toml +++ b/sds/Cargo.toml @@ -21,7 +21,7 @@ match_validation = [] ahash = "0.8.7" # Overriding with fix repo due to: https://github.com/seiflotfy/rust-farmhash/pull/16 farmhash = { git = "https://github.com/fuchsnj/rust-farmhash", rev = "82d80b689d65fbd378b13deff10cdd07794df64e" } -nom = "7.1.3" +nom = "8.0.0" regex = "1.9.5" regex-automata = "0.4.7" # Switch over to the original repo when this issue is resolved: https://github.com/rust-lang/regex/issues/1241