-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Rust Workspace Configuration
# This file enables cargo commands from the repo root and helps
# tools like rust-cache that look for Cargo.toml in the root directory.
[workspace]
resolver = "2"
members = ["crypto_core", "rust_crypto"]
# Shared workspace dependencies can be defined here
[workspace.dependencies]
aes-gcm = "0.10"
argon2 = "0.5"
hkdf = "0.13"
hmac = "0.13"
sha2 = "0.11"
rand = "0.8"
zeroize = { version = "1.8", features = ["zeroize_derive"] }
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
thiserror = "1.0"
# Force minimum version for transitive dependencies with known vulnerabilities
# RUSTSEC-2026-0009: time local offset issue - requires >=0.3.47
time = "0.3.47"