-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (34 loc) · 1.13 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
45
46
[package]
name = "project"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.0", features = ["macros"] }
axum-extra = { version = "0.9.2", features = ["typed-header"] }
# Uuid v4
uuid = { version = "1.4.1", features = ["v4"] }
# Tokio & Tower
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.0", features = ["trace", "cors"] }
# Serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89"
# Encryption
jsonwebtoken = "9.1.0"
bcrypt = "0.15.0"
# ENV Variables
dotenvy = "0.15.6"
dotenvy_macro = "0.15.1"
# Date & time
chrono = "0.4.23"
# Struct/Extractor validator
validator = { version = "0.16.0", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Swagger Docs API
utoipa = { version = "4.1.0", features = ["axum_extras"] }
utoipa-swagger-ui ={ version = "6.0.0", features = ["axum"] }
# ORM
sea-orm = { version = "0.12.7", features = ["sqlx-postgres", "runtime-tokio-rustls"] }