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.

103 lines
2.6 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. "login_server",
  23. ]
  24. [workspace.dependencies]
  25. entity = { path = "./entity" }
  26. maps = { path = "./maps" }
  27. networking = { path = "./networking" }
  28. shops = { path = "./shops" }
  29. stats = { path = "./stats" }
  30. items = { path = "./items" }
  31. pktbuilder = { path = "./pktbuilder" }
  32. quests = { path = "./quests" }
  33. location = { path = "./location" }
  34. client = { path = "./client" }
  35. drops = { path = "./drops" }
  36. trade = { path = "./trade" }
  37. room = { path = "./room" }
  38. patch_server = { path = "./patch_server" }
  39. login_server = { path = "./login_server" }
  40. libpso = { git = "http://git.sharnoth.com/jake/libpso" }
  41. async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
  42. futures = "0.3.5"
  43. rand = "0.7.3"
  44. rand_chacha = "0.2.2"
  45. crc = "^1.0.0"
  46. bcrypt = "0.10"
  47. chrono = "0.4.11"
  48. serde = "*"
  49. serde_json = "*"
  50. ron = "*"
  51. toml = "*"
  52. log = "*"
  53. fern = { version = "0.5", features = ["colored"] }
  54. byteorder = "1"
  55. enum-utils = "0.1.2"
  56. derive_more = { version = "0.99.3", features = ["display"]}
  57. thiserror = "1.0.37"
  58. ages-prs = "0.1"
  59. async-trait = "0.1.51"
  60. async-recursion= "1.0.0"
  61. lazy_static = "1.4.0"
  62. barrel = { version = "0.6.5", features = ["pg"] }
  63. refinery = { version = "0.5.0", features = ["postgres"] }
  64. sqlx = { version = "0.6.2", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
  65. strum = "0.19.5"
  66. strum_macros = "0.19"
  67. anyhow = { version = "1.0.68", features = ["backtrace"] }
  68. [dependencies]
  69. entity = { workspace = true }
  70. maps = { workspace = true }
  71. networking = { workspace = true }
  72. shops = { workspace = true }
  73. stats = { workspace = true }
  74. items = { workspace = true }
  75. pktbuilder = { workspace = true }
  76. quests = { workspace = true }
  77. location = { workspace = true }
  78. client = { workspace = true }
  79. drops = { workspace = true }
  80. trade = { workspace = true }
  81. room = { workspace = true }
  82. patch_server = { workspace = true }
  83. login_server = { workspace = true }
  84. libpso = { workspace = true }
  85. anyhow = { workspace = true }
  86. async-std = { workspace = true }
  87. async-trait = { workspace = true }
  88. bcrypt = { workspace = true }
  89. chrono = { workspace = true }
  90. crc = { workspace = true }
  91. fern = { workspace = true }
  92. futures = { workspace = true }
  93. log = { workspace = true }
  94. rand = { workspace = true }
  95. ron = { workspace = true }
  96. serde = { workspace = true }
  97. thiserror = { workspace = true }