mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-07 21:25:31 +00:00

* Update PyO3 * replace unicode_names2 to official release * clean up Cargo.toml and bump dependency versions
27 lines
791 B
TOML
27 lines
791 B
TOML
[package]
|
|
name = "rustpython-ast"
|
|
description = "AST definitions for RustPython"
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[features]
|
|
default = ["location", "malachite-bigint"]
|
|
constant-optimization = ["fold"]
|
|
location = ["fold", "rustpython-parser-core/location"]
|
|
fold = []
|
|
unparse = ["rustpython-literal"]
|
|
visitor = []
|
|
all-nodes-with-ranges = []
|
|
|
|
[dependencies]
|
|
rustpython-parser-core = { workspace = true }
|
|
rustpython-literal = { workspace = true, optional = true }
|
|
|
|
is-macro = { workspace = true }
|
|
num-bigint = { workspace = true, optional = true }
|
|
malachite-bigint = { workspace = true, optional = true }
|
|
static_assertions = "1.1.0"
|