A static site generator written in Rust
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.

Cargo.toml 461B

123456789101112131415161718192021
  1. [package]
  2. name = "casaubon"
  3. version = "0.3.2"
  4. authors = ["Dylan Baker"]
  5. description = "A feature-poor static site generator"
  6. license = "MIT"
  7. readme = "README.md"
  8. repository = "https://git.sr.ht/~simulacrumparty/casaubon"
  9. [dependencies]
  10. chrono = "0.4"
  11. clap = "2.32.0"
  12. fs_extra = "1.1.0"
  13. htmlescape = "0.3.1"
  14. lazy_static = "1.2.0"
  15. notify = "4.0.0"
  16. pulldown-cmark = "0.0.11"
  17. regex = "1"
  18. tempfile = "3"
  19. toml = "0.4.8"
  20. uuid = { version = "0.7", features = ["v4"] }