mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 22:22:12 +00:00
28 lines
499 B
TOML
28 lines
499 B
TOML
|
[package]
|
||
|
name = "webrtc_datachannel"
|
||
|
version = "0.1.0"
|
||
|
authors = ["The wasm-bindgen Developers"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
wasm-bindgen = "0.2.62"
|
||
|
js-sys = "0.3"
|
||
|
wasm-bindgen-futures = "0.4.12"
|
||
|
|
||
|
[dependencies.web-sys]
|
||
|
version = "0.3.22"
|
||
|
features = [
|
||
|
"MessageEvent",
|
||
|
"RtcPeerConnection",
|
||
|
"RtcSignalingState",
|
||
|
"RtcSdpType",
|
||
|
"RtcSessionDescriptionInit",
|
||
|
"RtcPeerConnectionIceEvent",
|
||
|
"RtcIceCandidate",
|
||
|
"RtcDataChannel",
|
||
|
"RtcDataChannelEvent",
|
||
|
]
|