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"] }