Reduced the amount of dependencies from gix and version bump
parent
8e1eaf4a03
commit
3bd86bac98
File diff suppressed because it is too large
Load Diff
10
Cargo.toml
10
Cargo.toml
|
@ -2,7 +2,7 @@ cargo-features = ["codegen-backend"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "git-heatmap"
|
name = "git-heatmap"
|
||||||
version = "1.0.4"
|
version = "1.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Wynd <wyndftw@proton.me>"]
|
authors = ["Wynd <wyndftw@proton.me>"]
|
||||||
description = "A simple and customizable heatmap for git repos"
|
description = "A simple and customizable heatmap for git repos"
|
||||||
|
@ -16,11 +16,11 @@ license = "MIT"
|
||||||
unsafe_code = { level = "forbid" }
|
unsafe_code = { level = "forbid" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gix = { version = "0.64.0" }
|
gix = { version = "0.66.0", default-features = false, features = ["mailmap"] }
|
||||||
clap = { version = "4.5.13", features = ["derive"] }
|
clap = { version = "4.5.20", features = ["derive"] }
|
||||||
chrono = { version = "0.4.38" }
|
chrono = { version = "0.4.38" }
|
||||||
itertools = { version = "0.13.0" }
|
itertools = { version = "0.13.0" }
|
||||||
anyhow = { version = "1.0.86" }
|
anyhow = { version = "1.0.89" }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
codegen-backend = "cranelift"
|
codegen-backend = "cranelift"
|
||||||
|
@ -31,4 +31,4 @@ incremental = true
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
strip = true
|
strip = true
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
|
|
Loading…
Reference in New Issue