blob: ce898e3c01a8d19e855d4755e5158f416786f910 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
[package]
name = "cigarette_hacker_bevy"
version.workspace = true
edition.workspace = true
[dependencies]
bevy.workspace = true
ch-movement.workspace = true
ch-gravity.workspace = true
ch-gravity-movement.workspace = true
[workspace.dependencies]
# Core
bevy = "0.19.0"
# Macros
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" }
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace]
members = ["plugins/glues/gravity_movement",
"plugins/gravity",
"plugins/movement",
"utils/macro_rules",
"utils/macros"
]
|