From afb79a0b1cfadaa06d6cd28af9b406e75fe54ee6 Mon Sep 17 00:00:00 2001 From: Thomas Montaigu Date: Mon, 6 Oct 2025 18:00:36 +0200 Subject: [PATCH] chore(hlapi): export CompressedKVStore Without this, users cannot use the CompressedKVStore type that is required in the KVStore deserialization --- tfhe/src/high_level_api/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfhe/src/high_level_api/mod.rs b/tfhe/src/high_level_api/mod.rs index d39804754..b4047c3ab 100644 --- a/tfhe/src/high_level_api/mod.rs +++ b/tfhe/src/high_level_api/mod.rs @@ -141,7 +141,7 @@ pub use tag::Tag; pub use traits::FheId; pub mod xof_key_set; -pub use kv_store::KVStore; +pub use kv_store::{CompressedKVStore, KVStore}; mod booleans; mod compressed_ciphertext_list;