From 984b51437483e5d9f540cfa15185edc5bb043e9e Mon Sep 17 00:00:00 2001 From: tmontaigu Date: Tue, 1 Oct 2024 13:06:44 +0200 Subject: [PATCH] fix(hlapi): pub use HlCompressible,HlExpandable Pub re-export the `HlCompressible` and `HlExpandable` traits, as users may need them to write generic code that manipulates CompressedCiphertextList/Builder --- tfhe/src/high_level_api/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tfhe/src/high_level_api/mod.rs b/tfhe/src/high_level_api/mod.rs index 133464ce5d..4caf58e251 100644 --- a/tfhe/src/high_level_api/mod.rs +++ b/tfhe/src/high_level_api/mod.rs @@ -92,7 +92,9 @@ pub use compact_list::ProvenCompactCiphertextList; pub use compact_list::{ CompactCiphertextList, CompactCiphertextListBuilder, CompactCiphertextListExpander, }; -pub use compressed_ciphertext_list::{CompressedCiphertextList, CompressedCiphertextListBuilder}; +pub use compressed_ciphertext_list::{ + CompressedCiphertextList, CompressedCiphertextListBuilder, HlCompressible, HlExpandable, +}; pub use tag::Tag; pub use traits::FheId;