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"
|
2022-09-13 13:54:57 +00:00
|
|
|
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"
|
2021-05-19 09:43:49 +00:00
|
|
|
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]
|
2022-09-07 09:10:07 +00:00
|
|
|
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" }
|
2021-10-18 20:23:30 +00:00
|
|
|
air-lambda-parser = { path = "../lambda/parser" }
|
|
|
|
|
2022-09-07 09:10:07 +00:00
|
|
|
lalrpop-util = "0.19.8"
|
2022-11-24 09:54:40 +00:00
|
|
|
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
|
2022-11-24 09:54:40 +00:00
|
|
|
serde = { version = "1.0.147", features = ["rc", "derive"] }
|
|
|
|
serde_json = "1.0.89"
|
2020-12-02 15:47:14 +00:00
|
|
|
|
2022-10-15 18:08:46 +00:00
|
|
|
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"
|
2022-09-13 16:03:18 +00:00
|
|
|
criterion = "0.4.0"
|
2022-09-07 09:10:07 +00:00
|
|
|
non-empty-vec = { version = "0.2.3" }
|
2020-11-05 13:50:09 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "parser"
|
|
|
|
harness = false
|