Cargo.toml 533 B

123456789101112131415161718192021
  1. [package]
  2. name = "vcs-blog"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Blog engine running on version control system to store articles"
  6. license = "Apache-2.0"
  7. license-file = "LICENSE"
  8. [dependencies]
  9. actix-web = "4"
  10. actix-files = "0.6.1"
  11. chrono = "0.4"
  12. fern = "0.6"
  13. fluent-templates = { version = "0.7", features = ["handlebars"] }
  14. git2 = "0.14.4"
  15. handlebars = { version = "4.3", features = ["dir_source"] }
  16. log = "0.4"
  17. pulldown-cmark = "0.9"
  18. serde = { version = "1", features = ["derive"] }
  19. serde_json = "1"
  20. walkdir = "2.3.2"