nac3/nac3parser/Cargo.toml

25 lines
478 B
TOML
Raw Permalink 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"
2023-09-15 10:25:50 +08:00
edition = "2021"
[build-dependencies]
2023-09-01 16:56:32 +08:00
lalrpop = "0.20"
[dependencies]
2021-11-03 17:11:00 +08:00
nac3ast = { path = "../nac3ast" }
2023-09-01 16:56:32 +08:00
lalrpop-util = "0.20"
2022-08-05 16:58:30 +08:00
log = "0.4"
unic-emoji-char = "0.9"
unic-ucd-ident = "0.9"
2024-02-19 19:30:25 +08:00
unicode_names2 = "1.2"
2022-08-05 16:58:30 +08:00
phf = { version = "0.11", features = ["macros"] }
2023-09-01 16:56:32 +08:00
ahash = "0.8"
[dev-dependencies]
2022-01-31 15:18:49 +08:00
insta = "=1.11.0"