blob: 22bd5c34aac0e5fa1f08fc327c2867bc0b9b448b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[package]
name = "comments"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = "0.11"
axum = { version="0.6" }
serde = "1"
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "any", "postgres", "time", "uuid"] }
tokio = { version = "1", features = ["full"] }
lettre = { version = "0.10", features = ["tokio1-native-tls"] }
|