diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index 58f7df48425..adb0c7ac87e 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -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"] diff --git a/arrow/src/pyarrow.rs b/arrow/src/pyarrow.rs index 3ae5b3b9987..89463e4c8fd 100644 --- a/arrow/src/pyarrow.rs +++ b/arrow/src/pyarrow.rs @@ -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};