-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 887 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 887 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
[workspace]
resolver = "2"
members = [
"crates/spmp8000emu-core",
"crates/spmp8000emu",
"crates/spmp8000emu-libretro",
]
# Default build the libretro core for CI/buildbot compatibility
default-members = ["crates/spmp8000emu-libretro"]
[workspace.package]
version = "1.0.0"
edition = "2021"
description = "SPMP8000 game emulator written in Rust"
license = "BSD-3-Clause"
[workspace.dependencies]
spmp8000emu-core = { path = "crates/spmp8000emu-core" }
anyhow = "1"
thiserror = "2"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1"
crc32fast = "1"
lz4_flex = "0.14"
# Standalone frontend dependencies
minifb = "0.28"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11"
cpal = "0.18.1"
image = { version = "0.25", default-features = false, features = ["png"] }
[profile.release]
opt-level = 3
lto = true
strip = true