RustPython-Parser/ast/Cargo.toml
Jeong, YunWon 13cae0af64
Clean up Cargo.toml and bump dependency versions (#104)
* Update PyO3

* replace unicode_names2 to official release

* clean up Cargo.toml and bump dependency versions
2023-10-03 20:50:52 +09:00

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"