2021-10-22 12:38:38 +10:00
|
|
|
[package]
|
|
|
|
name = "mail_app"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nick Bland"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = "4.0.0-beta.8"
|
2021-11-07 00:08:33 +10:00
|
|
|
config = "0.11.0"
|
2021-11-04 15:09:22 +10:00
|
|
|
serde = { version = "1", features = ["derive"]}
|
2021-10-22 12:38:38 +10:00
|
|
|
|
2021-11-07 00:08:33 +10:00
|
|
|
[dependencies.sqlx]
|
|
|
|
version = "0.5.7"
|
|
|
|
default-features = false
|
|
|
|
features = [
|
|
|
|
"runtime-actix-rustls",
|
|
|
|
"macros",
|
|
|
|
"postgres",
|
|
|
|
"uuid",
|
|
|
|
"chrono",
|
|
|
|
"migrate"
|
|
|
|
]
|
|
|
|
|
2021-10-22 12:38:38 +10:00
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "2"
|
|
|
|
reqwest = "0.11"
|
|
|
|
tokio = "1"
|