Cargo.toml 617 B

1234567891011121314151617181920212223242526272829303132333435
  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. [[bin]]
  19. name = "thyme-from-png"
  20. path = "tools/thyme-from-png/main.rs"
  21. [[bin]]
  22. name = "svg-from-png"
  23. path = "tools/svg-from-png/main.rs"
  24. [[bin]]
  25. name = "svg-from-thyme"
  26. path = "tools/svg-from-thyme/main.rs"
  27. [[bin]]
  28. name = "thyme-editor"
  29. path = "tools/editor/main.rs"