This commit is contained in:
Sandro Eiler 2023-07-01 20:34:21 +02:00
commit fd8c97600a
8 changed files with 1712 additions and 0 deletions

17
Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "learn_axum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.29.1", features = ["full"] }
axum = "0.6.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.4.1", features = ["fs"] }
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1.1"