@@ -28,21 +28,21 @@ ruff_markdown = { version = "0.0.11", path = "crates/ruff_markdown" }
2828ruff_memory_usage = { version = " 0.0.11" , path = " crates/ruff_memory_usage" }
2929ruff_notebook = { version = " 0.0.11" , path = " crates/ruff_notebook" }
3030ruff_options_metadata = { version = " 0.0.11" , path = " crates/ruff_options_metadata" }
31- ruff_python_ast = { version = " 0.0.11 " , path = " crates/ruff_python_ast" }
31+ ruff_python_ast = { package = " rustpython-ruff_python_ast " , version = " 0.16.5 " , path = " crates/ruff_python_ast" }
3232ruff_python_codegen = { version = " 0.0.11" , path = " crates/ruff_python_codegen" }
3333ruff_python_formatter = { version = " 0.0.11" , path = " crates/ruff_python_formatter" }
3434ruff_python_importer = { version = " 0.0.11" , path = " crates/ruff_python_importer" }
3535ruff_python_index = { version = " 0.0.11" , path = " crates/ruff_python_index" }
3636ruff_python_literal = { version = " 0.0.11" , path = " crates/ruff_python_literal" }
37- ruff_python_parser = { version = " 0.0.11 " , path = " crates/ruff_python_parser" }
37+ ruff_python_parser = { package = " rustpython-ruff_python_parser " , version = " 0.16.5 " , path = " crates/ruff_python_parser" }
3838ruff_python_semantic = { version = " 0.0.11" , path = " crates/ruff_python_semantic" }
3939ruff_python_stdlib = { version = " 0.0.11" , path = " crates/ruff_python_stdlib" }
40- ruff_python_trivia = { version = " 0.0.11 " , path = " crates/ruff_python_trivia" }
40+ ruff_python_trivia = { package = " rustpython-ruff_python_trivia " , version = " 0.16.5 " , path = " crates/ruff_python_trivia" }
4141ruff_server = { version = " 0.0.11" , path = " crates/ruff_server" }
42- ruff_source_file = { version = " 0.0.11 " , path = " crates/ruff_source_file" }
42+ ruff_source_file = { package = " rustpython-ruff_source_file " , version = " 0.16.5 " , path = " crates/ruff_source_file" }
4343ruff_mdtest = { path = " crates/ruff_mdtest" }
4444ruff_ranged_value = { version = " 0.0.11" , path = " crates/ruff_ranged_value" }
45- ruff_text_size = { version = " 0.0.11 " , path = " crates/ruff_text_size" }
45+ ruff_text_size = { package = " rustpython-ruff_text_size " , version = " 0.16.5 " , path = " crates/ruff_text_size" }
4646ruff_workspace = { version = " 0.0.11" , path = " crates/ruff_workspace" }
4747
4848ty = { path = " crates/ty" }
@@ -291,9 +291,9 @@ codegen-units = 16
291291# Some crates don't change as much but benefit more from
292292# more expensive optimization passes, so we selectively
293293# decrease codegen-units in some cases.
294- [profile .release .package .ruff_python_parser ]
294+ [profile .release .package .rustpython- ruff_python_parser ]
295295codegen-units = 1
296- [profile .release .package .ruff_python_ast ]
296+ [profile .release .package .rustpython- ruff_python_ast ]
297297codegen-units = 1
298298[profile .release .package .salsa ]
299299codegen-units = 1
@@ -321,7 +321,7 @@ opt-level = 3
321321
322322# Reduce complexity of a parser function that would trigger a locals limit in a wasm tool.
323323# https://github.com/bytecodealliance/wasm-tools/blob/b5c3d98e40590512a3b12470ef358d5c7b983b15/crates/wasmparser/src/limits.rs#L29
324- [profile .dev .package .ruff_python_parser ]
324+ [profile .dev .package .rustpython- ruff_python_parser ]
325325opt-level = 1
326326
327327# This profile is meant to mimic the `release` profile as closely as
0 commit comments