Cargo.toml 385 B

123456789101112131415161718192021
  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"