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.

44 lines
886B

  1. [package]
  2. name = "gutenberg"
  3. version = "0.0.5"
  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 = "1.0"
  22. serde_derive = "1.0"
  23. tera = { path = "../tera" }
  24. # tera = { git = "https://github.com/Keats/tera" }
  25. # tera = "0.10"
  26. slug = "0.1"
  27. syntect = { version = "1", features = ["static-onig"] }
  28. chrono = "0.3"
  29. toml = "0.4"
  30. term-painter = "0.2"
  31. base64 = "0.5"
  32. # Below is for the serve cmd
  33. staticfile = "0.4"
  34. iron = "0.5"
  35. mount = "0.3"
  36. notify = "4"
  37. ws = "0.7"
  38. [dev-dependencies]
  39. tempdir = "0.3"