git-harvest 0.2.0

Harvest a CHANGELOG from your Git history.
######################## GNU General Public License 3.0 ########################
##                                                                            ##
## Copyright (C) 2026 Kevin Matthes                                           ##
##                                                                            ##
## This program is free software: you can redistribute it and/or modify       ##
## it under the terms of the GNU General Public License as published by       ##
## the Free Software Foundation, either version 3 of the License, or          ##
## (at your option) any later version.                                        ##
##                                                                            ##
## This program is distributed in the hope that it will be useful,            ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of             ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              ##
## GNU General Public License for more details.                               ##
##                                                                            ##
## You should have received a copy of the GNU General Public License          ##
## along with this program.  If not, see <https://www.gnu.org/licenses/>.     ##
##                                                                            ##
################################################################################

[package]
name = "git-harvest"
version = "0.2.0"
edition = "2024"
rust-version = "1.98.0"
description = "Harvest a CHANGELOG from your Git history."
repository = "https://github.com/kevinmatthes/git-harvest"
license = "GPL-3.0-or-later"
authors = ["Kevin Matthes <aeruginous.rs@gmail.com>"]
keywords = ["changelog", "git", "keep-a-changelog", "release", "ron"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
include = ["build.rs", "src/**", "README.md", "LICENCE", "THIRDPARTY.md"]

[dependencies]
chrono = { version = "0.4.45", features = ["serde"] }
clap = { version = "4.6.6", features = ["derive"] }
gix = "0.87.1"
list-my-licence = { version = "0.1.2", features = ["clap"] }
ron = "0.12.2"
semver = "1.0.28"
serde = { version = "1.0.229", features = ["derive"] }
sysexits = "0.13.0"

[build-dependencies]
list-my-licence = { version = "0.1.2", features = ["build"] }

[dev-dependencies]
chrono = { version = "0.4.45", features = ["serde"] }
sysexits = "0.13.0"
tempfile = "3.27.0"

[lints.clippy]
all = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
multiple_crate_versions = "allow"
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }

[lints.rust]
dead_code = "deny"
deprecated = "deny"
missing_docs = "deny"
unreachable_code = "deny"
unused_assignments = "deny"
unused_imports = "deny"
unused_macros = "deny"
unused_must_use = "deny"
unused_mut = "deny"
unused_parens = "deny"
unused_variables = "deny"

[lints.rustdoc]
broken_intra_doc_links = "deny"

################################################################################