Cargo.toml 390 B

12345678910111213141516
  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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. actix-web = "4"
  9. actix-files = "0.6.1"
  10. chrono = "0.4"
  11. fern = "0.6"
  12. git2 = "0.14.4"
  13. log = "0.4"
  14. pulldown-cmark = "0.9"
  15. walkdir = "2.3.2"