From 059b9d11828e528b8a33553f6dc2f09e9b327a03 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Wed, 3 May 2017 15:49:29 -0700 Subject: [PATCH] Expose mentat_core::{TypedValue,ValueType} and conn::{Conn,Metadata}. (#443) --- src/lib.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 76762777..d635a651 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,6 +40,11 @@ pub fn get_connection() -> Connection { return Connection::open_in_memory().unwrap(); } +pub use mentat_core::{ + TypedValue, + ValueType, +}; + pub use mentat_db::{ new_connection, }; @@ -53,6 +58,11 @@ pub use query::{ q_once, }; +pub use conn::{ + Conn, + Metadata, +}; + #[cfg(test)] mod tests { use edn::symbols::Keyword;