Files
axum-template/Cargo.toml.liquid
Farshad 008be3daa2 ⬆️ Automated Dependency Upgrade (#7)
This PR contains automated dependency upgrades that have been tested with `cargo check` and `cargo build`

## Changes

```
name       old req compatible latest  new req
====       ======= ========== ======  =======
serde_json 1.0.149 1.0.150    1.0.150 1.0.150
tokio      1.52.1  1.52.3     1.52.3  1.52.3
   Upgrading git dependencies
     Locking 0 packages to latest Rust 1.90.0 compatible versions
   Upgrading recursive dependencies
     Locking 0 packages to latest Rust 1.90.0 compatible versions
note: Re-run with `--verbose` to show more dependencies
  git: axum-app-wrapper
  latest: 10 packages
```

## Testing

 Generated test project with aide
 Generated test project without aide
 All builds passed
 All checks passed

## Workflow Run

https://gitea.fasharp.io/fa-sharp/axum-template/actions/runs/18

---
*This PR was automatically created by the dependency check workflow.*

Co-authored-by: Dependency Bot <bot@gitea.actions>
Reviewed-on: #7
2026-05-27 06:06:17 +00:00

41 lines
985 B
Plaintext

[package]
name = "{{project-name}}"
version = "0.1.0"
edition = "2024"
description = "{{project-description}}"
[dependencies]
{% if include_aide %}
aide = { version = "0.16.0-alpha.4", features = [
"axum",
"axum-json",
"axum-query",
"swagger"
] }
{% endif %}
anyhow = "1.0.102"
axum = { version = "0.8.9", features = ["json", "query"] }
axum-app-wrapper = { git = "https://gitea.fasharp.io/fa-sharp/axum-app-wrapper", rev = "a8d5e4f962" }
dotenvy = "0.15.7"
figment = { version = "0.10.19", features = ["env"] }
{% if include_aide %}
schemars = { version = "1.2", features = [
"chrono04",
"preserve_order",
"url2",
"uuid1"
] }
{% endif %}
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tokio = { version = "1.52.3", default-features = false, features = [
"macros",
"net",
"rt",
"rt-multi-thread",
"signal"
] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
type-map = "0.5.1"