46 lines
1.1 KiB
TOML
Raw Normal View History

2020-11-03 17:43:58 +03:00
[package]
name = "aquavm-air-parser"
2021-10-05 20:08:10 +03:00
description = "Parser of the AIR scripts in a form of string to AST"
2024-02-22 13:05:33 +02:00
version = "0.12.0"
2024-06-26 12:34:36 +03:00
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
2024-06-26 12:34:36 +03:00
license = "AGPL-3.0-only"
documentation = "https://docs.rs/air-parser"
repository = "https://github.com/fluencelabs/aquavm"
2021-10-05 20:08:10 +03:00
keywords = ["fluence", "air", "parser", "lalrpop"]
categories = ["wasm"]
2020-11-03 17:43:58 +03:00
[lib]
name = "air_parser"
path = "src/lib.rs"
2020-11-03 17:43:58 +03:00
[build-dependencies]
lalrpop = "0.20.0"
2020-11-03 17:43:58 +03:00
[dependencies]
air-lambda-ast = { version = "0.1.0", path = "../lambda/ast" }
air-lambda-parser = { version = "0.1.0", path = "../lambda/parser" }
lalrpop-util = "0.20.0"
regex = "1.10.2"
2021-08-24 16:14:15 +03:00
codespan = "0.11.1"
codespan-reporting = "0.11.1"
multimap = "0.9.1"
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.190", features = ["rc", "derive"] }
serde_json = "1.0.108"
itertools = "0.10.5"
thiserror = "1.0.50"
tracing = "0.1.40"
air-interpreter-value = { version = "0.1.0", path = "../interpreter-value" }
2021-01-22 18:54:05 +03:00
2020-11-03 17:43:58 +03:00
[dev-dependencies]
criterion = "0.5.1"
non-empty-vec = { version = "0.2.3" }
2020-11-05 16:50:09 +03:00
[[bench]]
name = "parser"
harness = false