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.

68 lines
1.6KB

  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. tantivy = { version = "0.12", optional = true }
  35. site = { path = "components/site" }
  36. errors = { path = "components/errors" }
  37. front_matter = { path = "components/front_matter" }
  38. utils = { path = "components/utils" }
  39. rebuild = { path = "components/rebuild" }
  40. search = { path = "components/search" }
  41. [workspace]
  42. members = [
  43. "components/config",
  44. "components/errors",
  45. "components/front_matter",
  46. "components/rebuild",
  47. "components/rendering",
  48. "components/site",
  49. "components/templates",
  50. "components/utils",
  51. "components/search",
  52. "components/imageproc",
  53. "components/link_checker",
  54. "components/library",
  55. ]
  56. [features]
  57. tantivy-indexing = ["tantivy", "search/tantivy-indexing"]
  58. [profile.release]
  59. lto = true
  60. codegen-units = 1