From 9932f1e8ac147b3932c689b952596919d1c599a2 Mon Sep 17 00:00:00 2001 From: trivernis Date: Tue, 18 Oct 2022 21:16:19 +0200 Subject: [PATCH] Expose RustyIntoValue trait --- Cargo.toml | 2 +- src/into_value.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f7d23b5..a915b2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embed-nu" -version = "0.3.1" +version = "0.3.2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/Trivernis/embed-nu" diff --git a/src/into_value.rs b/src/into_value.rs index 8f292f2..2345e5c 100644 --- a/src/into_value.rs +++ b/src/into_value.rs @@ -21,7 +21,7 @@ impl IntoValue for RawValue { } /// Helper trait to avoid conflicts -pub(crate) trait RustyIntoValue { +pub trait RustyIntoValue { fn into_value(self) -> Value; }