Bug 1669129 - [devtools] Enable devtools.overflow.debugging.enabled. r=jdescottes
[gecko.git] / testing / geckodriver / Cargo.toml
blobcf240ac05cfc1dc8eb3e35a91d9c6ccf33b4f3fc
1 [package]
2 name = "geckodriver"
3 version = "0.27.0"
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
10 edition = "2018"
12 [dependencies]
13 base64 = "0.12"
14 chrono = "0.4.6"
15 clap = { version = "^2.19", default-features = false, features = ["suggestions", "wrap_help"] }
16 hyper = "0.13"
17 lazy_static = "1.0"
18 log = { version = "0.4", features = ["std"] }
19 marionette = { path = "./marionette" }
20 mozdevice = { path = "../mozbase/rust/mozdevice" }
21 mozprofile = { path = "../mozbase/rust/mozprofile" }
22 mozrunner = { path = "../mozbase/rust/mozrunner" }
23 mozversion = { path = "../mozbase/rust/mozversion" }
24 regex = { version="1.0", default-features = false, features = ["perf", "std"] }
25 serde = "1.0"
26 serde_derive = "1.0"
27 serde_json = "1.0"
28 serde_yaml = "0.8"
29 uuid = { version = "0.8", features = ["v4"] }
30 webdriver = { path = "../webdriver" }
31 zip = { version = "0.4", default-features = false, features = ["deflate"] }
33 [[bin]]
34 name = "geckodriver"