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.

15 line
404 B

  1. [package]
  2. name = "asparit"
  3. version = "0.1.0"
  4. authors = ["Bergmann89 <info@bergmann89.de>"]
  5. edition = "2018"
  6. [features]
  7. default = [ "tokio-executor" ]
  8. tokio-executor = [ "futures", "num_cpus", "tokio" ]
  9. [dependencies]
  10. futures = { version = "0.3", optional = true }
  11. num_cpus = { version = "1.13", optional = true }
  12. tokio = { version = "0.3", features = [ "macros", "rt-multi-thread" ], optional = true }