-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (39 loc) · 983 Bytes
/
Cargo.toml
File metadata and controls
49 lines (39 loc) · 983 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
43
44
45
46
47
48
49
[workspace]
members = [
"oneamp-cli",
"oneamp-core",
"oneamp-desktop",
]
resolver = "2"
[workspace.package]
version = "0.15.5"
edition = "2021"
authors = ["Manus AI"]
license = "MIT"
[workspace.dependencies]
# Audio decoding
symphonia = { version = "0.5", features = ["mp3", "flac", "vorbis", "wav", "pcm"] }
# Audio playback
rodio = "0.19"
# Error handling
anyhow = "1.0"
# Channels
crossbeam-channel = "0.5"
# Audio output
cpal = "0.15"
# WSZ skin support
zip = "2.2"
image = "0.25"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.release]
opt-level = 3 # Maximum optimization
lto = "thin" # Link-Time Optimization (thin for reasonable compile time)
codegen-units = 1 # Better optimization across crates
strip = true # Strip symbols automatically
panic = "abort" # Smaller binary, no unwinding
[profile.release-with-debug]
inherits = "release"
strip = false
debug = true