mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
112 lines
2.4 KiB
TOML
112 lines
2.4 KiB
TOML
[package]
|
|
name = "age"
|
|
description = "[BETA] A simple, secure, and modern encryption library."
|
|
version = "0.5.0"
|
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
|
repository = "https://github.com/str4d/rage"
|
|
readme = "README.md"
|
|
keywords = ["rage", "encryption"]
|
|
categories = ["cryptography"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
|
|
[dependencies]
|
|
age-core = { version = "0.5.0", path = "../age-core" }
|
|
|
|
# Dependencies required by the age specification:
|
|
# - Base64 from RFC 4648
|
|
base64 = "0.12"
|
|
|
|
# - ChaCha20-Poly1305 from RFC 7539
|
|
aead = { version = "0.3", features = ["stream"] }
|
|
c2-chacha = "0.3"
|
|
chacha20poly1305 = { version = "0.7", default-features = false, features = ["alloc"] }
|
|
|
|
# - X25519 from RFC 7748
|
|
x25519-dalek = "1"
|
|
|
|
# - HKDF from RFC 5869 with SHA-256
|
|
# - HMAC from RFC 2104 with SHA-256
|
|
hkdf = "0.10"
|
|
hmac = "0.10"
|
|
sha2 = "0.9"
|
|
|
|
# - scrypt from RFC 7914
|
|
scrypt = { version = "0.5", default-features = false }
|
|
|
|
# - CSPRNG
|
|
rand = "0.7"
|
|
|
|
# - Key encoding
|
|
bech32 = "0.7"
|
|
|
|
# OpenSSH-specific dependencies:
|
|
# - RSAES-OAEP from RFC 8017 with SHA-256 and MGF1
|
|
num-traits = { version = "0.2", optional = true }
|
|
rsa = { version = "0.3", optional = true }
|
|
|
|
# - Conversion of public keys from Ed25519 to X25519
|
|
curve25519-dalek = { version = "3", optional = true }
|
|
|
|
# - Encrypted keys
|
|
aes = { version = "0.6", optional = true }
|
|
aes-ctr = { version = "0.6", optional = true }
|
|
bcrypt-pbkdf = { version = "0.4", optional = true }
|
|
block-modes = { version = "0.7", optional = true }
|
|
|
|
# Parsing
|
|
cookie-factory = "0.3.1"
|
|
nom = "5"
|
|
|
|
# Secret management
|
|
secrecy = "0.7"
|
|
subtle = "2"
|
|
zeroize = "1"
|
|
|
|
# Async I/O
|
|
futures = { version = "0.3", optional = true }
|
|
pin-project = "1"
|
|
|
|
# Localization
|
|
i18n-embed = { version = "0.9", features = ["fluent-system"] }
|
|
i18n-embed-fl = "0.2"
|
|
lazy_static = "1"
|
|
rust-embed = "5"
|
|
|
|
# Common CLI dependencies
|
|
console = { version = "0.13", optional = true }
|
|
pinentry = { version = "0.2", optional = true }
|
|
rpassword = { version = "5", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
criterion-cycles-per-byte = "0.1"
|
|
futures-test = "0.3"
|
|
quickcheck = "0.9"
|
|
quickcheck_macros = "0.9"
|
|
|
|
[features]
|
|
default = []
|
|
armor = []
|
|
async = ["futures"]
|
|
cli-common = ["console", "pinentry", "rpassword"]
|
|
ssh = [
|
|
"aes",
|
|
"aes-ctr",
|
|
"bcrypt-pbkdf",
|
|
"block-modes",
|
|
"curve25519-dalek",
|
|
"num-traits",
|
|
"rsa",
|
|
]
|
|
unstable = []
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "throughput"
|
|
harness = false
|