blob: 0c41cb9f7eff65760953f32f5bb282e8150efa89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "{{project-name}}"
version = "0.1.0"
description = "{{project-description}}"
authors = ["{{authors}}"]
license = "ISC"
edition = "2024"
[dependencies]
anyhow = "=1.0.100"
axum = "=0.8.6"
minijinja = "=2.12.0"
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", "fs"] }
tracing = "=0.1.41"
tracing-subscriber = { version = "=0.3.20", features = ["env-filter"] }
|