mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-03 18:29:04 +00:00
22 lines
553 B
TOML
22 lines
553 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 = ["location"]
|
|
constant-optimization = ["fold"]
|
|
location = ["fold", "rustpython-parser-core/location"]
|
|
fold = []
|
|
unparse = ["rustpython-literal"]
|
|
visitor = []
|
|
|
|
[dependencies]
|
|
rustpython-parser-core = { workspace = true }
|
|
rustpython-literal = { workspace = true, optional = true }
|
|
|
|
num-bigint = { workspace = true }
|