-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 781 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
35
36
37
38
39
40
41
42
[workspace]
members = [
"common",
"components/*",
"cores/ggc",
"cores/gga",
"cores/nds",
"gamegirl",
"frontends/*",
]
resolver = "2"
[profile.release]
panic = "abort"
opt-level = 3
[profile.release-unwind]
inherits = "release"
panic = "unwind"
[profile.release-debug]
inherits = "release"
debug = true
[profile.release-fast]
inherits = "release"
lto = false
opt-level = 2
incremental = true
[profile.dev]
opt-level = 1
[workspace.dependencies]
log = { version = "0.4.27", default-features = false }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_arrays = "0.2.0"
arrayvec = { version = "0.7.6", default-features = false }
bitflags = "2.9.0"
modular-bitfield = "0.11"
bitmatch = { path = "./components/bitmatch" }
glow = "0.16"