without.crypto
Dan Burkert 10 years ago
parent 14de57067a
commit a090f18f9d
  1. 10
      .travis.yml
  2. 18
      README.md

@ -0,0 +1,10 @@
env:
global:
- secure: LhiHXBKaxsubX45eMukb39IDKaM0mdMzE8Ow4DCnq/yFTZn22ju/H3nMawk0X74gCMXsrADErcBke/7+mHV5GgToqtKjr8RaZDwAmZtzDgdrvJlqy+w59WbvJKuPXYGN0dPiVSkt/fFGf7qGFjLj0DiGZHw05XmBSq+90Qn3Iqw=
language: rust
script:
- cargo build -v
- cargo test -v
- cargo doc
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh

@ -1,13 +1,19 @@
# lmdbd-rs
[![Build Status](https://travis-ci.org/danburkert/lmdb-rs.svg?branch=master)](https://travis-ci.org/danburkert/lmdb-rs)
Safe Rust bindings for the [Symas Lightning Memory-Mapped Database(LMDB)](http://symas.com/mdb/).
[Documentation](http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb/)
[Cargo](https://crates.io/crates/lmdb)
# lmdb-rs
Safe Rust bindings for the [Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/).
Provides the minimal amount of abstraction necessary to interact with LMDB safely in Rust. In
general, the API is very similar to the LMDB [C-API](http://symas.com/mdb/doc/).
## TODO
* Cursors.
* Zero-copy put API.
* Nested transactions.
* Database statistics.
* [ ] Cursors.
* [ ] Zero-copy put API.
* [ ] Nested transactions.
* [ ] Database statistics.

Loading…
Cancel
Save