-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (41 loc) · 1.14 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
47
48
49
50
51
52
[package]
name = "porta-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.32.0", features = ["full"] }
# Axum / Tokio
axum = "0.6.20"
tower-http = { version = "0.4", features = ["fs"] }
tower-cookies = "0.9"
# Tracing
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Serde / Json
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
serde_with = "3.3.0"
jsonwebtoken = "9.0.0"
# Validators
validator = { version = "0.16.1", features = ["derive"] }
# Storage / SQL
sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "json", "postgres", "uuid", "time"] }
sqlb = "0.4.0"
# -- Crypt & Encoding
rand = "0.8"
hmac = "0.12"
sha2 = "0.10"
base64-url = "2.0.0"
# -- Others
uuid = {version = "1", features = ["v4","fast-rng",]}
time = "0.3"
lazy-regex = "3"
chrono = { version = "0.4.26", features = ["serde"] }
once_cell = "1.18.0"
async-trait = "0.1.73"
strum_macros = "0.25.2"
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1.1"
serial_test = "2.0.0"