Safe Rust bindings for LMDB with encryption at rest
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Niko e70c3cae74 new revision of lmdb 10 months ago
benches Use a simple lib name for lmdb-rkv-sys, mirroring what lmdb-rkv does 5 years ago
lmdb-sys new revision of lmdb 10 months ago
src Revert "add flag MDB_GET_BOTH" 1 year ago
.appveyor.yml Display verbose cargo version in logs 5 years ago
.gitignore gitignore 2 years ago
.gitmodules switch submodule url from git to https 1 year ago
.rustfmt.toml Enable rustfmt and copy config from the rkv project 5 years ago
.travis.yml Temporarily work around CI failure on linux nightlies 5 years ago
Cargo.toml renaming to lmdb-crypto-rs 2 years ago
LICENSE Initial commit 9 years ago
README.md update README with new URL pointing to gitea 1 year ago
azure-pipelines-template.yml Display verbose cargo version in logs 5 years ago
azure-pipelines.yml Format yml files 5 years ago

README.md

Build Status Windows Build status

lmdb-rs

Idiomatic and safe APIs for interacting with the Symas Lightning Memory-Mapped Database (LMDB).

This repo is a fork of mozilla/lmdb-rs that enables encryption of data at rest in LMDB. lmdb-rs is itself a fork of danburkert/lmdb-rs with fixes for issues encountered by mozilla/rkv.

Building from Source

git clone --recursive git@git.nextgraph.org:NextGraph/lmdb-rs.git
cd lmdb-rs
cargo build

Publishing to crates.io

To publish the lmdb-crypto-sys crate to crates.io:

git clone --recursivegit@git.nextgraph.org:NextGraph/lmdb-rs.git
cd lmdb-rs/lmdb-sys
# Update the version string in lmdb-sys/Cargo.toml and lmdb-sys/src/lib.rs.
cargo publish
git tag lmdb-crypto-sys-$VERSION # where $VERSION is the updated version string
git push git@git.nextgraph.org:NextGraph/lmdb-rs.git --tags

To publish the lmdb-rkv crate to crates.io:

git clone --recursive git@git.nextgraph.org:NextGraph/lmdb-rs.git
cd lmdb-rs
# Update the version string in Cargo.toml and src/lib.rs and temporarily change
# the lmdb-crypto-sys dependency in Cargo.toml to the latest version on crates.io.
cargo publish
git tag $VERSION # where $VERSION is the updated version string
git push git@git.nextgraph.org:NextGraph/lmdb-rs.git --tags
# Change the lmdb-crypto-sys dependency in Cargo.toml back to a path dependency
# on the ./lmdb-sys directory.

Features

  • lmdb-sys.
  • Cursors.
  • Zero-copy put API.
  • Nested transactions.
  • Database statistics.