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.

42 lines
784 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
  1. [package]
  2. name = "elseware"
  3. version = "0.1.0"
  4. authors = ["Jake Probst <jake.probst@gmail.com>"]
  5. edition = "2018"
  6. [[bin]]
  7. name = "everything"
  8. path = "src/main.rs"
  9. #[[bin]]
  10. #name = "patch"
  11. #path = "src/patch_main.rs"
  12. #[[bin]]
  13. #name = "login"
  14. #path = "src/login_main.rs"
  15. [dependencies]
  16. libpso = { git = "http://git.sharnoth.com/jake/libpso" }
  17. async-std = { version = "1.5.0", features = ["unstable"] }
  18. futures = "0.3.4"
  19. rand = "0.7.3"
  20. rand_chacha = "0.2.2"
  21. mio = "0.6"
  22. mio-extras = "2.0.5"
  23. crc = "^1.0.0"
  24. bcrypt = "0.4"
  25. threadpool = "1.0"
  26. chrono = "*"
  27. serde = "*"
  28. serde_json = "*"
  29. ron = "*"
  30. toml = "*"
  31. log = "*"
  32. fern = { version = "0.5", features = ["colored"] }
  33. byteorder = "1"
  34. enum-utils = "0.1.2"
  35. derive_more = { version = "0.99.3", features = ["display"]}
  36. thiserror = "1.0.15"