-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
93 lines (89 loc) · 2.15 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "part2_bis"
version = "0.1.0"
authors = ["codec-abc"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2.62"
js-sys = "0.3.39"
yew = { version = "0.20.0", features = ["csr"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.53"
base64 = "0.12.1"
wasm-bindgen-futures = "0.4.13"
hmac-sha256 = "0.1.2"
hex = "0.4.2"
[dependencies.web-sys]
version = "0.3.39"
features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Window',
'RtcAnswerOptions',
'RtcCertificate',
'RtcCertificateExpiration',
'RtcCodecStats',
'RtcConfiguration',
'RtcDataChannel',
'RtcDataChannelEvent',
'RtcDataChannelEventInit',
'RtcDataChannelInit',
'RtcDataChannelState',
'RtcFecParameters',
'RtcIceCandidate',
'RtcIceCandidateInit',
'RtcIceCandidatePairStats',
'RtcIceCandidateStats',
'RtcIceComponentStats',
'RtcIceServer',
'RtcIdentityAssertion',
'RtcIdentityAssertionResult',
'RtcIdentityProvider',
'RtcIdentityProviderDetails',
'RtcIdentityProviderOptions',
'RtcIdentityProviderRegistrar',
'RtcIdentityValidationResult',
'RtcInboundRtpStreamStats',
'RtcMediaStreamStats',
'RtcMediaStreamTrackStats',
'RtcOfferAnswerOptions',
'RtcOfferOptions',
'RtcOutboundRtpStreamStats',
'RtcPeerConnection',
'RtcPeerConnectionIceEvent',
'RtcPeerConnectionIceEventInit',
'RtcRtcpParameters',
'RtcRtpCodecParameters',
'RtcRtpContributingSource',
'RtcRtpEncodingParameters',
'RtcRtpHeaderExtensionParameters',
'RtcRtpParameters',
'RtcRtpReceiver',
'RtcRtpSender',
'RtcRtpSourceEntry',
'RtcRtpSynchronizationSource',
'RtcRtpTransceiver',
'RtcRtpTransceiverInit',
'RtcRtxParameters',
'RtcSessionDescription',
'RtcSessionDescriptionInit',
'RtcStats',
'RtcStatsReport',
'RtcStatsReportInternal',
'RtcTrackEvent',
'RtcTrackEventInit',
'RtcTransportStats',
'RtcIceConnectionState',
'RtcIceGatheringState',
'RtcSdpType',
'RtcdtmfSender',
'RtcdtmfToneChangeEvent',
'RtcdtmfToneChangeEventInit',
'RtcrtpContributingSourceStats',
'HtmlDocument',
]