git-heatmap/Cargo.toml

30 lines
599 B
TOML
Raw Normal View History

cargo-features = ["codegen-backend"]
[package]
2024-08-15 22:11:24 +03:00
name = "git-heatmap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
unsafe_code = { level = "forbid" }
[dependencies]
gix = { version = "0.64.0" }
clap = { version = "4.5.13", features = ["derive"] }
chrono = { version = "0.4.38" }
itertools = { version = "0.13.0" }
anyhow = { version = "1.0.86" }
[profile.dev]
codegen-backend = "cranelift"
lto = false
incremental = true
[profile.release]
opt-level = 3
strip = true
lto = true
codegen-units = 1