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.

61 lines
1.4KB

  1. [package]
  2. name = "zola"
  3. version = "0.9.0"
  4. authors = ["Vincent Prouillet <hello@vincentprouillet.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. termcolor = "1.0.4"
  22. # Used in init to ensure the url given as base_url is a valid one
  23. url = "2"
  24. # Below is for the serve cmd
  25. actix-files = "0.1"
  26. actix-web = { version = "1.0", default-features = false, features = [] }
  27. notify = "4"
  28. ws = "0.9"
  29. ctrlc = "3"
  30. open = "1.2"
  31. globset = "0.4"
  32. site = { path = "components/site" }
  33. errors = { path = "components/errors" }
  34. front_matter = { path = "components/front_matter" }
  35. utils = { path = "components/utils" }
  36. rebuild = { path = "components/rebuild" }
  37. [workspace]
  38. members = [
  39. "components/config",
  40. "components/errors",
  41. "components/front_matter",
  42. "components/rebuild",
  43. "components/rendering",
  44. "components/site",
  45. "components/templates",
  46. "components/utils",
  47. "components/search",
  48. "components/imageproc",
  49. "components/link_checker",
  50. "components/library",
  51. ]
  52. [profile.release]
  53. lto = true
  54. codegen-units = 1