cargo-features = ["codegen-backend"] [package] name = "git-heatmap" version = "0.1.0" edition = "2021" authors = ["Wynd "] description = "A simple and customizable heatmap for git repos" readme = "README.md" repository = "https://git.pixelatedw.xyz/wynd/git-heatmap" # 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