mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-07 21:25:31 +00:00
21 lines
633 B
TOML
21 lines
633 B
TOML
[package]
|
|
name = "rustpython-parser-core"
|
|
description = "RustPython parser data types."
|
|
version = "0.2.0"
|
|
authors = ["RustPython Team"]
|
|
edition = "2021"
|
|
repository = "https://github.com/RustPython/Parser/"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
# ruff dependency shouldn't be placed out of this crate
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
ruff_source_location = { path = "../ruff_source_location", optional = true }
|
|
|
|
serde = { version = "1.0.133", optional = true, default-features = false, features = ["derive"] }
|
|
is-macro.workspace = true
|
|
memchr.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
location = ["dep:ruff_source_location"]
|