Idiomatic and safe APIs for interacting with the Symas Lightning Memory-Mapped Database (LMDB).
This repo is a fork of danburkert/lmdb-rs with fixes for issues encountered by mozilla/rkv.
bash
git clone --recursive git@github.com:mozilla/lmdb-rs.git
cd lmdb-rs
cargo build
To publish the lmdb-rkv-sys crate to crates.io:
```bash git clone --recursive git@github.com:mozilla/lmdb-rs.git cd lmdb-rs/lmdb-sys
cargo publish git tag lmdb-rkv-sys-$VERSION # where $VERSION is the updated version string git push git@github.com:mozilla/lmdb-rs.git --tags ```
To publish the lmdb-rkv crate to crates.io:
```bash git clone --recursive git@github.com:mozilla/lmdb-rs.git cd lmdb-rs
cargo publish git tag $VERSION # where $VERSION is the updated version string git push git@github.com:mozilla/lmdb-rs.git --tags
```