-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (57 loc) · 1.19 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
[package]
name = "qrtransfer"
version = "0.1.0"
authors = ["lxu <[email protected]>"]
edition = "2018"
[dependencies]
qrcode = "0.14.1"
base64 = "0.22.1"
sha-1 = "0.10"
indexmap = "2.5.0"
quircs = "0.10"
image = "0.25.2"
brotli = "7.0.0"
futures = "0.3.30"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.43"
serde-wasm-bindgen = "0.6.5"
console_error_panic_hook = "0.1"
web-sys = { version = "0.3", features = [
'Document',
'Element',
'HtmlElement',
'HtmlInputElement',
'FileReader',
'File',
'ProgressEvent',
'ScrollToOptions',
'ScrollBehavior',
'FileList',
'Window',
'console',
'AudioContext',
'AudioDestinationNode',
'AudioParam',
'GainNode',
'OscillatorType',
'OscillatorNode',
'CanvasRenderingContext2d',
'HtmlCanvasElement',
'HtmlVideoElement',
'Navigator',
'MediaStream',
'MediaStreamConstraints',
'MediaDevices',
'ImageData',
'MediaStreamTrack',
] }
dioxus = { version = "0.6.0", features = ["web"] }
js-sys = "0.3"
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"