2022-02-18 18:26:06 +03:00
|
|
|
[package]
|
2022-06-02 19:51:27 +03:00
|
|
|
name = "marine-js"
|
2023-09-13 22:41:30 +03:00
|
|
|
version = "0.7.4"
|
2023-03-15 00:43:51 +03:00
|
|
|
edition = "2021"
|
2022-06-02 19:51:27 +03:00
|
|
|
description = "Web version of the marine runtime"
|
2022-02-18 18:26:06 +03:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-25 21:57:16 +03:00
|
|
|
marine-js-backend = {path = "../crates/js-backend", version = "0.1.1"}
|
2023-07-25 19:49:55 +03:00
|
|
|
marine-runtime = {path = "../marine", default-features = false}
|
2022-02-18 18:26:06 +03:00
|
|
|
|
2023-07-25 19:49:55 +03:00
|
|
|
wasm-bindgen = "0.2.86"
|
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
2023-10-23 15:18:40 +03:00
|
|
|
serde_json = "1.0.107"
|
2023-07-25 19:49:55 +03:00
|
|
|
serde-wasm-bindgen = "0.5.0"
|
2022-02-18 18:26:06 +03:00
|
|
|
maplit = "1.0.2"
|
2023-07-25 19:49:55 +03:00
|
|
|
web-sys = {version = "0.3.61", features = ["console"]}
|
|
|
|
js-sys = "0.3.63"
|
|
|
|
wasm-bindgen-console-logger = "0.1.1"
|
2023-10-23 15:17:38 +03:00
|
|
|
log = "0.4.20"
|