RustPython-Parser/parser/Cargo.toml
2022-09-21 16:49:35 +09:00

37 lines
847 B
TOML

[package]
name = "rustpython-parser"
version = "0.1.2"
description = "Parser for python code."
authors = ["RustPython Team"]
build = "build.rs"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
edition = "2021"
[features]
default = ["lalrpop"] # removing this causes potential build failure
[build-dependencies]
anyhow = "1.0.45"
lalrpop = { version = "0.19.8", optional = true }
phf_codegen = "0.10"
tiny-keccak = { version = "2", features = ["sha3"] }
[dependencies]
rustpython-ast = { path = "../ast" }
rustpython-compiler-core = { path = "../core" }
ahash = "0.7.6"
itertools = "0.10.3"
lalrpop-util = "0.19.8"
log = "0.4.16"
num-bigint = "0.4.3"
num-traits = "0.2.14"
phf = "0.10.1"
unic-emoji-char = "0.9.0"
unic-ucd-ident = "0.9.0"
unicode_names2 = "0.5.0"
thiserror = "1.0"
[dev-dependencies]
insta = "1.14.0"