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.
lmdb-rs/Cargo.toml

34 lines
733 B

10 years ago
[package]
name = "lmdb"
# NB: When modifying, also modify html_root_url in lib.rs
7 years ago
version = "0.7.1"
10 years ago
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
10 years ago
description = "Idiomatic and safe LMDB wrapper."
10 years ago
repository = "https://github.com/danburkert/lmdb-rs.git"
readme = "README.md"
documentation = "https://docs.rs/lmdb"
10 years ago
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database"]
10 years ago
[badges]
travis-ci = { repository = "danburkert/lmdb-rs" }
appveyor = { repository = "danburkert/lmdb-rs" }
[workspace]
members = [
"lmdb-sys",
]
[dependencies]
bitflags = "0.9"
libc = "0.2"
lmdb-sys = { path = "lmdb-sys" }
[dev-dependencies]
rand = "0.3"
tempdir = "0.3"
byteorder = "1.0"