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.

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