RustPython-Parser/ast-pyo3/Cargo.toml
2023-06-17 01:32:27 +09:00

23 lines
686 B
TOML

[package]
name = "rustpython-ast-pyo3"
version = "0.0.1"
edition = "2021"
[features]
# abi3 = ["pyo3/abi3-py37"] # will be supported from next pyo3 version
# This feature is experimental
# It reimplements AST types, but currently both slower than python AST types and limited to use in other API
wrapper = []
[lib]
name = "rustpython_ast"
crate-type = ["cdylib"]
[dependencies]
rustpython-ast = { workspace = true, features = ["location"] }
rustpython-parser = { workspace = true, features = ["num-bigint"] }
num-complex = { workspace = true }
num-traits = { workspace = true }
once_cell = { workspace = true }
pyo3 = { workspace = true, features = ["num-bigint", "num-complex"] }