-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (71 loc) · 2.09 KB
/
Cargo.toml
File metadata and controls
80 lines (71 loc) · 2.09 KB
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
79
80
[package]
name = "chromiumoxide"
version = "0.9.1"
rust-version = "1.85"
autotests = false
authors = ["Matthias Seitz <matthias.seitz@outlook.de>"]
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/mattsse/chromiumoxide"
repository = "https://github.com/mattsse/chromiumoxide"
description = "Library for interacting with a chrome instance with the chrome devtools protocol"
keywords = ["chrome", "chromedriver", "puppeteer", "automation"]
categories = ["web-programming", "api-bindings", "development-tools::testing"]
[dependencies]
async-tungstenite = { version = "0.32", features = ["tokio-runtime"] }
serde = { version = "1", features = ["derive"] }
futures = "0.3"
chromiumoxide_types = { path = "chromiumoxide_types", version = "0.9" }
chromiumoxide_cdp = { path = "chromiumoxide_cdp", version = "0.9" }
chromiumoxide_fetcher = { path = "chromiumoxide_fetcher", version = "0.9", default-features = false, optional = true }
serde_json = "1"
which = "8"
thiserror = "2"
url = "2"
base64 = "0.22"
fnv = "1"
futures-timer = "3"
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"time",
"fs",
"macros",
"process",
] }
tracing = "0.1"
pin-project-lite = "0.2"
dunce = "1"
bytes = { version = "1", features = ["serde"], optional = true }
reqwest = { version = "0.13", default-features = false }
[target.'cfg(windows)'.dependencies]
windows-registry = "0.6"
[dev-dependencies]
quote = "1"
proc-macro2 = "1"
chrono = "0.4.1"
tracing-subscriber = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "time", "macros"] }
[features]
default = ["bytes"]
fetcher = ["chromiumoxide_fetcher"]
bytes = ["dep:bytes"]
rustls = ["chromiumoxide_fetcher/rustls"]
native-tls = ["chromiumoxide_fetcher/native-tls"]
zip0 = ["chromiumoxide_fetcher/zip0"]
zip8 = ["chromiumoxide_fetcher/zip8"]
[[example]]
name = "fetcher"
required-features = ["fetcher", "zip8", "rustls"]
[[test]]
name = "chromiumoxide_tests"
path = "tests/lib.rs"
harness = true
[workspace]
members = [
"chromiumoxide_pdl",
"chromiumoxide_types",
"chromiumoxide_cdp",
"chromiumoxide_fetcher",
]