marine/engine/Cargo.toml

38 lines
1.1 KiB
TOML
Raw Normal View History

2020-05-28 23:20:24 +03:00
[package]
2020-06-04 19:06:23 +03:00
name = "fce"
2020-07-28 19:14:53 +03:00
description = "Fluence Compute Engine"
2020-12-29 17:51:13 +03:00
version = "0.1.15"
2020-05-28 23:20:24 +03:00
authors = ["Fluence Labs"]
2020-07-28 19:14:53 +03:00
license = "Apache-2.0"
2020-05-28 23:20:24 +03:00
edition = "2018"
2020-07-28 19:14:53 +03:00
[lib]
name = "fce"
path = "src/lib.rs"
2020-05-28 23:20:24 +03:00
[dependencies]
2020-12-29 17:51:13 +03:00
fce-wit-interfaces = { path = "../crates/wit-interfaces", version = "0.1.10" }
fce-wit-parser = { path = "../crates/wit-parser", version = "0.1.12" }
2020-11-05 20:58:13 +03:00
fce-utils = { path = "../crates/utils", version = "0.1.0" }
2020-06-04 19:06:23 +03:00
2020-07-28 19:14:53 +03:00
wasmer-runtime = { package = "wasmer-runtime-fl", version = "0.17.0" }
# dynamicfunc-fat-closures allows using state inside DynamicFunc
2020-07-28 19:14:53 +03:00
wasmer-core = { package = "wasmer-runtime-core-fl", version = "0.17.0", features = ["dynamicfunc-fat-closures"] }
2020-12-29 17:51:13 +03:00
wasmer-wit = { package = "wasmer-interface-types-fl", version = "=0.17.24" }
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
2020-06-04 19:06:23 +03:00
multimap = "0.8.1"
2020-09-16 01:14:15 +03:00
multi-map = "1.3.0"
2020-08-08 12:44:27 +03:00
boolinator = "2.4.0"
2020-05-28 23:20:24 +03:00
parity-wasm = "0.41.0"
pwasm-utils = "0.12.0"
2020-10-21 22:21:16 +03:00
serde = "1.0.117"
2020-10-01 12:19:38 +03:00
safe-transmute = "0.11.0"
log = "0.4.8"
2020-08-23 04:04:11 +03:00
[dev-dependencies]
reqwest = "0.10.4"
bytes = "0.5.4"
tokio = { version = "0.2.20", features = ["blocking", "macros"] }
2020-08-24 01:00:38 +03:00
once_cell = "1.4.0"