From 4153841f2b27dd5690b75a35e5d374bf01d7e6ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 03:21:22 +0000 Subject: [PATCH] chore(deps)(deps): update darling requirement Updates the requirements on [darling](https://github.com/TedDriggs/darling) to permit the latest version. Updates `darling` to 0.24.0 - [Release notes](https://github.com/TedDriggs/darling/releases) - [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md) - [Commits](https://github.com/TedDriggs/darling/compare/v0.23.0...v0.24.0) --- updated-dependencies: - dependency-name: darling dependency-version: 0.24.0 dependency-type: direct:production dependency-group: proc-macro ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/entity-derive-impl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bcad6e4..b4ab28c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ entity-derive-impl = { path = "crates/entity-derive-impl", version = "0.20" } syn = { version = "2", features = ["full", "extra-traits", "parsing"] } quote = "1" proc-macro2 = "1" -darling = "0.23" +darling = "0.24" convert_case = "0.11" async-trait = "0.1" sqlx = { version = "0.9", default-features = false } diff --git a/crates/entity-derive-impl/Cargo.toml b/crates/entity-derive-impl/Cargo.toml index b4f7279..e63c31b 100644 --- a/crates/entity-derive-impl/Cargo.toml +++ b/crates/entity-derive-impl/Cargo.toml @@ -79,7 +79,7 @@ outbox = [] syn = { version = "2", features = ["full", "extra-traits", "parsing"] } quote = "1" proc-macro2 = "1" -darling = "0.23" +darling = "0.24" convert_case = "0.11" serde = { version = "1", features = ["derive"] }