view Cargo.toml @ 94:b09acb0e365e

Fix BlockIterator: Make it storable across function calls This is achieved by separating out the iterator state. The main problem was the internal reference to the block that is being iterated over; using this new separation, we can store and later restore the state without having to care about the reference to the block itself.
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 15 Sep 2016 12:48:32 +0200
parents d2a045a69a0a
children 407bde4c0a6e
line wrap: on
line source

[package]
name = "leveldb_rs"
version = "0.1.0"
authors = ["Lewin Bormann <lbo@spheniscida.de>"]

[dependencies]
crc = "1.2"
integer-encoding = "0.12.0"
libc = "0.2"
rand = "0.3"