-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 998 Bytes
/
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
[package]
name = "stabil-api"
version = "0.2.0"
edition = "2021"
[lib]
crate-type = ["lib"]
[[bin]]
name = "stabil-api"
[features]
default = ["server"]
server = ["tokio", "axum/http1", "axum/http2", "axum/tokio"]
wasm = ["getrandom"]
[dependencies]
reqwest = {version = "0.12.9", features = ["cookies", "multipart"]}
scraper = "0.22.0"
serde = {version = "1.0.216", features = ["derive"]}
serde_json = "1.0.134"
chrono = "0.4.39"
phf = { version = "0.11.2", features = ["macros"] }
axum = { version = "0.7.9", default-features = false, features = ["json", "query"] }
axum-macros = "0.4.2"
serde_with = "3.11.0"
worker-macros = { version = "0.5.0", default-features = false }
worker = { version = "0.5.0", default-features = false }
getrandom = { version = "0.2.15", features = ["js"], optional = true }
tokio = { version = "1.42.0", features = ["full"], optional = true }
utoipa-swagger-ui = { version = "8.1.0", features = ["axum"] }
utoipa = { version = "5.3.0", features = ["axum_extras"] }