nac3_sca/nac3parser/Cargo.toml

25 lines
478 B
TOML
Raw Normal View History

[package]
2021-11-03 17:11:00 +08:00
name = "nac3parser"
version = "0.1.2"
description = "Parser for python code."
2021-11-03 17:11:00 +08:00
authors = [ "RustPython Team", "M-Labs" ]
build = "build.rs"
license = "MIT"
edition = "2018"
[build-dependencies]
2022-08-05 16:58:30 +08:00
lalrpop = "0.19"
[dependencies]
2021-11-03 17:11:00 +08:00
nac3ast = { path = "../nac3ast" }
2022-08-05 16:58:30 +08:00
lalrpop-util = "0.19"
log = "0.4"
unic-emoji-char = "0.9"
unic-ucd-ident = "0.9"
2022-08-05 16:58:30 +08:00
unicode_names2 = "0.5"
phf = { version = "0.11", features = ["macros"] }
ahash = "0.7"
[dev-dependencies]
2022-01-31 15:18:49 +08:00
insta = "=1.11.0"