diff options
-rw-r--r-- | Cargo.lock | 39 | ||||
-rw-r--r-- | components/layout/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout_2020/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout_thread/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout_thread_2020/Cargo.toml | 2 | ||||
-rw-r--r-- | components/msg/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script_layout_interface/Cargo.toml | 2 | ||||
-rw-r--r-- | components/style/Cargo.toml | 2 | ||||
-rw-r--r-- | servo-tidy.toml | 1 |
10 files changed, 20 insertions, 36 deletions
diff --git a/Cargo.lock b/Cargo.lock index cfebb298572..db72fc04442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1885,7 +1885,7 @@ dependencies = [ "gfx-hal", "lazy_static", "log", - "metal 0.18.0", + "metal", "objc", "parking_lot 0.10.2", "range-alloc", @@ -2849,7 +2849,7 @@ dependencies = [ "msg", "net_traits", "num-traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "profile_traits", "range", "rayon", @@ -2893,7 +2893,7 @@ dependencies = [ "mitochondria", "msg", "net_traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "range", "rayon", "rayon_croissant", @@ -2935,7 +2935,7 @@ dependencies = [ "metrics", "msg", "net_traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "profile_traits", "range", "rayon", @@ -2980,7 +2980,7 @@ dependencies = [ "metrics", "msg", "net_traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "profile_traits", "range", "script", @@ -3388,21 +3388,6 @@ dependencies = [ [[package]] name = "metal" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f83c7dcc2038e12f68493fa3de44235df27b2497178e257185b4b5b5d028a1e4" -dependencies = [ - "bitflags", - "block", - "cocoa 0.19.1", - "core-graphics 0.17.3", - "foreign-types", - "log", - "objc", -] - -[[package]] -name = "metal" version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e198a0ee42bdbe9ef2c09d0b9426f3b2b47d90d93a4a9b0395c4cea605e92dc0" @@ -3599,7 +3584,7 @@ dependencies = [ "lazy_static", "malloc_size_of", "malloc_size_of_derive", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "serde", "servo_url", "size_of_test", @@ -4675,7 +4660,7 @@ dependencies = [ "msg", "net_traits", "num-traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "percent-encoding", "phf", "phf_codegen", @@ -4739,7 +4724,7 @@ dependencies = [ "metrics", "msg", "net_traits", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "profile_traits", "range", "script_traits", @@ -5567,7 +5552,7 @@ dependencies = [ "num-traits", "num_cpus", "owning_ref", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "precomputed-hash", "rayon", "regex", @@ -5651,7 +5636,7 @@ dependencies = [ [[package]] name = "surfman" version = "0.2.0" -source = "git+https://github.com/servo/surfman#bc084411664b04dba777659e5ce16b5f95b7371a" +source = "git+https://github.com/servo/surfman#2283acaa3a856c2f76028cb23b5dde7dc0030cdf" dependencies = [ "bitflags", "cfg_aliases", @@ -5667,9 +5652,9 @@ dependencies = [ "libc", "log", "mach", - "metal 0.17.1", + "metal", "objc", - "parking_lot 0.9.0", + "parking_lot 0.10.2", "wayland-sys 0.24.0", "winapi", "winit", diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index 7e4f227f40a..98bbc9d844c 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -33,7 +33,7 @@ malloc_size_of = { path = "../malloc_size_of" } msg = { path = "../msg" } net_traits = { path = "../net_traits" } num-traits = "0.2" -parking_lot = "0.9" +parking_lot = "0.10" profile_traits = { path = "../profile_traits" } range = { path = "../range" } rayon = "1" diff --git a/components/layout_2020/Cargo.toml b/components/layout_2020/Cargo.toml index e36acb4bffe..9805e971a95 100644 --- a/components/layout_2020/Cargo.toml +++ b/components/layout_2020/Cargo.toml @@ -30,7 +30,7 @@ log = "0.4" mitochondria = "1.1.2" msg = { path = "../msg" } net_traits = { path = "../net_traits" } -parking_lot = "0.9" +parking_lot = "0.10" range = { path = "../range" } rayon = "1" rayon_croissant = "0.2.0" diff --git a/components/layout_thread/Cargo.toml b/components/layout_thread/Cargo.toml index a2346c694e0..eaeb27169fb 100644 --- a/components/layout_thread/Cargo.toml +++ b/components/layout_thread/Cargo.toml @@ -32,7 +32,7 @@ malloc_size_of = { path = "../malloc_size_of" } metrics = { path = "../metrics" } msg = { path = "../msg" } net_traits = { path = "../net_traits" } -parking_lot = { version = "0.9", features = ["nightly"] } +parking_lot = { version = "0.10" } profile_traits = { path = "../profile_traits" } range = { path = "../range" } rayon = "1" diff --git a/components/layout_thread_2020/Cargo.toml b/components/layout_thread_2020/Cargo.toml index 29dcd58f924..ec10b32189e 100644 --- a/components/layout_thread_2020/Cargo.toml +++ b/components/layout_thread_2020/Cargo.toml @@ -31,7 +31,7 @@ malloc_size_of = { path = "../malloc_size_of" } metrics = { path = "../metrics" } msg = { path = "../msg" } net_traits = { path = "../net_traits" } -parking_lot = { version = "0.9", features = ["nightly"] } +parking_lot = { version = "0.10" } profile_traits = { path = "../profile_traits" } range = { path = "../range" } script = { path = "../script" } diff --git a/components/msg/Cargo.toml b/components/msg/Cargo.toml index ebcb26accee..771ca53feb9 100644 --- a/components/msg/Cargo.toml +++ b/components/msg/Cargo.toml @@ -17,7 +17,7 @@ ipc-channel = "0.14" lazy_static = "1" malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = "0.1" -parking_lot = "0.9" +parking_lot = "0.10" serde = "1.0.60" servo_url = { path = "../url" } webrender_api = { git = "https://github.com/servo/webrender" } diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 74639a9c4d6..8df03830ba8 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -79,7 +79,7 @@ mitochondria = "1.1.2" msg = { path = "../msg" } net_traits = { path = "../net_traits" } num-traits = "0.2" -parking_lot = "0.9" +parking_lot = "0.10" percent-encoding = "2.0" phf = "0.8" pixels = { path = "../pixels" } diff --git a/components/script_layout_interface/Cargo.toml b/components/script_layout_interface/Cargo.toml index 80724ac1295..022ea8cad10 100644 --- a/components/script_layout_interface/Cargo.toml +++ b/components/script_layout_interface/Cargo.toml @@ -26,7 +26,7 @@ malloc_size_of_derive = "0.1" metrics = {path = "../metrics"} msg = {path = "../msg"} net_traits = {path = "../net_traits"} -parking_lot = "0.9" +parking_lot = "0.10" profile_traits = {path = "../profile_traits"} range = {path = "../range"} script_traits = {path = "../script_traits"} diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index f3951107703..7c7e418a3a7 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -54,7 +54,7 @@ num-integer = "0.1" num-traits = "0.2" num-derive = "0.3" owning_ref = "0.4" -parking_lot = "0.9" +parking_lot = "0.10" precomputed-hash = "0.1.1" rayon = "1" selectors = { path = "../selectors" } diff --git a/servo-tidy.toml b/servo-tidy.toml index 3fe1f290113..480b9fd9ddc 100644 --- a/servo-tidy.toml +++ b/servo-tidy.toml @@ -35,7 +35,6 @@ packages = [ "peek-poke", "peek-poke-derive", "wayland-sys", - "metal", "parking_lot", "parking_lot_core", "ron", |