contact-form/Cargo.toml
2022-11-01 20:45:06 +01:00

22 lines
586 B
TOML

[package]
name = "contact-form"
version = "0.1.0"
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
readme = "README.adoc"
license-file = "LICENSE.txt"
[dependencies]
anyhow = "1.0"
askama = { git = "https://github.com/djc/askama.git" }
askama_axum = { git = "https://github.com/djc/askama.git", package = "askama_axum" }
axum = { version = "0.5", default-features = false, features = [
"http1",
"query",
"form",
] }
captcha = "0.0.9"
lettre = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.21", features = ["full"] }