git-heatmap/Cargo.toml

35 lines
795 B
TOML

cargo-features = ["codegen-backend"]
[package]
name = "git-heatmap"
version = "1.0.3"
edition = "2021"
authors = ["Wynd <wyndftw@proton.me>"]
description = "A simple and customizable heatmap for git repos"
readme = "README.md"
repository = "https://codeberg.org/WyndFTW/git-heatmap"
license = "MIT"
# 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