From a1de810dd3290cd36156be66a3a4e5d65bbe02a2 Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Mon, 17 Nov 2014 12:13:58 +1000 Subject: [PATCH] Add missing gfx dependency, that was causing a race in cargo on the build machine. --- Cargo.lock | 1 + components/gfx/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 29b8e89cf86..42fbd5cd6e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -227,6 +227,7 @@ dependencies = [ "net 0.0.1", "plugins 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", + "script_traits 0.0.1", "stb_image 0.1.0 (git+https://github.com/servo/rust-stb-image)", "style 0.0.1", "url 0.1.0 (git+https://github.com/servo/rust-url)", diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml index ad62df8fd92..0c0f84ec105 100644 --- a/components/gfx/Cargo.toml +++ b/components/gfx/Cargo.toml @@ -59,4 +59,6 @@ git = "https://github.com/servo/rust-core-graphics" [dependencies.core_text] git = "https://github.com/servo/rust-core-text" +[dependencies.script_traits] +path = "../script_traits"