typos-git-commit 0.8.1

This program analyzes a json file produced with `typos` and makes commits for each correction.
Documentation
[package]
name = "typos-git-commit"
version = "0.8.1"
edition = "2021"
authors = ["Olivier Delhomme <olivier.delhomme@free.fr>"]
description = "This program analyzes a json file produced with `typos` and makes commits for each correction."
repository = "https://gitlab.com/delhomme/typos-git-commit/"
license = "GPL-3.0-or-later"
keywords = ["git", "typos", "command-line"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
clap = { version = "4.0.32", features = ["derive", "color", "cargo"] }
clap_complete = "4.4.9"
fluent-i18n = "0.1.0"


[profile.release]
codegen-units = 1
lto = true          # Enable Link Time Optimization
panic = 'abort'
strip = true