diff --git a/Cargo.lock b/Cargo.lock index 8be0c6d6..fff1f8db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -933,12 +933,6 @@ dependencies = [ "libc", ] -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - [[package]] name = "miniz_oxide" version = "0.7.4" @@ -950,12 +944,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/crates/rsonpath-syntax/Cargo.toml b/crates/rsonpath-syntax/Cargo.toml index 5536c186..31cbe520 100644 --- a/crates/rsonpath-syntax/Cargo.toml +++ b/crates/rsonpath-syntax/Cargo.toml @@ -20,7 +20,7 @@ all-features = true [dependencies] arbitrary = { workspace = true, features = ["derive"], optional = true } owo-colors = { version = "4.1.0", default-features = false, optional = true } -nom = "7.1.3" +nom = "8.0.0" serde = { workspace = true, optional = true, features = ["derive"] } thiserror = { workspace = true } unicode-width = "0.2.0"