aquavm/crates/air-lib/air-parser/Cargo.toml

40 lines
800 B
TOML
Raw Normal View History

2020-11-03 14:43:58 +00:00
[package]
name = "air-parser"
2021-10-05 17:08:10 +00:00
description = "Parser of the AIR scripts in a form of string to AST"
version = "0.7.1"
2020-11-03 14:43:58 +00:00
authors = ["Fluence Labs"]
edition = "2018"
2020-12-27 21:12:11 +00:00
license = "Apache-2.0"
publish = false
2021-10-05 17:08:10 +00:00
keywords = ["fluence", "air", "parser", "lalrpop"]
categories = ["wasm"]
2020-11-03 14:43:58 +00:00
[build-dependencies]
2021-08-24 13:14:15 +00:00
lalrpop = "0.19.6"
2020-11-03 14:43:58 +00:00
[dependencies]
2021-11-12 11:12:50 +00:00
air-lambda-ast = { path = "../lambda/ast" }
air-lambda-parser = { path = "../lambda/parser" }
2021-08-24 13:14:15 +00:00
lalrpop-util = "0.19.6"
regex = "1.5.4"
codespan = "0.11.1"
codespan-reporting = "0.11.1"
2021-03-19 16:15:41 +00:00
multimap = "0.8.3"
2020-11-03 14:43:58 +00:00
2021-01-22 15:54:05 +00:00
# TODO: hide serde behind a feature
serde = { version = "1.0.118", features = ["rc", "derive"] }
serde_json = "1.0.61"
2021-02-16 17:04:00 +00:00
itertools = "0.10.0"
2021-01-22 15:54:05 +00:00
thiserror = "1.0.23"
2020-11-03 14:43:58 +00:00
[dev-dependencies]
fstrings = "0.2.3"
2020-11-05 13:50:09 +00:00
criterion = "0.3.3"
[[bench]]
name = "parser"
harness = false