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.

26 lines
555B

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