Bug 1726781 [wpt PR 30110] - Fix column spanner inline-size:auto issues., a=testonly
[gecko.git] / testing / webdriver / Cargo.toml
blobe54b4c1b2a8e1ecb66eddbacdbf7e8692841a027
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 once_cell = "1"
24 regex = { version="1.0", default-features = false, features = ["perf", "std"] }
25 serde = "1.0"
26 serde_json = "1.0"
27 serde_derive = "1.0"
28 time = "0.1"
29 tokio = { version = "0.2", features = ["rt-core"], optional = true}
30 unicode-segmentation = "1.2"
31 url = "2.0"
32 warp = { version = "0.2", default-features = false, optional = true }