mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-27 13:54:55 +00:00
Move bytecode into own crate.
This commit is contained in:
parent
f0148f46d0
commit
10957879db
1 changed files with 2 additions and 1 deletions
|
@ -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"] }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue