From d954c06d21cdb34f1a541d9db02afebe1fff7d3c Mon Sep 17 00:00:00 2001 From: trivernis Date: Wed, 5 Oct 2022 14:23:15 +0200 Subject: [PATCH] Reexport nu protocol value --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f33967..31a0398 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embed-nu" -version = "0.2.4" +version = "0.2.5" edition = "2021" license = "Apache-2.0" repository = "https://github.com/Trivernis/embed-nu" diff --git a/src/lib.rs b/src/lib.rs index bf2da1b..ea78a86 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ 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 nu_protocol::{PipelineData, Value}; pub use rusty_value; pub use rusty_value::RustyValue; pub use utils::NewEmpty;