From ee86c167a044e3a5fa3d7d1e20cdb19fe2b7f18e Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Wed, 27 Jul 2022 18:48:30 +0300 Subject: [PATCH] chore: reexport estring types only with feature --- src/estr.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/estr.rs b/src/estr.rs index f75b1da..95ffb1d 100644 --- a/src/estr.rs +++ b/src/estr.rs @@ -4,5 +4,7 @@ mod structs; pub use structs::{CommaVec, SemiVec}; pub use estring::core::EString; +#[cfg(feature = "low-level")] pub use estring::low::*; +#[cfg(feature = "structs")] pub use estring::structs::*;