Cargo.toml (1844B)
1 [package] 2 edition = "2021" 3 name = "geckodriver" 4 version = "0.36.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" 22 23 [dependencies] 24 anyhow = "1" 25 base64 = "0.22" 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 = "2.0", 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.7.0" } 35 mozdevice = { path = "../mozbase/rust/mozdevice", version="0.5.4" } 36 mozprofile = { path = "../mozbase/rust/mozprofile", version="0.9.4" } 37 mozrunner = { path = "../mozbase/rust/mozrunner", version="0.15.4" } 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 tempfile = "3" 44 thiserror = "1" 45 url = "2.4" 46 uuid = { version = "1.0", features = ["v4"] } 47 webdriver = { path = "../webdriver", version="0.53.0" } 48 yaml-rust = { version = "0.10", package = "yaml-rust2" } 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 } 51 52 [dev-dependencies] 53 tempfile = "3" 54 55 [[bin]] 56 name = "geckodriver"