mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
39 lines
No EOL
1 KiB
TOML
39 lines
No EOL
1 KiB
TOML
[package]
|
|
name = "bevy"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["bevy_wgpu", "bevy_winit"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "bevy_app" }
|
|
bevy_asset = { path = "bevy_asset" }
|
|
bevy_core = { path = "bevy_core" }
|
|
bevy_derive = { path = "bevy_derive" }
|
|
bevy_diagnostic = { path = "bevy_diagnostic" }
|
|
bevy_input = { path = "bevy_input" }
|
|
bevy_render = { path = "bevy_render" }
|
|
bevy_serialization = { path = "bevy_serialization" }
|
|
bevy_transform = { path = "bevy_transform" }
|
|
bevy_ui = { path = "bevy_ui" }
|
|
bevy_window = { path = "bevy_window" }
|
|
bevy_wgpu = { path = "bevy_wgpu", optional = true }
|
|
bevy_winit = { path = "bevy_winit", optional = true }
|
|
legion = { path = "bevy_legion", features = ["serialize"] }
|
|
|
|
# other
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
glam = "0.8.6"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.2"
|
|
serde = { version = "1", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
type-uuid = "0.1"
|
|
env_logger = "0.7"
|
|
|
|
[profile.dev]
|
|
opt-level = 3 |