bevy/crates/bevy_ecs/Cargo.toml

28 lines
803 B
TOML
Raw Normal View History

2020-07-10 04:18:35 +00:00
[package]
name = "bevy_ecs"
2020-08-22 16:48:52 +00:00
version = "0.1.3"
2020-07-10 04:18:35 +00:00
edition = "2018"
2020-09-10 19:54:24 +00:00
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>",
]
2020-08-10 00:24:27 +00:00
description = "Bevy Engine's custom entity component system"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT"
keywords = ["ecs", "game", "bevy"]
categories = ["game-engines", "data-structures"]
2020-07-10 04:18:35 +00:00
[features]
profiler = []
[dependencies]
2020-08-10 00:58:56 +00:00
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
2020-09-10 19:54:24 +00:00
rand = "0.7.3"
fixedbitset = "0.3.1"
downcast-rs = "1.2.0"
parking_lot = "0.11.0"
log = { version = "0.4", features = ["release_max_level_info"] }