2020-10-08 12:43:23 +03:00
|
|
|
[package]
|
|
|
|
name = "aquamarine"
|
2021-04-28 16:05:35 +03:00
|
|
|
version = "0.9.0"
|
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]
|
2021-02-17 23:36:36 +03:00
|
|
|
interpreter-lib = { path = "../interpreter-lib" }
|
2020-10-08 12:43:23 +03:00
|
|
|
|
2021-04-29 18:26:13 +03:00
|
|
|
fluence = { version = "0.6.2", 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"
|
2021-01-12 13:04:25 +03:00
|
|
|
serde = { version = "=1.0.118", features = [ "derive", "rc" ] }
|
2020-10-08 12:43:23 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
2020-10-30 20:29:05 +03:00
|
|
|
[features]
|
2021-02-17 23:36:36 +03:00
|
|
|
fce = ["interpreter-lib/fce"]
|