flabk/Cargo.toml

24 lines
641 B
TOML
Raw Normal View History

2022-09-10 19:54:50 +01:00
[package]
name = "flabk"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.64"
argon2 = "0.4.1"
2022-09-13 01:35:05 +01:00
axum = "0.5.16"
2022-09-11 16:52:37 +01:00
base-62 = "0.1.1"
2022-09-10 19:54:50 +01:00
handlebars = "4.3.3"
jsonwebtoken = "8.1.1"
mime_guess = "2.0.4"
2022-09-11 16:52:37 +01:00
rand = "0.8.5"
rand_core = { version = "0.6.3", features = ["std"] }
rust-embed = "6.4.0"
2022-09-10 19:54:50 +01:00
serde = { version = "1.0.144", features = ["derive", "std", "serde_derive"]}
serde_json = "1.0.85"
tokio = { version = "1", features = ["full"] }
2022-09-11 16:52:37 +01:00
tokio-postgres = { version = "0.7.7", features = ["with-serde_json-1"] }
tower-cookies = "0.7.0"