Up until the database, need to get docker and CI/CD on server first

This commit is contained in:
2024-04-08 09:08:50 +02:00
parent 298cc67e2d
commit 11aadb64bf
4 changed files with 0 additions and 0 deletions

21
Cargo.toml Normal file
View File

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