Cargo.toml 932 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "rust_roguelike_tutorial"
  3. version = "0.1.0"
  4. authors = ["Herbert Wolverson <herberticus@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. rltk = { git = "https://github.com/thebracket/rltk_rs", features = [ "serialization" ] }
  9. specs = "0.15.0"
  10. specs-derive = "0.4.0"
  11. [workspace]
  12. members = [
  13. "chapter-01-hellorust",
  14. "chapter-02-helloecs",
  15. "chapter-03-walkmap",
  16. "chapter-04-newmap",
  17. "chapter-05-fov",
  18. "chapter-06-monsters",
  19. "chapter-07-damage",
  20. "chapter-08-ui",
  21. "chapter-09-items",
  22. "chapter-10-ranged",
  23. "chapter-11-loadsave",
  24. "chapter-12-delvingdeeper",
  25. "chapter-13-difficulty",
  26. "chapter-14-gear",
  27. "chapter-16-nicewalls",
  28. "chapter-17-blood",
  29. "chapter-18-particles",
  30. "chapter-19-food",
  31. "chapter-20-magicmapping",
  32. "chapter-21-rexmenu"
  33. ]