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.
without.crypto
Tony Arcieri 8 years ago committed by Dan Burkert
parent 23e33ccd86
commit 7517b13d92
  1. 3
      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};

Loading…
Cancel
Save