contact-form/Cargo.toml

23 lines
873 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" }
2022-12-03 16:08:23 +00:00
axum = { version = "0.6", default-features = false, features = ["http1", "query", "form", "tokio", "macros"] }
axum-extra = { version = "0.4", features = ["spa"] }
captcha = { version = "0.0.9", default-features = false }
lettre = { version = "0.10", default-features = false, features = ["smtp-transport", "hostname", "rustls-tls", "pool", "builder"] }
2022-10-26 00:23:39 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-12-03 16:08:23 +00:00
serde_yaml = "0.9"
tokio = { version = "1.22", features = ["full"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"