mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-13 08:05:17 +00:00
20 lines
549 B
TOML
20 lines
549 B
TOML
[package]
|
|
name = "rustpython-ast"
|
|
version = "0.2.0"
|
|
description = "AST definitions for RustPython"
|
|
authors = ["RustPython Team"]
|
|
edition = "2021"
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
|
|
[features]
|
|
default = ["constant-optimization", "fold"]
|
|
constant-optimization = ["fold"]
|
|
fold = []
|
|
unparse = ["rustpython-literal"]
|
|
|
|
[dependencies]
|
|
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
|
|
rustpython-literal = { path = "../literal", version = "0.2.0", optional = true }
|
|
|
|
num-bigint = { workspace = true }
|