mirror of
https://github.com/TECHNOFAB11/bump2version.git
synced 2025-12-12 16:10:07 +01:00
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
This commit is contained in:
parent
5b895b7939
commit
5e120a6ab8
8 changed files with 522 additions and 230 deletions
10
Cargo.toml
10
Cargo.toml
|
|
@ -8,7 +8,10 @@ keywords = ["cli", "parser"]
|
|||
categories = ["command-line-utilities"]
|
||||
repository = "https://github.com/wiseaidev/bump2version"
|
||||
documentation = "https://docs.rs/bump2version"
|
||||
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
|
||||
authors = [
|
||||
"Mahmoud Harmouch <oss@wiseai.dev>",
|
||||
"TECHNOFAB <admin@technofab.de>",
|
||||
]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[lib]
|
||||
|
|
@ -17,6 +20,11 @@ crate-type = ["cdylib"]
|
|||
[dependencies]
|
||||
clap = { version = "4.5.1", features = ["derive"] }
|
||||
regex = "1.10.3"
|
||||
serde = "1.0.216"
|
||||
serde_derive = "1.0.216"
|
||||
toml = "0.8.19"
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue