-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 1.12 KB
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
[workspace]
resolver = "2"
members = [
"crates/apple2-core",
"crates/apple2-audio",
"crates/apple2-video",
"crates/apple2-debugger",
"crates/apple2-iigs",
"crates/applewin",
]
[workspace.package]
version = "1.1.6"
edition = "2024"
license = "GPL-2.0-or-later"
repository = "https://github.com/AaronSaikovski/AppleWin-rs"
[workspace.dependencies]
# Shared dependencies — version-pinned here, referenced with `workspace = true` in crates
apple2-core = { path = "crates/apple2-core" }
apple2-audio = { path = "crates/apple2-audio" }
apple2-video = { path = "crates/apple2-video" }
apple2-debugger = { path = "crates/apple2-debugger" }
apple2-iigs = { path = "crates/apple2-iigs" }
bitflags = { version = "2", features = ["serde"] }
thiserror = "1"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_bytes = "0.11"
flate2 = "1"
zip = { version = "2", default-features = false, features = ["deflate"] }
hound = "3"
png = "0.17"
[profile.release]
lto = true
codegen-units = 1