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.

42 lines
826B

  1. [package]
  2. name = "gutenberg"
  3. version = "0.1.0"
  4. authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
  5. license = "MIT"
  6. readme = "README.md"
  7. description = "Static site generator"
  8. homepage = "https://github.com/Keats/gutenberg"
  9. repository = "https://github.com/Keats/gutenberg"
  10. keywords = ["static", "site", "generator", "blog"]
  11. [dependencies]
  12. error-chain = "0.10"
  13. clap = "2.19"
  14. walkdir = "1"
  15. pulldown-cmark = "0"
  16. regex = "0.2"
  17. lazy_static = "0.2"
  18. glob = "0.2"
  19. serde = "0.9"
  20. serde_json = "0.9"
  21. serde_derive = "0.9"
  22. tera = { git = "https://github.com/Keats/tera", branch = "master" }
  23. # tera = "0.8"
  24. slug = "0.1"
  25. syntect = "1"
  26. chrono = "0.3"
  27. # Below is for the serve cmd
  28. staticfile = "0.4"
  29. iron = "0.5"
  30. mount = "0.3"
  31. notify = "4"
  32. ws = "0.6"
  33. [dependencies.toml]
  34. version = "0.3"
  35. default-features = false
  36. features = ["serde"]