git-vain/Cargo.toml

38 lines
925 B
TOML
Raw Permalink Normal View History

2023-08-30 07:11:48 +00:00
[package]
name = "git-vain"
2023-08-31 06:32:02 +00:00
version = "1.0.0"
authors = ["Anna <git-vain@anna.lgbt>"]
2023-08-30 07:11:48 +00:00
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",
]
2023-08-30 07:11:48 +00:00
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
data-encoding = "2"
directories = "5"
2023-08-30 07:11:48 +00:00
flate2 = "1"
git2 = "0.17"
gpgme = "0.11"
indicatif = "0.17"
inquire = "0.6"
itoa = "1"
keyring = "2"
2023-08-30 07:11:48 +00:00
num_cpus = "1"
rand = "0.8"
sequoia-openpgp = { git = "https://gitlab.com/sequoia-pgp/sequoia", default-features = false }
serde = { version = "1", features = ["derive"] }
2023-08-31 04:51:49 +00:00
sha1 = { version = "0.10", features = ["asm"] }
toml = "0.7"
2023-08-31 05:03:23 +00:00
[profile.release]
2023-08-31 20:27:46 +00:00
lto = true