From 2b23baa3af7b5bb4d564c3786d882d3fcaf7508e Mon Sep 17 00:00:00 2001 From: Aaron Kaiser Date: Tue, 4 Mar 2025 10:36:32 +0100 Subject: [PATCH] remove lazy_cell feature --- src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e8eec06..7ee2082 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,6 @@ -#![feature(lazy_cell)] - pub use shared_memory_heap::sharedptr::SharedPtr; mod agent; -pub mod x25519; -pub mod mlkem; pub mod ed25519; +pub mod mlkem; +pub mod x25519;