-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (48 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (48 loc) · 1.28 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "whistbook"
version = "0.2.0"
edition = "2021"
default-run = "whistbook"
[dependencies]
askama = "0.12.1"
axum = { version = "0.7.7", features = ["macros"] }
axum-extra = { version = "0.9.4", features = ["cookie", "typed-header"] }
base64 = "0.22.1"
env_logger = "0.11.5"
futures-util = "0.3.31"
log = "0.4.22"
mime_guess = "2.0.5"
rand = "0.8.5"
rust-embed = { version = "8.5.0", features = ["axum-ex"] }
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "macros"] }
argon2 = "0.5"
password-hash = { version = "0.5", features = ["rand_core"] }
tokio = { version = "1.41", features = ["full"] }
tokio-stream = "0.1.16"
tower-livereload = "0.9.4"
reqwest = { version = "0.12.8", features = ["json"] }
tower-http = { version = "0.6.1", features = ["compression-gzip", "trace"] }
tower_governor = "0.4.3"
garde = { version = "0.20.0", features = [
"derive",
"serde",
"pattern",
"email",
] }
axum_garde = "0.20.0"
aes = "0.8.4"
aes-gcm = "0.10.3"
qr2term = "0.3.3"
urlencoding = "2.1.3"
http = "1.1.0"
qrcode-generator = "5.0.0"
thiserror = "2.0.3"
cookie = "0.18.1"
[[bin]]
name = "whistbook"
path = "src/main.rs"
[[bin]]
name = "recalculate_ratings"
path = "src/bin/recalculate_ratings.rs"