2021-10-22 12:38:38 +10:00
|
|
|
[package]
|
|
|
|
name = "mail_app"
|
|
|
|
version = "0.1.0"
|
2022-01-03 18:13:39 +10:00
|
|
|
authors = ["NickBland <nick.bland@nickbland.dev>"]
|
|
|
|
edition = "2021"
|
2021-10-22 12:38:38 +10:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2022-01-03 18:13:39 +10:00
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "mail_app"
|
|
|
|
|
2021-10-22 12:38:38 +10:00
|
|
|
[dependencies]
|
2022-01-03 18:13:39 +10:00
|
|
|
actix-web = "=4.0.0-beta.16"
|
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
serde = "1.0.115"
|
|
|
|
config = { version = "0.11", default-features = false, features = ["yaml"] }
|
|
|
|
sqlx = { version = "0.5.5", default-features = false, features = [ "runtime-actix-rustls", "macros", "postgres", "uuid", "chrono", "migrate", "offline"] }
|
2021-11-08 15:41:52 +10:00
|
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|
|
|
|
chrono = "0.4.15"
|
2021-11-16 13:50:32 +10:00
|
|
|
tracing = "0.1.19"
|
2022-01-03 18:13:39 +10:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
|
|
|
|
tracing-bunyan-formatter = "0.3.1"
|
2021-11-16 13:50:32 +10:00
|
|
|
tracing-log = "0.1.1"
|
2022-01-03 18:13:39 +10:00
|
|
|
serde-aux = "3"
|
|
|
|
tracing-actix-web = "0.5.0-beta.7"
|
|
|
|
secrecy = { version = "0.8", features = ["serde"] }
|
2021-11-07 00:08:33 +10:00
|
|
|
|
2021-10-22 12:38:38 +10:00
|
|
|
[dev-dependencies]
|
2022-01-03 18:13:39 +10:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
once_cell = "1.7.2"
|