From 6d345e6ceb062a7f345f9502b068adbabacf6131 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Thu, 2 Aug 2018 10:19:53 -0700 Subject: [PATCH] prepare to publish on crates.io as lmdb-rkv package --- Cargo.toml | 14 +++++++------- src/lib.rs | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 82ed4ed..a95f260 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,21 +1,21 @@ [package] -name = "lmdb" +name = "lmdb-rkv" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.8.0" +version = "0.8.1" authors = ["Dan Burkert "] license = "Apache-2.0" 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" -documentation = "https://docs.rs/lmdb" +documentation = "https://docs.rs/lmdb-rkv" keywords = ["LMDB", "database", "storage-engine", "bindings", "library"] categories = ["database"] [badges] -travis-ci = { repository = "danburkert/lmdb-rs" } -appveyor = { repository = "danburkert/lmdb-rs" } +travis-ci = { repository = "mozilla/lmdb-rs" } +appveyor = { repository = "mozilla/lmdb-rs" } [workspace] members = [ @@ -25,7 +25,7 @@ members = [ [dependencies] bitflags = "1" libc = "0.2" -lmdb-sys = { version = "0.8.0", path = "lmdb-sys" } +lmdb-sys = "0.8.0" [dev-dependencies] rand = "0.4" diff --git a/src/lib.rs b/src/lib.rs index bee6bfe..5b4df88 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![cfg_attr(test, feature(test))] #![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 lmdb_sys as ffi;