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.

80 lines
2.1 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. "entity",
  9. "maps",
  10. "common",
  11. "networking",
  12. ]
  13. [workspace.dependencies]
  14. libpso = { git = "http://git.sharnoth.com/jake/libpso" }
  15. entity = { path = "./entity" }
  16. maps = { path = "./maps" }
  17. common = { path = "./common" }
  18. networking = { path = "./networking" }
  19. async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
  20. futures = "0.3.5"
  21. rand = "0.7.3"
  22. rand_chacha = "0.2.2"
  23. crc = "^1.0.0"
  24. bcrypt = "0.10"
  25. chrono = "0.4.11"
  26. serde = "*"
  27. serde_json = "*"
  28. ron = "*"
  29. toml = "*"
  30. log = "*"
  31. fern = { version = "0.5", features = ["colored"] }
  32. byteorder = "1"
  33. enum-utils = "0.1.2"
  34. derive_more = { version = "0.99.3", features = ["display"]}
  35. thiserror = "1.0.37"
  36. ages-prs = "0.1"
  37. async-trait = "0.1.51"
  38. async-recursion= "1.0.0"
  39. lazy_static = "1.4.0"
  40. barrel = { version = "0.6.5", features = ["pg"] }
  41. refinery = { version = "0.5.0", features = ["postgres"] }
  42. sqlx = { version = "0.6.2", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
  43. strum = "0.19.5"
  44. strum_macros = "0.19"
  45. anyhow = { version = "1.0.68", features = ["backtrace"] }
  46. [dependencies]
  47. libpso = { git = "http://git.sharnoth.com/jake/libpso" }
  48. entity = { path = "./entity" }
  49. maps = { path = "./maps" }
  50. common = { path = "./common" }
  51. networking = { path = "./networking" }
  52. async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
  53. futures = "0.3.5"
  54. rand = "0.7.3"
  55. rand_chacha = "0.2.2"
  56. crc = "^1.0.0"
  57. bcrypt = "0.10"
  58. chrono = { workspace = true }
  59. serde = "*"
  60. serde_json = "*"
  61. ron = "*"
  62. toml = "*"
  63. log = "*"
  64. fern = { version = "0.5", features = ["colored"] }
  65. byteorder = "1"
  66. enum-utils = "0.1.2"
  67. derive_more = { version = "0.99.3", features = ["display"]}
  68. thiserror = "1.0.37"
  69. ages-prs = "0.1"
  70. async-trait = "0.1.51"
  71. async-recursion= "1.0.0"
  72. lazy_static = "1.4.0"
  73. barrel = { version = "0.6.5", features = ["pg"] }
  74. refinery = { version = "0.5.0", features = ["postgres"] }
  75. #sqlx = { version = "0.6.2", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
  76. strum = "0.19.5"
  77. strum_macros = "0.19"
  78. anyhow = { workspace = true }