mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 02:39:22 +00:00

* Move `range` from `Attributed` to `Node`s * No Attributed + custom for Range PoC * Generate all located variants, generate enum implementations * Implement `Copy` on simple enums * Move `Suite` to `ranged` and `located` * Update tests --------- Co-authored-by: Jeong YunWon <jeong@youknowone.org>
41 lines
No EOL
1.2 KiB
TOML
41 lines
No EOL
1.2 KiB
TOML
[package]
|
|
name = "rustpython-parser"
|
|
version = "0.2.0"
|
|
description = "Parser for python code."
|
|
authors = ["RustPython Team"]
|
|
build = "build.rs"
|
|
repository = "https://github.com/RustPython/Parser/"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["location"]
|
|
location = ["rustpython-ast/location", "rustpython-parser-core/location"]
|
|
serde = ["dep:serde", "rustpython-parser-core/serde"]
|
|
all-nodes-with-ranges = ["rustpython-ast/all-nodes-with-ranges"]
|
|
|
|
[build-dependencies]
|
|
anyhow = { workspace = true }
|
|
lalrpop = { version = "0.20.0", default-features = false, optional = true }
|
|
phf_codegen = "0.11.1"
|
|
tiny-keccak = { version = "2", features = ["sha3"] }
|
|
|
|
[dependencies]
|
|
rustpython-ast = { workspace = true }
|
|
rustpython-parser-core = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
num-bigint = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
unicode_names2 = { workspace = true }
|
|
|
|
unic-emoji-char = "0.9.0"
|
|
unic-ucd-ident = "0.9.0"
|
|
lalrpop-util = { version = "0.20.0", default-features = false }
|
|
phf = "0.11.1"
|
|
rustc-hash = "1.1.0"
|
|
serde = { version = "1.0.133", optional = true, default-features = false, features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true } |