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.

51 lines
1.1KB

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