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

Cargo.toml 399B

123456789101112131415161718
  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. clap = "2.32.0"
  11. comrak = "0.3"
  12. fs_extra = "1.1.0"
  13. lazy_static = "1.2.0"
  14. notify = "4.0.0"
  15. regex = "1"
  16. toml = "0.4.8"
  17. uuid = { version = "0.7", features = ["v4"] }