Skip to content

Commit

Permalink
Document all arrow features in docs.rs (#2633) (#2634)
Browse files Browse the repository at this point in the history
* Document all arrow features in docs.rs (#2633)

* Tweak pyarrow doc

* Update arrow/Cargo.toml

Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>

Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>
  • Loading branch information
tustvold and viirya committed Sep 2, 2022
1 parent 41a2d2d commit a9875f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions arrow/Cargo.toml
Expand Up @@ -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]
features = ["prettyprint", "ipc_compression", "dyn_cmp_dict", "ffi", "pyarrow"]

[features]
default = ["csv", "ipc", "json"]
ipc_compression = ["ipc", "zstd", "lz4"]
Expand Down
2 changes: 1 addition & 1 deletion arrow/src/pyarrow.rs
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

//! This library demonstrates a minimal usage of Rust's C data interface to pass
//! This module demonstrates a minimal usage of Rust's C data interface to pass
//! arrays from and to Python.

use std::convert::{From, TryFrom};
Expand Down

0 comments on commit a9875f5

Please sign in to comment.