[package]
name = "iyes_loopless"
version = "0.2.1"
description = "Composable alternatives to Bevy's States/FixedTimestep/RunCriteria"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/IyesGames/iyes_loopless"
keywords = ["gamedev", "bevy"]
categories = ["game-engines"]
exclude = ["assets"]
[features]
default = [ "fixedtimestep", "states", "bevy-compat" ]
fixedtimestep = [
"bevy_core",
]
states = [
"bevy_utils",
]
bevy-compat = []
[dependencies]
bevy_ecs = "0.6"
bevy_core = { version = "0.6.0", optional = true }
bevy_utils = { version = "0.6.0", optional = true }
[dev-dependencies]
bevy = "0.6"
rand = "0.8.5"