Cargo.toml 684 B

123456789101112131415161718192021222324252627282930313233343536
  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_json = "*"
  15. serde_yaml = "*"
  16. clap = { version = "*", features = ["derive"] }
  17. zip = "*"
  18. gtk = { version = "0.7.3", package = "gtk4", features = ["v4_8"] }
  19. [[bin]]
  20. name = "thyme-from-png"
  21. path = "tools/thyme-from-png/main.rs"
  22. [[bin]]
  23. name = "svg-from-png"
  24. path = "tools/svg-from-png/main.rs"
  25. [[bin]]
  26. name = "svg-from-thyme"
  27. path = "tools/svg-from-thyme/main.rs"
  28. [[bin]]
  29. name = "thyme-editor"
  30. path = "tools/editor/main.rs"