-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
48 lines (43 loc) · 1.03 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "spc-presenter-rs"
version = "0.2.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
# TODO revert
# lto = "fat"
# codegen-units = 1
panic = "abort"
debug = true
[dependencies]
snes-apu-spcp = { path = "external/snes-apu-spcp" }
spc-spcp = { path = "external/spc-spcp" }
tiny-skia = "0.11.3"
image = "0.24"
ringbuf = "0.3.3"
ffmpeg-next = "7.0"
ffmpeg-sys-next = "7.0"
clap = "4.3"
encoding_rs = "0.8.33"
indicatif = "0.17.7"
rustfft = "6.1.0"
base64 = "0.21"
slint = "1.4.1"
native-dialog = "0.6.4"
rand = "0.8.5"
anyhow = "1.0"
csscolorparser = { version = "0.6.2", features = ["serde"] }
toml = "0.8"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
rodio = "0.17.3"
build-time = "0.1.3"
fluent = "0.16.0"
unic-langid = { version = "0.9.4", features = ["macros"] }
sys-locale = "0.3.1"
multiversion = "0.7.3"
[build-dependencies]
slint-build = "1.4.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"