marine/runtime/Cargo.toml

50 lines
1.6 KiB
TOML
Raw Normal View History

2020-05-28 20:20:24 +00:00
[package]
2021-05-11 12:44:11 +00:00
name = "marine-runtime"
2021-05-10 09:51:22 +00:00
description = "Marine is the Fluence Compute Runtime"
version = "0.14.3"
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]
2021-05-10 09:51:22 +00:00
name = "marine"
2020-07-28 16:14:53 +00:00
path = "src/lib.rs"
2020-05-28 20:20:24 +00:00
[dependencies]
2021-10-05 15:20:41 +00:00
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.2.2" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.7.1" }
marine-it-parser = { path = "../crates/it-parser", version = "0.9.1" }
marine-it-generator = { path = "../crates/it-generator", version = "0.8.1" }
marine-module-interface = { path = "../crates/module-interface", version = "0.4.1" }
marine-utils = { path = "../crates/utils", version = "0.4.0" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.1.0"}
2020-06-04 16:06:23 +00:00
2021-08-05 18:17:26 +00:00
wasmer-runtime = { package = "wasmer-runtime-fl", version = "=0.17.1" }
# dynamicfunc-fat-closures allows using state inside DynamicFunc
2021-08-05 18:17:26 +00:00
wasmer-core = { package = "wasmer-runtime-core-fl", version = "=0.17.1", features = ["dynamicfunc-fat-closures"] }
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.23.1" }
2022-04-06 19:55:33 +00:00
it-lilo = "0.4.0"
it-memory-traits = "0.3.0"
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
bytesize = "1.1.0"
2020-06-04 16:06:23 +00:00
multimap = "0.8.1"
2020-08-08 09:44:27 +00:00
boolinator = "2.4.0"
parity-wasm = "0.42.2"
pwasm-utils = "0.18.2"
2021-03-16 10:51:59 +00:00
once_cell = "1.7.2"
semver = "0.11.0"
serde = "1.0.118"
log = "0.4.8"
2020-08-23 01:04:11 +00:00
paste = "1.0.5"
2021-02-24 09:25:55 +00:00
anyhow = "1.0.31"
thiserror = "1.0.24"
2020-08-23 01:04:11 +00:00
[dev-dependencies]
reqwest = "0.10.4"
bytes = "0.5.4"
tokio = { version = "0.2.20", features = ["blocking", "macros"] }
2020-08-23 22:00:38 +00:00
once_cell = "1.4.0"