Skip to content

Commit cc2e84b

Browse files
authored
Move jit -> crates/jit (RustPython#6262)
1 parent 7f45ba4 commit cc2e84b

File tree

11 files changed

+2
-3
lines changed

11 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ members = [
124124
"compiler",
125125
".",
126126
"derive",
127-
"jit",
128127
"vm",
129128
"vm/sre_engine",
130129
"stdlib",
@@ -148,7 +147,7 @@ rustpython-codegen = { path = "crates/codegen", version = "0.4.0" }
148147
rustpython-common = { path = "crates/common", version = "0.4.0" }
149148
rustpython-derive = { path = "derive", version = "0.4.0" }
150149
rustpython-derive-impl = { path = "derive-impl", version = "0.4.0" }
151-
rustpython-jit = { path = "jit", version = "0.4.0" }
150+
rustpython-jit = { path = "crates/jit", version = "0.4.0" }
152151
rustpython-literal = { path = "crates/literal", version = "0.4.0" }
153152
rustpython-vm = { path = "vm", default-features = false, version = "0.4.0" }
154153
rustpython-pylib = { path = "crates/pylib", version = "0.4.0" }

jit/Cargo.toml renamed to crates/jit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cranelift-jit = "0.119"
2222
cranelift-module = "0.119"
2323

2424
[dev-dependencies]
25-
rustpython-derive = { path = "../derive", version = "0.4.0" }
25+
rustpython-derive = { workspace = true }
2626

2727
approx = "0.5.1"
2828

File renamed without changes.

0 commit comments

Comments
 (0)