marine/core/Cargo.toml

50 lines
1.6 KiB
TOML
Raw Normal View History

2020-05-28 23:20:24 +03:00
[package]
name = "marine-core"
description = "Core of Marine, the Fluence Wasm Runtime"
version = "0.16.2"
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 = "marine_core"
2020-07-28 19:14:53 +03:00
path = "src/lib.rs"
2020-05-28 23:20:24 +03:00
[dependencies]
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.3.1" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.7.2" }
marine-it-parser = { path = "../crates/it-parser", version = "0.9.2" }
marine-it-generator = { path = "../crates/it-generator", version = "0.9.1" }
marine-module-interface = { path = "../crates/module-interface", version = "0.4.2" }
marine-utils = { path = "../crates/utils", version = "0.4.0" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.1.1"}
2020-06-04 19:06:23 +03:00
2021-08-05 21:17:26 +03:00
wasmer-runtime = { package = "wasmer-runtime-fl", version = "=0.17.1" }
# dynamicfunc-fat-closures allows using state inside DynamicFunc
2021-08-05 21:17:26 +03: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" }
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
2022-04-06 22:55:33 +03:00
it-lilo = "0.4.0"
it-memory-traits = "0.3.0"
bytesize = "1.1.0"
2020-06-04 19:06:23 +03:00
multimap = "0.8.3"
2020-08-08 12:44:27 +03:00
boolinator = "2.4.0"
parity-wasm = "0.45.0"
pwasm-utils = "0.19.0"
once_cell = "1.14.0"
2021-03-16 13:51:59 +03:00
semver = "0.11.0"
serde = "1.0.144"
log = "0.4.17"
2020-08-23 04:04:11 +03:00
paste = "1.0.9"
anyhow = "1.0.64"
thiserror = "1.0.34"
2021-02-24 12:25:55 +03:00
2020-08-23 04:04:11 +03:00
[dev-dependencies]
reqwest = "0.11.11"
bytes = "1.2.1"
tokio = { version = "1.21.0", features = ["rt", "macros"] }
once_cell = "1.14.0"