Clean compile on current rustc stable/beta/nightly
Rename CursorIteratorInner to IterateCursor (the name was influenced by std::hash::BuildHasher) and make it public (recent rustc complains about private types leaking into the public API)
Since this is a change affecting client programs, I've changed the minor version of both crates lmdb-rs and liblmdb-sys
Due to the upgrade of libc, i noticed in a client program that size_t changed from u64 to usize, which i think is correct. This implies a change for some of the fields in lmdb_rs::MDB_stat.
CursorIteratorInner
toIterateCursor
(the name was influenced bystd::hash::BuildHasher
) and make it public (recent rustc complains about private types leaking into the public API)minor
version of both crateslmdb-rs
andliblmdb-sys
Due to the upgrade of libc, i noticed in a client program that
size_t
changed fromu64
tousize
, which i think is correct. This implies a change for some of the fields inlmdb_rs::MDB_stat
.