aquavm/air-interpreter/Cargo.toml
Mike Voronov 4a4fc0889b
Make interpreter async (#130)
Co-authored-by: folex <0xdxdy@gmail.com>
Co-authored-by: Pavel Murygin <pavel.murygin@gmail.com>
2021-10-04 10:58:00 +03:00

33 lines
744 B
TOML

[package]
name = "air-interpreter"
version = "0.15.0"
authors = ["Fluence Labs"]
edition = "2018"
publish = false
[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" }
marine-rs-sdk = { version = "0.6.11", 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 = []