icepick 0.4.1

Experimental Rust client for Apache Iceberg with WASM support for AWS S3 Tables and Cloudflare R2
Documentation
1
2
3
4
5
6
7
8
9
10
//! I/O operations for Iceberg files
//! WASM-compatible via OpenDAL

mod file_io;
#[cfg(not(target_family = "wasm"))]
pub mod local;

pub use file_io::{AwsCredentials, FileIO, VendedCredentialProvider, VendedCredentials};
#[cfg(not(target_family = "wasm"))]
pub use local::{create_local_file_io, get_filename, is_local_path};