without.crypto 0.8.0
Dan Burkert 7 years ago
parent 5a70b18c0a
commit 90e8880995
  1. 4
      Cargo.toml
  2. 2
      lmdb-sys/Cargo.toml
  3. 2
      lmdb-sys/src/lib.rs
  4. 2
      src/lib.rs

@ -2,7 +2,7 @@
name = "lmdb"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.7.2"
version = "0.8.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
@ -25,7 +25,7 @@ members = [
[dependencies]
bitflags = "1"
libc = "0.2"
lmdb-sys = { version = "0.7.2", path = "lmdb-sys" }
lmdb-sys = { version = "0.8.0", path = "lmdb-sys" }
[dev-dependencies]
rand = "0.4"

@ -2,7 +2,7 @@
name = "lmdb-sys"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.7.2"
version = "0.8.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"

@ -1,6 +1,6 @@
#![allow(non_camel_case_types)]
#![deny(warnings)]
#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.7.2")]
#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.8.0")]
extern crate libc;

@ -3,7 +3,7 @@
#![cfg_attr(test, feature(test))]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/lmdb/0.7.2")]
#![doc(html_root_url = "https://docs.rs/lmdb/0.8.0")]
extern crate libc;
extern crate lmdb_sys as ffi;

Loading…
Cancel
Save