summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c81a149..41d31d2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -152,7 +152,9 @@ extern crate mlua_derive;
// Unstable features
#[cfg(feature = "unstable")]
-pub use crate::{function::OwnedFunction, table::OwnedTable, userdata::OwnedAnyUserData};
+pub use crate::{
+ function::OwnedFunction, string::OwnedString, table::OwnedTable, userdata::OwnedAnyUserData,
+};
/// Create a type that implements [`AsChunk`] and can capture Rust variables.
///