-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 872 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 872 Bytes
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
[package]
name = "browser_cluster"
version = "0.1.0"
edition = "2024"
description = "Library sederhana untuk menyapa orang"
license = "MIT"
repository = "https://github.com/zhinea/browser-cluster"
keywords = ["headless-browser", "puppeteer", "browser", "cluster"]
categories = ["accessibility"]
[dependencies]
async-trait = "0.1.68"
futures = "0.3.28"
thiserror = "1.0.43"
tokio = { version = "1.28.2", features = ["full"] }
num_cpus = "1.15.0"
tracing = "0.1.37"
[features]
default = []
fantoccini = ["dep:fantoccini"]
headless_chrome = ["dep:headless_chrome"]
playwright = ["dep:playwright"]
# Optional browser backends
[dependencies.fantoccini]
version = "0.19.3"
optional = true
[dependencies.headless_chrome]
version = "1.0.6"
optional = true
[dependencies.playwright]
version = "0.0.20"
optional = true
[dev-dependencies]
tokio-test = "0.4.2"
anyhow = "1.0.71"