prioritize testing lmdb-rkv with in-tree lmdb-rkv-sys; document publication

without.crypto
Myk Melez 5 years ago
parent 04e544977f
commit 3f8057bfe2
  1. 11
      Cargo.toml
  2. 27
      README.md

@ -37,7 +37,16 @@ members = [
bitflags = "1"
byteorder = "1.0"
libc = "0.2"
lmdb-rkv-sys = "0.8.3"
# In order to ensure that we test lmdb-rkv in CI against the in-tree version
# of lmdb-rkv-sys, we specify the dependency as a path here.
#
# But we can't publish the lmdb-rkv crate to crates.io with a path dependency,
# so we have to temporarily change this to point to the current version
# of lmdb-rkv-sys on crates.io when publishing lmdb-rkv to that crate registry.
#
# (See "Publishing to crates.io" in README.md for more information.)
lmdb-rkv-sys = { path = "./lmdb-sys" }
[dev-dependencies]
rand = "0.4"

@ -17,6 +17,33 @@ cd lmdb-rs
cargo build
```
## Publishing to crates.io
To publish the lmdb-rkv-sys crate to crates.io:
```bash
git clone --recursive git@github.com:mozilla/lmdb-rs.git
cd lmdb-rs/lmdb-sys
# Update the version string in lmdb-sys/Cargo.toml and lmdb-sys/src/lib.rs.
cargo publish
git tag lmdb-rkv-sys-$VERSION # where $VERSION is the updated version string
git push git@github.com:mozilla/lmdb-rs.git --tags
```
To publish the lmdb-rkv crate to crates.io:
```bash
git clone --recursive git@github.com:mozilla/lmdb-rs.git
cd lmdb-rs
# Update the version string in Cargo.toml and src/lib.rs and temporarily change
# the lmdb-rkv-sys dependency in Cargo.toml to the latest version on crates.io.
cargo publish
git tag $VERSION # where $VERSION is the updated version string
git push git@github.com:mozilla/lmdb-rs.git --tags
# Change the lmdb-rkv-sys dependency in Cargo.toml back to a path dependency
# on the ./lmdb-sys directory.
```
## Features
* [x] lmdb-sys.

Loading…
Cancel
Save