From a52b85beb774ce1942d92812e2911967b3d19006 Mon Sep 17 00:00:00 2001 From: Kinflou Date: Tue, 1 Sep 2026 21:14:52 +0800 Subject: [PATCH] refactor: get comline-codegen-typescript from ComlineProject/comline-typescript MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rollout step 4 follow-up. The typescript generator now lives in its own repo; repoint the dep there (rev 97d8b2e). comline-codegen and comline-codegen-rust align to generation 4f29f4f — the rev comline-typescript pins comline-codegen at — so the tree holds one comline-codegen. No code change. Builds clean; 36 + 2 tests pass; fmt clean. --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee90c5b..0d50764 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=8ff03d7a8ca5f5e65befcb52728863b254eb4128#8ff03d7a8ca5f5e65befcb52728863b254eb4128" +source = "git+https://github.com/ComlineProject/generation?rev=4f29f4fce4e2e0b3775e4d687a7188112eaf58e3#4f29f4fce4e2e0b3775e4d687a7188112eaf58e3" dependencies = [ "comline-core", "eyre", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "comline-codegen-rust" version = "0.1.0" -source = "git+https://github.com/ComlineProject/generation?rev=8ff03d7a8ca5f5e65befcb52728863b254eb4128#8ff03d7a8ca5f5e65befcb52728863b254eb4128" +source = "git+https://github.com/ComlineProject/generation?rev=4f29f4fce4e2e0b3775e4d687a7188112eaf58e3#4f29f4fce4e2e0b3775e4d687a7188112eaf58e3" 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/generation?rev=8ff03d7a8ca5f5e65befcb52728863b254eb4128#8ff03d7a8ca5f5e65befcb52728863b254eb4128" +source = "git+https://github.com/ComlineProject/comline-typescript?rev=97d8b2ea3db8b0489eaa8a1ad1fa2e89cfb391e6#97d8b2ea3db8b0489eaa8a1ad1fa2e89cfb391e6" dependencies = [ "comline-codegen", "comline-core", diff --git a/Cargo.toml b/Cargo.toml index d10e51c..df7f196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,9 +26,9 @@ 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 = "aa84d970d3295df59cc3e620bdb71bf96382f97b" } -comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "8ff03d7a8ca5f5e65befcb52728863b254eb4128" } -comline-codegen-rust = { git = "https://github.com/ComlineProject/generation", rev = "8ff03d7a8ca5f5e65befcb52728863b254eb4128" } -comline-codegen-typescript = { git = "https://github.com/ComlineProject/generation", rev = "8ff03d7a8ca5f5e65befcb52728863b254eb4128" } +comline-codegen = { git = "https://github.com/ComlineProject/generation", rev = "4f29f4fce4e2e0b3775e4d687a7188112eaf58e3" } +comline-codegen-rust = { git = "https://github.com/ComlineProject/generation", rev = "4f29f4fce4e2e0b3775e4d687a7188112eaf58e3" } +comline-codegen-typescript = { git = "https://github.com/ComlineProject/comline-typescript", rev = "97d8b2ea3db8b0489eaa8a1ad1fa2e89cfb391e6" } [target.'cfg(unix)'.dependencies] libc = "0.2"