mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 15:44:22 -05:00
21 lines
548 B
TOML
21 lines
548 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/Parser/"
|
|
license = "MIT"
|
|
|
|
[features]
|
|
default = ["malachite-bigint"]
|
|
|
|
[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"
|