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