git-crypt 0.1.2

A Rust implementation of git-crypt for transparent encryption of files in a git repository
Documentation
[[bin]]
name = "git-crypt"
path = "src/main.rs"

[dependencies.aes-gcm]
version = "0.10"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"

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

[dependencies.dirs]
version = "5.0"

[dependencies.git2]
version = "0.19"

[dependencies.hex]
version = "0.4"

[dependencies.hkdf]
version = "0.12"

[dependencies.hmac]
version = "0.12"

[dependencies.pgp]
optional = true
version = "0.17"

[dependencies.rand]
version = "0.8"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

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

[features]
default = []
gpg = ["pgp"]

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

[package]
authors = ["AprilNEA"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "cryptography"]
description = "A Rust implementation of git-crypt for transparent encryption of files in a git repository"
documentation = "https://docs.rs/git-crypt"
edition = "2021"
homepage = "https://github.com/AprilNEA/git-crypt-rs"
keywords = ["git", "encryption", "aes", "security", "cryptography"]
license = "MIT OR Apache-2.0"
name = "git-crypt"
readme = "README.md"
repository = "https://github.com/AprilNEA/git-crypt-rs"
version = "0.1.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

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

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

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