This repository has been archived by the owner on May 15, 2021. It is now read-only.
generated from yewstack/yew-wasm-pack-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
127 lines (116 loc) · 3.17 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[package]
name = "anna_app"
version = "0.0.1"
authors = ["huhn <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
log = "0.4"
serde = "1.0.104"
serde_json = "1.0.53"
wasm-bindgen = "0.2.63"
wasm-logger = "0.2"
wee_alloc = { version = "0.4.4", optional = true }
yew = { version = "^0.17", features = ["web_sys"] }
yewtil = "0.3.1"
yew-router = { version="0.14.0", features = ["web_sys"] }
yew-state = "0.2.4"
css-in-rust = { version = "0.4.1", features = ["yew_integration"] }
anyhow = "1.0.31"
uuid = {version = "0.8.1", features = ["serde", "v4", "wasm-bindgen"]}
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.6", optional = true }
# scanner
rqrr = "0.2.0"
image = "0.21.2"
# internal dependencies
anna_chat = { path = "./anna_chat" }
anna_profile = { path = "./anna_profile" }
anna_shop = { path = "./anna_shop" }
# Local design-system development
# design-system = { path = "../design-system/crate/design-system" }
design-system = "0.0.1"
celes = "1.0.5"
yew_styles = { version="0.7", features=["forms"]}
qrcode = { version = "0.8", default-features = false, features = ["svg"] }
[dev-dependencies]
wasm-bindgen-test = "0.3"
[dependencies.web-sys]
version = "0.3.4"
features = [
'KeyboardEvent',
"console",
'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',
]