summaryrefslogtreecommitdiff
path: root/ecs/Cargo.toml
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 /ecs/Cargo.toml
parent12f73be1bf0a7dd7d67bab2eb44d0f0629d37028 (diff)
feat: add entity component system library
Diffstat (limited to 'ecs/Cargo.toml')
-rw-r--r--ecs/Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/ecs/Cargo.toml b/ecs/Cargo.toml
new file mode 100644
index 0000000..cd25673
--- /dev/null
+++ b/ecs/Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "ecs"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+seq-macro = "0.3.5"