contact-form/Cargo.toml

28 lines
769 B
TOML
Raw Normal View History

2022-10-26 00:23:39 +00:00
[package]
name = "contact-form"
version = "0.1.0"
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
readme = "README.adoc"
license-file = "LICENSE.txt"
[dependencies]
2022-10-28 22:40:14 +00:00
anyhow = "1.0"
2022-11-01 19:45:06 +00:00
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",
] }
2022-10-26 00:23:39 +00:00
captcha = "0.0.9"
lettre = "0.10"
serde = { version = "1.0", features = ["derive"] }
2022-10-28 22:40:14 +00:00
serde_json = "1.0"
2022-10-31 01:13:42 +00:00
tokio = { version = "1.21", features = ["full"] }
tower = { version = "0.4", features = ["limit", "buffer"] }
tower-http = { version = "0.3", features = ["trace"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"