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-04-07 00:03:21 +00:00
|
|
|
default = ["headless", "wgpu", "winit"]
|
|
|
|
headless = ["asset", "core", "derive", "diagnostic", "input", "render", "serialization", "transform", "ui", "window"]
|
|
|
|
asset = ["bevy_asset"]
|
|
|
|
core = ["bevy_core"]
|
|
|
|
derive = ["bevy_derive"]
|
|
|
|
diagnostic = ["bevy_diagnostic"]
|
|
|
|
input = ["bevy_input"]
|
|
|
|
render = ["bevy_render"]
|
|
|
|
serialization = ["bevy_serialization"]
|
|
|
|
transform = ["bevy_transform"]
|
|
|
|
ui = ["bevy_ui"]
|
|
|
|
window = ["bevy_window"]
|
|
|
|
wgpu = ["bevy_wgpu"]
|
|
|
|
winit = ["bevy_winit"]
|
2020-03-11 05:20:49 +00:00
|
|
|
|
2019-11-13 03:36:02 +00:00
|
|
|
[dependencies]
|
2020-03-29 07:53:47 +00:00
|
|
|
# bevy
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_app = { path = "bevy_app" }
|
2020-04-07 00:03:21 +00:00
|
|
|
bevy_asset = { path = "bevy_asset", optional = true }
|
|
|
|
bevy_core = { path = "bevy_core", optional = true }
|
|
|
|
bevy_derive = { path = "bevy_derive", optional = true }
|
|
|
|
bevy_diagnostic = { path = "bevy_diagnostic", optional = true }
|
|
|
|
bevy_input = { path = "bevy_input", optional = true }
|
|
|
|
bevy_render = { path = "bevy_render", optional = true }
|
|
|
|
bevy_serialization = { path = "bevy_serialization", optional = true }
|
|
|
|
bevy_transform = { path = "bevy_transform", optional = true }
|
|
|
|
bevy_ui = { path = "bevy_ui", optional = true }
|
|
|
|
bevy_window = { path = "bevy_window", optional = true }
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_wgpu = { path = "bevy_wgpu", optional = true }
|
|
|
|
bevy_winit = { path = "bevy_winit", optional = true }
|
2020-04-07 00:03:21 +00:00
|
|
|
legion = { path = "bevy_legion" }
|
2020-03-29 07:53:47 +00:00
|
|
|
|
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-03-09 21:57:46 +00:00
|
|
|
glam = "0.8.6"
|
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:19:02 +00:00
|
|
|
serde_json = "1.0"
|
2020-04-06 23:09:58 +00:00
|
|
|
type-uuid = "0.1"
|
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]
|
|
|
|
opt-level = 3
|