leveldb 0.1.0

An interface for leveldb
docs.rs failed to build leveldb-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: leveldb-0.8.6

Rust leveldb bindings

Incomplete bindings for leveldb for Rust.

Prerequisites

snappy and leveldb need to be installed. On Ubuntu, I recomment:

sudo apt-get install libleveldb-dev libsnappy-dev

Usage

If your project is using Cargo, drop the following lines in your Cargo.toml:

[dependencies.leveldb]

git = "https://github.com/skade/leveldb.git"

Development

Make sure you have all prerequisites installed. Run

$ cargo build

for building and

$ cargo test

to run the test suite.

TODOS

  • Remove a lot of warnings
  • Implement the whole interface

License

MIT, see LICENSE