зеркало из https://github.com/mozilla/gecko-dev.git
33 строки
943 B
TOML
33 строки
943 B
TOML
[package]
|
|
name = "webdriver"
|
|
version = "0.44.0"
|
|
authors = ["Mozilla"]
|
|
description = "Library implementing the wire protocol for the W3C WebDriver specification."
|
|
keywords = ["webdriver", "browser", "automation", "protocol", "w3c"]
|
|
documentation = "https://docs.rs/webdriver"
|
|
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver"
|
|
readme = "README.md"
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["server"]
|
|
server = ["tokio", "warp"]
|
|
|
|
[dependencies]
|
|
base64 = "0.12"
|
|
bytes = "0.5"
|
|
cookie = { version = "0.12", default-features = false }
|
|
http = "0.2"
|
|
log = "0.4"
|
|
once_cell = "1"
|
|
regex = { version="1.0", default-features = false, features = ["perf", "std"] }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
time = "0.1"
|
|
tokio = { version = "0.2", features = ["rt-core"], optional = true}
|
|
unicode-segmentation = "1.2"
|
|
url = "2.0"
|
|
warp = { version = "0.2", default-features = false, optional = true }
|