change README to reflect change of package name

without.crypto
Niko 2 years ago
parent af9edd775f
commit 21f7436178
  1. 11
      README.md

@ -6,7 +6,8 @@
Idiomatic and safe APIs for interacting with the
[Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/).
This repo is a fork of [danburkert/lmdb-rs](https://github.com/danburkert/lmdb-rs)
This repo is a fork of [mozilla/lmdb-rs](https://github.com/mozilla/lmdb-rs) that enables encryption of data at rest in LMDB.
lmdb-rs is itself a fork of [danburkert/lmdb-rs](https://github.com/danburkert/lmdb-rs)
with fixes for issues encountered by [mozilla/rkv](https://github.com/mozilla/rkv).
## Building from Source
@ -19,14 +20,14 @@ cargo build
## Publishing to crates.io
To publish the lmdb-rkv-sys crate to crates.io:
To publish the lmdb-lofire-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 tag lmdb-lofire-sys-$VERSION # where $VERSION is the updated version string
git push git@github.com:mozilla/lmdb-rs.git --tags
```
@ -36,11 +37,11 @@ To publish the lmdb-rkv crate to crates.io:
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.
# the lmdb-lofire-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
# Change the lmdb-lofire-sys dependency in Cargo.toml back to a path dependency
# on the ./lmdb-sys directory.
```

Loading…
Cancel
Save