mailApp/Cargo.toml

31 lines
465 B
TOML
Raw Normal View History

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"
config = "0.11.0"
serde = { version = "1", features = ["derive"]}
2021-10-22 12:38:38 +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"