From f78168048cbba604dc208023d0d30e3d8282a4cf Mon Sep 17 00:00:00 2001 From: Avril Date: Sat, 27 Mar 2021 01:05:44 +0000 Subject: [PATCH] start working on growable Vec-like container for stackalloc'd slices --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index cdca58b..24d1bc0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -106,7 +106,7 @@ use std::{ ptr, }; -//TODO: pub mod avec; pub use avec::AVec; +pub mod avec; pub use avec::AVec; mod ffi; /// Allocate a runtime length uninitialised byte buffer on the stack, call `callback` with this buffer, and then deallocate the buffer.