-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 1011 Bytes
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = 'prust'
version = '0.1.0'
authors = ['ImFlog <garcia.florian.perso@gmail.com>', 'NugetChar <nugetchar@gmail.com>']
edition = '2018'
[dependencies]
log = '0.4'
wasm-logger = '0.2'
wasm-bindgen = { version = '0.2.63', features = ['serde-serialize'] }
serde = '1.0'
serde_json = '1.0.55'
yew = '0.15'
js-sys = '0.3.40'
futures = "0.3"
# Do we need this lines ?
wasm-bindgen-futures = "0.4.19"
console_error_panic_hook = { version = '0.1.1', optional = true }
[dependencies.web-sys]
version = '0.3.39'
features = [
'KeyEvent',
'KeyboardEvent',
'RtcConfiguration',
'RtcPeerConnection',
'RtcDataChannel',
'RtcDataChannelState',
'RtcDataChannelInit',
'RtcIceCandidate',
'RtcIceCandidateInit',
'RtcIceServer',
'RtcPeerConnectionIceEvent',
'RtcSessionDescription',
'RtcSdpType',
'RtcSessionDescription',
'RtcSessionDescriptionInit',
'RtcSignalingState',
# Websocket part
'WebSocket',
'MessageEvent',
'ProgressEvent',
]