Backed out 4 changesets (bug 1920674, bug 1920468) for causing win crashes. CLOSED...
[gecko.git] / testing / geckodriver / Cargo.toml
blobcf6bbfd8555fcdfa7fda43c33d95a2ff1ff67e0b
1 [package]
2 edition = "2021"
3 name = "geckodriver"
4 version = "0.35.0"
5 authors = ["Mozilla"]
6 include = [
7     "/.cargo",
8     "/build.rs",
9     "/src"
10   ]
11 description = "Proxy for using WebDriver clients to interact with Gecko-based browsers."
12 readme = "README.md"
13 keywords = [
14     "firefox",
15     "httpd",
16     "mozilla",
17     "w3c",
18     "webdriver",
19   ]
20 license = "MPL-2.0"
21 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/geckodriver"
23 [dependencies]
24 anyhow = "1"
25 base64 = "0.21"
26 chrono = "0.4.6"
27 clap = { version = "4", default-features = false, features = ["cargo", "std", "suggestions", "wrap_help", "string"] }
28 # Depend on flate2 to enable the rust backend (the default) for flate2 used by the zip crate.
29 flate2 = "1"
30 hyper = "0.14"
31 icu_segmenter = { version = "1.5", default-features = false, features = ["auto", "compiled_data"] }
32 lazy_static = "1.0"
33 log = { version = "0.4", features = ["std"] }
34 marionette = { path = "./marionette", version="0.6.0" }
35 mozdevice = { path = "../mozbase/rust/mozdevice", version="0.5.3" }
36 mozprofile = { path = "../mozbase/rust/mozprofile", version="0.9.3" }
37 mozrunner = { path = "../mozbase/rust/mozrunner", version="0.15.3" }
38 mozversion = { path = "../mozbase/rust/mozversion", version="0.5.3" }
39 regex = { version="1.0", default-features = false, features = ["perf", "std"] }
40 serde = "1.0"
41 serde_derive = "1.0"
42 serde_json = "1.0"
43 serde_yaml = "0.8"
44 tempfile = "3"
45 thiserror = "1"
46 url = "2.4"
47 uuid = { version = "1.0", features = ["v4"] }
48 webdriver = { path = "../webdriver", version="0.51.0" }
49 zip = { version = "2.1.2", default-features = false, features = ["deflate-flate2", "flate2"] }
50 mozilla-central-workspace-hack = { version = "0.1", features = ["geckodriver"], optional = true }
52 [dev-dependencies]
53 tempfile = "3"
55 [[bin]]
56 name = "geckodriver"