43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "mail_app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "mail_app"
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
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"] }
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.7"
|
|
default-features = false
|
|
features = [
|
|
"runtime-tokio-rustls",
|
|
"macros",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"migrate",
|
|
]
|
|
|
|
[dev-dependencies]
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
once_cell = "1"
|