mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-16 04:50:49 +00:00
31 lines
622 B
TOML
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"]
|