From 87876a31d66c02ac1ab9b16af2ed49e31042527c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 23:17:47 +0000 Subject: [PATCH] Add updated Cargo.toml and crypto.rs with pure-Rust crypto --- app/api-token-vault/Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/api-token-vault/Cargo.toml b/app/api-token-vault/Cargo.toml index 293dce0..c429525 100644 --- a/app/api-token-vault/Cargo.toml +++ b/app/api-token-vault/Cargo.toml @@ -7,7 +7,10 @@ authors = ["API Token Vault"] [dependencies] clap = { version = "4.4", features = ["derive"] } -sodiumoxide = "0.2" +aes-gcm = "0.10" +sha2 = "0.10" +hkdf = "0.12" +rand = "0.8" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" chrono = { version = "0.4", features = ["serde"] } @@ -15,7 +18,6 @@ uuid = { version = "1.6", features = ["v4", "serde"] } dirs = "5.0" home = "0.5" base64 = "0.21" -rand = "0.8" rpassword = "7.3" [dev-dependencies]