aquavm/stepper/Cargo.toml

31 lines
653 B
TOML
Raw Normal View History

[package]
name = "aquamarine"
2020-11-11 14:43:26 +03:00
version = "0.1.3"
authors = ["Fluence Labs"]
edition = "2018"
[lib]
name = "aquamarine_client"
crate-type = ["cdylib"]
path = "src/wasm_bindgen.rs"
[[bin]]
name = "aquamarine"
path = "src/fce.rs"
[dependencies]
2020-10-30 20:29:05 +03:00
stepper-lib = { path = "../stepper-lib" }
2020-12-17 21:44:24 +03:00
stepper-interface = { path = "../crates/stepper-interface" }
2020-12-22 21:05:04 +03:00
fluence = { version = "=0.2.13", 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"
2020-12-22 21:05:04 +03:00
serde = { version = "1.0.116", features = [ "derive", "rc" ] }
serde_json = "1.0"
2020-10-30 20:29:05 +03:00
[features]
fce = ["stepper-lib/fce"]