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 456B

12345678910111213141516171819
  1. [package]
  2. name = "casaubon"
  3. version = "0.1.0"
  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. keywords = ["static site generator", "markdown", "html"]
  10. [dependencies]
  11. clap = "2.32.0"
  12. comrak = "0.3"
  13. fs_extra = "1.1.0"
  14. lazy_static = "1.2.0"
  15. notify = "4.0.0"
  16. regex = "1"
  17. toml = "0.4.8"
  18. uuid = { version = "0.7", features = ["v4"] }