mirror of
https://github.com/bevyengine/bevy
synced 2024-12-23 19:43:07 +00:00
4aabe983ec
switch to ahash for HashMaps and HashSets via a new bevy_utils crate
24 lines
710 B
TOML
24 lines
710 B
TOML
[package]
|
|
name = "bevy_ecs"
|
|
version = "0.1.3"
|
|
edition = "2018"
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
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"]
|
|
|
|
[features]
|
|
profiler = []
|
|
|
|
[dependencies]
|
|
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.1" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.1" }
|
|
rand = "0.7.2"
|
|
rayon = "1.3"
|
|
crossbeam-channel = "0.4.2"
|
|
fixedbitset = "0.3.0"
|
|
downcast-rs = "1.1.1"
|
|
parking_lot = "0.10"
|