From 403cabb70accf2c2a69f2036b7742c15928ba3a9 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Wed, 10 Dec 2025 15:32:59 +0100 Subject: [PATCH] chore: bump CSPRNG to 0.8.0 since MSRV was bumped --- tfhe-csprng/Cargo.toml | 2 +- tfhe/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tfhe-csprng/Cargo.toml b/tfhe-csprng/Cargo.toml index cdff3d991..24bab946d 100644 --- a/tfhe-csprng/Cargo.toml +++ b/tfhe-csprng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-csprng" -version = "0.7.1" +version = "0.8.0" edition = "2021" license = "BSD-3-Clause-Clear" description = "Cryptographically Secure PRNG used in the TFHE-rs library." diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index ce6dc7410..deaec3ace 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -53,7 +53,7 @@ clap-num = { version = "1.1.1" } cbindgen = { version = "0.28", optional = true } [dependencies] -tfhe-csprng = { version = "0.7.0", path = "../tfhe-csprng", features = [ +tfhe-csprng = { version = "0.8.0", path = "../tfhe-csprng", features = [ "parallel", ] } serde = { workspace = true, features = ["default", "derive"] }