2023-10-29 17:46:14 +00:00
|
|
|
[package]
|
|
|
|
name = "interactive-fractal"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "interactive-fractal"
|
|
|
|
path = "main.rs"
|
2023-11-05 10:24:21 +00:00
|
|
|
test = false
|
|
|
|
bench = false
|
|
|
|
doc = false
|
2023-10-29 17:46:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-21 08:30:15 +00:00
|
|
|
glam = { workspace = true }
|
2023-10-30 03:42:00 +00:00
|
|
|
rand = { workspace = true }
|
2024-09-11 15:02:27 +00:00
|
|
|
vulkano = { workspace = true, default-features = true }
|
2023-10-30 03:42:00 +00:00
|
|
|
vulkano-shaders = { workspace = true }
|
|
|
|
vulkano-util = { workspace = true }
|
2024-06-30 13:23:19 +00:00
|
|
|
winit = { workspace = true, default-features = true }
|