Bump lmdb-rkv from 0.12.3 to 0.14.0

Bumps [lmdb-rkv](https://github.com/mozilla/lmdb-rs) from 0.12.3 to 0.14.0.
- [Release notes](https://github.com/mozilla/lmdb-rs/releases)
- [Commits](https://github.com/mozilla/lmdb-rs/compare/0.12.3...0.14.0)

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2021-03-30 07:43:23 +00:00 committed by GitHub
parent 74041221e7
commit af39be175c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 4 deletions

29
Cargo.lock generated
View file

@ -1149,7 +1149,7 @@ version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb79e59d356a5ae85b13990bbb3649a293d64df1ca6e7890822076186527a9f7"
dependencies = [
"lmdb-rkv",
"lmdb-rkv 0.12.3",
"rmp-serde",
"serde",
"thiserror",
@ -1202,7 +1202,19 @@ dependencies = [
"bitflags",
"byteorder",
"libc",
"lmdb-rkv-sys",
"lmdb-rkv-sys 0.9.6",
]
[[package]]
name = "lmdb-rkv"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "447a296f7aca299cfbb50f4e4f3d49451549af655fb7215d7f8c0c3d64bad42b"
dependencies = [
"bitflags",
"byteorder",
"libc",
"lmdb-rkv-sys 0.11.0",
]
[[package]]
@ -1216,6 +1228,17 @@ dependencies = [
"pkg-config",
]
[[package]]
name = "lmdb-rkv-sys"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b27470ac25167b3afdfb6af8fcd3bc1be67de50ffbdaf4073378cfded6ae24a5"
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "lock_api"
version = "0.4.2"
@ -2125,7 +2148,7 @@ dependencies = [
"anyhow",
"chrono",
"kv",
"lmdb-rkv",
"lmdb-rkv 0.14.0",
"log",
"proptest",
"serde",

View file

@ -18,7 +18,7 @@ chrono = { version = "^0.4.10", features = ["serde"] }
anyhow = "1.0"
thiserror = "1.0"
kv = {version = "^0.10.0", features = ["msgpack-value"]}
lmdb-rkv = {version = "^0.12.3"}
lmdb-rkv = {version = "^0.14.0"}
ureq = "^2.1.0"
log = "^0.4.14"
tindercrypt = { version = "^0.2.2", default-features = false }