-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (39 loc) · 1.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
[package]
name = "chip8_ui"
version = "0.1.0"
authors = ["Allister Isaiah Harvey <a.i.harvey@icloud.com>"]
edition = "2021"
[dependencies]
# Local Dependencies
chip8 = { git = "https://github.com/a-isaiahharvey/chip8-rust.git", branch = "main" }
# Logging
log = "0.4.20"
# Error Handling
anyhow = "1.0.79"
# UI
egui = "0.25.0"
eframe = { version = "0.25.0", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
# Serialization
serde = { version = "1.0.195", features = ["derive"] }
# Encoding and Decoding
bincode = "1.3.3"
bytemuck = "1.14.0"
epi = "0.17.0"
# File Dialog
rfd = "0.12.1"
futures-executor = "0.3.30"
# Native
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.10.1"
cpal = "0.15.2"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
# Logging
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
wasm-bindgen-futures = "0.4.40"