mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-15 12:30:50 +00:00
37 lines
934 B
TOML
37 lines
934 B
TOML
[package]
|
|
name = "air-interpreter"
|
|
version = "0.24.0"
|
|
description = "Crate-wrapper for air"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2018"
|
|
publish = false
|
|
keywords = ["fluence", "air", "webassembly", "programming-language"]
|
|
categories = ["wasm"]
|
|
|
|
[lib]
|
|
name = "air_interpreter_client"
|
|
crate-type = ["cdylib"]
|
|
path = "src/wasm_bindgen.rs"
|
|
|
|
[[bin]]
|
|
name = "air_interpreter_server"
|
|
path = "src/marine.rs"
|
|
|
|
[dependencies]
|
|
air = { path = "../air" }
|
|
air-log-targets = { path = "../crates/air-lib/log-targets" }
|
|
|
|
marine-rs-sdk = { version = "0.6.15", features = ["logger"] }
|
|
|
|
# Keep 0.2.65 until this is resolved https://github.com/rustwasm/wasm-pack/issues/886
|
|
wasm-bindgen = "=0.2.65"
|
|
|
|
log = "0.4.11"
|
|
serde = { version = "1.0.118", features = [ "derive", "rc" ] }
|
|
serde_json = "1.0.61"
|
|
|
|
[features]
|
|
# indicates that this library should be compiled for the marine target,
|
|
# otherwise it will be compiled for the wasm bindgen target
|
|
marine = []
|