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.

42 lines
938 B

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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. actix-web = "2"
  9. actix-rt = "1"
  10. actix-service = "1.0.5"
  11. actix-files = "0.2.1"
  12. bytes = "0.5.4"
  13. futures = "0.3.4"
  14. log = "0.4.8"
  15. env_logger = "0.7"
  16. serde = { version = "1.0.106", features = ["derive"] }
  17. serde_json = "1.0.52"
  18. json = "0.12.4"
  19. yarte = { version = "0.8.3", features = ["html-min"] }
  20. listenfd = "0.3.3"
  21. diesel = { version = "1.4.4", features = ["sqlite", "r2d2"] }
  22. dotenv = "0.15"
  23. r2d2 = "0.8.8"
  24. uuid = { version = "0.8", features = ["serde", "v4"] }
  25. validator = "0.10.0"
  26. jsonwebtoken = "7"
  27. actix-identity = "0.2.1"
  28. actix-web-httpauth = "0.4.1"
  29. actix-http = "1.0.1"
  30. rand = "0.7.3"
  31. nanoid = "0.3.0"
  32. [build-dependencies.yarte_helpers]
  33. version = "0.8"
  34. default-features = false
  35. features = ["config"]