1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-11 06:55:38 +03:00
git-cliff/Cargo.toml
Orhun Parmaksız 2ab2c8fb5e
refactor(lib)!: move changelog module to git-cliff-core
This will reduce the number of pulled dependencies if you want to
use git-cliff as a library in your Rust project.
2023-04-02 21:46:45 +03:00

29 lines
378 B
TOML

[workspace]
members = ["git-cliff-core", "git-cliff"]
[workspace.dependencies]
regex = "1.6.0"
glob = "0.3.0"
log = "0.4.17"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
strip = true
[profile.bench]
opt-level = 3
debug = false