bevy_dioxus/Cargo.toml

30 lines
1.3 KiB
TOML
Raw Normal View History

2023-12-06 05:24:51 +00:00
[package]
name = "bevy_dioxus"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-10 23:44:27 +00:00
bevy = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
dioxus = "0.4"
2023-12-12 08:12:06 +00:00
bevy_mod_picking = { version = "0.17", default-features = false, features = [
"backend_bevy_ui",
] }
2023-12-10 23:44:27 +00:00
[patch.crates-io]
bevy_app = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
2023-12-12 08:12:06 +00:00
bevy_asset = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
2023-12-10 23:44:27 +00:00
bevy_core = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_ecs = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_hierarchy = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_input = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_math = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_reflect = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_render = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
2023-12-12 08:12:06 +00:00
bevy_transform = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_ui = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
2023-12-10 23:44:27 +00:00
bevy_utils = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
bevy_window = { git = "https://github.com/JMS55/bevy", branch = "query_new_12" }
[[example]]
2023-12-13 03:47:14 +00:00
name = "demo"