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.
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "lmdb"
|
|
|
|
version = "0.5.0"
|
|
|
|
authors = ["Dan Burkert <dan@danburkert.com>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
|
|
|
description = "Idiomatic and safe LMDB wrapper."
|
|
|
|
repository = "https://github.com/danburkert/lmdb-rs.git"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
|
|
|
|
documentation = "http://danburkert.github.io/lmdb-rs/lmdb/index.html"
|
|
|
|
|
|
|
|
[dependencies.lmdb-sys]
|
|
|
|
path = "lmdb-sys"
|
|
|
|
version = "0.5.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "0.4"
|
|
|
|
libc = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.3"
|
|
|
|
tempdir = "0.3"
|