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.

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