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