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.

62 lines
1.4KB

  1. [package]
  2. name = "zola"
  3. version = "0.10.0"
  4. authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
  5. edition = "2018"
  6. license = "MIT"
  7. readme = "README.md"
  8. description = "A fast static site generator with everything built-in"
  9. homepage = "https://www.getzola.org"
  10. repository = "https://github.com/getzola/zola"
  11. keywords = ["static", "site", "generator", "blog"]
  12. # build = "build.rs"
  13. [build-dependencies]
  14. clap = "2"
  15. [[bin]]
  16. name = "zola"
  17. [dependencies]
  18. atty = "0.2.11"
  19. clap = "2"
  20. chrono = "0.4"
  21. lazy_static = "1.1.0"
  22. termcolor = "1.0.4"
  23. # Used in init to ensure the url given as base_url is a valid one
  24. url = "2"
  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.9"
  30. ctrlc = "3"
  31. open = "1.2"
  32. globset = "0.4"
  33. site = { path = "components/site" }
  34. errors = { path = "components/errors" }
  35. front_matter = { path = "components/front_matter" }
  36. utils = { path = "components/utils" }
  37. rebuild = { path = "components/rebuild" }
  38. [workspace]
  39. members = [
  40. "components/config",
  41. "components/errors",
  42. "components/front_matter",
  43. "components/rebuild",
  44. "components/rendering",
  45. "components/site",
  46. "components/templates",
  47. "components/utils",
  48. "components/search",
  49. "components/imageproc",
  50. "components/link_checker",
  51. "components/library",
  52. ]
  53. [profile.release]
  54. lto = true
  55. codegen-units = 1