From bdaedca75b061cf8ef7ffbf7bd8cf98919b01c6f Mon Sep 17 00:00:00 2001 From: trivernis Date: Tue, 18 Oct 2022 21:32:29 +0200 Subject: [PATCH] Export ValueIntoExpression --- Cargo.toml | 2 +- src/into_expression.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }