A static site generator written in Rust
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Cargo.toml 414B

12345678910111213141516171819
  1. [package]
  2. name = "casaubon"
  3. version = "0.1.1"
  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. 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"] }