Bug 1441336 - Use addon permissions for PerformanceTiming properties r=bz,kmag
[gecko.git] / testing / geckodriver / Cargo.toml
blobe68d10b0430b996aa06a79931ba62f14e4734a8d
1 [package]
2 name = "geckodriver"
3 version = "0.20.1"
4 description = "Proxy for using WebDriver clients to interact with Gecko-based browsers."
5 keywords = ["webdriver", "w3c", "httpd", "mozilla", "firefox"]
6 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/geckodriver"
7 readme = "README.md"
8 license = "MPL-2.0"
9 publish = false
11 [dependencies]
12 chrono = "^0.2"
13 clap = { version = "^2.19", default-features = false, features = ["suggestions", "wrap_help"] }
14 hyper = "0.10"
15 lazy_static = "1.0"
16 log = { version = "0.4", features = ["std"] }
17 mozprofile = { path = "../mozbase/rust/mozprofile" }
18 mozrunner = { path = "../mozbase/rust/mozrunner" }
19 mozversion = { path = "../mozbase/rust/mozversion" }
20 regex = "0.2"
21 rustc-serialize = "0.3"
22 uuid = "0.1.18"
23 webdriver = { path = "../webdriver" }
24 zip = "0.3"
26 [[bin]]
27 name = "geckodriver"