Async Entity Component System based on the ideas of specs (https://github.com/amethyst/specs)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
436 B

  1. [package]
  2. name = "async-ecs"
  3. version = "0.1.0"
  4. authors = ["Bergmann89 <info@bergmann89.de>"]
  5. edition = "2018"
  6. [dependencies]
  7. asparit = "0.1"
  8. async-ecs-derive = "0.1"
  9. env_logger = "0.8"
  10. futures = "0.3"
  11. hashbrown = "0.9"
  12. hibitset = { version = "0.6", default-features = false }
  13. log = "0.4"
  14. mopa = "0.2"
  15. num_cpus = "1.13"
  16. rand = "0.7"
  17. thiserror = "1.0"
  18. tokio = { version = "0.3", features = [ "full", "net", "time", "rt-multi-thread" ] }