mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
Rearrange dependencies and annotate with purpose
This commit is contained in:
parent
72bd049b23
commit
2c44012425
1 changed files with 55 additions and 19 deletions
74
Cargo.toml
74
Cargo.toml
|
@ -15,33 +15,69 @@ default-run = "rage"
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aead = "0.1"
|
#
|
||||||
aes-ctr = "0.3"
|
# Library dependencies
|
||||||
|
#
|
||||||
|
|
||||||
|
# Dependencies required by the age specification:
|
||||||
|
# - Base64 from RFC 4648
|
||||||
base64 = "0.10"
|
base64 = "0.10"
|
||||||
bech32 = "0.7"
|
|
||||||
blowfish = { version = "0.4", features = ["bcrypt"] }
|
# - ChaCha20-Poly1305 from RFC 7539
|
||||||
byteorder = "1"
|
aead = "0.1"
|
||||||
chacha20poly1305 = "0.1"
|
chacha20poly1305 = "0.1"
|
||||||
cookie-factory = "0.3"
|
|
||||||
crypto-mac = "0.7"
|
|
||||||
curve25519-dalek = "2"
|
|
||||||
generic-array = "0.12"
|
generic-array = "0.12"
|
||||||
getrandom = "0.1"
|
|
||||||
|
# - X25519 from RFC 7748
|
||||||
|
x25519-dalek = "0.6"
|
||||||
|
|
||||||
|
# - HKDF from RFC 5869 with SHA-256
|
||||||
|
# - HMAC from RFC 2104 with SHA-256
|
||||||
hkdf = "0.8"
|
hkdf = "0.8"
|
||||||
hmac = "0.7"
|
hmac = "0.7"
|
||||||
nom = "5"
|
|
||||||
num-traits = "0.2"
|
|
||||||
pbkdf2 = "0.3"
|
|
||||||
radix64 = "0.6"
|
|
||||||
rand = "0.7"
|
|
||||||
scrypt = { version = "0.2", default-features = false }
|
|
||||||
secrecy = "0.5"
|
|
||||||
sha2 = "0.8"
|
sha2 = "0.8"
|
||||||
x25519-dalek = "0.6"
|
|
||||||
|
# - scrypt from RFC 7914
|
||||||
|
scrypt = { version = "0.2", default-features = false }
|
||||||
|
|
||||||
|
# - CSPRNG
|
||||||
|
getrandom = "0.1"
|
||||||
|
rand = "0.7"
|
||||||
|
|
||||||
|
# - Key encoding
|
||||||
|
bech32 = "0.7"
|
||||||
|
|
||||||
|
# OpenSSH-specific dependencies:
|
||||||
|
# - RSAES-OAEP from RFC 8017 with SHA-256 and MGF1 (behind unstable feature flag)
|
||||||
|
num-traits = "0.2"
|
||||||
|
rsa = { version = "0.2", git = "https://github.com/str4d/RSA", branch = "oaep", optional = true }
|
||||||
|
|
||||||
|
# - Conversion of public keys from from Ed25519 to X25519
|
||||||
|
curve25519-dalek = "2"
|
||||||
|
|
||||||
|
# - bcrypt (required for encrypted keys)
|
||||||
|
blowfish = { version = "0.4", features = ["bcrypt"] }
|
||||||
|
byteorder = "1"
|
||||||
|
crypto-mac = "0.7"
|
||||||
|
pbkdf2 = "0.3"
|
||||||
|
|
||||||
|
# - Encrypted keys
|
||||||
|
aes-ctr = "0.3"
|
||||||
|
|
||||||
|
# Parsing
|
||||||
|
cookie-factory = "0.3"
|
||||||
|
nom = "5"
|
||||||
|
|
||||||
|
# Armor writing
|
||||||
|
radix64 = "0.6"
|
||||||
|
|
||||||
|
# Secret management
|
||||||
|
secrecy = "0.5"
|
||||||
zeroize = "1"
|
zeroize = "1"
|
||||||
|
|
||||||
# Unstable dependencies
|
#
|
||||||
rsa = { version = "0.2", git = "https://github.com/str4d/RSA", branch = "oaep", optional = true }
|
# Tool dependencies
|
||||||
|
#
|
||||||
|
|
||||||
# Common CLI dependencies
|
# Common CLI dependencies
|
||||||
dialoguer = { version = "0.4", optional = true }
|
dialoguer = { version = "0.4", optional = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue