summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0cf6a3290ac1154083d2379a0e7123f18245c52b (plain)
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
[package]
name = "verden"
version = "0.1.0"
edition = "2021"
authors = ["Santo Cariotti <santo@dcariotti.me>"]

[dependencies]
async-trait = "0.1"
axum = { version = "0.5.15", features = ["headers", "multipart"] }
http-body = "0.4.3"
jsonwebtoken = "8.1"
once_cell = "1.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.20", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.3.4", features = ["trace", "compression-br", "propagate-header", "sensitive-headers"] }
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "chrono", "json" ] }
sha256 = "1.0.3"
validator = { version = "0.16.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8.5"
dotenv = "0.15.0"
config = "0.10"
lazy_static = "1.4.0"