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.

27 lines
572B

  1. [package]
  2. name = "rendering"
  3. version = "0.1.0"
  4. authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
  5. edition = "2018"
  6. [dependencies]
  7. tera = { version = "1", features = ["preserve_order"] }
  8. syntect = "=3.2.0"
  9. pulldown-cmark = "0.7"
  10. serde = "1"
  11. serde_derive = "1"
  12. pest = "2"
  13. pest_derive = "2"
  14. regex = "1"
  15. lazy_static = "1"
  16. errors = { path = "../errors" }
  17. front_matter = { path = "../front_matter" }
  18. utils = { path = "../utils" }
  19. config = { path = "../config" }
  20. link_checker = { path = "../link_checker" }
  21. [dev-dependencies]
  22. templates = { path = "../templates" }