chore: reexport estring types only with feature

This commit is contained in:
Dmitriy Pleshevskiy 2022-07-27 18:48:30 +03:00
parent 2a3b4e652f
commit ee86c167a0

View file

@ -4,5 +4,7 @@ mod structs;
pub use structs::{CommaVec, SemiVec}; pub use structs::{CommaVec, SemiVec};
pub use estring::core::EString; pub use estring::core::EString;
#[cfg(feature = "low-level")]
pub use estring::low::*; pub use estring::low::*;
#[cfg(feature = "structs")]
pub use estring::structs::*; pub use estring::structs::*;