-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (66 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
75 lines (66 loc) · 1.64 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
73
74
75
[workspace]
resolver = "3"
members = [ "mutate-lib", "mutate-visualizer", "crates/*"]
[workspace.package]
categories = ["multimedia", "graphics", "rendering", "visualization"]
edition = "2024"
keywords = ["graphics", "audio", "music", "vulkan"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/positron-solutions/mutate"
rust-version = "1.89.0"
version = "0.1.0"
[workspace.dependencies]
ash = "0.38.0"
ash-window = "0.13.0"
bon = "3.9.1"
bytemuck = "1.25.0"
clap = "4.5.53"
ctrlc = "3.5.1"
dirs = "6.0.0"
# gpu-allocator = {version="0.28.0", default-features=false, features=["vulkan", "std"]}
palette = "0.7.6"
parking = "2.2.1"
pipewire = {version="0.9.2"}
rand = "0.9.2"
raw-window-handle = "0.6.2"
rgb = "0.8.52"
ringbuf = "0.4.8"
smallvec = "2.0.0-alpha.12"
thiserror = "2.0.17"
toml = "0.9.8"
ui_test = "0.30.4"
winit = "0.30.12"
# DSP
aligned = "0.4.3"
num-complex = "0.4.6"
num-traits = "0.2.19"
# PMR
pm-remez = "0.2.5"
# macros
syn = "2.0.104"
proc-macro2 = "1.0.95"
quote = "1.0.40"
paste = "1.0.15"
trybuild = "1.0.116"
# introspection metadata layout agreement
xxhash-rust = "0.8.15"
half = "2.7.1"
# members
mutate-lib = {path = "./mutate-lib"}
mutate-macros = {path = "./crates/macros"}
mutate-assets = {path = "./crates/assets"}
mutate-vulkan = {path = "./crates/vulkan"}
mutate-slide = {path = "./crates/slide"}
mutate-untorn = {path = "./crates/untorn"}
mutate-dropwire = {path = "./crates/dropwire"}
# Build fast dependencies
[profile.dev.package."*"]
codegen-units = 1
opt-level = 3
# Build fast build scripts and proc-macros.
[profile.dev.build-override]
codegen-units = 1
opt-level = 3
[profile.release]
lto = "fat"
strip = "symbols"