Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix examoles
  • Loading branch information
ShaharNaveh committed Nov 15, 2025
commit e84b44698146bda84e9a01b96da919c76593dfa2
2 changes: 1 addition & 1 deletion example_projects/barebone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
rustpython-vm = { path = "../../vm", default-features = false }
rustpython-vm = { path = "../../crates/vm", default-features = false }

[workspace]

Expand Down
2 changes: 1 addition & 1 deletion example_projects/frozen_stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
rustpython = { path = "../../", default-features = false, features = ["freeze-stdlib"] }
rustpython-vm = { path = "../../vm", default-features = false, features = ["freeze-stdlib"] }
rustpython-vm = { path = "../../crates/vm", default-features = false, features = ["freeze-stdlib"] }
rustpython-pylib = { path = "../../crates/pylib", default-features = false, features = ["freeze-stdlib"] }

[workspace]
Expand Down
Loading