mirror of
https://github.com/TECHNOFAB11/bump2version.git
synced 2025-12-12 08:00:09 +01:00
init release
This commit is contained in:
parent
ab9faf5864
commit
5bfd81666d
9 changed files with 716 additions and 16 deletions
25
Cargo.toml
Normal file
25
Cargo.toml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[package]
|
||||
name = "bump2version"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "⬆️ Easily manage version numbers in your projects."
|
||||
license = "MIT"
|
||||
keywords = ["cli", "parser"]
|
||||
categories = ["command-line-utilities"]
|
||||
repository = "https://github.com/wiseaidev/bump2version"
|
||||
documentation = "https://docs.rs/bump2version"
|
||||
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.1", features = ["derive"] }
|
||||
regex = "1.10.3"
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
opt-level = "z"
|
||||
lto = "thin"
|
||||
strip = "symbols"
|
||||
Loading…
Add table
Add a link
Reference in a new issue