aboutsummaryrefslogtreecommitdiffstats
path: root/web/template/Cargo.toml
diff options
context:
space:
mode:
authormsi2025-11-13 12:02:56 -0300
committermsi2025-11-13 12:02:56 -0300
commitb245dfcf9dd441674b40605df41b2920c13b66f5 (patch)
tree30ea675b5a4fe2a11482891a931b22ea2c9f7a9f /web/template/Cargo.toml
parent9675d584f0c981d4300f6ca06635b3b660f07e99 (diff)
downloadtemplates-b245dfcf9dd441674b40605df41b2920c13b66f5.tar.gz
Start boilerplate axum web
Diffstat (limited to 'web/template/Cargo.toml')
-rw-r--r--web/template/Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/web/template/Cargo.toml b/web/template/Cargo.toml
index 75024cc..9f7146c 100644
--- a/web/template/Cargo.toml
+++ b/web/template/Cargo.toml
@@ -7,3 +7,10 @@ license = "ISC"
edition = "2024"
[dependencies]
+anyhow = "=1.0.100"
+axum = "=0.8.6"
+serde = { version = "=1.0.228", features = ["derive"] }
+tokio = { version = "=1.48.0", features = ["macros", "rt-multi-thread", "signal"] }
+tower-http = { version = "=0.6.6", features = ["timeout", "trace"] }
+tracing = "=0.1.41"
+tracing-subscriber = { version = "=0.3.20", features = ["env-filter"] }