mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 10:49:55 +00:00
16 lines
457 B
TOML
16 lines
457 B
TOML
[package]
|
|
name = "rustpython-ast-pyo3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
# This feature is experimental
|
|
# It reimplements AST types, but currently both slower than python AST types and limited to use in other API
|
|
wrapper = []
|
|
|
|
[dependencies]
|
|
rustpython-ast = { workspace = true, features = ["location"] }
|
|
num-complex = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
pyo3 = { workspace = true, features = ["num-bigint", "num-complex"] }
|