-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (39 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
[package]
name = "axum-saas-template"
version = "0.1.0"
edition = "2021"
publish = false
authors = [
"Billy Priambodo <[email protected]>",
]
[dependencies]
tokio = { version = "1.14.0", features = ["macros", "rt-multi-thread", "signal"] }
axum = { version = "0.7.3", features = ["tower-log", "macros"] }
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres", "uuid", "time", "json"] }
clap = { version = "4.0.0", features = ["derive", "env"] }
serde = { version = "1.0.130", features = ["derive"] }
argon2 = "0.5"
tower = "0.4.11"
tower-http = { version = "0.5.0", features = [
"catch-panic",
"compression-full",
"sensitive-headers",
"timeout",
"trace",
] }
time = { version = "0.3", features = ["serde"] }
uuid = { version = "1.0", features = ["serde", "v4"] }
anyhow = "1.0.48"
async-trait = "0.1.51"
dotenv = "0.15.0"
env_logger = "0.10.0"
log = "0.4.14"
rand = "0.8.4"
thiserror = "1.0.30"
serde_json = "1.0.111"
chrono = "0.4"
tower-cookies = "0.10.0"
validator = { version = "0.16", features = ["derive"] }
lazy_static = "1.4.0"
regex = "1.10.2"
reqwest = { version = "0.11.23", features = ["json"]}