-
Notifications
You must be signed in to change notification settings - Fork 839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unneeded rc
feature of serde
#990
Conversation
Codecov Report
@@ Coverage Diff @@
## master #990 +/- ##
==========================================
- Coverage 82.31% 82.30% -0.01%
==========================================
Files 168 168
Lines 48763 48763
==========================================
- Hits 40139 40135 -4
- Misses 8624 8628 +4
Continue to review full report at Codecov.
|
oh hey new clippy just dropped... fun! |
CI failure is the rust team's way to let everyone know that a new release is out ;) |
Conveniently, someone already fixed clippy :) #992 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me;
I think if you merge apache/master into this branch we should be able to get a clean clippy run |
Fixes apache#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](apache/arrow#3016)
6468a9a
to
b400617
Compare
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](apache/arrow#3016)
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](apache/arrow#3016) Co-authored-by: Carol (Nichols || Goulding) <[email protected]>
Fixes #989.
This feature opts into impls for
Rc
andArc
, but none of the datastructures that use Serialize/Deserialize actually contain
Rc
orArc
s.See:
Which issue does this PR close?
Closes #989.
Rationale for this change
Compile less code, enable fewer features for crates depending on Arrow. The tests still pass without this feature.
What changes are included in this PR?
Remove a feature enabled.
Are there any user-facing changes?
Projects depending on this crate that accidentally took advantage of feature unification to use the functionality added by
rc
might have to add therc
feature themselves... but that would be a bug in their project.I don't think this is documented anywhere user-facing, and I don't think this qualifies as a breaking change to a public API, but I could be wrong, Cargo feature usage is tricky. Please let me know if I'm missing something!