bevy/crates/bevy_ecs/hecs/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2020-07-10 04:18:35 +00:00
[package]
2020-08-10 00:58:56 +00:00
name = "bevy_hecs"
2020-08-22 16:48:52 +00:00
version = "0.1.3"
2020-08-10 00:58:56 +00:00
description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system"
authors = [
"Benjamin Saunders <ben.e.saunders@gmail.com>",
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>"]
2020-07-10 04:18:35 +00:00
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/Ralith/hecs"
readme = "README.md"
keywords = ["ecs", "entity"]
categories = ["data-structures", "game-engines", "no-std"]
[package.metadata.docs.rs]
all-features = true
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["std"]
std = []
# Enables derive(Bundle)
2020-08-10 00:58:56 +00:00
macros = ["bevy_hecs_macros", "lazy_static"]
2020-07-10 04:18:35 +00:00
serialize = ["serde"]
[dependencies]
2020-08-22 16:48:52 +00:00
bevy_hecs_macros = { path = "macros", version = "0.1.3", optional = true }
bevy_utils = { path = "../../bevy_utils", version = "0.1" }
2020-07-10 04:18:35 +00:00
lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] }
serde = { version = "1", features = ["derive"], optional = true}
rand = "0.7.3"
[dev-dependencies]
bencher = "0.1.5"
[[bench]]
name = "bench"
harness = false
required-features = ["macros"]