corrugatedcardboard/Cargo.toml

35 lines
796 B
TOML

[package]
name = "corrugatedcardboard"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
## Core
tokio = { version = "^1.26", features = ["full"] }
## Web
axum = { version = "^0.6", features = ["ws"] }
askama = { version = "0.12.0", features = ["with-axum"] }
askama_axum = "0.3.0"
## Database
sea-orm = { version = "^0.11", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
sea-orm-migration = "0.11.1"
## Auth
rand = { version = "0.8.5", features = ["std_rng"] }
blake3 = "1.3.3"
argon2 = "0.5.0"
zxcvbn = "2.2.1"
## Data
serde = { version = "1.0.156", features = ["derive"] }
serde_derive = { version = "1.0.156" }
## Misc
tracing = "0.1.37"
tracing-subscriber = "0.3.16"