summaryrefslogtreecommitdiff
path: root/render/Cargo.toml
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-02-13 00:24:07 -0500
committerMicha White <botahamec@outlook.com>2023-02-13 00:24:07 -0500
commit861b467b95be55db3a42182b77dba944869bf49f (patch)
treef58057d5ab9ad53601332981a31553b0ad05fe1b /render/Cargo.toml
parentc31d51487082c6cf243ecd10da71a15a78d41add (diff)
Rename the subdirectories
Diffstat (limited to 'render/Cargo.toml')
-rw-r--r--render/Cargo.toml41
1 files changed, 41 insertions, 0 deletions
diff --git a/render/Cargo.toml b/render/Cargo.toml
new file mode 100644
index 0000000..87536c1
--- /dev/null
+++ b/render/Cargo.toml
@@ -0,0 +1,41 @@
+[package]
+name = "alligator_render"
+version = "0.1.0"
+edition = "2021"
+rust-version = "1.65"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+alligator_resources = { path = "../resources" }
+
+bytemuck = { version = "1", features = ["derive"] }
+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 = { git="https://github.com/botahamec/piston_texture_packer", branch="u16" }
+
+tracy-client = { version = "0.15", optional = true }
+dhat = { version = "0.3", optional = true }
+
+[lib]
+crate-type = ["cdylib", "lib"]
+
+[features]
+dhat = ["dep:dhat"]
+profile-with-tracy = ["tracy-client", "profiling/profile-with-tracy"]
+
+[[example]]
+name = "black"
+
+[[example]]
+name = "bmp"
+
+[[example]]
+name = "bunnymark"