Bug 1851451 [wpt PR 41799] - Update wpt metadata, a=testonly
[gecko.git] / testing / webdriver / Cargo.toml
blob0ad27fec6ccc9954f8ee6f42216a4713e33858ad
1 [package]
2 edition = "2018"
3 name = "webdriver"
4 version = "0.49.0"
5 authors = ["Mozilla"]
6 include = ["/src"]
7 description = "Library implementing the wire protocol for the W3C WebDriver specification."
8 documentation = "https://docs.rs/webdriver"
9 readme = "README.md"
10 keywords = [
11     "automation",
12     "browser",
13     "protocol",
14     "w3c",
15     "webdriver",
17 license = "MPL-2.0"
18 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver"
20 [features]
21 default = ["server"]
22 server = ["tokio", "tokio-stream", "warp"]
24 [dependencies]
25 base64 = "0.21"
26 bytes = "1.0"
27 cookie = { version = "0.16", default-features = false }
28 http = "0.2"
29 log = "0.4"
30 serde = "1.0"
31 serde_json = "1.0"
32 serde_derive = "1.0"
33 time = "0.3"
34 tokio = { version = "1.0", features = ["rt", "net"], optional = true}
35 tokio-stream = { version = "0.1", features = ["net"], optional = true}
36 unicode-segmentation = "1.2"
37 url = "2.0"
38 warp = { version = "0.3", default-features = false, optional = true }