kick-rs-cli 0.1.0-alpha.1

`cargo kick` subcommand — scaffold (today), dev / generate / add (planned)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Library half of `kick-rs-cli`. The `cargo-kick` binary is a thin
//! clap shell over these modules; integration tests use them directly.
//!
//! Public surface is small on purpose — this isn't a crate adopters
//! consume, it's a place to put logic that's awkward to test through
//! the binary's stdout/stderr.

#![forbid(unsafe_code)]
#![warn(rust_2018_idioms)]

pub mod generate;
pub mod new;
pub mod templates;