You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/04/02 13:09:57 UTC

[arrow-rs] branch master updated: Remove non-existent feature from README (#4001)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new e90c9b411 Remove non-existent feature from README (#4001)
e90c9b411 is described below

commit e90c9b411f8f6be3d69907115ebb486e103e640d
Author: Tsui Yik Ching <ts...@protonmail.com>
AuthorDate: Sun Apr 2 14:09:50 2023 +0100

    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 d7a5877b4..1e8da360f 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/).