mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-04 19:50:19 +00:00
50 lines
1.6 KiB
TOML
50 lines
1.6 KiB
TOML
[package]
|
|
name = "marine-core"
|
|
description = "Core of Marine, the Fluence Wasm Runtime"
|
|
version = "0.16.1"
|
|
authors = ["Fluence Labs"]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "marine_core"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.3.0" }
|
|
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.9.0" }
|
|
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"}
|
|
|
|
wasmer-runtime = { package = "wasmer-runtime-fl", version = "=0.17.1" }
|
|
# dynamicfunc-fat-closures allows using state inside DynamicFunc
|
|
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" }
|
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
|
|
it-lilo = "0.4.0"
|
|
it-memory-traits = "0.3.0"
|
|
bytesize = "1.1.0"
|
|
|
|
multimap = "0.8.1"
|
|
boolinator = "2.4.0"
|
|
parity-wasm = "0.42.2"
|
|
pwasm-utils = "0.18.2"
|
|
once_cell = "1.7.2"
|
|
semver = "0.11.0"
|
|
serde = "1.0.118"
|
|
log = "0.4.8"
|
|
|
|
paste = "1.0.5"
|
|
|
|
anyhow = "1.0.31"
|
|
thiserror = "1.0.24"
|
|
|
|
[dev-dependencies]
|
|
reqwest = "0.10.4"
|
|
bytes = "0.5.4"
|
|
tokio = { version = "0.2.20", features = ["blocking", "macros"] }
|
|
once_cell = "1.4.0"
|