summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-05-21 17:55:20 +0200
committerHampusM <hampus@hampusmat.com>2026-05-21 17:55:20 +0200
commit8022e8998290b067b8aa0cb9cba8ba410826bdab (patch)
tree7171e79ce530e03079046ee8fd12167160c45480 /Cargo.toml
parent412cee02c252f91bcf0b70a3f5cc5fca6d2b4c62 (diff)
chore: rename ecs* crates to engine-ecs*HEADmaster
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 98b5502..5062219 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,13 +4,13 @@ version = "0.1.0"
edition = "2021"
[workspace]
-members = ["engine*", "ecs*", "util-macros", "opengl-bindings"]
+members = ["engine*", "util-macros", "opengl-bindings"]
[workspace.dependencies]
engine = { path = "engine" }
engine-macros = { path = "engine-macros" }
-ecs = { path = "ecs" }
-ecs-macros = { path = "ecs-macros" }
+engine-ecs = { path = "engine-ecs" }
+engine-ecs-macros = { path = "engine-ecs-macros" }
util-macros= { path = "util-macros" }
opengl-bindings = { path = "opengl-bindings" }