mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-30 13:01:12 +00:00
20 lines
424 B
TOML
20 lines
424 B
TOML
[package]
|
|
name = "zero2prod"
|
|
version = "0.1.0"
|
|
authors = ["LukeMathWalker <rust@lpalmieri.com>"]
|
|
edition = "2021"
|
|
|
|
# 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]
|
|
actix-web = "4"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
[dev-dependencies]
|
|
reqwest = "0.12"
|