zero-to-production/Cargo.toml

26 lines
819 B
TOML
Raw Normal View History

2020-12-05 16:59:56 +00:00
[package]
name = "zero2prod"
version = "0.1.0"
authors = ["LukeMathWalker <rust@lpalmieri.com>"]
2021-12-27 09:56:25 +00:00
edition = "2021"
2020-12-05 16:59:56 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "zero2prod"
[dependencies]
2022-02-25 23:56:02 +00:00
actix-web = "4"
2021-12-26 15:15:49 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2020-12-05 16:59:56 +00:00
serde = "1.0.115"
2022-07-05 16:47:21 +00:00
config = { version = "0.13", default-features = false, features = ["yaml"] }
2023-09-14 07:43:32 +00:00
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "macros", "postgres", "uuid", "chrono", "migrate"] }
2022-07-05 16:47:21 +00:00
uuid = { version = "1", features = ["v4"] }
2022-10-01 17:07:52 +00:00
chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
2020-12-05 16:59:56 +00:00
[dev-dependencies]
reqwest = { version = "0.11", features = ["json"] }