-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (32 loc) · 822 Bytes
/
Cargo.toml
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
[package]
name = "afx"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
base64 = "0.22.1"
eframe = { version = "0.20.1", features = ["persistence"] }
kira = "0.7.1"
lz4_flex = "0.11.3"
parking_lot = "0.12"
rayon = "1.10.0"
rfd = "0.13.0"
rgb = "0.8.48"
rmp-serde = "1.3.0"
serde = "1.0"
symphonia = { version = "^0.5", features = ["isomp4"] }
thread-priority = "1.1.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-timing = "0.6.0"
[dev-dependencies]
approx = "0.5.1"
tempfile = "3.10.1"
[profile.release]
codegen-units = 1
lto = true
# workaround for slow MP3 load times in debug mode
# see https://github.com/tesselode/kira/issues/24
[profile.dev.package.symphonia-bundle-mp3]
opt-level = 3