forked from jonhoo/fantoccini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 1.11 KB
/
Cargo.toml
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]
name = "fantoccini"
version = "0.14.0"
edition = "2018"
description = "High-level API for programmatically interacting with web pages through WebDriver."
readme = "README.md"
authors = ["Jon Gjengset <[email protected]>"]
documentation = "https://docs.rs/fantoccini"
homepage = "https://github.com/jonhoo/fantoccini"
repository = "https://github.com/jonhoo/fantoccini.git"
keywords = ["webdriver", "chromedriver", "geckodriver", "phantomjs", "automation"]
categories = ["api-bindings", "development-tools::testing", "web-programming::http-client"]
license = "MIT/Apache-2.0"
[dependencies]
webdriver = "0.41.0"
url = "2.0.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
futures-core = "0.3.0"
futures-util = "0.3.0"
tokio = { version = "0.2.0", features = [ "sync" ] }
hyper = { version = "0.13.0", features = [ "stream" ] }
hyper-tls = "0.4.0"
cookie = { version = "0.14", features = ["percent-encode"] }
base64 = "0.12"
mime = "0.3.9"
http = "0.2"
[dev-dependencies]
tokio = { version = "0.2.0", features = [ "full" ] }
serial_test = "0.4"
serial_test_derive = "0.4"
warp = "0.2.2"