kuzan_cli 0.0.1

Reserved crate name for the upcoming Kuzan open-source release.
1
2
3
4
5
6
7
8
9
#![forbid(unsafe_code)]
//! Placeholder binary reserving the `kuzan_cli` package name.
//!
//! This executable exists only to hold the future Kuzan command-line package
//! name on crates.io until the public implementation is ready.

fn main() {
    eprintln!("kuzan_cli is a placeholder package reserved for the future Kuzan CLI release.");
}