Fix feature builds.

This commit is contained in:
Stephen Chung
2021-01-06 18:22:45 +08:00
parent a5d6392107
commit e059ca009c
5 changed files with 10 additions and 14 deletions

View File

@@ -1,13 +1,12 @@
//! Configuration settings for [`Engine`].
use crate::stdlib::{
format,
num::{NonZeroU64, NonZeroU8, NonZeroUsize},
string::String,
};
use crate::stdlib::{format, num::NonZeroU8, string::String};
use crate::token::Token;
use crate::Engine;
#[cfg(not(feature = "unchecked"))]
use crate::stdlib::num::{NonZeroU64, NonZeroUsize};
#[cfg(not(feature = "no_module"))]
use crate::stdlib::boxed::Box;