bevy/Cargo.toml

44 lines
1.2 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]
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-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"] }
# logging
log = { version = "0.4", features = ["release_max_level_info"] }
# misc
2020-03-09 21:57:46 +00:00
glam = "0.8.6"
2020-01-15 06:19:28 +00:00
serde = { version = "1", features = ["derive"]}
erased-serde = "0.3"
type-uuid = "0.1"
# TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788
once_cell = "1.3.1"
2020-04-06 03:19:02 +00:00
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
rand = "0.7.2"
serde_json = "1.0"
2020-04-06 03:23:39 +00:00
env_logger = "0.7"
[profile.dev]
opt-level = 3