From e7b8444547bf114bbc0a47f39a18049e5e3b7c6a 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 425c3732cbf10c..f1f635141d95e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7528,7 +7528,6 @@ version = "0.17.0" dependencies = [ "anyhow", "approx", - "arc-swap", "assert_cmd", "async-compression", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index beb241a429c934..f9f97ca875de7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -195,7 +195,6 @@ lookup = { path = "lib/lookup" } # External libs anyhow = { version = "1.0.44", default-features = false } -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 }