bevy/Cargo.toml

168 lines
3.9 KiB
TOML
Raw Normal View History

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]
default = ["headless", "wgpu", "winit"]
2020-05-13 20:09:32 +00:00
headless = ["asset", "core", "derive", "diagnostic", "gltf", "input", "pbr", "render", "serialization", "text", "transform", "ui", "window"]
asset = ["bevy_asset"]
core = ["bevy_core"]
derive = ["bevy_derive"]
diagnostic = ["bevy_diagnostic"]
gltf = ["bevy_gltf"]
input = ["bevy_input"]
pbr = ["bevy_pbr"]
render = ["bevy_render"]
serialization = ["bevy_serialization"]
2020-05-13 20:09:32 +00:00
text = ["bevy_text"]
transform = ["bevy_transform"]
ui = ["bevy_ui"]
window = ["bevy_window"]
wgpu = ["bevy_wgpu"]
winit = ["bevy_winit"]
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"
]
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" }
bevy_asset = { path = "crates/bevy_asset", optional = true }
bevy_core = { path = "crates/bevy_core", optional = true }
bevy_derive = { path = "crates/bevy_derive", optional = true }
bevy_diagnostic = { path = "crates/bevy_diagnostic", optional = true }
bevy_gltf = { path = "crates/bevy_gltf", optional = true }
bevy_input = { path = "crates/bevy_input", optional = true }
bevy_pbr = { path = "crates/bevy_pbr", optional = true }
bevy_render = { path = "crates/bevy_render", optional = true }
bevy_serialization = { path = "crates/bevy_serialization", optional = true }
bevy_transform = { path = "crates/bevy_transform", optional = true }
2020-05-13 20:09:32 +00:00
bevy_text = { path = "crates/bevy_text", optional = true }
2020-04-25 00:57:20 +00:00
bevy_ui = { path = "crates/bevy_ui", optional = true }
bevy_window = { path = "crates/bevy_window", optional = true }
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true }
bevy_winit = { path = "crates/bevy_winit", optional = true }
legion = { path = "crates/bevy_legion" }
2020-05-03 23:55:17 +00:00
glam = { path = "crates/bevy_glam" }
# 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"
serde = { version = "1", features = ["derive"]}
2020-04-06 03:19:02 +00:00
serde_json = "1.0"
type-uuid = "0.1"
2020-04-06 03:23:39 +00:00
env_logger = "0.7"
[profile.dev]
2020-05-01 20:12:47 +00:00
opt-level = 3
[[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-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]]
name = "scene"
path = "examples/3d/scene.rs"
[[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-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]]
name = "input_mouse"
path = "examples/input/input_mouse.rs"
[[example]]
name = "input_keyboard"
path = "examples/input/input_keyboard.rs"
[[example]]
name = "serializing"
path = "examples/serializing/serializing.rs"
[[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-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"