-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 1.01 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
[package]
name = "octarou"
description = "CHIP-8 interpreter for my high-school CS final project"
authors = ["Nicolas Bratoveanu <nicolasbratoveanu@proton.me"]
repository = "https://github.com/Nikoof/octarou"
version = "1.1.1"
edition = "2021"
license = "EUPL-1.2"
[dependencies]
log = "0.4.20"
anyhow = "1.0.75"
rand = "0.8.5"
thiserror = "1.0.56"
egui = "0.26.0"
eframe = { version = "0.26.0", features = ["default_fonts", "glow"] }
egui_logger = "0.4.3"
rfd = { version = "0.12.1", features = [
"xdg-portal",
], default_features = false }
futures = "0.3.30"
rodio = { version = "0.17.3", default-features = false }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
getrandom = { version = "0.2.12", features = ["js"] }
multi_log = "0.1.2"
rfd = { version = "0.12.1", features = [
"file-handle-inner",
], default_features = false }
rodio = { version = "0.17.3", default-features = false, features = [
"wasm-bindgen",
] }
[profile.release]
opt-level = 2
[profile.dev.package."*"]
opt-level = 2