2020-11-03 17:43:58 +03:00
|
|
|
[package]
|
2023-03-15 16:59:30 +07:00
|
|
|
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"]
|
2023-12-18 18:48:46 +03:00
|
|
|
edition = "2021"
|
2024-06-26 12:34:36 +03:00
|
|
|
license = "AGPL-3.0-only"
|
2023-03-15 16:59:30 +07:00
|
|
|
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
|
|
|
|
2023-03-15 16:59:30 +07:00
|
|
|
[lib]
|
|
|
|
name = "air_parser"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2020-11-03 17:43:58 +03:00
|
|
|
[build-dependencies]
|
2023-06-28 03:12:04 +07:00
|
|
|
lalrpop = "0.20.0"
|
2020-11-03 17:43:58 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-08 12:08:51 +02:00
|
|
|
air-lambda-ast = { version = "0.1.0", path = "../lambda/ast" }
|
2023-02-21 20:28:56 +03:00
|
|
|
air-lambda-parser = { version = "0.1.0", path = "../lambda/parser" }
|
2021-10-18 23:23:30 +03:00
|
|
|
|
2023-06-28 03:12:04 +07:00
|
|
|
lalrpop-util = "0.20.0"
|
2023-10-23 12:11:13 +03:00
|
|
|
regex = "1.10.2"
|
2021-08-24 16:14:15 +03:00
|
|
|
codespan = "0.11.1"
|
|
|
|
codespan-reporting = "0.11.1"
|
2023-10-29 15:41:30 +07:00
|
|
|
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
|
2023-10-29 20:44:40 +07:00
|
|
|
serde = { version = "1.0.190", features = ["rc", "derive"] }
|
2023-11-03 00:15:56 +07:00
|
|
|
serde_json = "1.0.108"
|
2020-12-02 18:47:14 +03:00
|
|
|
|
2022-10-15 21:08:46 +03:00
|
|
|
itertools = "0.10.5"
|
2023-10-29 20:10:26 +07:00
|
|
|
thiserror = "1.0.50"
|
2023-10-29 21:18:50 +07:00
|
|
|
tracing = "0.1.40"
|
2024-02-13 16:11:21 +04:00
|
|
|
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]
|
2024-01-03 19:13:01 +07:00
|
|
|
criterion = "0.5.1"
|
2022-09-07 12:10:07 +03:00
|
|
|
non-empty-vec = { version = "0.2.3" }
|
2020-11-05 16:50:09 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "parser"
|
|
|
|
harness = false
|