Move compiler-core -> crates/compiler-core (#6258)

This commit is contained in:
Shahar Naveh
2025-11-15 00:21:29 +02:00
committed by GitHub
parent 3728879baf
commit bb54c5b0e6
7 changed files with 1 additions and 2 deletions

View File

@@ -122,7 +122,6 @@ template = "installer-config/installer.wxs"
resolver = "2"
members = [
"compiler",
"compiler/core",
"compiler/codegen",
"compiler/literal",
".",
@@ -145,7 +144,7 @@ repository = "https://github.com/RustPython/RustPython"
license = "MIT"
[workspace.dependencies]
rustpython-compiler-core = { path = "compiler/core", version = "0.4.0" }
rustpython-compiler-core = { path = "crates/compiler-core", version = "0.4.0" }
rustpython-compiler = { path = "compiler", version = "0.4.0" }
rustpython-codegen = { path = "compiler/codegen", version = "0.4.0" }
rustpython-common = { path = "crates/common", version = "0.4.0" }