Async Entity Component System based on the ideas of specs (https://github.com/amethyst/specs)
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
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 }