Skip to content

Commit 6cbb067

Browse files
authored
Merge pull request danburkert#7 from mykmelez/publish-as-lmdb-rkv
prepare to publish on crates.io as lmdb-rkv package
2 parents 6bc9c2d + 6d345e6 commit 6cbb067

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[package]
22

3-
name = "lmdb"
3+
name = "lmdb-rkv"
44
# NB: When modifying, also modify html_root_url in lib.rs
5-
version = "0.8.0"
5+
version = "0.8.1"
66
authors = ["Dan Burkert <[email protected]>"]
77
license = "Apache-2.0"
88

99
description = "Idiomatic and safe LMDB wrapper."
10-
repository = "https://github.com/danburkert/lmdb-rs.git"
10+
repository = "https://github.com/mozilla/lmdb-rs.git"
1111
readme = "README.md"
12-
documentation = "https://docs.rs/lmdb"
12+
documentation = "https://docs.rs/lmdb-rkv"
1313
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
1414
categories = ["database"]
1515

1616
[badges]
17-
travis-ci = { repository = "danburkert/lmdb-rs" }
18-
appveyor = { repository = "danburkert/lmdb-rs" }
17+
travis-ci = { repository = "mozilla/lmdb-rs" }
18+
appveyor = { repository = "mozilla/lmdb-rs" }
1919

2020
[workspace]
2121
members = [
@@ -25,7 +25,7 @@ members = [
2525
[dependencies]
2626
bitflags = "1"
2727
libc = "0.2"
28-
lmdb-sys = { version = "0.8.0", path = "lmdb-sys" }
28+
lmdb-sys = "0.8.0"
2929

3030
[dev-dependencies]
3131
rand = "0.4"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#![cfg_attr(test, feature(test))]
55
#![deny(missing_docs)]
6-
#![doc(html_root_url = "https://docs.rs/lmdb/0.8.0")]
6+
#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.8.1")]
77

88
extern crate libc;
99
extern crate lmdb_sys as ffi;

0 commit comments

Comments
 (0)