mirror of
https://github.com/eliasstepanik/voxel-simulation.git
synced 2026-01-10 21:38:29 +00:00
Patch Bevy crates to unify version
This commit is contained in:
parent
1152799b4e
commit
d56d28c966
19
Cargo.toml
19
Cargo.toml
@ -1,3 +1,22 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = ["client"]
|
members = ["client"]
|
||||||
|
|
||||||
|
[patch.crates-io]
|
||||||
|
bevy = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_app = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_ecs = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_log = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_math = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_reflect = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_tasks = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_transform = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_utils = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_platform = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_color = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_gizmos = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_render = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_input = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_time = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
bevy_window = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
|
||||||
|
|
||||||
|
|||||||
@ -13,7 +13,7 @@ bevy = { version = "0.16.1", features = ["jpeg", "trace_tracy", "trace_tracy_mem
|
|||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
big_space = "0.9.1"
|
big_space = { git = "https://github.com/aevyrie/big_space.git", rev = "5345af11d4ce138bacf5a9a3ab53d1c3b3b103c7" }
|
||||||
noise = "0.9.0"
|
noise = "0.9.0"
|
||||||
itertools = "0.13.0"
|
itertools = "0.13.0"
|
||||||
bitvec = "1.0.1"
|
bitvec = "1.0.1"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user