2024-08-15 22:09:51 +03:00
|
|
|
cargo-features = ["codegen-backend"]
|
|
|
|
|
|
|
|
[package]
|
2024-08-15 22:11:24 +03:00
|
|
|
name = "git-heatmap"
|
2024-08-15 22:09:51 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-08-24 14:21:26 +03:00
|
|
|
authors = ["Wynd <wyndftw@proton.me>"]
|
|
|
|
description = "A simple and customizable heatmap for git repos"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://git.pixelatedw.xyz/wynd/git-heatmap"
|
2024-08-15 22:09:51 +03:00
|
|
|
|
|
|
|
# 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
|