aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 12 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9d073ca..ce898e3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,9 @@ edition.workspace = true
[dependencies]
bevy.workspace = true
-ch-movement = { path = "plugins/movement" }
+ch-movement.workspace = true
+ch-gravity.workspace = true
+ch-gravity-movement.workspace = true
[workspace.dependencies]
# Core
@@ -16,6 +18,11 @@ proc-macro2 = "1.0.107"
quote = "1.0.47"
syn = "3.0.3"
+# Plugins
+ch-movement = { path = "plugins/movement" }
+ch-gravity = { path = "plugins/gravity" }
+ch-gravity-movement = { path = "plugins/glues/gravity_movement" }
+
# Utils
ch-macros = { path = "utils/macros" }
ch-macro-rules = { path = "utils/macro_rules" }
@@ -25,7 +32,9 @@ version = "0.1.0"
edition = "2024"
[workspace]
-members = [
- "plugins/movement", "utils/macro_rules",
+members = ["plugins/glues/gravity_movement",
+ "plugins/gravity",
+ "plugins/movement",
+ "utils/macro_rules",
"utils/macros"
]