From 004392531d97e7d10774ce820134113301e9c7be Mon Sep 17 00:00:00 2001 From: trivernis Date: Wed, 5 Oct 2022 13:55:53 +0200 Subject: [PATCH] Expose IntoExpression --- Cargo.toml | 2 +- src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fad34bf..888982c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embed-nu" -version = "0.2.2" +version = "0.2.3" edition = "2021" license = "Apache-2.0" repository = "https://github.com/Trivernis/embed-nu" diff --git a/src/lib.rs b/src/lib.rs index 661ccff..bf2da1b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,7 @@ pub(crate) mod utils; pub use argument::{Argument, IntoArgument}; pub use context::{CommandGroupConfig, Context, ContextBuilder}; +pub use into_expression::*; pub use into_value::*; pub use nu_protocol::PipelineData; pub use rusty_value;