[package]
name = "git-sheets"
version = "0.1.2"
edition = "2024"
license = "AGPL-3.0-or-later"
description = "Version control for spreadsheets - staging, commits, diffs for tables"
homepage = "https://github.com/CromboJambo"
repository = "https://github.com/CromboJambo/git-sheets"
authors = ["Dustin Grover <dustinjgrover@gmail.com>"]
readme = "README.md"
keywords = ["git", "spreadsheet", "versioning"]
categories = ["development-tools", "command-line-utilities"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
csv = "1.4"
toml = "0.7"
clap = { version = "4.5", features = ["derive"] }
git2 = "0.20"
[dev-dependencies]
tempfile = "3.8"
[[bin]]
name = "git-sheets"
path = "src/main.rs"
[lib]
name = "gitsheets"
path = "src/lib.rs"