git-vain/Cargo.toml

38 lines
925 B
TOML

[package]
name = "git-vain"
version = "1.0.0"
authors = ["Anna <git-vain@anna.lgbt>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["crypto-openssl"]
crypto-openssl = ["sequoia-openpgp/crypto-openssl"]
crypto-rust = [
"sequoia-openpgp/crypto-rust",
"sequoia-openpgp/allow-experimental-crypto",
"sequoia-openpgp/allow-variable-time-crypto",
]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
data-encoding = "2"
directories = "5"
flate2 = "1"
git2 = "0.17"
gpgme = "0.11"
indicatif = "0.17"
inquire = "0.6"
itoa = "1"
keyring = "2"
num_cpus = "1"
rand = "0.8"
sequoia-openpgp = { git = "https://gitlab.com/sequoia-pgp/sequoia", default-features = false }
serde = { version = "1", features = ["derive"] }
sha1 = { version = "0.10", features = ["asm"] }
toml = "0.7"
[profile.release]
lto = true