37 lines
705 B
TOML
Raw Normal View History

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