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
11
12
//! CLI module for icepick
//!
//! This module contains the command-line interface implementation.

pub mod catalog;
pub mod commands;
pub mod output;
pub mod util;

pub use catalog::CatalogConfig;
pub use output::OutputFormat;
pub use util::parse_table_ident;