-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
78 lines (66 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "chrome-remote-interface"
version = "0.1.0-alpha.8"
authors = ["yskszk63 <yskszk63@gmail.com>"]
edition = "2018"
description = "Chrome DevTools Protocol Client."
repository = "https://github.com/yskszk63/chrome-remote-interface-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["chrome", "chromium", "headless", "cdp"]
categories = ["api-bindings", "web-programming"]
[dependencies]
thiserror = "1.0"
serde_json = "1.0"
futures = "0.3"
log = "0.4"
tempfile = "3.2"
bytes = "1.0"
dirs = "4.0"
which = "4.1"
[target.'cfg(unix)'.dependencies]
nix = "0.21"
tokio-pipe = "0.2"
[target.'cfg(windows)'.dependencies]
tokio-anon-pipe = "0.1"
winspawn = "0.1"
[dependencies.serde]
version = "1.0"
features = [
"derive",
]
[dependencies.tokio]
version = "1.11"
features = [
"fs",
"time",
"process",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.15"
features = [
"default",
]
[dependencies.url]
version = "2.2"
features = [
"serde",
]
[dependencies.chrome-remote-interface-model]
version = "0.1.0-alpha.8"
path = "model"
[dev-dependencies]
anyhow = "1.0"
tokio = { version = "1.11", features = ["rt", "macros", "net"] }
pretty_env_logger = "0.4"
[features]
default = []
[workspace]
members = [
"model",
"model/tools",
]
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-apple-darwin", "x86_64-pc-windows-msvc"]