-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (64 loc) · 2.13 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (64 loc) · 2.13 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "rusttracker"
version = "0.9.13"
edition = "2024"
default-run = "rusttracker"
description = "High-Performance Vulkan Tracker Module Visualizer"
license = "GPL-3.0-or-later"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/rusttracker", dest = "/usr/bin/rusttracker", mode = "755" },
{ source = "rusttracker.desktop", dest = "/usr/share/applications/rusttracker.desktop", mode = "644" },
{ source = "icon.png", dest = "/usr/share/icons/hicolor/256x256/apps/rusttracker.png", mode = "644" },
{ source = "assets/soundfont.sf2", dest = "/usr/share/rusttracker/assets/soundfont.sf2", mode = "644" }
]
[package.metadata.deb]
assets = [
["target/release/rusttracker", "usr/bin/", "755"],
["rusttracker.desktop", "usr/share/applications/", "644"],
["icon.png", "usr/share/icons/hicolor/256x256/apps/rusttracker.png", "644"],
["assets/soundfont.sf2", "usr/share/rusttracker/assets/", "644"]
]
extended-description = "A high-performance, real-time audio visualizer and tracker module player."
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
cpal = "0.17.3"
crossbeam-channel = "0.5.15"
crossterm = "0.29.0"
openmpt = "0.3.1"
ratatui = "0.30.0"
symphonia = { version = "0.5.5", features = ["all"] }
wgpu = "29.0.3"
winit = "0.30.13"
bytemuck = { version = "1.25.0", features = ["derive"] }
pollster = "0.4.0"
egui = "0.34.2"
egui-wgpu = "0.34.2"
egui-winit = "0.34.2"
image = "0.25.10"
ffmpeg-next = "8.1.0"
rustfft = "6.4.1"
ringbuf = "0.5.0"
gilrs = "0.11.0"
egui-file-dialog = "0.13.0"
rustysynth = "1.3.6"
midly = "0.5.3"
rfd = "0.17.2"
naga = { version = "29.0.3", features = ["wgsl-in"] }
glam = "0.32.1"
env_logger = "0.11.10"
ureq = "3.3.0"
directories = "6.0.0"
keepawake = "0.6.0"
[build-dependencies]
winres = "0.1.12"
[target."cfg(windows)".dependencies]
windows = { version = "0.62.2", features = ["Win32_System_Com", "Win32_Media_Audio", "Win32_Foundation", "Win32_System_Threading", "Win32_System_Pipes"] }
[target."cfg(target_os = \"macos\")".dependencies]
objc2 = "0.6.4"
objc2-core-audio = "0.3.2"
[profile.release]
opt-level = 3
lto = "thin"
strip = true