29 lines
799 B
TOML
Raw Normal View History

2021-08-24 16:14:15 +03:00
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.6.0"
2021-08-24 16:14:15 +03:00
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
2021-10-05 20:08:10 +03:00
publish = false
2021-08-24 16:14:15 +03:00
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" }
# TODO version?
air-interpreter-interface = { path = "../interpreter-interface" }
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
polyplets = { path = "../polyplets" }
serde = {version = "1.0.152", features = ["derive", "rc"]}
serde_json = "1.0.91"
semver = { version = "1.0.16", features = ["serde"] }
once_cell = "1.17.0"
tracing = "0.1.37"