Add Heron for physics, update deps.

This commit is contained in:
Joe Ardent 2022-01-06 16:01:37 -08:00
parent 9a7b3b511a
commit 9bd0ca6d88
2 changed files with 207 additions and 1083 deletions

1266
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,25 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies.bevy]
path = "../bevy/"
default-features = false
features = [
"bevy_gilrs",
"bevy_winit",
"render",
"png",
"hdr",
"x11",
]
[dependencies.heron]
path = "../heron/"
features = ["3d"]
[patch.crates-io]
bevy = { path = "../bevy/" }
heron = { path = "../heron/" }
[patch."https://github.com/bevyengine/bevy"]
bevy = { path = "../bevy/" } bevy = { path = "../bevy/" }
heron = { path = "../heron/", features = ["3d"] }
# bevy-inspector-egui = "0.6.1"