without.crypto 0.3.0
Dan Burkert 9 years ago
parent 79f36662df
commit ec3cde7df7
  1. 8
      Cargo.toml
  2. 10
      lmdb-sys/Cargo.toml
  3. 3
      lmdb-sys/src/lib.rs

@ -1,14 +1,15 @@
[package]
name = "lmdb"
version = "0.2.0"
version = "0.3.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
description = "Safe Rust bindings for LMDB"
description = "Idiomatic and safe LMDB wrapper."
repository = "https://github.com/danburkert/lmdb-rs.git"
readme = "README.md"
keywords = ["LMDB", "database", "storage-engine", "key-value-store", "bindings", "library"]
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
documentation = "http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb/"
[lib]
@ -16,6 +17,7 @@ name = "lmdb"
[dependencies.lmdb-sys]
path = "lmdb-sys"
version = "0.3.0"
[dependencies]
bitflags = "*"

@ -1,9 +1,14 @@
[package]
name = "lmdb-sys"
version = "0.2.0"
version = "0.3.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
description = "Rust bindings for liblmdb."
repository = "https://github.com/danburkert/lmdb-rs.git"
readme = "../README.md"
documentation = "http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb-sys/"
links = "lmdb"
build = "build.rs"
@ -15,6 +20,3 @@ name = "lmdb-sys"
[build-dependencies]
pkg-config = "*"
gcc = "*"
[dependencies]
bitflags = "*"

@ -10,9 +10,6 @@
extern crate libc;
#[macro_use]
extern crate bitflags;
pub use constants::*;
pub use ffi::*;

Loading…
Cancel
Save