-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (40 loc) · 1.96 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
[package]
name = "bevy_slyedoc"
version = "0.1.0"
resolver = "2"
[profile.dev]
opt-level = 1
[profile.release]
lto = true # 's', 'z',
[workspace]
members = [
"crates/*",
"engine"
]
[build-dependencies]
serde_json = "1.0"
# after bevy 0.6 I hope to not fork as much
[patch.crates-io]
#bevy = { path = "../bevy" }
#bevy = { git = "https://github.com/slyedoc/bevy", branch = "bevy-main" }
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main" }
naga = { git = "https://github.com/gfx-rs/naga", branch = "master" }
#bevy_egui = { path = "../bevy_egui" }
bevy_egui = { git = "https://github.com/slyedoc/bevy_egui", branch = "bevy-main" }
#bevy_egui = { git = "https://github.com/jakobhellermann/bevy_egui", branch = "bevy-main"}
bevy-inspector-egui = { path = "../bevy-inspector-egui" }
#bevy-inspector-egui = { git = "https://github.com/slyedoc/bevy-inspector-egui", branch = "bevy-main" }
#bevy_mod_raycast = { path = "../bevy_mod_raycast" }
bevy_mod_raycast = { git = "https://github.com/slyedoc/bevy_mod_raycast", branch = "master" }
#bevy_mod_picking = { path = "../bevy_mod_picking" }
bevy_mod_picking = { git = "https://github.com/slyedoc/bevy_mod_picking", branch = "master" }
#bevy_asset_loader = { path = "../bevy_asset_loader/bevy_asset_loader" }
#bevy_mod_raycast = { path = "../../../bevy_mod_raycast"}
#bevy-inspector-egui = { git = "https://github.com/slyedoc/bevy-inspector-egui", branch = "pipelined-editor" }
#bevy_rapier2d = { path = "../bevy_rapier/bevy_rapier2d" }
#nalgebra = { path = "../nalgebra" }
#bevy_rapier2d = { git = "https://github.com/slyedoc/bevy_rapier", branch = "bevy-main-fixes" }
#parry3d = { git = "https://github.com/deontologician/parry", branch = "bevy-components" }
#parry2d = { git = "https://github.com/deontologician/parry", branch = "bevy-components" }
#rapier3d = { git = "https://github.com/deontologician/rapier", branch = "dep-hacks" }
#rapier2d = { git = "https://github.com/deontologician/rapier", branch = "dep-hacks" }