mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
16 lines
327 B
TOML
16 lines
327 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.2"
|
|
rustpython-common = { path = "../common", optional = true }
|