contact-form/Cargo.toml
2023-02-26 19:58:38 +01:00

22 lines
920 B
TOML

[package]
name = "oxiform"
version = "0.4.0"
authors = ["Mo Bitar <mo8it@proton.me>"]
edition = "2021"
readme = "README.md"
license-file = "LICENSE.txt"
[dependencies]
anyhow = "1.0"
askama_axum = { git = "https://github.com/djc/askama.git", package = "askama_axum" }
askama = { git = "https://github.com/djc/askama.git" }
axum = { version = "0.6", default-features = false, features = ["http1", "form", "tokio", "macros"] }
captcha = { version = "0.0.9", default-features = false }
lettre = { version = "0.10", default-features = false, features = ["smtp-transport", "hostname", "tokio1-rustls-tls", "pool", "builder"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
time = "0.3"
tokio = { version = "1.25", default-features = false, features = ["macros", "rt"] }
tower-http = { version = "0.4", features = ["fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["time"] }