From ffc5b946c24714354422b9f9e74d774186d26cd2 Mon Sep 17 00:00:00 2001 From: Farshad Date: Fri, 20 Feb 2026 10:19:08 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Automated=20Dependency=20U?= =?UTF-8?q?pgrade=20(#5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains automated dependency upgrades that have been tested with `cargo check` and `cargo build` ## Changes ``` name old req compatible latest new req ==== ======= ========== ====== ======= aide 0.16.0-alpha.1 0.16.0-alpha.2 0.16.0-alpha.2 0.16.0-alpha.2 anyhow 1.0.101 1.0.102 1.0.102 1.0.102 schemars 1.0 1.2.1 1.2.1 1.2 serde_json 1.0.145 1.0.149 1.0.149 1.0.149 tokio 1.48.0 1.49.0 1.49.0 1.49.0 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: 7 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/14 --- *This PR was automatically created by the dependency check workflow.* Co-authored-by: Dependency Bot Reviewed-on: https://gitea.fasharp.io/fa-sharp/axum-template/pulls/5 --- Cargo.toml.liquid | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml.liquid b/Cargo.toml.liquid index 4b42145..39b8292 100644 --- a/Cargo.toml.liquid +++ b/Cargo.toml.liquid @@ -6,20 +6,20 @@ description = "{{project-description}}" [dependencies] {% if include_aide %} -aide = { version = "0.16.0-alpha.1", features = [ +aide = { version = "0.16.0-alpha.2", features = [ "axum", "axum-json", "axum-query", "swagger" ] } {% endif %} -anyhow = "1.0.101" +anyhow = "1.0.102" axum = { version = "0.8.8", 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.0", features = [ +schemars = { version = "1.2", features = [ "chrono04", "preserve_order", "url2", @@ -27,8 +27,8 @@ schemars = { version = "1.0", features = [ ] } {% endif %} serde = { version = "1.0.228", features = ["derive"] } -serde_json = "1.0.145" -tokio = { version = "1.48.0", default-features = false, features = [ +serde_json = "1.0.149" +tokio = { version = "1.49.0", default-features = false, features = [ "macros", "net", "rt",