Shuffle files in proper places

This commit is contained in:
Windel Bouwman
2018-07-07 17:14:45 +02:00
parent 9526f78d82
commit 377795dbec
15 changed files with 4 additions and 4 deletions

View File

@@ -8,5 +8,5 @@ log="0.4.1"
env_logger="0.5.10"
clap = "2.31.2"
rustpython_parser = {path = "parser"}
rustpython_vm = {path = "vm/RustPython"}
rustpython_vm = {path = "vm"}
py_code_object = { path = "py_code_object" }

4
vm/.gitignore vendored
View File

@@ -1,5 +1,5 @@
venv/
tests/*.bytecode
RustPython/Cargo.lock
RustPython/target
Cargo.lock
python_compiler/target
target/

View File

@@ -9,4 +9,4 @@ env_logger = "0.3"
serde = "0.8.22"
serde_derive = "0.8"
serde_json = "0.8"
py_code_object = { path = "../../py_code_object" }
py_code_object = { path = "../py_code_object" }