2022-10-26 00:23:39 +00:00
|
|
|
[package]
|
|
|
|
name = "contact-form"
|
2022-12-04 19:17:54 +00:00
|
|
|
version = "0.2.0"
|
2022-10-26 00:23:39 +00:00
|
|
|
authors = ["Mo Bitar <mo8it@proton.me>"]
|
|
|
|
edition = "2021"
|
2022-12-04 19:17:54 +00:00
|
|
|
readme = "README.md"
|
2022-10-26 00:23:39 +00:00
|
|
|
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-17 17:36:28 +00:00
|
|
|
axum = { version = "0.6", default-features = false, features = ["http1", "form", "tokio", "macros"] }
|
2022-12-03 16:08:23 +00:00
|
|
|
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"
|
2023-02-22 20:42:36 +00:00
|
|
|
tokio = { version = "1.25", default-features = false, features = ["macros", "rt"] }
|
2023-02-22 23:42:08 +00:00
|
|
|
tower-http = { version = "0.3", features = ["fs"] }
|
2022-11-01 23:24:17 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-appender = "0.2"
|
|
|
|
tracing-subscriber = "0.3"
|