aquavm/crates/air-lib/interpreter-data/Cargo.toml
Ivan Boldyrev 4a2e8be178
refactor(parser): use AirPos type for AIR script position (#341)
Use a dedicated wrapper type for better type safety and self-documented code.
2022-09-29 00:16:37 +03:00

25 lines
606 B
TOML

[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.3.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
publish = false
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
[lib]
name = "air_interpreter_data"
path = "src/lib.rs"
[dependencies]
air-utils = { path = "../utils" }
air-parser = { path = "../air-parser" }
serde = {version = "1.0.144", features = ["derive", "rc"]}
serde_json = "1.0.85"
semver = { version = "1.0.14", features = ["serde"] }
once_cell = "1.14.0"
tracing = "0.1.36"