aquavm/crates/air-lib/interpreter-interface/Cargo.toml
2022-09-09 13:36:19 +03:00

28 lines
832 B
TOML

[package]
name = "air-interpreter-interface"
description = "Interface of the AIR interpreter"
version = "0.11.0"
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.1", optional = true }
serde = "1.0.144"
serde_json = "1.0.85"
[features]
default = ["marine"]
marine = ["marine-rs-sdk", "fluence-it-types"]