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.

57 lines
1.3KB

  1. [package]
  2. name = "gutenberg"
  3. version = "0.4.0"
  4. authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
  5. license = "MIT"
  6. readme = "README.md"
  7. description = "A fast static site generator with everything built-in"
  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. # Used in init to ensure the url given as base_url is a valid one
  22. url = "1.5"
  23. # Below is for the serve cmd
  24. actix = "~0.5"
  25. actix-web = "0.6"
  26. notify = "4"
  27. ws = "0.7"
  28. ctrlc = "3"
  29. site = { path = "components/site" }
  30. errors = { path = "components/errors" }
  31. content = { path = "components/content" }
  32. front_matter = { path = "components/front_matter" }
  33. utils = { path = "components/utils" }
  34. rebuild = { path = "components/rebuild" }
  35. [workspace]
  36. members = [
  37. "components/config",
  38. "components/content",
  39. "components/errors",
  40. "components/front_matter",
  41. "components/highlighting",
  42. "components/pagination",
  43. "components/rebuild",
  44. "components/rendering",
  45. "components/site",
  46. "components/taxonomies",
  47. "components/templates",
  48. "components/utils",
  49. "components/search",
  50. "components/imageproc",
  51. ]