Cargo.toml 446 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "thyme"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. name = "thyme"
  7. path = "src/lib.rs"
  8. [dependencies]
  9. png = "*"
  10. cairo-rs = { version = "*", features = ["svg"] }
  11. pango = "*"
  12. pangocairo = "*"
  13. serde = { version = "*", features = ["derive"] }
  14. serde_yaml = "*"
  15. clap = { version = "*", features = ["derive"] }
  16. [[bin]]
  17. name = "thyme-from-png"
  18. path = "tools/from-png/main.rs"
  19. [[bin]]
  20. name = "thyme-editor"
  21. path = "tools/editor/main.rs"