From 10957879dbcea6a5669e6a2a5053e1209fcfe20b Mon Sep 17 00:00:00 2001 From: Windel Bouwman Date: Sun, 30 Jun 2019 11:01:40 +0200 Subject: [PATCH] Move bytecode into own crate. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fc0d195931..d0aa092629 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "rustpython_compiler" version = "0.1.0" -authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>"] +authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>", "Windel Bouwman "] edition = "2018" [dependencies] bitflags = "1.1" +rustpython_bytecode = { path = "../bytecode" } rustpython_parser = { path = "../parser" } serde = { version = "1.0", features = ["derive"] } num-complex = { version = "0.2", features = ["serde"] }