2020-05-13 04:00:33 +09:00
|
|
|
[package]
|
|
|
|
name = "webrtc_datachannel"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-05-27 10:07:18 -05:00
|
|
|
wasm-bindgen = "0.2.63"
|
2020-05-13 04:00:33 +09:00
|
|
|
js-sys = "0.3"
|
2020-05-27 10:07:18 -05:00
|
|
|
wasm-bindgen-futures = "0.4.13"
|
2020-05-13 04:00:33 +09:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.22"
|
|
|
|
features = [
|
|
|
|
"MessageEvent",
|
|
|
|
"RtcPeerConnection",
|
|
|
|
"RtcSignalingState",
|
|
|
|
"RtcSdpType",
|
|
|
|
"RtcSessionDescriptionInit",
|
|
|
|
"RtcPeerConnectionIceEvent",
|
|
|
|
"RtcIceCandidate",
|
|
|
|
"RtcDataChannel",
|
|
|
|
"RtcDataChannelEvent",
|
|
|
|
]
|