corrugatedcardboard/Cargo.toml

37 lines
850 B
TOML
Raw Permalink Normal View History

2023-03-21 06:03:45 -07:00
[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]
2023-03-21 08:55:55 -07:00
## 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"
2023-03-22 03:28:47 -07:00
migration = { path = "./migration" }
2023-03-21 08:55:55 -07:00
## 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"
chrono = "0.4.24"