-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (26 loc) · 767 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (26 loc) · 767 Bytes
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
[package]
name = "mistengine"
version = "1.0.0-beta.4"
edition = "2021"
[[bin]]
name = "mistengine"
path = "src/main.rs"
[dependencies]
eframe = { version = "0.28", features = ["default_fonts"] }
egui = "0.28"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
log = "0.4"
env_logger = "0.11"
rfd = "0.15"
sdl2 = { version = "0.37", features = ["bundled"] }
fontdue = "0.9"
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "bmp"] }
# QuickJS JavaScript ランタイム
rquickjs = { version = "0.9", features = ["classes", "properties", "macro"] }
[profile.dev]
opt-level = 2
debug = true
[profile.dev.package."*"]
opt-level = 3