123456789101112131415161718192021222324252627282930313233343536 |
- [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_json = "*"
- serde_yaml = "*"
- clap = { version = "*", features = ["derive"] }
- zip = "*"
- gtk = { version = "0.7.3", package = "gtk4", features = ["v4_8"] }
- [[bin]]
- name = "thyme-from-png"
- path = "tools/thyme-from-png/main.rs"
- [[bin]]
- name = "svg-from-png"
- path = "tools/svg-from-png/main.rs"
- [[bin]]
- name = "svg-from-thyme"
- path = "tools/svg-from-thyme/main.rs"
- [[bin]]
- name = "thyme-editor"
- path = "tools/editor/main.rs"
|