cyber_rider/Cargo.toml

30 lines
527 B
TOML
Raw Normal View History

2021-11-06 05:32:55 +00:00
[package]
name = "cyber_rider"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-01-07 00:01:37 +00:00
[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"]
2021-12-20 07:08:54 +00:00
bevy = { path = "../bevy/" }