Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml - github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 014f0165ac33a000e0d92f9ce6e641d5a8761391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "geckodriver"
version = "0.31.0"
description = "Proxy for using WebDriver clients to interact with Gecko-based browsers."
keywords = ["webdriver", "w3c", "httpd", "mozilla", "firefox"]
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/geckodriver"
readme = "README.md"
license = "MPL-2.0"
authors = ["Mozilla"]
edition = "2018"

[dependencies]
base64 = "0.12"
chrono = "0.4.6"
clap = { version = "3", default-features = false, features = ["cargo", "std", "suggestions", "wrap_help"] }
hyper = "0.13"
lazy_static = "1.0"
log = { version = "0.4", features = ["std"] }
marionette = "0.2.0"
mozdevice = "0.5.0"
mozprofile = "0.8.0"
mozrunner = "0.14.0"
mozversion = "0.4.3"
regex = { version="1.0", default-features = false, features = ["perf", "std"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
url = "2.0"
uuid = { version = "0.8", features = ["v4"] }
webdriver = "0.45.0"
zip = { version = "0.4", default-features = false, features = ["deflate"] }

[dev-dependencies]
tempfile = "3"

[[bin]]
name = "geckodriver"