34 lines
646 B
TOML
34 lines
646 B
TOML
[package]
|
|
name = "zero2prod"
|
|
version = "0.1.0"
|
|
authors = ["Andre Heber <andre.heber@gmx.net>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "zero2prod"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
reqwest = "0.11"
|
|
serde = { version = "1", features = ["derive"] }
|
|
config = "0.14"
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.7.3"
|
|
default-features = false
|
|
features = [
|
|
"runtime-tokio-rustls",
|
|
"macros",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"migrate",
|
|
]
|