-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (42 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
43 lines (42 loc) · 1.51 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
[workspace]
resolver = "2"
members = [
"crates/server",
"crates/api",
"crates/models",
"crates/web",
"crates/common",
]
[workspace.dependencies]
axum = { version = "0.7", features = ["multipart", "ws"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
leptos = { version = "0.7", features = ["ssr"] }
leptos_axum = "0.7"
leptos_router = { version = "0.7", features = ["ssr"] }
leptos_meta = { version = "0.7", features = ["ssr"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "time", "migrate", "json"] }
redis = { version = "0.27", features = ["tokio-comp"] }
jsonwebtoken = "9"
argon2 = "0.5"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
time = { version = "0.3", features = ["serde"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
dotenvy = "0.15"
pulldown-cmark = "0.12"
reqwest = { version = "0.12", features = ["json"] }
rust-s3 = { version = "0.35", default-features = false, features = ["tokio-rustls-tls"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
totp-rs = { version = "5.6", features = ["gen_secret", "otpauth"] }
base32 = "0.5"
rand = "0.8"
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp"] }
zip = { version = "2", default-features = false, features = ["deflate"] }