From 3df5d2dbba8bf832550cc8e07671b24cf0627447 Mon Sep 17 00:00:00 2001 From: Kinflou Date: Wed, 2 Sep 2026 16:10:03 +0800 Subject: [PATCH] chore: bump to the canonical IR_HASH pins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit comline-core → 50c17cc (schema_ir_hash), comline-codegen → generation d901db4, comline-codegen-rust → f29f651, comline-codegen-typescript → 75c5c56 — all in lockstep so the build resolves one comline-core. No CLI code change; the generated IR_HASH is now the canonical BLAKE3-over-bincode digest. The protocol round-trip e2e still passes with both ends on the new value. --- Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c34b51c..c820ad7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -389,7 +389,7 @@ dependencies = [ [[package]] name = "comline-codegen" version = "0.1.0" -source = "git+https://github.com/ComlineProject/generation?rev=c70336dcc9485cea2c99b0f1db3789e420deaeda#c70336dcc9485cea2c99b0f1db3789e420deaeda" +source = "git+https://github.com/ComlineProject/generation?rev=d901db42d094ea9e2f59a310e6e885767abcae6b#d901db42d094ea9e2f59a310e6e885767abcae6b" dependencies = [ "comline-core", "eyre", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "comline-codegen-rust" version = "0.1.0" -source = "git+https://github.com/ComlineProject/comline-rust?rev=85fd9670fae794f043d28ada415dca7ed090d713#85fd9670fae794f043d28ada415dca7ed090d713" +source = "git+https://github.com/ComlineProject/comline-rust?rev=f29f6517b9c70f488e7539219be890ef2c4151e4#f29f6517b9c70f488e7539219be890ef2c4151e4" dependencies = [ "comline-codegen", "comline-core", @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "comline-codegen-typescript" version = "0.1.0" -source = "git+https://github.com/ComlineProject/comline-typescript?rev=f72bc3e336ebadbe062751afc0f2430fd216e28c#f72bc3e336ebadbe062751afc0f2430fd216e28c" +source = "git+https://github.com/ComlineProject/comline-typescript?rev=75c5c56af68d8a120c489f5f4cd67dc4813901f4#75c5c56af68d8a120c489f5f4cd67dc4813901f4" dependencies = [ "comline-codegen", "comline-core", @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "comline-core" version = "0.1.0" -source = "git+https://github.com/ComlineProject/core?rev=47ac5f10a36b587d14d1b9672fba65d8f3712962#47ac5f10a36b587d14d1b9672fba65d8f3712962" +source = "git+https://github.com/ComlineProject/core?rev=50c17cc740676416e945582dd6e2547e8535ac03#50c17cc740676416e945582dd6e2547e8535ac03" dependencies = [ "ariadne", "bincode", diff --git a/Cargo.toml b/Cargo.toml index a7001cd..73c2084 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,14 +25,14 @@ serde = { version = "1", features = ["derive"] } toml = "0.8" # git rev (not crates.io) so this and the `comline-codegen*` crates share one # `comline-core` in the tree. Local dev: see .cargo/config. -comline-core = { git = "https://github.com/ComlineProject/core", rev = "47ac5f10a36b587d14d1b9672fba65d8f3712962" } +comline-core = { git = "https://github.com/ComlineProject/core", rev = "50c17cc740676416e945582dd6e2547e8535ac03" } # Pinned to the same generation rev `comline-codegen-rust` / `-typescript` # pin (below) — `codegen/`'s content is identical at this rev and the later # `generation` tip (only `conformance/`, which this crate never touches, # differs), so matching it here keeps one `comline-codegen` in the tree. -comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "c70336dcc9485cea2c99b0f1db3789e420deaeda" } -comline-codegen-rust = { git = "https://github.com/ComlineProject/comline-rust", rev = "85fd9670fae794f043d28ada415dca7ed090d713", optional = true } -comline-codegen-typescript = { git = "https://github.com/ComlineProject/comline-typescript", rev = "f72bc3e336ebadbe062751afc0f2430fd216e28c", optional = true } +comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "d901db42d094ea9e2f59a310e6e885767abcae6b" } +comline-codegen-rust = { git = "https://github.com/ComlineProject/comline-rust", rev = "f29f6517b9c70f488e7539219be890ef2c4151e4", optional = true } +comline-codegen-typescript = { git = "https://github.com/ComlineProject/comline-typescript", rev = "75c5c56af68d8a120c489f5f4cd67dc4813901f4", optional = true } [features] # Which language generators are compiled in. Drop one to shed its whole