Bug 1707290 [wpt PR 28671] - Auto-expand details elements for find-in-page, a=testonly
[gecko.git] / testing / webdriver / Cargo.toml
blob599358627c17f7e16969b3d9f82253f4bd903b05
1 [package]
2 name = "webdriver"
3 version = "0.43.1"
4 authors = ["Mozilla"]
5 description = "Library implementing the wire protocol for the W3C WebDriver specification."
6 keywords = ["webdriver", "browser", "automation", "protocol", "w3c"]
7 documentation = "https://docs.rs/webdriver"
8 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver"
9 readme = "README.md"
10 license = "MPL-2.0"
11 edition = "2018"
13 [features]
14 default = ["server"]
15 server = ["tokio", "warp"]
17 [dependencies]
18 base64 = "0.12"
19 bytes = "0.5"
20 cookie = { version = "0.12", default-features = false }
21 http = "0.2"
22 log = "0.4"
23 serde = "1.0"
24 serde_json = "1.0"
25 serde_derive = "1.0"
26 time = "0.1"
27 tokio = { version = "0.2", features = ["rt-core"], optional = true}
28 unicode-segmentation = "1.2"
29 url = "2.0"
30 warp = { version = "0.2", default-features = false, optional = true }