summaryrefslogtreecommitdiff
path: root/engine/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-05-03 20:31:00 +0200
committerHampusM <hampus@hampusmat.com>2026-05-03 20:31:00 +0200
commitb13b3f6e13f9ac9fe7fee0b5a81b026f411f0301 (patch)
tree9430215b69eb34596120eae95459472ae6087bc8 /engine/Cargo.toml
parent9dfd0a9ef9a54dab5fb88ed9158bd4184212008e (diff)
build: make workspace members inherit other members as dependenciesHEADmaster
Diffstat (limited to 'engine/Cargo.toml')
-rw-r--r--engine/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/Cargo.toml b/engine/Cargo.toml
index 424d09b..5fd8219 100644
--- a/engine/Cargo.toml
+++ b/engine/Cargo.toml
@@ -15,10 +15,10 @@ parking_lot = "0.12.3"
crossbeam-channel = "0.5.15"
safer-ffi = "0.1.13"
nu-ansi-term = "0.46.0"
-ecs = { path = "../ecs" }
-util-macros = { path = "../util-macros" }
-opengl-bindings = { path = "../opengl-bindings" }
-engine-macros = { path = "../engine-macros" }
+ecs = { workspace = true }
+util-macros = { workspace = true }
+opengl-bindings = { workspace = true }
+engine-macros = { workspace = true }
[dependencies.winit]
version = "0.30.11"