From 1b885606ae69b0b1bb8b7d83fb1798766ab74468 Mon Sep 17 00:00:00 2001 From: Sosthene Date: Sat, 23 Aug 2025 13:18:34 +0200 Subject: [PATCH] Reexport backend_blindbit_wasm --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index c0a707b..67a64ed 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,6 +21,9 @@ pub use serde_wasm_bindgen; #[cfg(feature = "blindbit-backend")] pub use backend_blindbit_native; +#[cfg(feature = "blindbit-wasm")] +pub use backend_blindbit_wasm; + pub mod crypto; pub mod device; pub mod error;