aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-08 15:23:24 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-08 15:23:24 +0800
commitfc0d77d6838b16d811ffe5e999d3d77d499b470f (patch)
tree00565a452f9045b4fb357ae04a1cae349163839a /Cargo.toml
chore: initialize project workspace and movement plugin
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..9d073ca
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,31 @@
+[package]
+name = "cigarette_hacker_bevy"
+version.workspace = true
+edition.workspace = true
+
+[dependencies]
+bevy.workspace = true
+ch-movement = { path = "plugins/movement" }
+
+[workspace.dependencies]
+# Core
+bevy = "0.19.0"
+
+# Macros
+proc-macro2 = "1.0.107"
+quote = "1.0.47"
+syn = "3.0.3"
+
+# Utils
+ch-macros = { path = "utils/macros" }
+ch-macro-rules = { path = "utils/macro_rules" }
+
+[workspace.package]
+version = "0.1.0"
+edition = "2024"
+
+[workspace]
+members = [
+ "plugins/movement", "utils/macro_rules",
+ "utils/macros"
+]