arrs-cli 0.1.3

Command-line tool for inspecting Lance and other Arrow-based datasets.
Documentation
1
2
3
4
5
6
7
8
//! Lance-format adapter for the `Dataset` trait.
//!
//! Everything Lance-specific lives here so the rest of the crate can be
//! extended with new input formats without touching commands or output code.

mod adapter;

pub use adapter::{LanceDataset, write_dataset};