marine/engine/Cargo.toml

23 lines
904 B
TOML
Raw Normal View History

2020-05-28 20:20:24 +00:00
[package]
2020-06-04 16:06:23 +00:00
name = "fce"
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" }
# 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" }
serde = { version = "1.0.114", default-features = false, features = [ "derive" ] }
2020-06-04 16:06:23 +00:00
multimap = "0.8.1"
2020-05-28 20:20:24 +00:00
parity-wasm = "0.41.0"
pwasm-utils = "0.12.0"
log = "0.4.8"
2020-06-16 07:41:34 +00:00