mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-24 05:26:24 +00:00

* Add `format` and `cformat` modules from `RustPython` * Introduce `rustpython-format` crate * Remove unused dependencies
19 lines
579 B
TOML
19 lines
579 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"] }
|
|
|
|
[features]
|
|
default = []
|
|
location = ["ruff_source_location"]
|