mailApp/Cargo.toml

32 lines
514 B
TOML
Raw Normal View History

2023-08-28 22:26:28 +10:00
[package]
2023-08-28 22:58:23 +10:00
name = "mail_app"
2023-08-28 22:26:28 +10:00
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "mail_app"
2023-08-28 22:26:28 +10:00
[dependencies]
2023-08-29 21:43:54 +10:00
actix-web = "4"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2023-08-31 23:57:30 +10:00
serde = { version = "1", features = ["derive"] }
config = "0.13"
[dependencies.sqlx]
version = "0.6"
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate"
]
[dev-dependencies]
reqwest = "0.11"