2020-05-28 20:20:24 +00:00
|
|
|
[package]
|
2020-06-04 16:06:23 +00:00
|
|
|
name = "fce"
|
2020-06-15 14:22:18 +00:00
|
|
|
version = "0.1.0"
|
2020-05-28 20:20:24 +00:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-09 03:21:04 +00:00
|
|
|
fce-wit-interfaces = { path = "../crates/fce-wit-interfaces", version = "0.1.0" }
|
|
|
|
wit-parser = { path = "../crates/wit-parser", version = "0.1.0" }
|
2020-06-04 16:06:23 +00:00
|
|
|
|
2020-06-16 07:41:34 +00:00
|
|
|
wasmer-runtime = { git = "https://github.com/fluencelabs/wasmer", branch = "fluence" }
|
2020-06-03 20:19:07 +00:00
|
|
|
# dynamicfunc-fat-closures allows using state inside DynamicFunc
|
2020-06-16 07:41:34 +00:00
|
|
|
wasmer-core = { package = "wasmer-runtime-core", git = "http://github.com/fluencelabs/wasmer", branch = "fluence", features = ["dynamicfunc-fat-closures"] }
|
2020-07-28 16:09:02 +00:00
|
|
|
wasmer-wit = { package = "wasmer-interface-types-fl", version = "0.17.0", features = ["serde"] }
|
2020-06-16 07:41:34 +00:00
|
|
|
wasmer-wasi = { git = "https://github.com/fluencelabs/wasmer", branch = "fluence" }
|
2020-06-30 12:57:48 +00:00
|
|
|
serde = { version = "1.0.114", default-features = false, features = [ "derive" ] }
|
2020-06-04 16:06:23 +00:00
|
|
|
|
2020-06-03 20:19:07 +00:00
|
|
|
multimap = "0.8.1"
|
2020-05-28 20:20:24 +00:00
|
|
|
parity-wasm = "0.41.0"
|
|
|
|
pwasm-utils = "0.12.0"
|
2020-06-23 12:58:02 +00:00
|
|
|
log = "0.4.8"
|
2020-06-16 07:41:34 +00:00
|
|
|
|