forked from Jondolf/avian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (50 loc) · 2.66 KB
/
Cargo.toml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = ["crates/bevy_xpbd_2d", "crates/bevy_xpbd_3d"]
resolver = "2"
[profile.dev]
opt-level = 1 # Use slightly better optimization, so examples work
# uncomment to use a local version of bevy
[patch.crates-io]
nalgebra = { path = "../nalgebra", features = ["convert-glam025"] }
bevy = { path = "../bevy" }
# (cd ~/Repositories/bevy/crates && ls -l | awk '{print $9 " = { path = \"../bevy/crates/"$9"\" }"}')
bevy_a11y = { path = "../bevy/crates/bevy_a11y" }
bevy_animation = { path = "../bevy/crates/bevy_animation" }
bevy_app = { path = "../bevy/crates/bevy_app" }
bevy_asset = { path = "../bevy/crates/bevy_asset" }
bevy_audio = { path = "../bevy/crates/bevy_audio" }
bevy_core = { path = "../bevy/crates/bevy_core" }
bevy_core_pipeline = { path = "../bevy/crates/bevy_core_pipeline" }
bevy_derive = { path = "../bevy/crates/bevy_derive" }
bevy_diagnostic = { path = "../bevy/crates/bevy_diagnostic" }
# bevy_dylib = { path = "../bevy/crates/bevy_dylib" }
# bevy_dynamic_plugin = { path = "../bevy/crates/bevy_dynamic_plugin" }
bevy_ecs = { path = "../bevy/crates/bevy_ecs" }
# bevy_ecs_compile_fail_tests = { path = "../bevy/crates/bevy_ecs_compile_fail_tests" }
bevy_encase_derive = { path = "../bevy/crates/bevy_encase_derive" }
bevy_gilrs = { path = "../bevy/crates/bevy_gilrs" }
bevy_gizmos = { path = "../bevy/crates/bevy_gizmos" }
bevy_gltf = { path = "../bevy/crates/bevy_gltf" }
bevy_hierarchy = { path = "../bevy/crates/bevy_hierarchy" }
bevy_input = { path = "../bevy/crates/bevy_input" }
bevy_internal = { path = "../bevy/crates/bevy_internal" }
bevy_log = { path = "../bevy/crates/bevy_log" }
bevy_macro_utils = { path = "../bevy/crates/bevy_macro_utils" }
# bevy_macros_compile_fail_tests = { path = "../bevy/crates/bevy_macros_compile_fail_tests" }
bevy_math = { path = "../bevy/crates/bevy_math" }
bevy_mikktspace = { path = "../bevy/crates/bevy_mikktspace" }
bevy_pbr = { path = "../bevy/crates/bevy_pbr" }
bevy_ptr = { path = "../bevy/crates/bevy_ptr" }
bevy_reflect = { path = "../bevy/crates/bevy_reflect" }
# bevy_reflect_compile_fail_tests = { path = "../bevy/crates/bevy_reflect_compile_fail_tests" }
bevy_render = { path = "../bevy/crates/bevy_render" }
bevy_scene = { path = "../bevy/crates/bevy_scene" }
bevy_sprite = { path = "../bevy/crates/bevy_sprite" }
bevy_tasks = { path = "../bevy/crates/bevy_tasks" }
bevy_text = { path = "../bevy/crates/bevy_text" }
bevy_time = { path = "../bevy/crates/bevy_time" }
bevy_transform = { path = "../bevy/crates/bevy_transform" }
bevy_ui = { path = "../bevy/crates/bevy_ui" }
bevy_utils = { path = "../bevy/crates/bevy_utils" }
bevy_window = { path = "../bevy/crates/bevy_window" }
bevy_winit = { path = "../bevy/crates/bevy_winit" }