-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (30 loc) · 1.09 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
[package]
name = "vaalikoppi"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.12.1", features=["with-axum"]}
askama_axum = "0.4.0"
axum = { version = "0.6.20", features=["tokio", "macros"]}
chrono = { version = "0.4.29", features = ["serde"]}
derive_more = "0.99.17"
dotenv = "0.15.0"
envconfig = "0.10.0"
float-cmp = "0.9.0"
htmx = "0.1.0"
jsonwebtoken = "8.3.0"
postgres = "0.19.7"
rand = "0.8.5"
serde = { version = "1.0.188", features=["derive"]}
serde_with = "3.4.0"
sqlx = { version = "0.7.1", features=["postgres", "runtime-tokio", "macros", "chrono", "uuid", "tls-rustls"]}
time = "0.3.30"
tokio = { version = "1.32.0", features = ["macros", "io-util", "rt-multi-thread"]}
tower = { version = "0.4.13", features = ["util", "limit", "buffer"]}
tower-cookies = "0.9.0"
tower-http = { version = "0.4.4", features = ["fs"]}
uuid = { version = "1.5.0", features = ["v4", "fast-rng"] }
validator = { version = "0.16.1", features = ["derive"]}
[dev-dependencies]
pretty_assertions = "1.4.0"