mirror of
https://github.com/orhun/git-cliff.git
synced 2024-12-12 16:25:30 +03:00
2ab2c8fb5e
This will reduce the number of pulled dependencies if you want to use git-cliff as a library in your Rust project.
29 lines
378 B
TOML
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
|