marine/engine/Cargo.toml

23 lines
955 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-06-15 19:21:08 +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"] }
wasmer-wit = { package = "wasmer-interface-types", git = "http://github.com/fluencelabs/interface-types", branch = "master", 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