From 6f3ae46493d1430feb1757db8643908ac7de9ce4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 18:32:11 +0000 Subject: [PATCH] chore(deps): update dependency fake to v5 --- blueprint/db/Cargo.toml.liquid | 2 +- blueprint/web/Cargo.toml.liquid | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprint/db/Cargo.toml.liquid b/blueprint/db/Cargo.toml.liquid index 04ca10b1..cf0b2107 100644 --- a/blueprint/db/Cargo.toml.liquid +++ b/blueprint/db/Cargo.toml.liquid @@ -16,7 +16,7 @@ generated_with = "{{gerust_version}}" [dependencies] anyhow = "1.0" -fake = { version = "4.0", features = ["derive"], optional = true } +fake = { version = "5.0", features = ["derive"], optional = true } {{project-name}}-config = { path = "../config" } rand = { version = "0.9", optional = true } regex = { version = "1.10", optional = true } diff --git a/blueprint/web/Cargo.toml.liquid b/blueprint/web/Cargo.toml.liquid index edcf8637..e5d4ae69 100644 --- a/blueprint/web/Cargo.toml.liquid +++ b/blueprint/web/Cargo.toml.liquid @@ -40,7 +40,7 @@ validator = "0.20" {{project-name}}-macros = { path = "../macros", optional = true } [dev-dependencies] -fake = "4.0" +fake = "5.0" googletest = "0.14" {% unless template_type == "minimal" -%} {{project-name}}-db = { path = "../db", features = ["test-helpers"] }