contact-form/Cargo.toml

23 lines
918 B
TOML
Raw Normal View History

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" }
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-23 02:22:31 +00:00
time = "0.3"
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"] }
tracing = "0.1"
2023-02-23 02:22:31 +00:00
tracing-subscriber = { version = "0.3", features = ["time"] }