Commit e5dd298d authored by Alexis Beingessner's avatar Alexis Beingessner
Browse files

Bug 1654807 - update thin-vec to 0.2.1 for potential endianess fix. r=froydnj

parent 6adf2fab
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -4952,12 +4952,9 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"

[[package]]
name = "thin-vec"
version = "0.1.0"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73fdf4b84c65a85168477b7fb6c498e0716bc9487fba24623389ea7f51708044"
dependencies = [
 "libc",
]
checksum = "dcc760ada4a9f56fc6d0e81bd143984ebc7bb1b875a6891aa2fa613ca7394fc0"

[[package]]
name = "thiserror"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ nsstring = { path = "../../xpcom/rust/nsstring" }
bincode = "1.0"
uuid = { version = "0.8", features = ["v4"] }
fxhash = "0.2.1"
thin-vec = { version = "0.1.0", features = ["gecko-ffi"] }
thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
swgl = { path = "../wr/swgl" }
wr_malloc_size_of = { path = "../wr/wr_malloc_size_of" }

+1 −1
Original line number Diff line number Diff line
@@ -10,4 +10,4 @@ fluent-pseudo = "0.2"
intl-memoizer = "0.5"
unic-langid = "0.9"
nsstring = { path = "../../../../xpcom/rust/nsstring" }
thin-vec = { version = "0.1.0", features = ["gecko-ffi"] }
thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ edition = "2018"
nserror = { path = "../../../../xpcom/rust/nserror" }
nsstring = { path = "../../../../xpcom/rust/nsstring" }
xpcom = { path = "../../../../xpcom/rust/xpcom" }
thin-vec = { version = "0.1.0", features = ["gecko-ffi"] }
thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
fluent-langneg = { version = "0.13", features = ["cldr"] }
unic-langid = "0.9"
unic-langid-ffi = { path = "../unic-langid-ffi" }
+1 −1
Original line number Diff line number Diff line
@@ -9,5 +9,5 @@ edition = "2018"
nserror = { path = "../../../../xpcom/rust/nserror" }
nsstring = { path = "../../../../xpcom/rust/nsstring" }
xpcom = { path = "../../../../xpcom/rust/xpcom" }
thin-vec = { version = "0.1.0", features = ["gecko-ffi"] }
thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
unic-langid = { version = "0.9", features = ["likelysubtags"] }
Loading