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

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 13 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4203098..014f016 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,34 +1,38 @@
[package]
name = "geckodriver"
-version = "0.30.0"
+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"
-publish = false
+authors = ["Mozilla"]
edition = "2018"
[dependencies]
base64 = "0.12"
chrono = "0.4.6"
-clap = { version = "^2.19", default-features = false, features = ["suggestions", "wrap_help"] }
+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 = { path = "./marionette" }
-mozdevice = "0.4.0"
-mozprofile = "0.7.3"
-mozrunner = "0.13.0"
-mozversion = "0.4.2"
+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.44.0"
+webdriver = "0.45.0"
zip = { version = "0.4", default-features = false, features = ["deflate"] }
+[dev-dependencies]
+tempfile = "3"
+
[[bin]]
name = "geckodriver"