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.

47 lines
1.0KB

  1. [package]
  2. name = "gutenberg"
  3. version = "0.0.7"
  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. [[bin]]
  12. name = "gutenberg"
  13. [dependencies]
  14. clap = "2"
  15. chrono = "0.4"
  16. toml = "0.4"
  17. term-painter = "0.2"
  18. # Below is for the serve cmd
  19. staticfile = "0.4"
  20. iron = "0.5"
  21. mount = "0.3"
  22. notify = "4"
  23. ws = "0.7"
  24. site = { path = "components/site" }
  25. errors = { path = "components/errors" }
  26. content = { path = "components/content" }
  27. front_matter = { path = "components/front_matter" }
  28. utils = { path = "components/utils" }
  29. [workspace]
  30. members = [
  31. "components/config",
  32. "components/content",
  33. "components/errors",
  34. "components/front_matter",
  35. "components/pagination",
  36. "components/rendering",
  37. "components/site",
  38. "components/taxonomies",
  39. "components/templates",
  40. "components/utils",
  41. ]