summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-10-23 15:01:10 -0400
committerFreya Murphy <freya@freyacat.org>2025-10-23 15:01:10 -0400
commitbdede767f3e5208eb78103f5fbdb83ec1255f293 (patch)
tree3c6ce828d8b1c8ddb02380a592a4210c9d3b97d9 /Cargo.lock
parentgraphics: refactor Assets, and add tile drawing! (diff)
downloadDungeonCrawl-bdede767f3e5208eb78103f5fbdb83ec1255f293.tar.gz
DungeonCrawl-bdede767f3e5208eb78103f5fbdb83ec1255f293.tar.bz2
DungeonCrawl-bdede767f3e5208eb78103f5fbdb83ec1255f293.zip
dungon: use EnumIter from strum to add values methods to enums
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock29
1 files changed, 29 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cf97153..73e2671 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -87,6 +87,8 @@ name = "dungeon"
version = "0.1.0"
dependencies = [
"rand",
+ "strum",
+ "strum_macros",
]
[[package]]
@@ -136,6 +138,12 @@ dependencies = [
]
[[package]]
+name = "heck"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
+[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -338,6 +346,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
+name = "strum"
+version = "0.27.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
+dependencies = [
+ "strum_macros",
+]
+
+[[package]]
+name = "strum_macros"
+version = "0.27.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
+dependencies = [
+ "heck",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "syn"
version = "2.0.106"
source = "registry+https://github.com/rust-lang/crates.io-index"