[package]
name = "git-crypt"
version = "0.1.2"
edition = "2021"
authors = ["AprilNEA"]
description = "A Rust implementation of git-crypt for transparent encryption of files in a git repository"
license = "MIT OR Apache-2.0"
repository = "https://github.com/AprilNEA/git-crypt-rs"
homepage = "https://github.com/AprilNEA/git-crypt-rs"
documentation = "https://docs.rs/git-crypt"
readme = "README.md"
keywords = ["git", "encryption", "aes", "security", "cryptography"]
categories = ["command-line-utilities", "cryptography"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
gpg = ["pgp"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
aes-gcm = "0.10"
rand = "0.8"
sha2 = "0.10"
hmac = "0.12"
hkdf = "0.12"
pgp = { version = "0.17", optional = true }
git2 = "0.19"
anyhow = "1.0"
thiserror = "1.0"
hex = "0.4"
base64 = "0.22"
dirs = "5.0"
[[bin]]
name = "git-crypt"
path = "src/main.rs"
[dev-dependencies]
tempfile = "3.13"
assert_cmd = "2.0"
predicates = "3.1"