mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 03:17:42 +03:00
Migrate to workspace inheritance
This commit is contained in:
parent
fdb41822fc
commit
5b2ade12a4
8 changed files with 150 additions and 106 deletions
60
Cargo.toml
60
Cargo.toml
|
@ -6,3 +6,63 @@ members = [
|
|||
"rage",
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.65"
|
||||
repository = "https://github.com/str4d/rage"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
age = { version = "0.9.2", path = "age" }
|
||||
age-core = { version = "0.9.0", path = "age-core" }
|
||||
|
||||
# Dependencies required by the age specification:
|
||||
# - Base64 from RFC 4648
|
||||
base64 = "0.13"
|
||||
|
||||
# - ChaCha20-Poly1305 from RFC 7539
|
||||
chacha20poly1305 = { version = "0.10", 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.12"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
|
||||
# - scrypt from RFC 7914
|
||||
scrypt = { version = "0.10", default-features = false }
|
||||
|
||||
# - CSPRNG
|
||||
rand = "0.8"
|
||||
rand_7 = { package = "rand", version = "0.7" }
|
||||
|
||||
# - Key encoding
|
||||
bech32 = "0.9"
|
||||
|
||||
# Parsing
|
||||
cookie-factory = "0.3.1"
|
||||
nom = { version = "7", default-features = false, features = ["alloc"] }
|
||||
|
||||
# Secret management
|
||||
pinentry = "0.5"
|
||||
secrecy = "0.8"
|
||||
subtle = "2"
|
||||
zeroize = "1"
|
||||
|
||||
# Localization
|
||||
i18n-embed = { version = "0.13", features = ["fluent-system"] }
|
||||
i18n-embed-fl = "0.6"
|
||||
lazy_static = "1"
|
||||
rust-embed = "6"
|
||||
|
||||
# CLI
|
||||
chrono = "0.4"
|
||||
console = { version = "0.15", default-features = false }
|
||||
env_logger = "0.9"
|
||||
gumdrop = "0.8"
|
||||
log = "0.4"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue