2019-11-12 19:36:02 -08:00
|
|
|
[package]
|
|
|
|
name = "bevy"
|
2020-08-10 02:22:36 -07:00
|
|
|
version = "0.1.2"
|
2019-11-12 19:36:02 -08:00
|
|
|
edition = "2018"
|
2020-08-09 17:24:27 -07:00
|
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
|
|
description = "A refreshingly simple data-driven game engine and app framework"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
|
|
|
|
categories = ["game-engines", "graphics", "gui", "rendering"]
|
|
|
|
readme = "README.md"
|
2020-08-10 02:22:36 -07:00
|
|
|
exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
|
2019-11-12 19:36:02 -08:00
|
|
|
|
2020-03-10 22:20:49 -07:00
|
|
|
[features]
|
2020-08-11 00:30:42 -06:00
|
|
|
default = ["bevy_audio", "bevy_gltf", "bevy_wgpu", "bevy_winit", "png", "hdr", "mp3"]
|
2020-07-09 21:18:35 -07:00
|
|
|
profiler = ["bevy_ecs/profiler", "bevy_diagnostic/profiler"]
|
2020-03-10 22:20:49 -07:00
|
|
|
|
2020-08-11 00:30:42 -06:00
|
|
|
# Image format support for texture loading (PNG and HDR are enabled by default)
|
|
|
|
png = ["bevy_render/png"]
|
|
|
|
hdr = ["bevy_render/hdr"]
|
|
|
|
|
|
|
|
# Audio format support (MP3 is enabled by default)
|
|
|
|
mp3 = ["bevy_audio/mp3"]
|
|
|
|
flac = ["bevy_audio/flac"]
|
|
|
|
wav = ["bevy_audio/wav"]
|
|
|
|
vorbis = ["bevy_audio/vorbis"]
|
|
|
|
|
2020-05-05 18:44:32 -07:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/*",
|
2020-07-09 21:18:35 -07:00
|
|
|
"crates/bevy_ecs/hecs",
|
2020-05-05 18:44:32 -07:00
|
|
|
]
|
|
|
|
|
2019-11-12 19:36:02 -08:00
|
|
|
[dependencies]
|
2020-03-29 00:53:47 -07:00
|
|
|
# bevy
|
2020-08-09 17:39:28 -07:00
|
|
|
bevy_app = { path = "crates/bevy_app", version = "0.1" }
|
|
|
|
bevy_asset = { path = "crates/bevy_asset", version = "0.1" }
|
|
|
|
bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.1" }
|
|
|
|
bevy_core = { path = "crates/bevy_core", version = "0.1" }
|
|
|
|
bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.1" }
|
|
|
|
bevy_ecs = { path = "crates/bevy_ecs", version = "0.1" }
|
|
|
|
bevy_input = { path = "crates/bevy_input", version = "0.1" }
|
|
|
|
bevy_math = { path = "crates/bevy_math", version = "0.1" }
|
|
|
|
bevy_pbr = { path = "crates/bevy_pbr", version = "0.1" }
|
|
|
|
bevy_property = { path = "crates/bevy_property", version = "0.1" }
|
|
|
|
bevy_render = { path = "crates/bevy_render", version = "0.1" }
|
|
|
|
bevy_scene = { path = "crates/bevy_scene", version = "0.1" }
|
|
|
|
bevy_sprite = { path = "crates/bevy_sprite", version = "0.1" }
|
|
|
|
bevy_transform = { path = "crates/bevy_transform", version = "0.1" }
|
|
|
|
bevy_text = { path = "crates/bevy_text", version = "0.1" }
|
|
|
|
bevy_ui = { path = "crates/bevy_ui", version = "0.1" }
|
|
|
|
bevy_window = { path = "crates/bevy_window", version = "0.1" }
|
|
|
|
|
|
|
|
# bevy (optional)
|
|
|
|
bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.1" }
|
|
|
|
bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.1" }
|
|
|
|
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" }
|
|
|
|
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
|
2020-04-05 20:19:02 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.7.2"
|
2020-04-06 16:09:58 -07:00
|
|
|
serde = { version = "1", features = ["derive"]}
|
2019-12-23 18:13:05 -06:00
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "hello_world"
|
|
|
|
path = "examples/hello_world.rs"
|
|
|
|
|
2020-05-04 01:22:25 -07:00
|
|
|
[[example]]
|
|
|
|
name = "sprite"
|
|
|
|
path = "examples/2d/sprite.rs"
|
|
|
|
|
2020-06-01 19:23:11 -07:00
|
|
|
[[example]]
|
|
|
|
name = "sprite_sheet"
|
|
|
|
path = "examples/2d/sprite_sheet.rs"
|
|
|
|
|
2020-06-06 00:12:38 -07:00
|
|
|
[[example]]
|
|
|
|
name = "texture_atlas"
|
|
|
|
path = "examples/2d/texture_atlas.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "load_model"
|
|
|
|
path = "examples/3d/load_model.rs"
|
|
|
|
|
2020-07-29 18:15:15 -07:00
|
|
|
[[example]]
|
|
|
|
name = "msaa"
|
|
|
|
path = "examples/3d/msaa.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "parenting"
|
|
|
|
path = "examples/3d/parenting.rs"
|
|
|
|
|
|
|
|
[[example]]
|
2020-05-21 17:21:33 -07:00
|
|
|
name = "3d_scene"
|
|
|
|
path = "examples/3d/3d_scene.rs"
|
2020-05-01 13:12:47 -07:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "spawner"
|
|
|
|
path = "examples/3d/spawner.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "texture"
|
|
|
|
path = "examples/3d/texture.rs"
|
|
|
|
|
2020-06-22 17:55:48 -07:00
|
|
|
[[example]]
|
|
|
|
name = "z_sort_debug"
|
|
|
|
path = "examples/3d/z_sort_debug.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[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 01:30:10 -07:00
|
|
|
[[example]]
|
|
|
|
name = "plugin"
|
|
|
|
path = "examples/app/plugin.rs"
|
|
|
|
|
2020-05-16 20:18:30 -07:00
|
|
|
[[example]]
|
2020-05-17 10:29:42 -07:00
|
|
|
name = "hot_asset_reloading"
|
|
|
|
path = "examples/asset/hot_asset_reloading.rs"
|
2020-05-16 20:18:30 -07:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "asset_loading"
|
|
|
|
path = "examples/asset/asset_loading.rs"
|
|
|
|
|
2020-07-16 13:46:51 -07:00
|
|
|
[[example]]
|
|
|
|
name = "audio"
|
|
|
|
path = "examples/audio/audio.rs"
|
|
|
|
|
2020-05-04 14:14:49 -07:00
|
|
|
[[example]]
|
|
|
|
name = "custom_diagnostic"
|
|
|
|
path = "examples/diagnostics/custom_diagnostic.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "print_diagnostics"
|
|
|
|
path = "examples/diagnostics/print_diagnostics.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07: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"
|
|
|
|
|
2020-06-26 21:40:09 -07:00
|
|
|
[[example]]
|
|
|
|
name = "breakout"
|
2020-06-28 11:11:18 -07:00
|
|
|
path = "examples/game/breakout.rs"
|
2020-06-26 21:40:09 -07:00
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
2020-06-04 23:49:36 -07:00
|
|
|
name = "mouse_input"
|
|
|
|
path = "examples/input/mouse_input.rs"
|
2020-05-01 13:12:47 -07:00
|
|
|
|
|
|
|
[[example]]
|
2020-06-04 23:49:36 -07: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 13:12:47 -07:00
|
|
|
|
|
|
|
[[example]]
|
2020-08-02 19:15:41 -07:00
|
|
|
name = "scene"
|
|
|
|
path = "examples/scene/scene.rs"
|
2020-05-01 13:12:47 -07:00
|
|
|
|
2020-05-21 23:58:11 -07:00
|
|
|
[[example]]
|
2020-05-22 15:36:48 -07:00
|
|
|
name = "properties"
|
|
|
|
path = "examples/scene/properties.rs"
|
2020-05-21 23:58:11 -07:00
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "shader_custom_material"
|
|
|
|
path = "examples/shader/shader_custom_material.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "shader_defs"
|
|
|
|
path = "examples/shader/shader_defs.rs"
|
|
|
|
|
2020-07-18 14:08:46 -07:00
|
|
|
[[example]]
|
|
|
|
name = "button"
|
|
|
|
path = "examples/ui/button.rs"
|
|
|
|
|
2020-05-13 13:09:32 -07:00
|
|
|
[[example]]
|
|
|
|
name = "text"
|
|
|
|
path = "examples/ui/text.rs"
|
|
|
|
|
2020-06-13 18:53:31 -07:00
|
|
|
[[example]]
|
|
|
|
name = "font_atlas_debug"
|
|
|
|
path = "examples/ui/font_atlas_debug.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "ui"
|
|
|
|
path = "examples/ui/ui.rs"
|
|
|
|
|
2020-06-25 15:24:27 -07:00
|
|
|
[[example]]
|
|
|
|
name = "clear_color"
|
|
|
|
path = "examples/window/clear_color.rs"
|
|
|
|
|
2020-05-01 13:12:47 -07:00
|
|
|
[[example]]
|
|
|
|
name = "multiple_windows"
|
2020-07-20 02:05:56 -07:00
|
|
|
path = "examples/window/multiple_windows.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "window_settings"
|
|
|
|
path = "examples/window/window_settings.rs"
|