35 lines
900 B
TOML
35 lines
900 B
TOML
cargo-features = ["codegen-backend"]
|
|
|
|
[package]
|
|
name = "git-heatmap"
|
|
version = "1.1.0"
|
|
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.66.0", default-features = false, features = ["mailmap"] }
|
|
git2 = { version = "0.19.0", default-features = false }
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
chrono = { version = "0.4.38" }
|
|
itertools = { version = "0.13.0" }
|
|
anyhow = { version = "1.0.89" }
|
|
|
|
[profile.dev]
|
|
codegen-backend = "cranelift"
|
|
lto = false
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1 |