More feng shui programming, separating dependencies into categories
This commit is contained in:
parent
f8de92c8d1
commit
6c37b2a0b0
1 changed files with 8 additions and 1 deletions
|
@ -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"] }
|
||||||
|
|
Loading…
Reference in a new issue