mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 03:05:32 +00:00
ec3d3a4e6f
There was a small typo in the `fn display_last_error`. Closes #263
41 lines
838 B
TOML
41 lines
838 B
TOML
[package]
|
|
name = "air-parser"
|
|
description = "Parser of the AIR scripts in a form of string to AST"
|
|
version = "0.7.1"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
keywords = ["fluence", "air", "parser", "lalrpop"]
|
|
categories = ["wasm"]
|
|
|
|
[build-dependencies]
|
|
lalrpop = "0.19.6"
|
|
|
|
[dependencies]
|
|
air-lambda-ast = { path = "../lambda/ast" }
|
|
air-lambda-parser = { path = "../lambda/parser" }
|
|
|
|
lalrpop-util = "0.19.6"
|
|
regex = "1.5.4"
|
|
codespan = "0.11.1"
|
|
codespan-reporting = "0.11.1"
|
|
multimap = "0.8.3"
|
|
|
|
# TODO: hide serde behind a feature
|
|
serde = { version = "1.0.118", features = ["rc", "derive"] }
|
|
serde_json = "1.0.61"
|
|
|
|
itertools = "0.10.0"
|
|
|
|
thiserror = "1.0.23"
|
|
|
|
[dev-dependencies]
|
|
fstrings = "0.2.3"
|
|
criterion = "0.3.3"
|
|
non-empty-vec = { version = "0.2.0" }
|
|
|
|
[[bench]]
|
|
name = "parser"
|
|
harness = false
|