From 1e44762e4f076ce8f76b18727ebda6de10b94972 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:43:23 +0000 Subject: [PATCH 1/2] chore(deps): bump prettyplease from 0.2.37 to 0.3.0 Bumps [prettyplease](https://github.com/dtolnay/prettyplease) from 0.2.37 to 0.3.0. - [Release notes](https://github.com/dtolnay/prettyplease/releases) - [Commits](https://github.com/dtolnay/prettyplease/compare/0.2.37...0.3.0) --- updated-dependencies: - dependency-name: prettyplease dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- crates/llm-codegen/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9baa0b47..602b34e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4812,12 +4812,12 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "prettyplease" -version = "0.2.37" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +checksum = "2bfe0f4c752e450fc2faf62654f1c134747922825d5b04ca717b8874f41a40c0" dependencies = [ "proc-macro2", - "syn 2.0.119", + "syn 3.0.3", ] [[package]] diff --git a/crates/llm-codegen/Cargo.toml b/crates/llm-codegen/Cargo.toml index f9bd9ba5..a4ce5d8b 100644 --- a/crates/llm-codegen/Cargo.toml +++ b/crates/llm-codegen/Cargo.toml @@ -24,7 +24,7 @@ rustdoc-args = ["--cfg", "docsrs"] workspace = true [dependencies] -prettyplease = "0.2.37" +prettyplease = "0.3.0" proc-macro2 = "1.0.106" quote = "1.0.45" serde = { workspace = true } From 8cbdeef6933d2d84c90c56254afa79a45a73e17f Mon Sep 17 00:00:00 2001 From: PatchWave Date: Tue, 28 Jul 2026 14:23:44 +0000 Subject: [PATCH 2/2] fix(deps): align syn with prettyplease 0.3 --- Cargo.lock | 2 +- crates/llm-codegen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 602b34e0..d2a0019f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -237,7 +237,7 @@ dependencies = [ "quote", "serde", "serde_json", - "syn 2.0.119", + "syn 3.0.3", "tempfile", "thiserror 2.0.19", ] diff --git a/crates/llm-codegen/Cargo.toml b/crates/llm-codegen/Cargo.toml index a4ce5d8b..5c105dcd 100644 --- a/crates/llm-codegen/Cargo.toml +++ b/crates/llm-codegen/Cargo.toml @@ -29,7 +29,7 @@ proc-macro2 = "1.0.106" quote = "1.0.45" serde = { workspace = true } serde_json = { workspace = true } -syn = { version = "2.0.117", features = ["full"] } +syn = { version = "3.0.3", features = ["full"] } thiserror = { workspace = true } utils = { package = "aether-utils", path = "../utils", version = "0.2.11" }