From 0c5bf8e470fa7985ceaecc704e79a94a4886ff12 Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Mon, 2 Nov 2020 12:37:19 -0600 Subject: [PATCH] Split the ast from the parser, remove compiler dep on parser --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ca8881825..dd9f1d0ba3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,10 +11,11 @@ edition = "2018" indexmap = "1.0" itertools = "0.9" rustpython-bytecode = { path = "../bytecode", version = "0.1.1" } -rustpython-parser = { path = "../parser", version = "0.1.1" } +rustpython-ast = { path = "../ast" } num-complex = { version = "0.3", features = ["serde"] } log = "0.4" arrayvec = "0.5" [dev-dependencies] +rustpython-parser = { path = "../parser" } insta = "1.1"