mailApp/Cargo.toml
Nick Bland 6741ed9e14
Final fixes for docker optimisation
Also fixed up error of forgetting to include an await in the main function
2021-11-16 20:55:54 +10:00

41 lines
788 B
TOML

[package]
name = "mail_app"
version = "0.1.0"
authors = ["Nick Bland"]
edition = "2018"
[lib]
path = "src/lib.rs"
[dependencies]
actix-web = "4.0.0-beta.8"
config = "0.11.0"
serde = { version = "1", features = ["derive"]}
uuid = { version = "0.8.1", features = ["v4"] }
chrono = "0.4.15"
tracing = "0.1.19"
tracing-futures = "0.2.4"
tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.1.6"
tracing-log = "0.1.1"
tracing-actix-web = "0.4.0-beta.12"
[dependencies.sqlx]
version = "0.5.7"
default-features = false
features = [
"runtime-actix-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
"offline"
]
[dev-dependencies]
actix-rt = "2"
once_cell = "1.8.0"
reqwest = "0.11"
tokio = "1"