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"