From e90c9b411f8f6be3d69907115ebb486e103e640d Mon Sep 17 00:00:00 2001 From: Tsui Yik Ching Date: Sun, 2 Apr 2023 14:09:50 +0100 Subject: [PATCH] Remove non-existent feature from README (#4001) The feature was removed in PR #674, but the feature list in the README wasn't updated --- arrow/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/arrow/README.md b/arrow/README.md index d7a5877b49fa..1e8da360f443 100644 --- a/arrow/README.md +++ b/arrow/README.md @@ -46,7 +46,6 @@ The `arrow` crate provides the following features which may be enabled in your ` - `ipc` (default) - support for reading [Arrow IPC Format](https://arrow.apache.org/docs/format/Columnar.html#serialization-and-interprocess-communication-ipc), also used as the wire protocol in [arrow-flight](https://crates.io/crates/arrow-flight) - `ipc_compression` - Enables reading and writing compressed IPC streams (also enables `ipc`) - `prettyprint` - support for formatting record batches as textual columns -- `js` - support for building arrow for WebAssembly / JavaScript - `simd` - (_Requires Nightly Rust_) Use alternate hand optimized implementations of some [compute](https://github.com/apache/arrow-rs/tree/master/arrow/src/compute/kernels) kernels using explicit SIMD instructions via [packed_simd_2](https://docs.rs/packed_simd_2/latest/packed_simd_2/).