summaryrefslogtreecommitdiff
path: root/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 /Cargo.toml
parent12f73be1bf0a7dd7d67bab2eb44d0f0629d37028 (diff)
feat: add entity component system library
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9baf278..373c4ab 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[workspace]
-members = ["glfw", "engine"]
+members = ["glfw", "engine", "ecs"]
[dependencies]
engine = { path = "./engine", features = ["debug"] }