-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (36 loc) · 1.02 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
[package]
name = "chip-8-emu"
version = "0.5.0"
edition = "2021"
authors = ["Amy Y"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
pixels = "0.13"
winit = "0.28"
rand = "0.8"
clap = { version = "3.1.8", features = ["derive"] }
savefile = "0.10"
savefile-derive = "0.10"
cpal = { version = "0.13", features = ["wasm-bindgen"] }
cfg-if = "1.0.0"
wasm-bindgen = "0.2"
tsify-next = "0.5"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
console_error_panic_hook = "0.1"
console_log = "1.0"
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Document",
"Window",
"Element",
"GpuTextureFormat",
]}
js-sys = "0.3"
gloo-console = "0.3"
gloo-timers = { version = "0.3", features = ["futures"] }