summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-03-17 13:18:56 +0100
committerHampusM <hampus@hampusmat.com>2026-03-17 13:19:14 +0100
commit21aafa3b070425e1fa84d2c6bb322e75cb52dfd5 (patch)
treef90303f4761136e5885b8ceda4ec2c92dfd00f55 /Cargo.lock
parentd0cac9159e6ddfe5dbb9b32036e7258f6e51d47e (diff)
feat(engine): add macro for reflection
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1b57c31..83cd013 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -524,6 +524,7 @@ dependencies = [
"cfg_aliases",
"crossbeam-channel",
"ecs",
+ "engine-macros",
"glutin",
"image",
"nu-ansi-term",
@@ -540,6 +541,15 @@ dependencies = [
]
[[package]]
+name = "engine-macros"
+version = "0.1.0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.100",
+]
+
+[[package]]
name = "equivalent"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"