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.

73 lines
1.5 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. serde_json = "1.0.64"
  14. # json = "0.12.4"
  15. # listenfd = "0.3.3"
  16. dotenv = "0.15.0"
  17. r2d2 = "0.8.9"
  18. validator = "0.13.0"
  19. validator_derive = "0.13.0"
  20. # jsonwebtoken = "7.2.0"
  21. actix-identity = "0.3.1"
  22. actix-web-httpauth = "0.5.1"
  23. rand = "0.8.3"
  24. nanoid = "0.4.0"
  25. bcrypt = "0.9.0"
  26. timeago = "0.3.0"
  27. # comp = "0.2.1"
  28. regex = "1.4.5"
  29. lazy_static = "1.4.0"
  30. lazy-regex = "0.1.4"
  31. custom_error = "1.9.2"
  32. derive-new = "0.5.9"
  33. diesel_migrations = "1.4.0"
  34. actix-threadpool = "0.3.3"
  35. envy = "0.4"
  36. tracing = { version = "0.1" }
  37. tracing-log = "0.1.2"
  38. tracing-subscriber = { version = "0.2.18", features = ["fmt", "registry", "env-filter"] }
  39. tracing-futures = "0.2.5"
  40. tracing-actix-web = "0.2.1"
  41. tracing-bunyan-formatter = "0.2.4"
  42. diesel-tracing = { version = "0.1.4", features = ["sqlite"] }
  43. [dependencies.build-info]
  44. version = "=0.0.23"
  45. features = ['runtime', 'serde']
  46. [dependencies.serde]
  47. version = "1.0.125"
  48. features = ['derive']
  49. [dependencies.diesel]
  50. version = "1.4.5"
  51. features = ['sqlite', 'r2d2', 'chrono']
  52. [dependencies.uuid]
  53. version = "0.8.2"
  54. features = ['serde', 'v4']
  55. [dependencies.rusqlite]
  56. version = "0.23.1"
  57. features = ['bundled']
  58. [dependencies.chrono]
  59. version = "0.4.19"
  60. features = ['serde']
  61. [dev-dependencies]
  62. actix-rt = "1.1.1"
  63. [build-dependencies]
  64. build-info-build = "=0.0.23"