Bump lmdb and lmdb-sys versions to 0.12.2 and 0.9.2 respectively

Signed-off-by: Victor Porof <victor.porof@gmail.com>
without.crypto 0.12.2
Victor Porof 5 years ago
parent 6b47f7923a
commit 31b148f897
  1. 2
      Cargo.toml
  2. 2
      lmdb-sys/Cargo.toml
  3. 2
      lmdb-sys/src/lib.rs
  4. 2
      src/lib.rs

@ -1,7 +1,7 @@
[package] [package]
name = "lmdb-rkv" name = "lmdb-rkv"
# NB: When modifying, also modify html_root_url in lib.rs # NB: When modifying, also modify html_root_url in lib.rs
version = "0.12.1" version = "0.12.2"
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"] authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "Idiomatic and safe LMDB wrapper." description = "Idiomatic and safe LMDB wrapper."

@ -1,7 +1,7 @@
[package] [package]
name = "lmdb-rkv-sys" name = "lmdb-rkv-sys"
# NB: When modifying, also modify html_root_url in lib.rs # NB: When modifying, also modify html_root_url in lib.rs
version = "0.9.1" version = "0.9.2"
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"] authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "Rust bindings for liblmdb." description = "Rust bindings for liblmdb."

@ -1,7 +1,7 @@
#![deny(warnings)] #![deny(warnings)]
#![allow(non_camel_case_types)] #![allow(non_camel_case_types)]
#![allow(clippy::all)] #![allow(clippy::all)]
#![doc(html_root_url = "https://docs.rs/lmdb-rkv-sys/0.9.1")] #![doc(html_root_url = "https://docs.rs/lmdb-rkv-sys/0.9.2")]
extern crate libc; extern crate libc;

@ -2,7 +2,7 @@
//! [Lightning Memory-mapped Database (LMDB)](https://symas.com/lmdb). //! [Lightning Memory-mapped Database (LMDB)](https://symas.com/lmdb).
#![deny(missing_docs)] #![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.12.1")] #![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.12.2")]
extern crate byteorder; extern crate byteorder;
extern crate libc; extern crate libc;

Loading…
Cancel
Save