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.

68 lines
1.2 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. [package]
  2. name = 'actix-demo'
  3. version = '0.1.0'
  4. authors = ['Rohan Sircar <rohansircar@tuta.io>']
  5. edition = '2018'
  6. [dependencies]
  7. actix-web = "3.3.2"
  8. actix-service = "2.0.0"
  9. actix-files = "0.5.0"
  10. actix-http = "2.2.0"
  11. bytes = "1.0.1"
  12. futures = "0.3.14"
  13. log = "0.4.14"
  14. env_logger = "0.8.3"
  15. serde_json = "1.0.64"
  16. # json = "0.12.4"
  17. # listenfd = "0.3.3"
  18. dotenv = "0.15.0"
  19. r2d2 = "0.8.9"
  20. validator = "0.13.0"
  21. validator_derive = "0.13.0"
  22. # jsonwebtoken = "7.2.0"
  23. actix-identity = "0.3.1"
  24. actix-web-httpauth = "0.5.1"
  25. rand = "0.8.3"
  26. nanoid = "0.4.0"
  27. bcrypt = "0.9.0"
  28. timeago = "0.3.0"
  29. # comp = "0.2.1"
  30. regex = "1.4.5"
  31. lazy_static = "1.4.0"
  32. lazy-regex = "0.1.4"
  33. custom_error = "1.9.2"
  34. derive-new = "0.5.9"
  35. diesel_migrations = "1.4.0"
  36. actix-threadpool = "0.3.3"
  37. envy = "0.4"
  38. [dependencies.build-info]
  39. version = "=0.0.23"
  40. features = ['runtime', 'serde']
  41. [dependencies.serde]
  42. version = "1.0.125"
  43. features = ['derive']
  44. [dependencies.diesel]
  45. version = "1.4.5"
  46. features = ['sqlite', 'r2d2', 'chrono']
  47. [dependencies.uuid]
  48. version = "0.8.2"
  49. features = ['serde', 'v4']
  50. [dependencies.rusqlite]
  51. version = "0.23.1"
  52. features = ['bundled']
  53. [dependencies.chrono]
  54. version = "0.4.19"
  55. features = ['serde']
  56. [dev-dependencies]
  57. actix-rt = "1.1.1"
  58. [build-dependencies]
  59. build-info-build = "=0.0.23"