mirror of
https://github.com/TECHNOFAB11/bump2version.git
synced 2025-12-13 00:20:09 +01:00
- 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
6 lines
149 B
Rust
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;
|