frozen-duckdb 0.1.0

Pre-compiled DuckDB binary for fast Rust builds - Drop-in replacement for duckdb-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # CLI Module for Frozen DuckDB
//!
//! This module contains the command-line interface implementation,
//! organized into logical sub-modules for better maintainability.

pub mod commands;
pub mod dataset_manager;
pub mod flock_manager;

pub use commands::*;
pub use dataset_manager::*;
pub use flock_manager::*;