-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (28 loc) · 921 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 = "ghstats"
version = "0.7.1"
edition = "2021"
[dependencies]
anyhow = "1.0.94"
axum = "0.7.9"
chrono = { version = "0.4.39", features = ["serde"] }
dotenvy = "0.15.7"
maud = { version = "0.26.0", features = ["axum"] }
reqwest = { version = "0.12.9", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0.216", features = ["serde_derive"] }
serde_json = "1.0.133"
serde_variant = "0.1.3"
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
thousands = "0.2.0"
tokio = { version = "1.42.0", features = ["full"] }
tokio-cron-scheduler = "0.13.0"
tower-http = { version = "0.6.2", features = ["trace", "cors"] }
tracing = "0.1.41"
tracing-logfmt = { version = "0.3.5", features = ["ansi_logs"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[lints.rust]
dead_code = "allow"
[profile.dev]
debug = 0
[profile.release]
strip = true