mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-04 19:50:19 +00:00
13cf85ba36
* wip * WIP * WIP * compiles, async mrepl works * add Send * Updating marine-js * FuncGetter compiles * wow it compiles * marine-js compiles but does not work * marine-js tests almost pass * marine-runtime and marine-core tests pass * fmt * epoch interruption works in mrepl * WIP: switching from async_trait to box_future * move from async_trait to BoxFuture * self-review fixes * self-review fixes * merge memory limits * pr fixes * pr fixes * pr fixes * pr fixes * update cargo lock * use published interface-types * remove patch deps * fix factory and make AppService generic * fix marine-js * try locking deps * add debug prints to workflow * fix workflow * update workflow * make marine-js bindings patcher update all __wbg_adapter_* functions * remove debug prints from workflows * self-review fixes * self-review fixes * self-review fixes * final fixes * fix mrepl * fix pr comments, fmt and clippy * fix Cargo.toml and Cargo.lock after merge * test fixes after merge * update rust toolchain to match one in no * fixes for nox integration * reexport MError * update js bindings * fix warning * fmt
50 lines
1.5 KiB
TOML
50 lines
1.5 KiB
TOML
[package]
|
|
name = "marine-core"
|
|
description = "Core of Marine, the Fluence Wasm Runtime"
|
|
version = "0.30.0"
|
|
authors = ["Fluence Labs"]
|
|
repository = "https://github.com/fluencelabs/marine"
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "marine_core"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.15.0" }
|
|
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.9.1" }
|
|
marine-it-parser = { path = "../crates/it-parser", version = "0.16.0" }
|
|
marine-it-generator = { path = "../crates/it-generator", version = "0.17.0" }
|
|
marine-module-interface = { path = "../crates/module-interface", version = "0.8.1" }
|
|
marine-utils = { path = "../crates/utils", version = "0.5.1" }
|
|
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.2" }
|
|
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.6.0" }
|
|
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.6.0", optional = true}
|
|
|
|
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
|
|
it-lilo = "0.7.0"
|
|
it-memory-traits = "0.5.0"
|
|
bytesize = "1.2.0"
|
|
futures = "0.3.29"
|
|
|
|
multimap = "0.8.3"
|
|
once_cell = "1.16.0"
|
|
semver = "1.0.20"
|
|
serde = "1.0.147"
|
|
log = "0.4.20"
|
|
|
|
paste = "1.0.14"
|
|
|
|
anyhow = "1.0.75"
|
|
thiserror = "1.0.50"
|
|
|
|
[dev-dependencies]
|
|
reqwest = "0.11.18"
|
|
bytes = "1.3.0"
|
|
tokio = { version = "1.22.0", features = ["rt", "macros"] }
|
|
once_cell = "1.16.0"
|
|
|
|
[features]
|
|
default = ["marine-wasmtime-backend"]
|