From 96228dba377ec6ac9a363b515ca6d8455c08cb27 Mon Sep 17 00:00:00 2001 From: James Graham Date: Wed, 6 May 2015 14:59:36 +0100 Subject: [PATCH] geckodriver: Switch to webdriver from git Source-Repo: https://github.com/mozilla/geckodriver Source-Revision: eca29d5a2628355c98740b83c526916c5b35625a --HG-- extra : rebase_source : a44dab9192901df9b14e35fb7de1b9d2e3525af8 --- testing/geckodriver/Cargo.lock | 4 ++-- testing/geckodriver/Cargo.toml | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/testing/geckodriver/Cargo.lock b/testing/geckodriver/Cargo.lock index 4c7bd4a9dd59..a1fe2a641214 100644 --- a/testing/geckodriver/Cargo.lock +++ b/testing/geckodriver/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ "regex 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "webdriver 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "webdriver 0.1.0 (git+https://github.com/jgraham/webdriver-rust.git)", ] [[package]] @@ -243,7 +243,7 @@ dependencies = [ [[package]] name = "webdriver" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/jgraham/webdriver-rust.git#c2038b4195ee8cd982079cc48d6a9d039f59f1fb" dependencies = [ "hyper 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/testing/geckodriver/Cargo.toml b/testing/geckodriver/Cargo.toml index 2306117fb4b1..feb387d3e7be 100644 --- a/testing/geckodriver/Cargo.toml +++ b/testing/geckodriver/Cargo.toml @@ -13,9 +13,11 @@ log = "0.3.1" regex = "0.1.27" rustc-serialize = "0.3.12" uuid = "0.1.16" -webdriver = "0.1.0" mozrunner = "0.1.0" mozprofile = "0.1.0" [dependencies.argparse] -git = "https://github.com/tailhook/rust-argparse.git" \ No newline at end of file +git = "https://github.com/tailhook/rust-argparse.git" + +[dependencies.webdriver] +git = "https://github.com/jgraham/webdriver-rust.git" \ No newline at end of file