-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 837 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
38
[package]
name = "fractal_sugar"
version = "0.1.11"
authors = ["Ryan Andersen <ryco117@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021" # Rust Edition used in this package
build = "build.rs"
[build-dependencies]
embed-resource = "2.3.0"
[dependencies]
anyhow = "1.0.75"
bytemuck = "1.14.0"
companion_console = { git = "https://github.com/ryco117/companion_console.git", rev = "3797176" }
cpal = "0.15.2"
crossbeam-channel = "0.5.8"
css-color-parser = "0.1.2"
egui = "0.24.1"
egui_winit_vulkano = "0.27.0"
ico = "0.3.0"
rustfft = "6.1.0"
serde = { version = "1.0.193", features = ["derive"] }
smallvec = "1.11.2"
toml = "0.8.8"
vulkano = "0.34.1"
vulkano-shaders = "0.34.0"
vulkano-win = "0.34.0"
winit = "0.28.7"
[profile.release]
lto = true
strip = true
panic = "abort"
[[bin]]
name = "fractal_sugar"
path = "src/main.rs"