Cargo.toml (1065B)
1 [package] 2 edition = "2021" 3 name = "webdriver" 4 version = "0.53.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", 16 ] 17 license = "MPL-2.0" 18 repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/webdriver" 19 20 [features] 21 default = ["server"] 22 server = ["tokio", "tokio-stream", "warp"] 23 24 [dependencies] 25 base64 = "0.22" 26 bytes = "1.0" 27 cookie = { version = "0.16", default-features = false } 28 http = "0.2" 29 icu_segmenter = { version = "2.0", default-features = false, features = ["auto", "compiled_data"] } 30 log = "0.4" 31 serde = "1.0" 32 serde_json = "1.0" 33 serde_derive = "1.0" 34 time = "0.3" 35 tokio = { version = "1.0", features = ["rt", "net"], optional = true} 36 tokio-stream = { version = "0.1", features = ["net"], optional = true} 37 url = "2.4" 38 thiserror = "1" 39 warp = { version = "0.3", default-features = false, optional = true }