diff --git a/Cargo.lock b/Cargo.lock index 8769d0074040f..b8275cae42ca7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2073,19 +2073,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d18b093eba54c9aaa1e3784d4361eb2ba944cf7d0a932a830132238f483e8d8" -[[package]] -name = "cidr-utils" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2315f7119b7146d6a883de6acd63ddf96071b5f79d9d98d2adaa84d749f6abf1" -dependencies = [ - "debug-helper", - "num-bigint", - "num-traits", - "once_cell", - "regex", -] - [[package]] name = "cidr-utils" version = "0.6.1" @@ -2867,12 +2854,6 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49" -[[package]] -name = "debug-helper" -version = "0.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e" - [[package]] name = "der" version = "0.7.8" @@ -5918,11 +5899,11 @@ dependencies = [ [[package]] name = "no-proxy" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b41e7479dc3678ea792431e04bafd62a31879035f4a5fa707602df062f58c77" +checksum = "6d688d11967f7f52e273fb8f8f07ecb094254fed630e22a0cab60cc98047a5db" dependencies = [ - "cidr-utils 0.5.11", + "cidr-utils", "serde", ] @@ -10513,7 +10494,7 @@ dependencies = [ "bytesize", "chrono", "chrono-tz", - "cidr-utils 0.6.1", + "cidr-utils", "clap", "colored", "console-subscriber", @@ -11056,7 +11037,7 @@ dependencies = [ "charset", "chrono", "chrono-tz", - "cidr-utils 0.6.1", + "cidr-utils", "clap", "codespan-reporting", "community-id", diff --git a/LICENSE-3rdparty.csv b/LICENSE-3rdparty.csv index 874a14ccd7890..01cd91053b7ef 100644 --- a/LICENSE-3rdparty.csv +++ b/LICENSE-3rdparty.csv @@ -170,7 +170,6 @@ dashmap,https://github.com/xacrimon/dashmap,MIT,Acrimon data-url,https://github.com/servo/rust-url,MIT OR Apache-2.0,Simon Sapin databend-client,https://github.com/datafuselabs/bendsql,Apache-2.0,Databend Authors -debug-helper,https://github.com/magiclen/debug-helper,MIT,Magic Len der,https://github.com/RustCrypto/formats/tree/master/der,Apache-2.0 OR MIT,RustCrypto Developers deranged,https://github.com/jhpratt/deranged,MIT OR Apache-2.0,Jacob Pratt derivative,https://github.com/mcarton/rust-derivative,MIT OR Apache-2.0,mcarton diff --git a/lib/vector-config/Cargo.toml b/lib/vector-config/Cargo.toml index e4de1be5ae1b5..e4c3ce4972188 100644 --- a/lib/vector-config/Cargo.toml +++ b/lib/vector-config/Cargo.toml @@ -16,7 +16,7 @@ chrono-tz.workspace = true encoding_rs = { version = "0.8", default-features = false, features = ["alloc", "serde"] } indexmap.workspace = true inventory = { version = "0.3" } -no-proxy = { version = "0.3.4", default-features = false, features = ["serialize"] } +no-proxy = { version = "0.3.5", default-features = false, features = ["serialize"] } num-traits = { version = "0.2.19", default-features = false } serde.workspace = true serde_json.workspace = true diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index c2811f28f849e..6afa6d8230cf5 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -31,7 +31,7 @@ metrics.workspace = true metrics-tracing-context.workspace = true metrics-util.workspace = true mlua = { version = "0.9.9", default-features = false, features = ["lua54", "send", "vendored"], optional = true } -no-proxy = { version = "0.3.4", default-features = false, features = ["serialize"] } +no-proxy = { version = "0.3.5", default-features = false, features = ["serialize"] } once_cell = { version = "1.19", default-features = false } ordered-float = { version = "4.3.0", default-features = false } openssl = { version = "0.10.66", default-features = false, features = ["vendored"] }