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.

43 lines
908B

  1. [package]
  2. name = "gutenberg"
  3. version = "0.0.2"
  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. [[bin]]
  12. name = "gutenberg"
  13. [dependencies]
  14. error-chain = "0.10"
  15. clap = "2"
  16. walkdir = "1"
  17. pulldown-cmark = "0"
  18. regex = "0.2"
  19. lazy_static = "0.2"
  20. glob = "0.2"
  21. serde = "0.9"
  22. serde_derive = "0.9"
  23. # tera = { path = "../tera" }
  24. # tera = { git = "https://github.com/Keats/tera", branch = "reload" }
  25. tera = "0.8"
  26. slug = "0.1"
  27. syntect = "1"
  28. chrono = "0.3"
  29. toml = { version = "0.3", default-features = false, features = ["serde"]}
  30. term-painter = "0.2"
  31. # Below is for the serve cmd
  32. staticfile = "0.4"
  33. iron = "0.5"
  34. mount = "0.3"
  35. notify = "4"
  36. ws = "0.6"
  37. [dev-dependencies]
  38. tempdir = "0.3"