-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
43 lines (40 loc) · 1.08 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
[package]
name = "browserlify"
version = "0.1.0"
edition = "2021"
description = "A browser service with a REST API"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["remote", "headless", "content"]
remote = []
headless = []
content = ["headless"]
[dependencies]
axum = { version = "0.7.7", features = ["ws", "json"] }
chromiumoxide = { version = "0.7.0", features = [
"tokio-runtime",
"bytes",
], default-features = false }
clap = { version = "4.5.20", features = ["derive"] }
log = "0.4.22"
env_logger = "0.11.5"
chrono = "0.4.38"
serde = { version = "1.0.210" }
serde_json = "1.0.132"
uuid = { version = "1.11.0", features = ["v4"] }
futures = "0.3.31"
tokio = { version = "1.40.0", features = ["full"] }
tokio-tungstenite = "0.24.0"
url ="2.5.2"
reqwest = "0.12.8"
urlencoding = "2.1.3"
lazy_static = "1.5.0"
tower-http = { version = "0.6.1", features = ["full"] }
lopdf = "0.34.0"
rand = "0.8.5"
which = "6.0.3"
tempfile = "3.13.0"
regex = "1.11.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"