Move bytecode into own crate.

This commit is contained in:
Windel Bouwman 2019-06-30 11:01:40 +02:00
parent f0148f46d0
commit 10957879db

View file

@ -1,11 +1,12 @@
[package] [package]
name = "rustpython_compiler" name = "rustpython_compiler"
version = "0.1.0" version = "0.1.0"
authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>"] authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>", "Windel Bouwman <windel@windel.nl>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bitflags = "1.1" bitflags = "1.1"
rustpython_bytecode = { path = "../bytecode" }
rustpython_parser = { path = "../parser" } rustpython_parser = { path = "../parser" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
num-complex = { version = "0.2", features = ["serde"] } num-complex = { version = "0.2", features = ["serde"] }