diff --git a/Cargo.toml b/Cargo.toml index a915b2c..ebbe29e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embed-nu" -version = "0.3.2" +version = "0.3.3" edition = "2021" license = "Apache-2.0" repository = "https://github.com/Trivernis/embed-nu" diff --git a/src/into_expression.rs b/src/into_expression.rs index 804ef10..b060af2 100644 --- a/src/into_expression.rs +++ b/src/into_expression.rs @@ -9,7 +9,7 @@ pub trait IntoExpression { fn into_expression(self) -> Expression; } -trait ValueIntoExpression { +pub trait ValueIntoExpression { fn into_expression(self) -> Expression; fn into_expr(self) -> Expr; }