mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 03:05:32 +00:00
bf8aee7f15
This PR is mostly a revertion of #357, that is needed to make stream work correctly in fold itrerations. Closes #363.
25 lines
606 B
TOML
25 lines
606 B
TOML
[package]
|
|
name = "air-interpreter-data"
|
|
description = "Data format of the AIR interpreter"
|
|
version = "0.4.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"
|