зеркало из https://github.com/mozilla/gecko-dev.git
35 строки
1.1 KiB
TOML
35 строки
1.1 KiB
TOML
[package]
|
|
name = "geckodriver"
|
|
version = "0.30.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"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
base64 = "0.12"
|
|
chrono = "0.4.6"
|
|
clap = { version = "^2.19", default-features = false, features = ["suggestions", "wrap_help"] }
|
|
hyper = "0.13"
|
|
lazy_static = "1.0"
|
|
log = { version = "0.4", features = ["std"] }
|
|
marionette = { path = "./marionette" }
|
|
mozdevice = { path = "../mozbase/rust/mozdevice" }
|
|
mozprofile = { path = "../mozbase/rust/mozprofile" }
|
|
mozrunner = { path = "../mozbase/rust/mozrunner" }
|
|
mozversion = { path = "../mozbase/rust/mozversion" }
|
|
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"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
webdriver = { path = "../webdriver" }
|
|
zip = { version = "0.4", default-features = false, features = ["deflate"] }
|
|
|
|
[[bin]]
|
|
name = "geckodriver"
|