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.toml19
1 files changed, 10 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 014f016..e8297d3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "geckodriver"
-version = "0.31.0"
+version = "0.32.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"
@@ -10,26 +10,27 @@ authors = ["Mozilla"]
edition = "2018"
[dependencies]
-base64 = "0.12"
+base64 = "0.13"
chrono = "0.4.6"
-clap = { version = "3", default-features = false, features = ["cargo", "std", "suggestions", "wrap_help"] }
-hyper = "0.13"
+clap = { version = "~3.1", default-features = false, features = ["cargo", "std", "suggestions", "wrap_help"] }
+hyper = "0.14"
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"
+mozprofile = "0.9.0"
+mozrunner = "0.15.0"
+mozversion = "0.5.0"
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"
+tempfile = "3"
url = "2.0"
uuid = { version = "0.8", features = ["v4"] }
-webdriver = "0.45.0"
-zip = { version = "0.4", default-features = false, features = ["deflate"] }
+webdriver = "0.47.0"
+zip = { version = "0.6", default-features = false, features = ["deflate"] }
[dev-dependencies]
tempfile = "3"