c6e41ca3f3
* chore: update to rust edition 2021 everywhere * validator-api: simplify into_iter call in rust 2021
32 lines
715 B
TOML
32 lines
715 B
TOML
[package]
|
|
name = "wasm-utils"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
js-sys = "^0.3.51"
|
|
wasm-bindgen = "=0.2.78"
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
# we don't want entire tokio-tungstenite, tungstenite itself is just fine - we just want message and error enums
|
|
[dependencies.tungstenite]
|
|
version = "0.13"
|
|
default-features = false
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"BinaryType",
|
|
"Blob",
|
|
"CloseEvent",
|
|
"ErrorEvent",
|
|
"FileReader",
|
|
"MessageEvent",
|
|
"ProgressEvent",
|
|
"WebSocket",
|
|
"Window",
|
|
] |