2015-01-15 22:20:55 +03:00
|
|
|
[package]
|
|
|
|
name = "webdriver"
|
2021-09-15 22:22:54 +03:00
|
|
|
version = "0.44.0"
|
2018-03-08 19:05:08 +03:00
|
|
|
authors = ["Mozilla"]
|
2017-09-03 18:24:55 +03:00
|
|
|
description = "Library implementing the wire protocol for the W3C WebDriver specification."
|
|
|
|
keywords = ["webdriver", "browser", "automation", "protocol", "w3c"]
|
2017-02-24 19:33:43 +03:00
|
|
|
documentation = "https://docs.rs/webdriver"
|
2017-09-03 18:24:55 +03:00
|
|
|
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver"
|
2017-02-24 19:33:43 +03:00
|
|
|
readme = "README.md"
|
2015-04-09 18:20:51 +03:00
|
|
|
license = "MPL-2.0"
|
2020-02-10 17:53:43 +03:00
|
|
|
edition = "2018"
|
2015-01-15 22:20:55 +03:00
|
|
|
|
2021-01-11 20:52:07 +03:00
|
|
|
[features]
|
|
|
|
default = ["server"]
|
|
|
|
server = ["tokio", "warp"]
|
|
|
|
|
2015-01-15 22:20:55 +03:00
|
|
|
[dependencies]
|
2020-04-20 18:27:31 +03:00
|
|
|
base64 = "0.12"
|
|
|
|
bytes = "0.5"
|
2019-08-26 02:22:11 +03:00
|
|
|
cookie = { version = "0.12", default-features = false }
|
2020-04-20 18:27:31 +03:00
|
|
|
http = "0.2"
|
2018-02-15 15:01:10 +03:00
|
|
|
log = "0.4"
|
2021-07-29 22:34:07 +03:00
|
|
|
once_cell = "1"
|
|
|
|
regex = { version="1.0", default-features = false, features = ["perf", "std"] }
|
2018-08-22 11:26:19 +03:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2016-06-01 11:44:27 +03:00
|
|
|
time = "0.1"
|
2021-01-11 20:52:07 +03:00
|
|
|
tokio = { version = "0.2", features = ["rt-core"], optional = true}
|
2018-06-14 23:01:20 +03:00
|
|
|
unicode-segmentation = "1.2"
|
2019-08-17 19:26:27 +03:00
|
|
|
url = "2.0"
|
2021-01-11 20:52:07 +03:00
|
|
|
warp = { version = "0.2", default-features = false, optional = true }
|