-
Notifications
You must be signed in to change notification settings - Fork 841
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
Document all arrow features in docs.rs (#2633) #2634
Conversation
Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>
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.
@@ -67,6 +67,9 @@ multiversion = { version = "0.6.1", default-features = false } | |||
bitflags = { version = "1.2.1", default-features = false } | |||
zstd = { version = "0.11.1", default-features = false, optional = true } | |||
|
|||
[package.metadata.docs.rs] |
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.
We did something similar with parquet but used --all-features:
https://github.com/apache/arrow-rs/blob/master/parquet/Cargo.toml#L67-L68
I suspect the reason we can't do so in this case is that the simd
feature will cause the docs build to fail as it doesn't use nightly?
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.
I didn't want to risk it 😅
Benchmark runs are scheduled for baseline = 41a2d2d and contender = a9875f5. a9875f5 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #2633
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?