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-06 03:19:02 +00:00
|
|
|
default = ["bevy_wgpu", "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" }
|
|
|
|
bevy_asset = { path = "bevy_asset" }
|
|
|
|
bevy_core = { path = "bevy_core" }
|
2020-03-29 07:53:47 +00:00
|
|
|
bevy_derive = { path = "bevy_derive" }
|
2020-04-06 07:12:54 +00:00
|
|
|
bevy_diagnostic = { path = "bevy_diagnostic" }
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_input = { path = "bevy_input" }
|
|
|
|
bevy_render = { path = "bevy_render" }
|
2020-04-06 23:09:58 +00:00
|
|
|
bevy_serialization = { path = "bevy_serialization" }
|
2020-03-29 07:53:47 +00:00
|
|
|
bevy_transform = { path = "bevy_transform" }
|
2020-04-06 21:20:53 +00:00
|
|
|
bevy_ui = { path = "bevy_ui" }
|
2020-04-06 03:19:02 +00:00
|
|
|
bevy_window = { path = "bevy_window" }
|
|
|
|
bevy_wgpu = { path = "bevy_wgpu", optional = true }
|
|
|
|
bevy_winit = { path = "bevy_winit", optional = true }
|
2020-03-29 07:53:47 +00:00
|
|
|
legion = { path = "bevy_legion", features = ["serialize"] }
|
|
|
|
|
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
|