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.

58 lines
1.3KB

  1. [package]
  2. name = "zola"
  3. version = "0.7.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://www.getzola.org"
  9. repository = "https://github.com/getzola/zola"
  10. keywords = ["static", "site", "generator", "blog"]
  11. # build = "build.rs"
  12. [build-dependencies]
  13. clap = "2"
  14. [[bin]]
  15. name = "zola"
  16. [dependencies]
  17. atty = "0.2.11"
  18. clap = "2"
  19. chrono = "0.4"
  20. lazy_static = "1.1.0"
  21. toml = "0.4"
  22. termcolor = "1.0.4"
  23. # Used in init to ensure the url given as base_url is a valid one
  24. url = "1.5"
  25. # Below is for the serve cmd
  26. actix-web = { version = "0.7", default-features = false, features = [] }
  27. notify = "4"
  28. ws = "0.7"
  29. ctrlc = "3"
  30. site = { path = "components/site" }
  31. errors = { path = "components/errors" }
  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/errors",
  39. "components/front_matter",
  40. "components/rebuild",
  41. "components/rendering",
  42. "components/site",
  43. "components/templates",
  44. "components/utils",
  45. "components/search",
  46. "components/imageproc",
  47. "components/link_checker",
  48. "components/library",
  49. ]
  50. #[profile.release]
  51. #debug = true