mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
72 lines
No EOL
2 KiB
TOML
72 lines
No EOL
2 KiB
TOML
[package]
|
|
name = "bevy"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["headless", "wgpu", "winit"]
|
|
headless = ["asset", "core", "derive", "diagnostic", "gltf", "input", "render", "serialization", "transform", "ui", "window"]
|
|
asset = ["bevy_asset"]
|
|
core = ["bevy_core"]
|
|
derive = ["bevy_derive"]
|
|
diagnostic = ["bevy_diagnostic"]
|
|
gltf = ["bevy_gltf"]
|
|
input = ["bevy_input"]
|
|
render = ["bevy_render"]
|
|
serialization = ["bevy_serialization"]
|
|
transform = ["bevy_transform"]
|
|
ui = ["bevy_ui"]
|
|
window = ["bevy_window"]
|
|
wgpu = ["bevy_wgpu"]
|
|
winit = ["bevy_winit"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "bevy_app" }
|
|
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_gltf = { path = "bevy_gltf", 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 }
|
|
bevy_wgpu = { path = "bevy_wgpu", optional = true }
|
|
bevy_winit = { path = "bevy_winit", optional = true }
|
|
legion = { path = "bevy_legion" }
|
|
# other
|
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
|
glam = "0.8.6"
|
|
|
|
[workspace]
|
|
members = [
|
|
"bevy_app",
|
|
"bevy_asset",
|
|
"bevy_core",
|
|
"bevy_derive",
|
|
"bevy_diagnostic",
|
|
"bevy_gltf",
|
|
"bevy_input",
|
|
"bevy_render",
|
|
"bevy_serialization",
|
|
"bevy_transform",
|
|
"bevy_legion",
|
|
"bevy_ui",
|
|
"bevy_window",
|
|
"bevy_wgpu",
|
|
"bevy_winit",
|
|
]
|
|
|
|
[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 |