bevy_dioxus/Cargo.toml

42 lines
1.9 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" }
2023-12-22 05:37:53 +00:00
dioxus = { git = "https://github.com/ealmloff/dioxus", branch = "fix-event-bubbling", default-features = false, features = [
2023-12-19 05:24:06 +00:00
"macro",
"hooks",
] }
2023-12-22 05:37:53 +00:00
dioxus-rsx = { git = "https://github.com/ealmloff/dioxus", branch = "fix-event-bubbling", default-features = false, features = [
2023-12-21 08:45:28 +00:00
"hot_reload",
], optional = true }
2023-12-22 05:37:53 +00:00
dioxus-hot-reload = { git = "https://github.com/ealmloff/dioxus", branch = "fix-event-bubbling", default-features = false, features = [
2023-12-21 08:45:28 +00:00
"custom_file_watcher",
], optional = true }
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
2023-12-21 08:45:28 +00:00
[features]
hot_reload = ["dioxus/hot-reload", "dioxus-rsx", "dioxus-hot-reload"]
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"