-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
28 lines (25 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "yew-webtransport"
version = "0.21.1"
edition = "2021"
repository = "https://github.com/security-union/yew-webtransport.git"
description = "WebTransport is an API offering low-latency, bidirectional, client-server messaging."
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = "0.21.0"
wasm-bindgen-futures = "0.4.34"
wasm-bindgen = "0.2.87"
futures = "0.3.24"
futures-util = "0.3.24"
js-sys = { version = "0.3.64", optional = false }
thiserror = "1.0"
anyhow = "1"
serde = "1"
serde_derive = "1"
serde_json = "1.0"
gloo = { version = "0.2.1", optional = false }
gloo-console = "0.2.1"
web-sys = {version = "0.3.64", features = [ "WebSocket", "WebTransport", "WritableStream", "ReadableStream", "ReadableStreamDefaultReader", "ReadableStreamReadResult", "WebTransportSendStream", "WritableStreamDefaultWriter", "WebTransportDatagramDuplexStream", "WebTransportCloseInfo", "WebTransportBidirectionalStream", "WebTransportReceiveStream"]}
[package.metadata.docs.rs]
rustc-args = ["--cfg", "web_sys_unstable_apis"]