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

41 lines
856 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.2"
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]
lalrpop = "0.19.8"
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" }
lalrpop-util = "0.19.8"
regex = "1.7.0"
2021-08-24 13:14:15 +00:00
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.147", features = ["rc", "derive"] }
serde_json = "1.0.89"
itertools = "0.10.5"
thiserror = "1.0.37"
tracing = "0.1.37"
2021-01-22 15:54:05 +00:00
2020-11-03 14:43:58 +00:00
[dev-dependencies]
fstrings = "0.2.3"
criterion = "0.4.0"
non-empty-vec = { version = "0.2.3" }
2020-11-05 13:50:09 +00:00
[[bench]]
name = "parser"
harness = false