This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 771b248 Remove unneeded `rc` feature of serde (#990)
771b248 is described below
commit 771b2481326bb3a95f194b86cb3fa01a4707cc3e
Author: Carol (Nichols || Goulding)
<[email protected]>
AuthorDate: Fri Dec 3 16:58:04 2021 -0500
Remove unneeded `rc` feature of serde (#990)
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 51e74b0..62dacba 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"