summaryrefslogtreecommitdiff
path: root/alligator_render/Cargo.toml
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-02-04 13:25:45 -0500
committerMicha White <botahamec@outlook.com>2023-02-04 13:25:45 -0500
commit9fd7d6689d5d90679e4b0c12e463ef4e2f8bf515 (patch)
treea0b127f1094b72d0966c2edea3d171e74001c875 /alligator_render/Cargo.toml
parent518a87ddb2e6ce908affce2773fc7f92beb52c73 (diff)
Have the renderer take the texture manager
Diffstat (limited to 'alligator_render/Cargo.toml')
-rw-r--r--alligator_render/Cargo.toml18
1 files changed, 11 insertions, 7 deletions
diff --git a/alligator_render/Cargo.toml b/alligator_render/Cargo.toml
index 4ef0ed8..a613dcd 100644
--- a/alligator_render/Cargo.toml
+++ b/alligator_render/Cargo.toml
@@ -7,16 +7,20 @@ rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-winit = "0.28"
-log = "0.4"
-wgpu = "0.15"
-thiserror = "1"
-pollster = "0.2"
+alligator_resources = { path = "../alligator_resources" }
+
bytemuck = { version = "1", features = ["derive"] }
-cgmath = "0.18"
+thiserror = "1"
+profiling = "1"
+wgpu = "0.15"
+winit = "0.28"
image = "0.24"
+cgmath = "0.18"
+pollster = "0.2"
+log = "0.4"
+parking_lot = "0.12"
texture_packer = "0.25"
-profiling = "1"
+
tracy-client = { version = "0.15", optional = true }
dhat = { version = "0.3", optional = true }