summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-02-16 19:58:53 +0100
committerHampusM <hampus@hampusmat.com>2024-02-18 18:23:03 +0100
commitde5c3ff1320ea0f0452afde4c1f42676d9eeab52 (patch)
tree5394c42d76301f68526816552689a0beeb2ffdfb /Cargo.lock
parent12f73be1bf0a7dd7d67bab2eb44d0f0629d37028 (diff)
feat: add entity component system library
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock19
1 files changed, 13 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 93ec3d0..884fa3f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -119,6 +119,13 @@ dependencies = [
]
[[package]]
+name = "ecs"
+version = "0.1.0"
+dependencies = [
+ "seq-macro",
+]
+
+[[package]]
name = "engine"
version = "0.1.0"
dependencies = [
@@ -360,18 +367,18 @@ dependencies = [
[[package]]
name = "proc-macro2"
-version = "1.0.68"
+version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b1106fec09662ec6dd98ccac0f81cef56984d0b49f75c92d8cbad76e20c005c"
+checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
-version = "1.0.33"
+version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
+checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
dependencies = [
"proc-macro2",
]
@@ -446,9 +453,9 @@ checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
[[package]]
name = "syn"
-version = "2.0.38"
+version = "2.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
+checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
dependencies = [
"proc-macro2",
"quote",