From 557fc11e3b2a09a680c0cfbf38d27b13101b63fe Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 9 Dec 2021 15:05:42 -0500 Subject: [PATCH] Remove unneeded `rc` feature of serde (#990) (#1016) 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) Co-authored-by: Carol (Nichols || Goulding) <193874+carols10cents@users.noreply.github.com> --- arrow/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index 03c76d0faf5..8a080e54c94 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -36,7 +36,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"