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.

31 lines
676B

  1. [package]
  2. name = "gutenberg"
  3. version = "0.1.0"
  4. authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
  5. license = "MIT"
  6. readme = "README.md"
  7. description = "Static site generator"
  8. homepage = "https://github.com/Keats/gutenberg"
  9. repository = "https://github.com/Keats/gutenberg"
  10. keywords = ["static", "site", "generator", "blog"]
  11. [dependencies]
  12. error-chain = "0.7"
  13. clap = "2.19"
  14. walkdir = "1"
  15. pulldown-cmark = "0"
  16. regex = "0.1"
  17. lazy_static = "0.2"
  18. tera = { git = "https://github.com/Keats/tera.git" }
  19. clippy = {version = "~0.0.103", optional = true}
  20. [dependencies.toml]
  21. version = "0.2"
  22. default-features = false
  23. features = ["serde"]
  24. [features]
  25. default = []
  26. dev = ["clippy"]