summaryrefslogtreecommitdiffstats
path: root/testing/webdriver/Cargo.toml
blob: a36fb16d7eaaafb9154b5932a8cfcd825f746e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
edition = "2021"
name = "webdriver"
version = "0.50.0"
authors = ["Mozilla"]
include = ["/src"]
description = "Library implementing the wire protocol for the W3C WebDriver specification."
documentation = "https://docs.rs/webdriver"
readme = "README.md"
keywords = [
    "automation",
    "browser",
    "protocol",
    "w3c",
    "webdriver",
]
license = "MPL-2.0"
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver"

[features]
default = ["server"]
server = ["tokio", "tokio-stream", "warp"]

[dependencies]
base64 = "0.21"
bytes = "1.0"
cookie = { version = "0.16", default-features = false }
http = "0.2"
icu_segmenter = { version = "1.4", default-features = false, features = ["auto", "compiled_data"] }
log = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
time = "0.3"
tokio = { version = "1.0", features = ["rt", "net"], optional = true}
tokio-stream = { version = "0.1", features = ["net"], optional = true}
url = "2.4"
thiserror = "1"
warp = { version = "0.3", default-features = false, optional = true }