From 6c37b2a0b0914e4b848b51f09f9764b285c39ccf Mon Sep 17 00:00:00 2001 From: Daan Boerlage Date: Thu, 6 Apr 2023 18:28:46 +0200 Subject: [PATCH] More feng shui programming, separating dependencies into categories --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0da9001..b2ef663 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,19 @@ version = "0.1.0" edition = "2021" [dependencies] +# Async runtime tokio = { version = "1", features = ["full"] } +async-trait = "0.1" + +# Web framework axum = "0.6.12" + +# Serde serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" + +# Error handling eyre = "0.6" -async-trait = "0.1" # Insights tower-http = { version = "0.4", features = ["trace"] }