Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ members = [
"compiler/literal",
".",
"common",
"derive",
"jit",
"vm",
"vm/sre_engine",
Expand All @@ -152,7 +151,7 @@ rustpython-compiler-core = { path = "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 = "common", version = "0.4.0" }
rustpython-derive = { path = "derive", version = "0.4.0" }
rustpython-derive = { path = "crates/derive", version = "0.4.0" }
rustpython-derive-impl = { path = "derive-impl", version = "0.4.0" }
rustpython-jit = { path = "jit", version = "0.4.0" }
rustpython-literal = { path = "compiler/literal", version = "0.4.0" }
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion jit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cranelift-jit = "0.119"
cranelift-module = "0.119"

[dev-dependencies]
rustpython-derive = { path = "../derive", version = "0.4.0" }
rustpython-derive = { workspace = true, version = "0.4.0" }
Comment thread
ShaharNaveh marked this conversation as resolved.
Outdated

approx = "0.5.1"

Expand Down
Loading