[package]
name = "pistoncore-event_loop"
version = "1.0.0"
edition = "2018"
authors = [
"bvssvni <bvssvni@gmail.com>",
"Coeuvre <coeuvre@gmail.com>",
"gmorenz",
"bfops",
]
keywords = ["game", "event", "loop", "piston"]
description = "A Piston event loop for games and interactive applications"
license = "MIT"
readme = "README.md"
repository = "https://github.com/PistonDevelopers/piston.git"
homepage = "https://github.com/PistonDevelopers/piston"
documentation = "https://docs.rs/pistoncore-event_loop"
[lib]
name = "event_loop"
path = "src/lib.rs"
[features]
async = ["dep:tokio"]
[dependencies]
spin_sleep = "1.0.0"
tokio = {version = "1.34.0", features = ["time"], optional = true}
[dependencies.pistoncore-window]
path = "../window"
version = "1.0.0"
[dependencies.pistoncore-input]
path = "../input"
version = "1.0.1"