mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Update parking_lot.
This commit is contained in:
parent
d9a1a9ddc1
commit
a24a4f0608
8 changed files with 14 additions and 14 deletions
14
Cargo.lock
generated
14
Cargo.lock
generated
|
@ -3101,7 +3101,7 @@ dependencies = [
|
||||||
"msg",
|
"msg",
|
||||||
"net_traits",
|
"net_traits",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"profile_traits",
|
"profile_traits",
|
||||||
"range",
|
"range",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -3146,7 +3146,7 @@ dependencies = [
|
||||||
"mitochondria",
|
"mitochondria",
|
||||||
"msg",
|
"msg",
|
||||||
"net_traits",
|
"net_traits",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"quickcheck",
|
"quickcheck",
|
||||||
"range",
|
"range",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -3188,7 +3188,7 @@ dependencies = [
|
||||||
"metrics",
|
"metrics",
|
||||||
"msg",
|
"msg",
|
||||||
"net_traits",
|
"net_traits",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"profile_traits",
|
"profile_traits",
|
||||||
"range",
|
"range",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
@ -3864,7 +3864,7 @@ dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"malloc_size_of",
|
"malloc_size_of",
|
||||||
"malloc_size_of_derive",
|
"malloc_size_of_derive",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"serde",
|
"serde",
|
||||||
"size_of_test",
|
"size_of_test",
|
||||||
"webrender_api",
|
"webrender_api",
|
||||||
|
@ -5147,7 +5147,7 @@ dependencies = [
|
||||||
"msg",
|
"msg",
|
||||||
"net_traits",
|
"net_traits",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"phf",
|
"phf",
|
||||||
"phf_codegen",
|
"phf_codegen",
|
||||||
|
@ -5210,7 +5210,7 @@ dependencies = [
|
||||||
"metrics",
|
"metrics",
|
||||||
"msg",
|
"msg",
|
||||||
"net_traits",
|
"net_traits",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"profile_traits",
|
"profile_traits",
|
||||||
"range",
|
"range",
|
||||||
"script_traits",
|
"script_traits",
|
||||||
|
@ -6048,7 +6048,7 @@ dependencies = [
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"num_cpus",
|
"num_cpus",
|
||||||
"owning_ref",
|
"owning_ref",
|
||||||
"parking_lot 0.10.2",
|
"parking_lot 0.11.0",
|
||||||
"precomputed-hash",
|
"precomputed-hash",
|
||||||
"rayon",
|
"rayon",
|
||||||
"regex",
|
"regex",
|
||||||
|
|
|
@ -31,7 +31,7 @@ malloc_size_of = { path = "../malloc_size_of" }
|
||||||
msg = { path = "../msg" }
|
msg = { path = "../msg" }
|
||||||
net_traits = { path = "../net_traits" }
|
net_traits = { path = "../net_traits" }
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
profile_traits = { path = "../profile_traits" }
|
profile_traits = { path = "../profile_traits" }
|
||||||
range = { path = "../range" }
|
range = { path = "../range" }
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
|
|
|
@ -30,7 +30,7 @@ log = "0.4"
|
||||||
mitochondria = "1.1.2"
|
mitochondria = "1.1.2"
|
||||||
msg = { path = "../msg" }
|
msg = { path = "../msg" }
|
||||||
net_traits = { path = "../net_traits" }
|
net_traits = { path = "../net_traits" }
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
range = { path = "../range" }
|
range = { path = "../range" }
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
rayon_croissant = "0.2.0"
|
rayon_croissant = "0.2.0"
|
||||||
|
|
|
@ -32,7 +32,7 @@ malloc_size_of = { path = "../malloc_size_of" }
|
||||||
metrics = { path = "../metrics" }
|
metrics = { path = "../metrics" }
|
||||||
msg = { path = "../msg" }
|
msg = { path = "../msg" }
|
||||||
net_traits = { path = "../net_traits" }
|
net_traits = { path = "../net_traits" }
|
||||||
parking_lot = { version = "0.10" }
|
parking_lot = { version = "0.11" }
|
||||||
profile_traits = { path = "../profile_traits" }
|
profile_traits = { path = "../profile_traits" }
|
||||||
range = { path = "../range" }
|
range = { path = "../range" }
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
|
|
|
@ -17,7 +17,7 @@ ipc-channel = "0.14"
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
malloc_size_of = { path = "../malloc_size_of" }
|
malloc_size_of = { path = "../malloc_size_of" }
|
||||||
malloc_size_of_derive = "0.1"
|
malloc_size_of_derive = "0.1"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
serde = "1.0.60"
|
serde = "1.0.60"
|
||||||
webrender_api = { git = "https://github.com/servo/webrender" }
|
webrender_api = { git = "https://github.com/servo/webrender" }
|
||||||
|
|
||||||
|
|
|
@ -78,7 +78,7 @@ mitochondria = "1.1.2"
|
||||||
msg = { path = "../msg" }
|
msg = { path = "../msg" }
|
||||||
net_traits = { path = "../net_traits" }
|
net_traits = { path = "../net_traits" }
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
percent-encoding = "2.0"
|
percent-encoding = "2.0"
|
||||||
phf = "0.8"
|
phf = "0.8"
|
||||||
pixels = { path = "../pixels" }
|
pixels = { path = "../pixels" }
|
||||||
|
|
|
@ -26,7 +26,7 @@ malloc_size_of_derive = "0.1"
|
||||||
metrics = { path = "../metrics" }
|
metrics = { path = "../metrics" }
|
||||||
msg = { path = "../msg" }
|
msg = { path = "../msg" }
|
||||||
net_traits = { path = "../net_traits" }
|
net_traits = { path = "../net_traits" }
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
profile_traits = { path = "../profile_traits" }
|
profile_traits = { path = "../profile_traits" }
|
||||||
range = { path = "../range" }
|
range = { path = "../range" }
|
||||||
script_traits = { path = "../script_traits" }
|
script_traits = { path = "../script_traits" }
|
||||||
|
|
|
@ -56,7 +56,7 @@ num-integer = "0.1"
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
num_cpus = { version = "1.1.0", optional = true }
|
num_cpus = { version = "1.1.0", optional = true }
|
||||||
owning_ref = "0.4"
|
owning_ref = "0.4"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.11"
|
||||||
precomputed-hash = "0.1.1"
|
precomputed-hash = "0.1.1"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors" }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue