From 7517b13d92b0b9c746f163e6f79b2eaf6a25fe2c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 11 Jul 2016 17:39:39 -0700 Subject: [PATCH] Expose lmdb::Iter publicly (#8) I'm trying to make a newtype wrapper around it, and can't because it's in `lmdb::cursor`, which isn't public. --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6e89c0d..114989e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,8 @@ extern crate lmdb_sys as ffi; pub use cursor::{ Cursor, RoCursor, - RwCursor + RwCursor, + Iter }; pub use database::Database; pub use environment::{Environment, EnvironmentBuilder};