mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 11:15:33 +00:00
84af9c6185
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
34 lines
672 B
TOML
34 lines
672 B
TOML
[package]
|
|
name = "air-lambda-parser"
|
|
description = "Parser of an AIR lambda"
|
|
version = "0.1.0"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
keywords = ["fluence", "air", "parser", "lalrpop"]
|
|
categories = ["wasm"]
|
|
|
|
[lib]
|
|
name = "air_lambda_parser"
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
lalrpop = "0.19.8"
|
|
|
|
[dependencies]
|
|
air-lambda-ast = { path = "../ast" }
|
|
|
|
lalrpop-util = "0.19.8"
|
|
regex = "1.7.1"
|
|
codespan = "0.11.1"
|
|
codespan-reporting = "0.11.1"
|
|
multimap = "0.8.3"
|
|
|
|
# TODO: hide serde behind a feature
|
|
serde = { version = "1.0.152", features = ["rc", "derive"] }
|
|
serde_json = "1.0.92"
|
|
|
|
itertools = "0.10.5"
|
|
thiserror = "1.0.38"
|