From d29153d440d0b36fd6c29a609ce58010eb820595 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 1 Sep 2022 14:39:44 +0300 Subject: [PATCH] use lmdb-crypto-rs --- Cargo.toml | 10 +++++----- README.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e36c792..5eaabc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,14 +43,14 @@ name = "env-migration" required-features = ["lmdb"] [features] -lmdb = ["lmdb-lofire"] +lmdb = ["lmdb-crypto-rs"] db-dup-sort = [] db-int-key = [] default = ["db-dup-sort", "db-int-key"] no-canonicalize-path = [] -with-asan = ["lmdb", "lmdb-lofire/with-asan"] -with-fuzzer = ["lmdb", "lmdb-lofire/with-fuzzer"] -with-fuzzer-no-link = ["lmdb", "lmdb-lofire/with-fuzzer-no-link"] +with-asan = ["lmdb", "lmdb-crypto-rs/with-asan"] +with-fuzzer = ["lmdb", "lmdb-crypto-rs/with-fuzzer"] +with-fuzzer-no-link = ["lmdb", "lmdb-crypto-rs/with-fuzzer-no-link"] [dependencies] arrayref = "0.3" @@ -59,7 +59,7 @@ bitflags = "~1.2" byteorder = "1" id-arena = "2.2" lazy_static = "1.1" -lmdb-lofire = { git = "https://github.com/nikoPLP/lmdb-rs.git", branch = "master", optional = true } +lmdb-crypto-rs = { git = "https://github.com/nikoPLP/lmdb-rs.git", branch = "master", optional = true } log = "0.4.4" ordered-float = "3.0.0" paste = "1.0.6" diff --git a/README.md b/README.md index 4dc55ce..fa87fea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# rkv-lofire +# rkv-crypto This repo is a fork of [mozilla/rkv](https://github.com/mozilla/rkv) that enables encryption of data at rest in LMDB. @@ -6,7 +6,7 @@ This repo is a fork of [mozilla/rkv](https://github.com/mozilla/rkv) that enable [![Documentation](https://docs.rs/rkv/badge.svg)](https://docs.rs/rkv/) [![Crate](https://img.shields.io/crates/v/rkv.svg)](https://crates.io/crates/rkv) -The [rkv Rust crate](https://crates.io/crates/rkv-lofire) is a simple, humane, typed key-value storage solution. It supports multiple backend engines with varying guarantees, such as [LMDB](http://www.lmdb.tech/doc/) for performance, or "SafeMode" for reliability. +The [rkv Rust crate](https://crates.io/crates/rkv-crypto) is a simple, humane, typed key-value storage solution. It supports multiple backend engines with varying guarantees, such as [LMDB](http://www.lmdb.tech/doc/) for performance, or "SafeMode" for reliability. ## ⚠️ Warning ⚠️