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; }