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.

63 lines
1.5KB

  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. hyper = { version = "0.13", default-features = false, features = ["runtime"] }
  27. hyper-staticfile = "0.5"
  28. tokio = { version = "0.2", default-features = false, features = [] }
  29. notify = "4"
  30. ws = "0.9"
  31. ctrlc = "3"
  32. open = "1.2"
  33. globset = "0.4"
  34. site = { path = "components/site" }
  35. errors = { path = "components/errors" }
  36. front_matter = { path = "components/front_matter" }
  37. utils = { path = "components/utils" }
  38. rebuild = { path = "components/rebuild" }
  39. [workspace]
  40. members = [
  41. "components/config",
  42. "components/errors",
  43. "components/front_matter",
  44. "components/rebuild",
  45. "components/rendering",
  46. "components/site",
  47. "components/templates",
  48. "components/utils",
  49. "components/search",
  50. "components/imageproc",
  51. "components/link_checker",
  52. "components/library",
  53. ]
  54. [profile.release]
  55. lto = true
  56. codegen-units = 1