aquavm/air-interpreter/Cargo.toml
2021-08-05 22:24:09 +03:00

31 lines
622 B
TOML

[package]
name = "air-interpreter"
version = "0.10.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"
[features]
marine = ["air/marine"]