Files
jj-cz/Cargo.toml

47 lines
1.0 KiB
TOML
Raw Normal View History

2026-02-05 16:25:14 +01:00
[package]
name = "jj-cz"
version = "0.1.0"
edition = "2024"
publish = false
authors = ["Lucien Cartier-Tilet <lucien@phundrak.com>"]
license = "MIT OR GPL-3.0-or-later"
homepage = "https://labs.phundrak.com/phundrak/jj-cz"
repository = "https://labs.phundrak.com/phundrak/jj-cz"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "jj-cz"
[features]
## Exposes MockJjExecutor and MockPrompts for use in integration tests.
## Enable with: cargo test --features test-utils
test-utils = []
2026-02-05 16:25:14 +01:00
[dependencies]
2026-02-06 22:56:06 +01:00
async-trait = "0.1.89"
2026-02-05 19:37:36 +01:00
clap = { version = "4.5.57", features = ["derive"] }
git-conventional = "0.12.9"
inquire = "0.9.2"
jj-lib = "0.39.0"
2026-02-05 22:34:22 +01:00
lazy-regex = { version = "3.5.1", features = ["lite"] }
2026-02-05 19:37:36 +01:00
thiserror = "2.0.18"
2026-02-06 22:56:06 +01:00
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
2026-02-05 16:25:14 +01:00
[dev-dependencies]
assert_cmd = "2.1.2"
assert_fs = "1.1.3"
predicates = "3.1.3"
2026-02-05 16:25:14 +01:00
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
2026-03-08 15:44:26 +01:00
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true