123456789101112131415161718192021 |
- [package]
- name = "thyme"
- version = "0.1.0"
- edition = "2021"
- [lib]
- name = "thyme"
- path = "src/lib.rs"
- [dependencies]
- png = "*"
- cairo-rs = { version = "*", features = ["svg"] }
- pango = "*"
- pangocairo = "*"
- serde = { version = "*", features = ["derive"] }
- serde_yaml = "*"
- clap = { version = "*", features = ["derive"] }
- [[bin]]
- name = "thyme-from-png"
- path = "tools/from-png/main.rs"
|