[package] name = "bevy_concurrent_event" version = "0.1.0" edition = "2021" license = "MIT" authors = ["https://github.com/AntiAnimeGeneral"] description = "A simple concurrent event plugin,the principle is similar to Commads,events can be send/read concurrently, but the reading of events is always in the next bevy frame" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bevy = { version = "0.13", default-features = false } crossbeam = "0.8.4" rayon = "1.9.0"