git-xcrypt 0.1.1

Transparent, deterministic encryption of selected files in a git repository: plaintext in your working tree, ciphertext in the remote.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "git-xcrypt"
version = "0.1.1"
build = false
exclude = [
    "/context",
    "/.idea",
    "/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Transparent, deterministic encryption of selected files in a git repository: plaintext in your working tree, ciphertext in the remote."
homepage = "https://github.com/rkarpin1/git-xcrypt"
documentation = "https://docs.rs/git-xcrypt"
readme = "README.md"
keywords = [
    "git",
    "encryption",
    "secrets",
    "aes-siv",
    "cli",
]
categories = [
    "command-line-utilities",
    "cryptography",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rkarpin1/git-xcrypt"

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

[[bin]]
name = "git-xcrypt"
path = "src/main.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.aes-siv]
version = "0.8.0-rc.3"

[dependencies.base64]
version = "0.23"

[dependencies.bstr]
version = "1.13.0"

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

[dependencies.getrandom]
version = "0.4.3"

[dependencies.gix-attributes]
version = "0.34.0"

[dependencies.gix-config]
version = "0.59.0"

[dependencies.gix-discover]
version = "0.54.0"
features = ["sha1"]

[dependencies.gix-glob]
version = "0.27.0"

[dependencies.gix-hash]
version = "0.26"
features = [
    "sha1",
    "sha256",
]

[dependencies.gix-object]
version = "0.63.0"
features = [
    "sha1",
    "sha256",
]

[dependencies.gix-odb]
version = "0.83.0"
features = [
    "sha1",
    "sha256",
]

[dependencies.gix-path]
version = "0.12.4"

[dependencies.gix-ref]
version = "0.66.0"
features = [
    "sha1",
    "sha256",
]

[dependencies.hkdf]
version = "0.13.0"

[dependencies.sha2]
version = "0.11.0"

[dependencies.thiserror]
version = "2.0.19"

[dependencies.zeroize]
version = "1.9.0"
features = ["derive"]

[dev-dependencies.proptest]
version = "1.11.0"

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

[lints.rust]
unsafe_code = "forbid"

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"