bump2version/src/lib.rs
TECHNOFAB 5e120a6ab8
feat: rewrite huge parts
- real config parsing
- actually working parts, with support for string parts
- handle readonly config (preparation for use with Nix)
- cleanup cli (remove colors, fancy stuff etc., keep it minimal)
- switch to tracing for logging
2024-12-27 13:46:25 +01:00

6 lines
149 B
Rust

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
pub(crate) mod cli;
pub(crate) mod config;
pub(crate) mod utils;