2019-11-13 03:36:02 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-03-11 05:20:49 +00:00
|
|
|
[features]
|
2020-06-05 07:50:37 +00:00
|
|
|
default = ["bevy_wgpu", "bevy_winit"]
|
2020-04-30 19:22:35 +00:00
|
|
|
more-system-fns = ["legion/more-system-fns"]
|
2020-03-11 05:20:49 +00:00
|
|
|
|
2020-05-06 01:44:32 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/*",
|
|
|
|
"examples/app/dynamic_plugin_loading/example_plugin"
|
|
|
|
]
|
2020-05-29 07:32:00 +00:00
|
|
|
exclude = [
|
|
|
|
"crates/bevy_glam",
|
|
|
|
"crates/bevy_legion"
|
|
|
|
]
|
2020-05-06 01:44:32 +00:00
|
|
|
|
2019-11-13 03:36:02 +00:00
|
|
|
[dependencies]
|
2020-03-29 07:53:47 +00:00
|
|
|
# bevy
|
2020-04-25 00:57:20 +00:00
|
|
|
bevy_app = { path = "crates/bevy_app" }
|
2020-06-05 07:50:37 +00:00
|
|
|
bevy_asset = { path = "crates/bevy_asset" }
|
|
|
|
bevy_type_registry = { path = "crates/bevy_type_registry" }
|
|
|
|
bevy_core = { path = "crates/bevy_core" }
|
|
|
|
bevy_diagnostic = { path = "crates/bevy_diagnostic" }
|
|
|
|
bevy_gltf = { path = "crates/bevy_gltf" }
|
|
|
|
bevy_input = { path = "crates/bevy_input" }
|
|
|
|
bevy_pbr = { path = "crates/bevy_pbr" }
|
|
|
|
bevy_property = { path = "crates/bevy_property" }
|
|
|
|
bevy_render = { path = "crates/bevy_render" }
|
|
|
|
bevy_scene = { path = "crates/bevy_scene" }
|
|
|
|
bevy_sprite = { path = "crates/bevy_sprite" }
|
|
|
|
bevy_transform = { path = "crates/bevy_transform" }
|
|
|
|
bevy_text = { path = "crates/bevy_text" }
|
|
|
|
bevy_ui = { path = "crates/bevy_ui" }
|
|
|
|
bevy_window = { path = "crates/bevy_window" }
|
2020-04-25 00:57:20 +00:00
|
|
|
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true }
|
|
|
|
bevy_winit = { path = "crates/bevy_winit", optional = true }
|
|
|
|
legion = { path = "crates/bevy_legion" }
|
2020-06-02 02:23:11 +00:00
|
|
|
glam = "0.8.7"
|
2020-04-06 23:09:58 +00:00
|
|
|
# other
|
2020-03-29 07:53:47 +00:00
|
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
2020-04-06 03:19:02 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.7.2"
|
2020-04-06 23:09:58 +00:00
|
|
|
serde = { version = "1", features = ["derive"]}
|
2020-04-06 03:23:39 +00:00
|
|
|
env_logger = "0.7"
|
2019-12-24 00:13:05 +00:00
|
|
|
|
2020-02-09 20:38:17 +00:00
|
|
|
[profile.dev]
|
2020-05-27 07:25:15 +00:00
|
|
|
opt-level = 3
|
2020-05-01 20:12:47 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "hello_world"
|
|
|
|
path = "examples/hello_world.rs"
|
|
|
|
|
2020-05-04 08:22:25 +00:00
|
|
|
[[example]]
|
|
|
|
name = "sprite"
|
|
|
|
path = "examples/2d/sprite.rs"
|
|
|
|
|
2020-06-02 02:23:11 +00:00
|
|
|
[[example]]
|
|
|
|
name = "sprite_sheet"
|
|
|
|
path = "examples/2d/sprite_sheet.rs"
|
|
|
|
|
2020-06-06 07:12:38 +00:00
|
|
|
[[example]]
|
|
|
|
name = "texture_atlas"
|
|
|
|
path = "examples/2d/texture_atlas.rs"
|
|
|
|
|
2020-05-01 20:12:47 +00:00
|
|
|
[[example]]
|
|
|
|
name = "load_model"
|
|
|
|
path = "examples/3d/load_model.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "parenting"
|
|
|
|
path = "examples/3d/parenting.rs"
|
|
|
|
|
|
|
|
[[example]]
|
2020-05-22 00:21:33 +00:00
|
|
|
name = "3d_scene"
|
|
|
|
path = "examples/3d/3d_scene.rs"
|
2020-05-01 20:12:47 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "spawner"
|
|
|
|
path = "examples/3d/spawner.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "texture"
|
|
|
|
path = "examples/3d/texture.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "dynamic_plugin_loading"
|
|
|
|
path = "examples/app/dynamic_plugin_loading/main.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "empty_defaults"
|
|
|
|
path = "examples/app/empty_defaults.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "empty"
|
|
|
|
path = "examples/app/empty.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "headless"
|
|
|
|
path = "examples/app/headless.rs"
|
|
|
|
|
2020-05-03 08:30:10 +00:00
|
|
|
[[example]]
|
|
|
|
name = "plugin"
|
|
|
|
path = "examples/app/plugin.rs"
|
|
|
|
|
2020-05-17 03:18:30 +00:00
|
|
|
[[example]]
|
2020-05-17 17:29:42 +00:00
|
|
|
name = "hot_asset_reloading"
|
|
|
|
path = "examples/asset/hot_asset_reloading.rs"
|
2020-05-17 03:18:30 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "asset_loading"
|
|
|
|
path = "examples/asset/asset_loading.rs"
|
|
|
|
|
2020-05-04 21:14:49 +00:00
|
|
|
[[example]]
|
|
|
|
name = "custom_diagnostic"
|
|
|
|
path = "examples/diagnostics/custom_diagnostic.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "print_diagnostics"
|
|
|
|
path = "examples/diagnostics/print_diagnostics.rs"
|
|
|
|
|
2020-05-01 20:12:47 +00:00
|
|
|
[[example]]
|
|
|
|
name = "event"
|
|
|
|
path = "examples/ecs/event.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "startup_system"
|
|
|
|
path = "examples/ecs/startup_system.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "ecs_guide"
|
|
|
|
path = "examples/ecs/ecs_guide.rs"
|
|
|
|
|
|
|
|
[[example]]
|
2020-06-05 06:49:36 +00:00
|
|
|
name = "mouse_input"
|
|
|
|
path = "examples/input/mouse_input.rs"
|
2020-05-01 20:12:47 +00:00
|
|
|
|
|
|
|
[[example]]
|
2020-06-05 06:49:36 +00:00
|
|
|
name = "mouse_input_events"
|
|
|
|
path = "examples/input/mouse_input_events.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "keyboard_input"
|
|
|
|
path = "examples/input/keyboard_input.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "keyboard_input_events"
|
|
|
|
path = "examples/input/keyboard_input_events.rs"
|
2020-05-01 20:12:47 +00:00
|
|
|
|
|
|
|
[[example]]
|
2020-05-22 00:21:33 +00:00
|
|
|
name = "load_scene"
|
|
|
|
path = "examples/scene/load_scene.rs"
|
2020-05-01 20:12:47 +00:00
|
|
|
|
2020-05-22 06:58:11 +00:00
|
|
|
[[example]]
|
2020-05-22 22:36:48 +00:00
|
|
|
name = "properties"
|
|
|
|
path = "examples/scene/properties.rs"
|
2020-05-22 06:58:11 +00:00
|
|
|
|
2020-05-01 20:12:47 +00:00
|
|
|
[[example]]
|
|
|
|
name = "shader_custom_material"
|
|
|
|
path = "examples/shader/shader_custom_material.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "shader_defs"
|
|
|
|
path = "examples/shader/shader_defs.rs"
|
|
|
|
|
2020-05-13 20:09:32 +00:00
|
|
|
[[example]]
|
|
|
|
name = "text"
|
|
|
|
path = "examples/ui/text.rs"
|
|
|
|
|
2020-06-14 01:53:31 +00:00
|
|
|
[[example]]
|
|
|
|
name = "font_atlas_debug"
|
|
|
|
path = "examples/ui/font_atlas_debug.rs"
|
|
|
|
|
2020-05-01 20:12:47 +00:00
|
|
|
[[example]]
|
|
|
|
name = "ui"
|
|
|
|
path = "examples/ui/ui.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "ui_bench"
|
|
|
|
path = "examples/ui/ui_bench.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "multiple_windows"
|
|
|
|
path = "examples/window/multiple_windows.rs"
|