summaryrefslogtreecommitdiff
path: root/alligator_render/Cargo.toml
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-10-21 20:10:15 -0400
committerMicha White <botahamec@outlook.com>2022-10-21 20:10:15 -0400
commit9950ae8d49d692f698dfafd544748df2bced6d7d (patch)
treeb606e2b341edca67e6073b75b7f3cc999eec5464 /alligator_render/Cargo.toml
parent11077150cbc909e414cf5b27f18d02629e6b01da (diff)
Changed up some dependencies
Diffstat (limited to 'alligator_render/Cargo.toml')
-rw-r--r--alligator_render/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/alligator_render/Cargo.toml b/alligator_render/Cargo.toml
index e633fb9..cefb924 100644
--- a/alligator_render/Cargo.toml
+++ b/alligator_render/Cargo.toml
@@ -2,6 +2,7 @@
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
@@ -17,13 +18,13 @@ image = "0.24"
texture_packer = "0.24"
profiling = "1"
tracy-client = { version = "0.14", optional = true }
-dhat = "0.3"
+dhat = { version = "0.3", optional = true }
[lib]
crate-type = ["cdylib", "lib"]
[features]
-dhat = []
+dhat = ["dep:dhat"]
profile-with-tracy = ["tracy-client", "profiling/profile-with-tracy"]
[[example]]