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.

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