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.

Cargo.toml 554B

12345678910111213141516171819202122232425
  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. clippy = {version = "~0.0.103", optional = true}
  15. [dependencies.toml]
  16. version = "0.2"
  17. default-features = false
  18. features = ["serde"]
  19. [features]
  20. default = []
  21. dev = ["clippy"]