-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
95 lines (88 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
name = "hyperspeedcube"
version = "1.0.9"
authors = ["Andrew Farkas"]
edition = "2021"
rust-version = "1.65"
homepage = "https://ajfarkas.dev/hyperspeedcube/"
description = "Multidimensional twisty puzzle simulator"
repository = "https://github.com/HactarCE/Hyperspeedcube/"
license = "MIT OR Apache-2.0"
[dependencies]
ambassador = "0.3"
anyhow = "1.0"
bitvec = { version = "1.0", default-features = false, features = ["alloc", "serde", "std"] }
bytemuck = { version = "1.12", features = ["derive"] }
cgmath = "0.18"
config = "0.13"
dark-light = "1.0"
directories = "4.0"
egui = "0.20"
egui-wgpu = "0.20"
enum_dispatch = "0.3"
enum-iterator = "1.1"
env_logger = "0.10"
getrandom = { version = "*", features = ["js"] }
hex = "0.4"
instant = "0.1"
itertools = "0.10"
key-names = { git = "https://github.com/HactarCE/key-names", tag = "v1.5.1", features = ["winit"] }
lazy_static = "1.4"
log = "0.4"
monostate = "0.1"
num_enum = "0.5"
once_cell = "1.9"
png = "0.17"
pollster = "0.2"
rand = "0.8"
regex = "1.6"
rfd = "0.10"
send_wrapper = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
smallvec = { version = "1.8", features = ["serde"] }
strum = { version = "0.24", features = ["derive"] }
time = { version = "0.3", features = ["local-offset"] }
wgpu = { version = "0.14", features = ["webgl"] }
winit = { version = "0.27", features = ["serde"] }
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.20" }
human-panic = "1.0"
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
egui-winit = { version = "0.20", default-features = false, features = ["links"] }
js-sys = "=0.3.60"
tracing-wasm = "0.2"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"
web-sys = { version = "=0.3.60", features = [
"CanvasRenderingContext2d",
"Clipboard",
"ClipboardEvent",
"DataTransfer",
"Document",
"Element",
"HtmlCanvasElement",
"Storage",
"Window",
] }
[profile.release]
opt-level = 2 # fast and small wasm
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.winres]
FileDescription = "Hyperspeedcube"
ProductName = "Hyperspeedcube"
ProductVersion = "1.0.9"
OriginalFilename = "hyperspeedcube.exe"
LegalCopyright = "Copyright © 2022 HactarCE"
[package.metadata.bundle]
name = "Hyperspeedcube"
identifier = "io.github.hactarce.hyperspeedcube"
icon = ["resources/icon/*.png", "resources/icon/*.ico"]
copyright = "Copyright © 2022 HactarCE"
category = "Puzzle Game"