diff --git a/Cargo.lock b/Cargo.lock index 4a72c9acb4..173a430d05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4991,7 +4991,6 @@ dependencies = [ "indexmap", "log", "memchr", - "nom", "num-bigint 0.4.3", "num-integer", "num-traits", diff --git a/influxdb_line_protocol/Cargo.toml b/influxdb_line_protocol/Cargo.toml index 1243aec2fd..1d7c6df2ae 100644 --- a/influxdb_line_protocol/Cargo.toml +++ b/influxdb_line_protocol/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Paul Dix "] edition = "2021" [dependencies] # In alphabetical order -nom = "7" +nom = { version = "7", default-features = false, features = ["std"] } smallvec = "1.7.0" snafu = "0.6.2" observability_deps = { path = "../observability_deps" } diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 353bd33bb8..da3a31b40a 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -28,7 +28,6 @@ hyper = { version = "0.14", features = ["client", "full", "h2", "http1", "http2" indexmap = { version = "1", default-features = false, features = ["std"] } log = { version = "0.4", default-features = false, features = ["std"] } memchr = { version = "2", features = ["std"] } -nom = { version = "7", features = ["alloc", "std"] } num-bigint = { version = "0.4", features = ["std"] } num-integer = { version = "0.1", default-features = false, features = ["i128", "std"] } num-traits = { version = "0.2", features = ["i128", "libm", "std"] } @@ -61,7 +60,6 @@ hashbrown = { version = "0.11", features = ["ahash", "inline-more", "raw"] } indexmap = { version = "1", default-features = false, features = ["std"] } log = { version = "0.4", default-features = false, features = ["std"] } memchr = { version = "2", features = ["std"] } -nom = { version = "7", features = ["alloc", "std"] } rand = { version = "0.8", features = ["alloc", "getrandom", "libc", "rand_chacha", "rand_hc", "small_rng", "std", "std_rng"] } regex = { version = "1", features = ["aho-corasick", "memchr", "perf", "perf-cache", "perf-dfa", "perf-inline", "perf-literal", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] } regex-syntax = { version = "0.6", features = ["unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }