From 89e62e8450ad24c02d435bc6af1d75cd39f080ac Mon Sep 17 00:00:00 2001 From: Kinflou Date: Wed, 2 Sep 2026 15:38:37 +0800 Subject: [PATCH] chore: bump comline-codegen to generation c70336d Keeps this repo's `comline-codegen` pin in lockstep with `comline-codegen-rust` so a CLI build resolves one `comline-codegen`. That rev adds `GenRequest.default_framing`; the TypeScript generator does not consume it yet, so this is a pin bump plus `default_framing: None` in the two test helpers. --- codegen/Cargo.toml | 2 +- codegen/tests/generate.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 563ad55..cdad2a3 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0-only" # Consumed by git rev (see ComlineProject/docs → Design → Runtime & generation # repository structure — no crates.io publishing at this stage). Local # iteration: add a `[patch]` onto a sibling checkout. -comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "1f8c5e290eba72a578860ebb6dc33453a2f0726b" } +comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "c70336dcc9485cea2c99b0f1db3789e420deaeda" } comline-core = { git = "https://github.com/ComlineProject/core", rev = "47ac5f10a36b587d14d1b9672fba65d8f3712962" } eyre = "0.6.8" diff --git a/codegen/tests/generate.rs b/codegen/tests/generate.rs index 4fbeac0..823ba5d 100644 --- a/codegen/tests/generate.rs +++ b/codegen/tests/generate.rs @@ -8,6 +8,7 @@ fn code_req(schemas: &[(String, Vec)]) -> GenRequest<'_> { mode: Mode::Code, schemas, package: PackageMeta { name: "test".into(), version: "0.1.0".into() }, + default_framing: None, } } @@ -16,6 +17,7 @@ fn lib_req(schemas: &[(String, Vec)]) -> GenRequest<'_> { mode: Mode::Lib, schemas, package: PackageMeta { name: "chat".into(), version: "0.3.0".into() }, + default_framing: None, } }