| 1 | [package] |
| 2 | name = "garfield" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | authors.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "garfield" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | # UI toolkit |
| 14 | gartk-core.workspace = true |
| 15 | gartk-x11.workspace = true |
| 16 | gartk-render.workspace = true |
| 17 | |
| 18 | # X11 |
| 19 | x11rb.workspace = true |
| 20 | |
| 21 | # Logging |
| 22 | tracing.workspace = true |
| 23 | tracing-subscriber.workspace = true |
| 24 | |
| 25 | # Error handling |
| 26 | thiserror.workspace = true |
| 27 | anyhow.workspace = true |
| 28 | |
| 29 | # Serialization |
| 30 | serde.workspace = true |
| 31 | serde_json.workspace = true |
| 32 | |
| 33 | # File system |
| 34 | dirs.workspace = true |
| 35 | chrono.workspace = true |
| 36 | libc.workspace = true |
| 37 | walkdir.workspace = true |
| 38 | |
| 39 | # Desktop entries |
| 40 | freedesktop_entry_parser.workspace = true |
| 41 | |
| 42 | # Fuzzy matching |
| 43 | nucleo-matcher.workspace = true |
| 44 | |
| 45 | # CLI |
| 46 | clap.workspace = true |
| 47 | |
| 48 | # IPC |
| 49 | garfield-ipc.workspace = true |
| 50 | |
| 51 | # Image handling |
| 52 | image.workspace = true |
| 53 | |
| 54 | # PDF rendering |
| 55 | poppler-rs.workspace = true |
| 56 | cairo-rs.workspace = true |
| 57 | |
| 58 | # XML parsing |
| 59 | quick-xml.workspace = true |