marine/web-runtime/Cargo.toml

57 lines
1.9 KiB
TOML
Raw Normal View History

[package]
name = "marine-web-runtime"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
2021-12-10 16:13:13 +03:00
[profile.release]
debug = true
[dependencies]
wasm-bindgen = "0.2"
#wasmer-it = { package = "wasmer-interface-types-fl", version = "0.20.2" }
nom = "5.1"
#thiserror = "1.0.24"
#marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.2.2" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.4.1" }
#marine-it-parser = { path = "../crates/it-parser", version = "0.6.8" }
#marine-it-generator = { path = "../crates/it-generator", version = "0.5.6" }
marine-module-interface = { path = "../crates/module-interface", version = "0.1.6" }
2022-01-13 17:56:11 +03:00
marine-utils = { path = "../crates/utils", version = "0.4.0" }
marine-rs-sdk = "0.6.15"
#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.21.0" }
fluence-it-types = {version = "0.3.1", features = ["impls"] }
it-lilo = "0.2.0"
2022-01-17 17:53:12 +03:00
#it-traits = { path = "../../interface-types/crates/it-traits" }
it-traits = { git = "https://github.com/fluencelabs/interface-types/", package = "it-traits", branch = "marine_web_experiments"}
2021-11-22 19:53:02 +03:00
itertools = "0.10.1"
#wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
multimap = "0.8.1"
boolinator = "2.4.0"
bytesize = {version = "1.1.0", features = ["serde"]}
2021-12-10 16:13:13 +03:00
console_error_panic_hook = "0.1.7"
#parity-wasm = "0.41.0"
#pwasm-utils = "0.12.0"
once_cell = "1.7.2"
semver = "0.11.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.53"
serde_derive = "1.0.118"
serde_with = "1.11.0"
log = "0.4.8"
toml = "0.5.8"
paste = "1.0.5"
anyhow = "1.0.31"
thiserror = "1.0.24"