marine/engine/Cargo.toml

29 lines
948 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"
2020-07-28 16:14:53 +00:00
description = "Fluence Compute Engine"
2020-08-08 22:49:51 +00:00
version = "0.1.1"
2020-05-28 20:20:24 +00:00
authors = ["Fluence Labs"]
2020-07-28 16:14:53 +00:00
license = "Apache-2.0"
2020-05-28 20:20:24 +00:00
edition = "2018"
2020-07-28 16:14:53 +00:00
[lib]
name = "fce"
path = "src/lib.rs"
2020-05-28 20:20:24 +00:00
[dependencies]
2020-07-28 16:14:53 +00:00
fce-wit-interfaces = { path = "../crates/wit-interfaces", version = "0.1.0" }
fce-wit-parser = { path = "../crates/wit-parser", version = "0.1.2" }
2020-06-04 16:06:23 +00:00
2020-07-28 16:14:53 +00:00
wasmer-runtime = { package = "wasmer-runtime-fl", version = "0.17.0" }
# dynamicfunc-fat-closures allows using state inside DynamicFunc
2020-07-28 16:14:53 +00:00
wasmer-core = { package = "wasmer-runtime-core-fl", version = "0.17.0", 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-07-28 16:14:53 +00:00
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.0" }
serde = { version = "1.0.114", default-features = false, features = [ "derive" ] }
2020-06-04 16:06:23 +00:00
multimap = "0.8.1"
2020-08-08 09:44:27 +00:00
boolinator = "2.4.0"
2020-05-28 20:20:24 +00:00
parity-wasm = "0.41.0"
pwasm-utils = "0.12.0"
log = "0.4.8"