From a27d07bc4e2a84a9aad2d5923ddf9af939665630 Mon Sep 17 00:00:00 2001 From: Dan Burkert Date: Mon, 30 Nov 2015 20:26:58 -0800 Subject: [PATCH] 0.5.0 --- Cargo.toml | 8 ++------ lmdb-sys/Cargo.toml | 8 ++++---- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 530e901..43b379f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lmdb" -version = "0.4.3" +version = "0.5.0" authors = ["Dan Burkert "] license = "Apache-2.0" @@ -11,13 +11,9 @@ readme = "README.md" keywords = ["LMDB", "database", "storage-engine", "bindings", "library"] documentation = "http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb/" -[lib] - -name = "lmdb" - [dependencies.lmdb-sys] path = "lmdb-sys" -version = "0.4.3" +version = "0.5.0" [dependencies] bitflags = "0.3" diff --git a/lmdb-sys/Cargo.toml b/lmdb-sys/Cargo.toml index cbdfa41..3eb6ef0 100644 --- a/lmdb-sys/Cargo.toml +++ b/lmdb-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lmdb-sys" -version = "0.4.3" +version = "0.5.0" authors = ["Dan Burkert "] license = "Apache-2.0" description = "Rust bindings for liblmdb." @@ -12,8 +12,8 @@ documentation = "http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb-sys/" build = "build.rs" [dependencies] -libc = "*" +libc = "0.2" [build-dependencies] -pkg-config = "*" -gcc = "*" +pkg-config = "0.3" +gcc = "0.3"