forked from charlespeary/rusty-days-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 876 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 = "rusty-days-hackathon"
version = "0.1.0"
authors = ["Sniadekk", "uint", "aleksanderwawrzyniak", "Jakub Lenart" ]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4"
strum = "0.17"
strum_macros = "0.17"
serde = "1"
serde_derive = "1"
wasm-bindgen = "0.2.58"
wasm-logger = "0.2"
wee_alloc = { version = "0.4.4", optional = true }
yew = "0.17"
thiserror = "1.0"
anyhow = "1.0"
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
wasm-timer = "0.2.4"
wasm-bindgen-futures = "0.4.3"
[dev-dependencies]
wasm-bindgen-test = "0.3"
[dependencies.web-sys]
version = "0.3.4"
features = [
'KeyboardEvent',
'CanvasRenderingContext2d',
'Document',
'Element',
'HtmlCanvasElement',
'Window',
'AudioContext',
'AudioDestinationNode',
'AudioNode',
'AudioParam',
'GainNode',
'OscillatorNode',
'OscillatorType',
]