using lmdb-lofire instead of lmdb-rkv

without.crypto
Niko 2 years ago
parent 255fb411ef
commit 6a77fbbf56
  1. 10
      Cargo.toml

@ -42,14 +42,14 @@ name = "env-migration"
required-features = ["lmdb"]
[features]
lmdb = ["lmdb-rkv"]
lmdb = ["lmdb-lofire"]
db-dup-sort = []
db-int-key = []
default = ["db-dup-sort", "db-int-key"]
no-canonicalize-path = []
with-asan = ["lmdb", "lmdb-rkv/with-asan"]
with-fuzzer = ["lmdb", "lmdb-rkv/with-fuzzer"]
with-fuzzer-no-link = ["lmdb", "lmdb-rkv/with-fuzzer-no-link"]
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"]
[dependencies]
arrayref = "0.3"
@ -58,7 +58,7 @@ bitflags = "~1.2"
byteorder = "1"
id-arena = "2.2"
lazy_static = "1.1"
lmdb-rkv = { version = "0.14", optional = true }
lmdb-lofire = { 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"

Loading…
Cancel
Save