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.

35 lines
760B

  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. glob = "0.2"
  19. serde = "0.8"
  20. serde_json = "0.8"
  21. serde_derive = "0.8"
  22. tera = { git = "https://github.com/Keats/tera.git", branch = "v0.5" }
  23. clippy = {version = "~0.0.103", optional = true}
  24. [dependencies.toml]
  25. version = "0.2"
  26. default-features = false
  27. features = ["serde"]
  28. [features]
  29. default = []
  30. dev = ["clippy"]