mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 02:39:22 +00:00
16 lines
378 B
TOML
16 lines
378 B
TOML
[package]
|
|
name = "rustpython-ast"
|
|
version = "0.1.0"
|
|
authors = ["RustPython Team"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["constant-optimization", "fold"]
|
|
constant-optimization = ["fold"]
|
|
fold = []
|
|
unparse = ["rustpython-common"]
|
|
|
|
[dependencies]
|
|
num-bigint = "0.4.3"
|
|
rustpython-compiler-core = { path = "../core" }
|
|
rustpython-common = { path = "../../common", optional = true }
|