Files
enkou/Cargo.toml
T
bspeice 7adb747625 Add a color coordinate to the chaos game
All shader-related code has been removed; GPU entry points will be added once there's a better understanding of how the API should work.
2026-08-01 15:48:54 -04:00

30 lines
921 B
TOML

[workspace]
members = [
"enkou-shaders",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
edition = "2024"
license = "MIT"
repository = ""
[workspace.lints.rust]
missing_docs = { level = "warn" }
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spirv"))'] }
[workspace.dependencies]
cargo-gpu-install = { git = "https://github.com/Rust-GPU/rust-gpu.git", rev = "67f1ff2" }
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu.git", rev = "67f1ff2" }
anyhow = "1.0.102"
bytemuck = { version = "1.25.0", features = ["derive"] }
glam = { version = "0.33.1", default-features = false, features = ["bytemuck", "scalar-math"] }
image = { version = "0.25.10", default-features = false, features = ["default-formats"]}
libm = "0.2.16"
rand = { version = "0.10.1", default-features = false }
rand_xoshiro = "0.8.1"
tempfile = "3.27.0"