2020-12-17 18:44:24 +00:00
|
|
|
[package]
|
2021-05-10 11:25:34 +00:00
|
|
|
name = "air-interpreter-interface"
|
|
|
|
description = "Interface of the AIR interpreter"
|
2022-12-26 08:45:14 +00:00
|
|
|
version = "0.12.0"
|
2020-12-17 18:44:24 +00:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
2020-12-27 21:12:11 +00:00
|
|
|
license = "Apache-2.0"
|
2021-05-19 09:43:49 +00:00
|
|
|
documentation = "https://docs.rs/air-interpreter-interface"
|
2021-10-05 17:08:10 +00:00
|
|
|
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/air-lib/interpreter-interface"
|
2021-05-19 09:43:49 +00:00
|
|
|
keywords = ["fluence", "air", "webassembly", "programming-language"]
|
|
|
|
categories = ["wasm"]
|
2020-12-17 18:44:24 +00:00
|
|
|
|
|
|
|
[lib]
|
2021-05-10 11:25:34 +00:00
|
|
|
name = "air_interpreter_interface"
|
2020-12-17 18:44:24 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-26 08:45:14 +00:00
|
|
|
air-interpreter-cid = { version = "0.1.0", path = "../interpreter-cid" }
|
2022-09-09 10:36:19 +00:00
|
|
|
marine-rs-sdk = { version = "0.7.1", optional = true }
|
2022-09-13 16:03:18 +00:00
|
|
|
fluence-it-types = { version = "0.3.2", optional = true }
|
2020-12-17 18:44:24 +00:00
|
|
|
|
2022-12-26 14:45:08 +00:00
|
|
|
serde = "1.0.151"
|
2022-11-24 09:54:40 +00:00
|
|
|
serde_json = "1.0.89"
|
2022-08-19 09:29:21 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["marine"]
|
|
|
|
marine = ["marine-rs-sdk", "fluence-it-types"]
|