/// The datu crate version
pub const VERSION: &str = crate_version!;
/// Primary error type for datu operations.
pub use Error;
/// Human-readable list of formats accepted for `head`, `tail`, and `sample` CLI commands.
pub use DISPLAY_PIPELINE_INPUTS_FOR_CLI;
/// Supported input/output formats and extension-based detection.
pub use FileType;
/// Resolves an explicit file type or infers it from a path.
pub use resolve_file_type;
/// Total row count from file metadata (Parquet and ORC only).
pub use get_total_rows_result;
/// Result type alias for datu operations.
pub type Result<T> = Result;