@@ -27,19 +27,19 @@ ruff_markdown = { path = "crates/ruff_markdown" }
2727ruff_memory_usage = { path = " crates/ruff_memory_usage" }
2828ruff_notebook = { path = " crates/ruff_notebook" }
2929ruff_options_metadata = { path = " crates/ruff_options_metadata" }
30- ruff_python_ast = { path = " crates/ruff_python_ast" }
30+ ruff_python_ast = { package = " rustpython-ruff_python_ast " , path = " crates/ruff_python_ast" , version = " 0.15.9 " }
3131ruff_python_codegen = { path = " crates/ruff_python_codegen" }
3232ruff_python_formatter = { path = " crates/ruff_python_formatter" }
3333ruff_python_importer = { path = " crates/ruff_python_importer" }
3434ruff_python_index = { path = " crates/ruff_python_index" }
3535ruff_python_literal = { path = " crates/ruff_python_literal" }
36- ruff_python_parser = { path = " crates/ruff_python_parser" }
36+ ruff_python_parser = { package = " rustpython-ruff_python_parser " , path = " crates/ruff_python_parser" , version = " 0.15.9 " }
3737ruff_python_semantic = { path = " crates/ruff_python_semantic" }
3838ruff_python_stdlib = { path = " crates/ruff_python_stdlib" }
39- ruff_python_trivia = { path = " crates/ruff_python_trivia" }
39+ ruff_python_trivia = { package = " rustpython-ruff_python_trivia " , path = " crates/ruff_python_trivia" , version = " 0.15.9 " }
4040ruff_server = { path = " crates/ruff_server" }
41- ruff_source_file = { path = " crates/ruff_source_file" }
42- ruff_text_size = { path = " crates/ruff_text_size" }
41+ ruff_source_file = { package = " rustpython-ruff_source_file " , path = " crates/ruff_source_file" , version = " 0.15.9 " }
42+ ruff_text_size = { package = " rustpython-ruff_text_size " , path = " crates/ruff_text_size" , version = " 0.15.9 " }
4343ruff_workspace = { path = " crates/ruff_workspace" }
4444
4545ty = { path = " crates/ty" }
@@ -285,9 +285,9 @@ codegen-units = 16
285285# Some crates don't change as much but benefit more from
286286# more expensive optimization passes, so we selectively
287287# decrease codegen-units in some cases.
288- [profile .release .package .ruff_python_parser ]
288+ [profile .release .package .rustpython- ruff_python_parser ]
289289codegen-units = 1
290- [profile .release .package .ruff_python_ast ]
290+ [profile .release .package .rustpython- ruff_python_ast ]
291291codegen-units = 1
292292[profile .release .package .salsa ]
293293codegen-units = 1
@@ -309,7 +309,7 @@ opt-level = 3
309309
310310# Reduce complexity of a parser function that would trigger a locals limit in a wasm tool.
311311# https://github.com/bytecodealliance/wasm-tools/blob/b5c3d98e40590512a3b12470ef358d5c7b983b15/crates/wasmparser/src/limits.rs#L29
312- [profile .dev .package .ruff_python_parser ]
312+ [profile .dev .package .rustpython- ruff_python_parser ]
313313opt-level = 1
314314
315315# This profile is meant to mimic the `release` profile as closely as
0 commit comments