From 55d2b08bc5e1c6bf202e474060ba8fd2ace58b20 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Fri, 8 Oct 2021 16:04:13 -0700 Subject: [PATCH] Remove arc-swap from the top-level crate This commit removes arc-swap from top-level as it is only used in lib/enrichment. Similar to the work done in #9535 and #9537. Signed-off-by: Brian L. Troutwine --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cf82f55789902..1694f5e2f74ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7527,7 +7527,6 @@ name = "vector" version = "0.18.0" dependencies = [ "approx", - "arc-swap", "assert_cmd", "async-compression", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index 9cf1943b29f0b..1402088e48a7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -194,7 +194,6 @@ vrl-compiler = { path = "lib/vrl/compiler", optional = true } lookup = { path = "lib/lookup" } # External libs -arc-swap = { version = "1.4.0", default-features = false } async-compression = { version = "0.3.7", default-features = false, features = ["tokio", "gzip", "zstd"] } avro-rs = { version = "0.13.0", default-features = false, optional = true } base64 = { version = "0.13.0", default-features = false, optional = true }