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"] }