Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package] name = "web-pylon" version = "0.1.0" edition = "2021" [dependencies] axum = "0.7.5" chrono = { version = "0.4.38", features = ["serde"] } clap = { version = "4.5.4", features = ["derive", "string"] } config = "0.14.0" pulldown-cmark = "0.11.0" mail-builder = "0.3.2" mail-send = "0.4.9" serde = "1.0.202" serde_json = "1.0.127" tera = "1.19.1" tokio = { version = "1.37.0", features = ["full"] } tower-http = { version = "0.5.2", features = ["full"] } tracing = "0.1.40" tracing-subscriber = "0.3.18" [build-dependencies] git2 = "0.19.0" [[bin]] name = "web-pylon" path = "source/web_pylon.rs"