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.

100 lines
2.5 KiB

6 years ago
6 years ago
6 years ago
5 years ago
3 years ago
4 years ago
5 years ago
2 years ago
4 years ago
2 years ago
  1. [package]
  2. name = "elseware"
  3. version = "0.1.0"
  4. authors = ["Jake Probst <jake.probst@gmail.com>"]
  5. edition = "2021"
  6. [workspace]
  7. members = [
  8. "client",
  9. "drops",
  10. "entity",
  11. "items",
  12. "location",
  13. "maps",
  14. "networking",
  15. "pktbuilder",
  16. "quests",
  17. "room",
  18. "shops",
  19. "stats",
  20. "trade",
  21. "patch_server",
  22. ]
  23. [workspace.dependencies]
  24. entity = { path = "./entity" }
  25. maps = { path = "./maps" }
  26. networking = { path = "./networking" }
  27. shops = { path = "./shops" }
  28. stats = { path = "./stats" }
  29. items = { path = "./items" }
  30. pktbuilder = { path = "./pktbuilder" }
  31. quests = { path = "./quests" }
  32. location = { path = "./location" }
  33. client = { path = "./client" }
  34. drops = { path = "./drops" }
  35. trade = { path = "./trade" }
  36. room = { path = "./room" }
  37. patch_server = { path = "./patch_server" }
  38. libpso = { git = "http://git.sharnoth.com/jake/libpso" }
  39. async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
  40. futures = "0.3.5"
  41. rand = "0.7.3"
  42. rand_chacha = "0.2.2"
  43. crc = "^1.0.0"
  44. bcrypt = "0.10"
  45. chrono = "0.4.11"
  46. serde = "*"
  47. serde_json = "*"
  48. ron = "*"
  49. toml = "*"
  50. log = "*"
  51. fern = { version = "0.5", features = ["colored"] }
  52. byteorder = "1"
  53. enum-utils = "0.1.2"
  54. derive_more = { version = "0.99.3", features = ["display"]}
  55. thiserror = "1.0.37"
  56. ages-prs = "0.1"
  57. async-trait = "0.1.51"
  58. async-recursion= "1.0.0"
  59. lazy_static = "1.4.0"
  60. barrel = { version = "0.6.5", features = ["pg"] }
  61. refinery = { version = "0.5.0", features = ["postgres"] }
  62. sqlx = { version = "0.6.2", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
  63. strum = "0.19.5"
  64. strum_macros = "0.19"
  65. anyhow = { version = "1.0.68", features = ["backtrace"] }
  66. [dependencies]
  67. entity = { workspace = true }
  68. maps = { workspace = true }
  69. networking = { workspace = true }
  70. shops = { workspace = true }
  71. stats = { workspace = true }
  72. items = { workspace = true }
  73. pktbuilder = { workspace = true }
  74. quests = { workspace = true }
  75. location = { workspace = true }
  76. client = { workspace = true }
  77. drops = { workspace = true }
  78. trade = { workspace = true }
  79. room = { workspace = true }
  80. patch_server = { workspace = true }
  81. libpso = { workspace = true }
  82. anyhow = { workspace = true }
  83. async-std = { workspace = true }
  84. async-trait = { workspace = true }
  85. bcrypt = { workspace = true }
  86. chrono = { workspace = true }
  87. crc = { workspace = true }
  88. fern = { workspace = true }
  89. futures = { workspace = true }
  90. log = { workspace = true }
  91. rand = { workspace = true }
  92. ron = { workspace = true }
  93. serde = { workspace = true }
  94. thiserror = { workspace = true }