Alles tot aan database, en zaken hernoemd zodat het overeenkomt met boek

This commit is contained in:
2024-04-19 16:02:55 +02:00
parent 298cc67e2d
commit 83a991f002
5 changed files with 28 additions and 4 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "zero2prod"
version = "0.1.0"
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"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[dev-dependencies]
reqwest = "0.11"