cargo-hatch 0.4.0

Hatch new projects like a chick coming out of its egg.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # 🐣 Cargo Hatch

#![deny(rust_2018_idioms, clippy::all, clippy::pedantic)]
#![allow(
    clippy::missing_errors_doc,
    clippy::module_name_repetitions,
    clippy::option_if_let_else
)]

pub mod cargo;
pub mod cli;
pub mod dirs;
pub mod repo;
pub mod settings;
pub mod templates;