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.

59 lines
1.3KB

  1. [package]
  2. name = "zola"
  3. version = "0.8.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-files = "0.1"
  27. actix-web = { version = "1.0", default-features = false, features = [] }
  28. notify = "4"
  29. ws = "0.8"
  30. ctrlc = "3"
  31. site = { path = "components/site" }
  32. errors = { path = "components/errors" }
  33. front_matter = { path = "components/front_matter" }
  34. utils = { path = "components/utils" }
  35. rebuild = { path = "components/rebuild" }
  36. [workspace]
  37. members = [
  38. "components/config",
  39. "components/errors",
  40. "components/front_matter",
  41. "components/rebuild",
  42. "components/rendering",
  43. "components/site",
  44. "components/templates",
  45. "components/utils",
  46. "components/search",
  47. "components/imageproc",
  48. "components/link_checker",
  49. "components/library",
  50. ]
  51. [profile.release]
  52. lto = true
  53. codegen-units = 1