Skip to main content

cargo_duckdb_ext_tools/
lib.rs

1//! Cargo plugin for DuckDB extension development
2//!
3//! This crate provides a Cargo plugin (`cargo-duckdb-ext`) that enables
4//! Rust developers to create, build, and package DuckDB extensions
5//! without requiring Python or other external tooling.
6
7pub mod commands;
8pub mod error;
9pub(crate) mod helpers;
10pub(crate) mod logging;
11pub mod options;