Start clean

This commit is contained in:
2026-01-11 19:01:50 +01:00
commit addbd730e7
8 changed files with 1560 additions and 0 deletions

22
Cargo.toml Normal file
View File

@ -0,0 +1,22 @@
[package]
name = "cache"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
bytemuck = "1.24.0"
crevice = {version = "0.18.0", features = ["cgmath"]}
egui = "0.33.3"
egui-wgpu = "0.33.3"
egui-winit = "0.33.3"
env_logger = "0.11.8"
pollster = "0.4.0"
wgpu = {version = "27.0.1", features = ["spirv"]}
winit = "0.30.12"
gpu_shared = {path = "gpu_shared/"}
glam = {version = "0.30.10", features = ["bytemuck"]}
itertools = "0.14.0"
[build-dependencies]
spirv-builder = {git = "https://github.com/rust-gpu/rust-gpu"}