zero-to-production/Cargo.toml

21 lines
424 B
TOML
Raw Normal View History

2020-12-05 16:50:21 +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:50:21 +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 14:41:40 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2020-12-05 16:50:21 +00:00
[dev-dependencies]
reqwest = "0.11"