Fix an embarrassing typo in #68. (#69)

Sigh. The line as it is is just 0.51, which is fine, kinda, but doesn't
accomplish what I want :(
without.crypto
Emilio Cobos Álvarez 5 years ago committed by Victor Porof
parent bab675502f
commit ea0d09ff02
  1. 4
      lmdb-sys/Cargo.toml
  2. 2
      lmdb-sys/src/lib.rs

@ -1,7 +1,7 @@
[package]
name = "lmdb-rkv-sys"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.9.4"
version = "0.9.5"
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"]
license = "Apache-2.0"
description = "Rust bindings for liblmdb."
@ -29,7 +29,7 @@ libc = "0.2"
[build-dependencies]
pkg-config = "0.3"
cc = "1.0"
bindgen = { version = "0.51-oldsyn", default-features = false }
bindgen = { version = "0.51.1-oldsyn", default-features = false }
[features]
default = []

@ -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.4")]
#![doc(html_root_url = "https://docs.rs/lmdb-rkv-sys/0.9.5")]
extern crate libc;

Loading…
Cancel
Save