2020-10-08 12:43:23 +03:00
|
|
|
[package]
|
|
|
|
name = "aquamarine"
|
2020-11-11 14:43:26 +03:00
|
|
|
version = "0.1.3"
|
2020-10-08 12:43:23 +03:00
|
|
|
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-10-08 12:43:23 +03:00
|
|
|
|
2020-12-22 21:05:04 +03:00
|
|
|
fluence = { version = "=0.2.13", features = ["logger"] }
|
2020-11-17 12:02:43 +03:00
|
|
|
|
|
|
|
# Keep 0.2.65 until this is resolved https://github.com/rustwasm/wasm-pack/issues/886
|
|
|
|
wasm-bindgen = "=0.2.65"
|
2020-10-08 12:43:23 +03:00
|
|
|
|
|
|
|
log = "0.4.11"
|
2020-12-22 21:05:04 +03:00
|
|
|
serde = { version = "1.0.116", features = [ "derive", "rc" ] }
|
2020-10-08 12:43:23 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
2020-10-30 20:29:05 +03:00
|
|
|
[features]
|
|
|
|
fce = ["stepper-lib/fce"]
|