Bump lmdb and lmdb-sys versions to 0.12.3 and 0.9.3 respectively

Signed-off-by: Victor Porof <victor.porof@gmail.com>
without.crypto 0.12.3
Victor Porof 5 years ago
parent 07a1d767f0
commit a0f3c05434
  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]
name = "lmdb-rkv"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.12.2"
version = "0.12.3"
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"]
license = "Apache-2.0"
description = "Idiomatic and safe LMDB wrapper."

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

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

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

Loading…
Cancel
Save