use newly published lmdb-rkv-sys crate with upgraded LMDB version 0.9.23

without.crypto
Myk Melez 6 years ago
parent 4202c597c0
commit ce8b7dd9e4
  1. 2
      Cargo.toml
  2. 4
      lmdb-sys/Cargo.toml
  3. 2
      src/lib.rs

@ -28,7 +28,7 @@ members = [
[dependencies]
bitflags = "1"
libc = "0.2"
lmdb-sys = "0.8.0"
lmdb-rkv-sys = "0.8.1"
[dev-dependencies]
rand = "0.4"

@ -7,9 +7,9 @@ authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
description = "Rust bindings for liblmdb."
repository = "https://github.com/danburkert/lmdb-rs.git"
repository = "https://github.com/mozilla/lmdb-rs.git"
readme = "../README.md"
documentation = "https://docs.rs/lmdb-sys"
documentation = "https://docs.rs/lmdb-rkv-sys"
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database", "external-ffi-bindings"]

@ -6,7 +6,7 @@
#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.11.1")]
extern crate libc;
extern crate lmdb_sys as ffi;
extern crate lmdb_rkv_sys as ffi;
#[cfg(test)] extern crate rand;
#[cfg(test)] extern crate tempdir;

Loading…
Cancel
Save