More feng shui programming, separating dependencies into categories

This commit is contained in:
Daan Boerlage 2023-04-06 18:28:46 +02:00
parent f8de92c8d1
commit 6c37b2a0b0
Signed by: daan
GPG key ID: FCE070E1E4956606

View file

@ -4,12 +4,19 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
# Web framework
axum = "0.6.12" axum = "0.6.12"
# Serde
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
# Error handling
eyre = "0.6" eyre = "0.6"
async-trait = "0.1"
# Insights # Insights
tower-http = { version = "0.4", features = ["trace"] } tower-http = { version = "0.4", features = ["trace"] }