summaryrefslogtreecommitdiff
path: root/alligator_render/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'alligator_render/Cargo.toml')
-rw-r--r--alligator_render/Cargo.toml33
1 files changed, 33 insertions, 0 deletions
diff --git a/alligator_render/Cargo.toml b/alligator_render/Cargo.toml
new file mode 100644
index 0000000..01c5738
--- /dev/null
+++ b/alligator_render/Cargo.toml
@@ -0,0 +1,33 @@
+[package]
+name = "alligator_render"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+winit = "0.27"
+log = "0.4"
+wgpu = "0.14"
+thiserror = "1"
+pollster = "0.2"
+bytemuck = { version = "1.4", features = ["derive"] }
+cgmath = "0.18"
+image = "0.24"
+texture_packer = "0.24"
+profiling = "1"
+tracy-client = { version = "0.14", optional = true }
+dhat = "0.3"
+
+[lib]
+crate-type = ["cdylib", "lib"]
+
+[features]
+dhat = []
+profile-with-tracy = ["tracy-client", "profiling/profile-with-tracy"]
+
+[[example]]
+name = "black"
+
+[[example]]
+name = "bmp"