From 4750e68382dc06c934bfd50999bd71451950d682 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 23 Oct 2020 13:34:48 -0400 Subject: [PATCH] Pin git revisions of dependencies that aren't compatible in newer revisions. --- Cargo.lock | 8 ++++---- components/bluetooth/Cargo.toml | 2 +- components/webgpu/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9cbeee4633..62dbecca6cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ checksum = "19b23557dd27704797128f9db2816416bef20dad62d4a9768714eeb65f07d296" [[package]] name = "blurmac" version = "0.1.0" -source = "git+https://github.com/servo/devices#cb28c4725ffbfece99dab842d17d3e8c50774778" +source = "git+https://github.com/servo/devices?rev=cb28c4725ffbfece99dab842d17d3e8c50774778#cb28c4725ffbfece99dab842d17d3e8c50774778" dependencies = [ "log", "objc", @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "device" version = "0.0.1" -source = "git+https://github.com/servo/devices#cb28c4725ffbfece99dab842d17d3e8c50774778" +source = "git+https://github.com/servo/devices?rev=cb28c4725ffbfece99dab842d17d3e8c50774778#cb28c4725ffbfece99dab842d17d3e8c50774778" dependencies = [ "blurdroid", "blurmac", @@ -7044,7 +7044,7 @@ dependencies = [ [[package]] name = "wgpu-core" version = "0.6.0" -source = "git+https://github.com/gfx-rs/wgpu#e72724a6e393503c73f37e86aa9317a5c62e32b8" +source = "git+https://github.com/gfx-rs/wgpu?rev=e72724a6e393503c73f37e86aa9317a5c62e32b8#e72724a6e393503c73f37e86aa9317a5c62e32b8" dependencies = [ "arrayvec 0.5.1", "bitflags", @@ -7072,7 +7072,7 @@ dependencies = [ [[package]] name = "wgpu-types" version = "0.6.0" -source = "git+https://github.com/gfx-rs/wgpu#e72724a6e393503c73f37e86aa9317a5c62e32b8" +source = "git+https://github.com/gfx-rs/wgpu?rev=e72724a6e393503c73f37e86aa9317a5c62e32b8#e72724a6e393503c73f37e86aa9317a5c62e32b8" dependencies = [ "bitflags", "serde", diff --git a/components/bluetooth/Cargo.toml b/components/bluetooth/Cargo.toml index 0573265aa9c..655cd52624a 100644 --- a/components/bluetooth/Cargo.toml +++ b/components/bluetooth/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" [dependencies] bitflags = "1.0" bluetooth_traits = { path = "../bluetooth_traits" } -device = { git = "https://github.com/servo/devices", features = ["bluetooth-test"] } +device = { git = "https://github.com/servo/devices", features = ["bluetooth-test"], rev = "cb28c4725ffbfece99dab842d17d3e8c50774778" } embedder_traits = { path = "../embedder_traits" } ipc-channel = "0.14" log = "0.4" diff --git a/components/webgpu/Cargo.toml b/components/webgpu/Cargo.toml index cb9421e8d6b..83ad50e2287 100644 --- a/components/webgpu/Cargo.toml +++ b/components/webgpu/Cargo.toml @@ -22,5 +22,5 @@ servo_config = { path = "../config" } smallvec = { version = "0.6", features = ["serde"] } webrender_api = { git = "https://github.com/servo/webrender" } webrender_traits = { path = "../webrender_traits" } -wgpu-core = { version = "0.6.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace", "serial-pass"] } -wgpu-types = { version = "0.6.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace"] } +wgpu-core = { version = "0.6.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace", "serial-pass"], rev = "e72724a6e393503c73f37e86aa9317a5c62e32b8" } +wgpu-types = { version = "0.6.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace"], rev = "e72724a6e393503c73f37e86aa9317a5c62e32b8" }