diff --git a/src/lib.rs b/src/lib.rs index 21f7fa2e..aace6b02 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -214,7 +214,7 @@ type InclusiveRange = std::ops::RangeInclusive; pub use api::build_type::{CustomType, TypeBuilder}; #[cfg(not(feature = "no_custom_syntax"))] pub use api::custom_syntax::Expression; -#[cfg(all(not(feature = "no_std"), target_family = "wasm"))] +#[cfg(all(not(feature = "no_std"), not(target_family = "wasm")))] pub use api::files::{eval_file, run_file}; pub use api::{eval::eval, events::VarDefInfo, run::run}; pub use ast::{FnAccess, AST};