kick_rs_cli/lib.rs
1#![doc = include_str!("../README.md")]
2//
3// (The `pub` modules below are the library half of `kick-rs-cli` —
4// the `cargo-kick` binary is a thin clap shell over them, and
5// integration tests use them directly. Adopters install the CLI via
6// `cargo install kick-rs-cli`; they don't depend on the library.)
7#![forbid(unsafe_code)]
8#![warn(rust_2018_idioms)]
9
10pub mod add;
11pub mod check;
12pub mod dev;
13pub mod generate;
14pub mod info;
15pub mod new;
16pub mod register;
17pub mod templates;