blob: 877358032bfe580f320e21ffe9b0e3dc330a761a (
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"] }
|