From b4006177a213651d83157cf8f4ede908d60934df Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Wed, 1 Dec 2021 16:06:25 -0500 Subject: [PATCH] Remove unneeded `rc` feature of serde Fixes #989. This feature opts into impls for `Rc` and `Arc`, but none of the data structures that use Serialize/Deserialize actually contain `Rc` or `Arc`s. See: - [Serde docs](https://serde.rs/feature-flags.html#-features-rc) - [PR adding this](https://github.com/apache/arrow/pull/3016) --- arrow/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index 51e74b08373..62dacba20a3 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -37,7 +37,7 @@ name = "arrow" path = "src/lib.rs" [dependencies] -serde = { version = "1.0", features = ["rc"] } +serde = { version = "1.0" } serde_derive = "1.0" serde_json = { version = "1.0", features = ["preserve_order"] } indexmap = "1.6"