git-editor 2.0.1

A command-line tool to edit git commit timestamps, messages, and author information
Documentation
[[bin]]
name = "git-editor"
path = "src/main.rs"

[dependencies.chrono]
features = ["serde"]
version = "0.4.40"

[dependencies.clap]
features = ["derive"]
version = "4.1"

[dependencies.colored]
version = "3.0.0"

[dependencies.crossterm]
version = "0.27"

[dependencies.git2]
version = "0.20.1"

[dependencies.rand]
version = "0.9.1"

[dependencies.regex]
version = "1.7"

[dependencies.url]
version = "2.5.4"

[dependencies.uuid]
features = ["v4"]
version = "1.17.0"

[dev-dependencies.serial_test]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.0"

[lib]
name = "git_editor"
path = "src/lib.rs"

[package]
authors = ["Rohan Sen", "rohansen856@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A command-line tool to edit git commit timestamps, messages, and author information"
edition = "2021"
homepage = "https://github.com/rohansen856/git_editor"
license = "MIT"
name = "git-editor"
readme = "README.md"
repository = "https://github.com/rohansen856/git_editor"
version = "2.0.1"

[package.metadata.deb]
assets = [["target/release/git-editor", "usr/bin/", "755"], ["README.md", "usr/share/doc/git-editor/README", "644"]]
changelog = "CHANGELOG.md"
copyright = "2024, Rohan Sen <rohansen856@gmail.com>"
depends = "$auto"
extended-description = """
A powerful command-line tool for editing git commit timestamps, messages, 
and author information. Supports interactive editing, simulation mode, 
and selective field editing.
"""
license-file = ["LICENSE", "4"]
maintainer = "Rohan Sen <rohansen856@gmail.com>"
priority = "optional"
section = "utility"

[package.metadata.generate-rpm]
license = "MIT"
post_install_script = "scripts/post_install.sh"
post_uninstall_script = "scripts/post_uninstall.sh"
summary = "A command-line tool to edit git commit timestamps, messages, and author information"

[[package.metadata.generate-rpm.files]]
mode = "755"
path = "/usr/bin/git-editor"

[[package.metadata.generate-rpm.files]]
doc = true
mode = "644"
path = "/usr/share/doc/git-editor/README.md"

[package.metadata.generate-rpm.requires]
git = "*"
openssl = "*"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"