From 42af29c79c8e88ad02dc33c961c20c3ef69f8e86 Mon Sep 17 00:00:00 2001 From: Noa <33094578+coolreader18@users.noreply.github.com> Date: Mon, 30 Aug 2021 00:36:40 -0500 Subject: [PATCH] Add unparse feature to ast --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 891b26d..94d587c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" indexmap = "1.0" itertools = "0.10.0" rustpython-bytecode = { path = "../bytecode", version = "0.1.1" } -rustpython-ast = { path = "../ast" } +rustpython-ast = { path = "../ast", features = ["unparse"] } num-complex = { version = "0.4.0", features = ["serde"] } num-traits = "0.2" log = "0.4"