diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2026-04-15 16:53:58 -0400 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2026-04-15 16:53:58 -0400 |
| commit | b5ced3af46c96ceb959fbbf1addfeba3bd4f76d5 (patch) | |
| tree | 06d06fc9562dc99eede655b53635576f67c37e3b /Cargo.toml | |
| download | systemic4x-b5ced3af46c96ceb959fbbf1addfeba3bd4f76d5.tar.gz systemic4x-b5ced3af46c96ceb959fbbf1addfeba3bd4f76d5.tar.bz2 systemic4x-b5ced3af46c96ceb959fbbf1addfeba3bd4f76d5.zip | |
first commit. working body rendering
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..95edc86 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "systemic4x" +version = "0.1.0" +edition = "2024" + +[dependencies] +bytemuck = { version = "1.25.0", features = ["derive"]} +cgmath = "0.18.0" +csv = "1.4.0" +egui = "0.33.3" +egui-wgpu = { version = "0.33.3", features = [ "winit" ]} +egui-winit = "0.33.3" +env_logger = "0.11.8" +log = "0.4.29" +phf = { version = "0.13.1", features = ["macros"]} +pollster = "0.4.0" +serde = { version = "1.0.228", features = ["derive"]} +stringreader = "0.1.1" +wgpu = "27.0.1" +winit = { version = "0.30.12", features = ["wayland"]} |
