mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 05:50:49 +00:00
* chore(deps): update all non-major rust dependencies * fix build * fmt * update generated code in marine-js * bump marine-runtime version * update gitignore * Revert "bump marine-runtime version" This reverts commit 7cf9f0b6d489408d35b3f86807d9ad7684f0708a. * bump versions Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 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.3"
|
|
edition = "2018"
|
|
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.7.3" }
|
|
marine-module-interface = { path = "../crates/module-interface", version = "0.6.1" }
|
|
marine-utils = { path = "../crates/utils", version = "0.4.0" }
|
|
marine-min-it-version = { path = "../crates/min-it-version", version = "0.2.1" }
|
|
it-json-serde = { path = "../crates/it-json-serde", version = "0.3.5" }
|
|
|
|
marine-rs-sdk = "0.7.1"
|
|
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.24.1"}
|
|
fluence-it-types = {version = "0.3.2", features = ["impls"] }
|
|
it-lilo = "0.4.1"
|
|
it-memory-traits = "0.3.1"
|
|
|
|
wasm-bindgen = "0.2"
|
|
nom = "5.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"]}
|