From ce1e1a4d09619f581064191c1e5ca8c6031eaa2c Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Mon, 21 Oct 2024 19:10:29 +0900 Subject: [PATCH] :heavy_plus_sign: Add `rand_chacha` to libpna dependencies --- Cargo.lock | 1 + lib/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index b7c5793e..885d56ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -895,6 +895,7 @@ dependencies = [ "password-hash", "pbkdf2", "rand", + "rand_chacha", "tokio", "tokio-util", "version-sync", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index cab74d31..c4f1a799 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -27,6 +27,7 @@ liblzma = { version = "0.3.4", features = ["static"] } password-hash = { version = "0.5.0", default-features = false } pbkdf2 = { version = "0.12.2", features = ["simple"] } rand = "0.8.5" +rand_chacha = "0.3.1" zstd = { version = "0.13.2", default-features = false } [target.'cfg(target_family = "wasm")'.dependencies]