aquavm/crates/air-lib/interpreter-interface/Cargo.toml
Mike Voronov 910f1665eb
fix(trace-handler): fix fold and canon compatibility (#357)
Fixes bug of traces divergence when `canon` is used inside `fold`.

Closes #356.
2022-10-09 12:56:12 +03:00

28 lines
832 B
TOML

[package]
name = "air-interpreter-interface"
description = "Interface of the AIR interpreter"
version = "0.11.2"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
documentation = "https://docs.rs/air-interpreter-interface"
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/air-lib/interpreter-interface"
publish = true # this crate is used by avm server that in its turn is used by the node
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
[lib]
name = "air_interpreter_interface"
path = "src/lib.rs"
[dependencies]
marine-rs-sdk = { version = "0.7.1", optional = true }
fluence-it-types = { version = "0.3.2", optional = true }
serde = "1.0.144"
serde_json = "1.0.85"
[features]
default = ["marine"]
marine = ["marine-rs-sdk", "fluence-it-types"]