2020-12-17 21:44:24 +03:00
|
|
|
[package]
|
2021-05-10 14:25:34 +03:00
|
|
|
name = "air-interpreter-interface"
|
|
|
|
description = "Interface of the AIR interpreter"
|
2023-03-15 17:32:29 +02:00
|
|
|
version = "0.13.0"
|
2020-12-17 21:44:24 +03:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
2020-12-28 00:12:11 +03:00
|
|
|
license = "Apache-2.0"
|
2021-05-19 12:43:49 +03:00
|
|
|
documentation = "https://docs.rs/air-interpreter-interface"
|
2021-10-05 20:08:10 +03:00
|
|
|
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/air-lib/interpreter-interface"
|
2021-05-19 12:43:49 +03:00
|
|
|
keywords = ["fluence", "air", "webassembly", "programming-language"]
|
|
|
|
categories = ["wasm"]
|
2020-12-17 21:44:24 +03:00
|
|
|
|
|
|
|
[lib]
|
2021-05-10 14:25:34 +03:00
|
|
|
name = "air_interpreter_interface"
|
2020-12-17 21:44:24 +03:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-09 13:36:19 +03:00
|
|
|
marine-rs-sdk = { version = "0.7.1", optional = true }
|
2023-03-15 17:11:53 +03:00
|
|
|
fluence-it-types = { version = "0.4.0", optional = true }
|
2020-12-17 21:44:24 +03:00
|
|
|
|
2023-03-21 00:28:18 +07:00
|
|
|
serde = "1.0.158"
|
2023-03-07 11:04:55 +03:00
|
|
|
serde_json = "1.0.94"
|
2022-08-19 12:29:21 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["marine"]
|
|
|
|
marine = ["marine-rs-sdk", "fluence-it-types"]
|