From 7cc204f046c001c92ae4c7f89c317a89c5bf0fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sat, 20 Apr 2024 18:23:57 +0200 Subject: [PATCH] Refer to the coffio module in an explicit way --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 80f115c..91b69c1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ mod scheme; mod storage; #[cfg(feature = "encryption")] -pub use coffio::Coffio; +pub use crate::coffio::Coffio; #[cfg(feature = "encryption")] pub use context::{DataContext, KeyContext}; #[cfg(any(feature = "encryption", feature = "ikm-management"))]