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.

70 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
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 = '2'
  8. actix-rt = '1'
  9. actix-service = '1.0.5'
  10. actix-files = '0.2.1'
  11. bytes = '0.5.4'
  12. futures = '0.3.4'
  13. log = '0.4.8'
  14. env_logger = '0.7'
  15. serde_json = '1.0.52'
  16. json = '0.12.4'
  17. listenfd = '0.3.3'
  18. dotenv = '0.15'
  19. r2d2 = '0.8.8'
  20. validator = '0.10.0'
  21. validator_derive = '0.10'
  22. jsonwebtoken = '7'
  23. actix-identity = '0.2.1'
  24. actix-web-httpauth = '0.4.1'
  25. actix-http = '1.0.1'
  26. rand = '0.7.3'
  27. nanoid = '0.3.0'
  28. bcrypt = '0.7'
  29. timeago = '0.2.1'
  30. comp = '0.2.1'
  31. regex = '1.3.7'
  32. lazy_static = '1.4.0'
  33. lazy-regex = '0.1.2'
  34. custom_error = '1.7.1'
  35. [dependencies.serde]
  36. version = '1.0.106'
  37. features = ['derive']
  38. [dependencies.yarte]
  39. version = '0.9.0'
  40. features = ['html-min']
  41. [dependencies.diesel]
  42. version = '1.4.4'
  43. features = [
  44. 'sqlite',
  45. 'r2d2',
  46. 'chrono',
  47. ]
  48. [dependencies.uuid]
  49. version = '0.8'
  50. features = [
  51. 'serde',
  52. 'v4',
  53. ]
  54. [dependencies.rusqlite]
  55. version = '0.21.0'
  56. features = ['bundled']
  57. [dependencies.chrono]
  58. version = '0.4.11'
  59. features = ['serde']
  60. [build-dependencies.yarte_helpers]
  61. version = '0.9.0'
  62. default-features = false
  63. features = ['config']