aisle 0.2.1

Metadata-driven Parquet pruning for Rust: Skip irrelevant data before reading
Documentation
mod api;
mod between;
mod bloom;
mod cmp;
mod context;
mod dictionary;
mod eval;
mod in_list;
mod is_null;
mod options;
mod page;
mod provider;
mod request;
mod result;
mod starts_with;
mod stats;
mod strings;

pub(crate) use api::{prune_compiled, prune_compiled_with_bloom_provider};
pub use options::{PruneOptions, PruneOptionsBuilder};
pub use provider::{
    AsyncBloomFilterProvider, CachedDictionaryHintProvider, DictionaryHintEvidence,
    DictionaryHintValue,
};
pub use request::PruneRequest;
pub use result::PruneResult;