Merge pull request #7 from mykmelez/publish-as-lmdb-rkv

prepare to publish on crates.io as lmdb-rkv package
without.crypto 0.8.1
Myk Melez 6 years ago committed by GitHub
commit 6cbb067e00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      Cargo.toml
  2. 2
      src/lib.rs

@ -1,21 +1,21 @@
[package] [package]
name = "lmdb" name = "lmdb-rkv"
# NB: When modifying, also modify html_root_url in lib.rs # NB: When modifying, also modify html_root_url in lib.rs
version = "0.8.0" version = "0.8.1"
authors = ["Dan Burkert <dan@danburkert.com>"] authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "Idiomatic and safe LMDB wrapper." description = "Idiomatic and safe LMDB wrapper."
repository = "https://github.com/danburkert/lmdb-rs.git" repository = "https://github.com/mozilla/lmdb-rs.git"
readme = "README.md" readme = "README.md"
documentation = "https://docs.rs/lmdb" documentation = "https://docs.rs/lmdb-rkv"
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"] keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database"] categories = ["database"]
[badges] [badges]
travis-ci = { repository = "danburkert/lmdb-rs" } travis-ci = { repository = "mozilla/lmdb-rs" }
appveyor = { repository = "danburkert/lmdb-rs" } appveyor = { repository = "mozilla/lmdb-rs" }
[workspace] [workspace]
members = [ members = [
@ -25,7 +25,7 @@ members = [
[dependencies] [dependencies]
bitflags = "1" bitflags = "1"
libc = "0.2" libc = "0.2"
lmdb-sys = { version = "0.8.0", path = "lmdb-sys" } lmdb-sys = "0.8.0"
[dev-dependencies] [dev-dependencies]
rand = "0.4" rand = "0.4"

@ -3,7 +3,7 @@
#![cfg_attr(test, feature(test))] #![cfg_attr(test, feature(test))]
#![deny(missing_docs)] #![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/lmdb/0.8.0")] #![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.8.1")]
extern crate libc; extern crate libc;
extern crate lmdb_sys as ffi; extern crate lmdb_sys as ffi;

Loading…
Cancel
Save