Bug 1654192 - Part 1: Update RKV dependency to safe-mode, r=nanj

Differential Revision: https://phabricator.services.mozilla.com/D85314
This commit is contained in:
Victor Porof 2020-07-31 10:40:13 +00:00
parent 9c012844a3
commit 0044c9f575
3 changed files with 2 additions and 6 deletions

4
Cargo.lock generated
View File

@ -2517,7 +2517,6 @@ dependencies = [
"failure", "failure",
"lazy_static", "lazy_static",
"libc", "libc",
"lmdb-rkv",
"log", "log",
"moz_task", "moz_task",
"nserror", "nserror",
@ -5846,13 +5845,12 @@ dependencies = [
"cstr", "cstr",
"failure", "failure",
"libc", "libc",
"lmdb-rkv",
"log", "log",
"moz_task", "moz_task",
"nserror", "nserror",
"nsstring", "nsstring",
"once_cell", "once_cell",
"rkv 0.10.4", "rkv 0.15.0",
"serde_json", "serde_json",
"tempfile", "tempfile",
"xpcom", "xpcom",

View File

@ -9,7 +9,6 @@ crossbeam-utils = "0.6.3"
cstr = "0.1" cstr = "0.1"
lazy_static = "1" lazy_static = "1"
libc = "0.2" libc = "0.2"
lmdb-rkv = "0.14"
log = "0.4" log = "0.4"
moz_task = { path = "../../../xpcom/rust/moz_task" } moz_task = { path = "../../../xpcom/rust/moz_task" }
nserror = { path = "../../../xpcom/rust/nserror" } nserror = { path = "../../../xpcom/rust/nserror" }

View File

@ -8,13 +8,12 @@ license = "MPL-2.0"
crossbeam-utils = "0.6.3" crossbeam-utils = "0.6.3"
cstr = "0.1" cstr = "0.1"
libc = "0.2" libc = "0.2"
lmdb-rkv = "0.14"
log = "0.4" log = "0.4"
moz_task = { path = "../../../xpcom/rust/moz_task" } moz_task = { path = "../../../xpcom/rust/moz_task" }
nsstring = { path = "../../../xpcom/rust/nsstring" } nsstring = { path = "../../../xpcom/rust/nsstring" }
nserror = { path = "../../../xpcom/rust/nserror" } nserror = { path = "../../../xpcom/rust/nserror" }
once_cell = "1" once_cell = "1"
rkv = "0.10.2" rkv = { version = "0.15.0", default-features = false }
serde_json = "1" serde_json = "1"
tempfile = "3" tempfile = "3"
xpcom = { path = "../../../xpcom/rust/xpcom" } xpcom = { path = "../../../xpcom/rust/xpcom" }