summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorRyan Symons <47405201+rsymons22@users.noreply.github.com>2025-11-07 17:54:11 -0500
committerRyan Symons <47405201+rsymons22@users.noreply.github.com>2025-11-07 17:54:11 -0500
commit651eed888fecbcede1d07800ac80fb637c7d8a33 (patch)
tree5ec525a6e5b373e91b021badac0970256e982c1a /Cargo.lock
parentgraphics: add a custom font (diff)
downloadDungeonCrawl-651eed888fecbcede1d07800ac80fb637c7d8a33.tar.gz
DungeonCrawl-651eed888fecbcede1d07800ac80fb637c7d8a33.tar.bz2
DungeonCrawl-651eed888fecbcede1d07800ac80fb637c7d8a33.zip
Basic enemy pathfinding/ai added
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock25
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2871ce6..5d8bd28 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -12,6 +12,12 @@ dependencies = [
]
[[package]]
+name = "autocfg"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
+
+[[package]]
name = "bindgen"
version = "0.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -86,6 +92,7 @@ dependencies = [
name = "dungeon"
version = "0.1.0"
dependencies = [
+ "ordered-float",
"rand",
"strum",
"strum_macros",
@@ -197,6 +204,24 @@ dependencies = [
]
[[package]]
+name = "num-traits"
+version = "0.2.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "ordered-float"
+version = "5.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"