-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (42 loc) · 1.05 KB
/
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
38
39
40
41
42
43
44
[package]
name = "shield"
version = "0.1.0"
edition = "2021"
[workspace]
members = [".", "entity", "migration"]
[dependencies]
entity = { path = "entity" }
migration = { path = "migration" }
axum = "0.7.7"
axum-extra = { version = "0.9.4", features = ["typed-header"] }
bcrypt = "0.15.1"
chrono = { version = "0.4.38", features = ["serde"] }
config = { version = "0.14.0", features = ["yaml"] }
dotenvy = "0.15.7"
futures = "0.3.31"
jsonwebtoken = "9.3.0"
once_cell = "1.20.2"
parking_lot = "0.12.3"
sea-orm = { version = "1.0.1", features = [
"macros",
"runtime-tokio-rustls",
"sqlx-postgres",
] }
sea-orm-migration = "1.0.1"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"] }
tower-http = { version = "0.6.1", features = [
"trace",
"compression-br",
"propagate-header",
"sensitive-headers",
"cors",
] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uaparser = "0.6.4"
uuid = { version = "1.10.0", features = ["v7"] }
rand = "0.8.5"
base64 = "0.22.1"