-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 1 KB
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
[package]
name = "peak-tracker"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "peak-tracker"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", features = ["multipart"] }
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5", features = ["cors", "fs", "set-header", "limit"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "=1.10.0", features = ["v4"] }
chrono = { version = "0.4", default-features = false, features = ["serde", "std", "alloc", "clock"] }
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
image = { version = "= 0.25.10", default-features = false, features = ["jpeg", "png", "webp"] }
base64 = "0.22"
dotenvy = "0.15"
rusqlite = { version = "0.39.0", features = ["bundled"] }
hmac = "0.13.0"
sha2 = "0.11.0"
bcrypt = "0.19.1"
web-push = { version = "0.11.0", default-features = false, features = ["hyper-client"] }