diff --git a/Cargo.toml b/Cargo.toml index c3e6102d649..639c11f2fc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,7 +121,6 @@ template = "installer-config/installer.wxs" [workspace] resolver = "2" members = [ - "compiler", ".", "derive", "vm", @@ -142,7 +141,7 @@ license = "MIT" [workspace.dependencies] rustpython-compiler-core = { path = "crates/compiler-core", version = "0.4.0" } -rustpython-compiler = { path = "compiler", version = "0.4.0" } +rustpython-compiler = { path = "crates/compiler", version = "0.4.0" } rustpython-codegen = { path = "crates/codegen", version = "0.4.0" } rustpython-common = { path = "crates/common", version = "0.4.0" } rustpython-derive = { path = "derive", version = "0.4.0" } diff --git a/compiler/Cargo.toml b/crates/compiler/Cargo.toml similarity index 100% rename from compiler/Cargo.toml rename to crates/compiler/Cargo.toml diff --git a/compiler/src/lib.rs b/crates/compiler/src/lib.rs similarity index 100% rename from compiler/src/lib.rs rename to crates/compiler/src/lib.rs