mailApp/Cargo.toml

43 lines
1.0 KiB
TOML
Raw Permalink 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"] }
serde-aux = "4"
config = { version = "0.13", default-features = false, features = ["yaml"] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3"
tracing-actix-web = "0.7"
tracing-log = "0.1"
secrecy = { version = "0.8", features = ["serde"] }
2023-08-31 23:57:30 +10:00
[dependencies.sqlx]
version = "0.7"
2023-08-31 23:57:30 +10:00
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
2023-08-31 23:57:30 +10:00
]
[dev-dependencies]
reqwest = { version = "0.11", features = ["json"] }
once_cell = "1"