Files
enkou/Cargo.toml
T
bspeice c3224fadd8
CI / cargo fmt (push) Successful in 32s
CI / cargo test (push) Failing after 29s
CI / cargo test (GPU) (push) Successful in 17m53s
Upgrade rand/rand_xoshiro version
2026-06-27 18:27:43 -04:00

31 lines
933 B
TOML

[workspace]
members = [
"enkou-shaders",
"enkou-shaders-tests",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
edition = "2024"
license = "MIT"
repository = ""
[workspace.lints.rust]
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"
rspirv = "0.13.0"
tempfile = "3.27.0"