From 5b5ec494e65142fe5fcd790bf9968cd14372ed63 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 29 Jun 2026 22:43:13 +0000 Subject: [PATCH] chore(ogar-from-ruff): flip ruff deps back to branch=main (field_type merged) ruff #37 (field_type capture + soc operator-veto fix) merged to ruff main, so the temporary rev-pin to 4860e79 introduced in #141 is no longer needed. Restore branch = "main" for ruff_spo_triplet and ruff_spo_address. --- crates/ogar-from-ruff/Cargo.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/crates/ogar-from-ruff/Cargo.toml b/crates/ogar-from-ruff/Cargo.toml index 3417e94..fd00f6c 100644 --- a/crates/ogar-from-ruff/Cargo.toml +++ b/crates/ogar-from-ruff/Cargo.toml @@ -14,11 +14,6 @@ serde = ["dep:serde", "ogar-vocab/serde"] [dependencies] ogar-vocab = { path = "../ogar-vocab" } -# Temporarily pinned to the ruff `field_type` commit (rev) — `Field.field_type` -# is consumed by `project_odoo_fields` but is not yet on ruff `main`; it lands -# via the ruff PR-to-main on branch `claude/odoo-rs-transcode-lf8ya5` (this arc, -# rev 4860e79 also carries the soc operator-veto fix 101928a). Flip both back to -# `branch = "main"` once that ruff PR merges. -ruff_spo_triplet = { git = "https://github.com/AdaWorldAPI/ruff", rev = "4860e7987aa0c9453f812bb0178962d1cba66df0" } -ruff_spo_address = { git = "https://github.com/AdaWorldAPI/ruff", rev = "4860e7987aa0c9453f812bb0178962d1cba66df0" } +ruff_spo_triplet = { git = "https://github.com/AdaWorldAPI/ruff", branch = "main" } +ruff_spo_address = { git = "https://github.com/AdaWorldAPI/ruff", branch = "main" } serde = { workspace = true, optional = true }