mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-16 06:20:49 +00:00
* chore: release master * chore: Bump marine-js version to 0.3.4 * update marine-js and lockfile --------- Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "marine-js"
|
|
version = "0.3.4"
|
|
edition = "2021"
|
|
description = "Web version of the marine runtime"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.8.0" }
|
|
marine-module-interface = { path = "../crates/module-interface", version = "0.7.0" }
|
|
marine-utils = { path = "../crates/utils", version = "0.5.0" }
|
|
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.0" }
|
|
it-json-serde = { path = "../crates/it-json-serde", version = "0.4.0" }
|
|
|
|
marine-rs-sdk = "0.7.1"
|
|
wasmer-it = { workspace = true}
|
|
it-memory-traits = { workspace = true}
|
|
fluence-it-types = { workspace = true }
|
|
it-lilo = { workspace = true }
|
|
|
|
wasm-bindgen = "0.2"
|
|
nom = "7.1"
|
|
itertools = "0.10.5"
|
|
multimap = "0.8.3"
|
|
boolinator = "2.4.0"
|
|
bytesize = {version = "1.1.0", features = ["serde"]}
|
|
console_error_panic_hook = "0.1.7"
|
|
once_cell = "1.16.0"
|
|
semver = "1.0.14"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
serde_derive = "1.0.147"
|
|
log = "0.4.17"
|
|
toml = "0.5.9"
|
|
paste = "1.0.9"
|
|
anyhow = "1.0.66"
|
|
thiserror = "1.0.37"
|
|
maplit = "1.0.2"
|
|
web-sys = {version = "0.3.60", features = ["console"]}
|