From af2e331b0fe430f067b89be09ad5230b30b2d00c Mon Sep 17 00:00:00 2001 From: Mathieu Lala Date: Fri, 30 Dec 2022 20:45:26 +0100 Subject: [PATCH] fix: not #cfg --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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};