-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1013 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
33
34
35
36
37
[package]
name = "campus-api"
version = "1.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
serde = { version = "1.0.203", features = ["derive"] }
chrono = { version = "0.4.38", features = ["serde"] }
axum = "0.7.5"
jsonwebtoken = "9.3.0"
serde_json = "1.0.120"
reqwest_cookie_store = { version = "0.8.0", features = ["serde"] }
scraper = "0.20.0"
reqwest = { version = "0.12.5", features = ["cookies", "json", "rustls-tls"], default-features = false }
anyhow = "1.0.86"
cookie_store = "0.21.0"
tower-http = { version = "0.6.1", features = ["cors"] }
http = "1.1.0"
regex = "1.10.5"
lazy_static = "1.5.0"
fnv = "1.0.7"
aes-gcm = "0.10.3"
base64 = "0.22.1"
rand = "0.8.5"
tower_governor = "0.4.2"
pretty_env_logger = "0.5.0"
log = "0.4.22"
reqwest-middleware = "0.3.3"
reqwest-retry = "0.6.1"
[profile.release]
strip = true
lto = true
codegen-units = 1