| 1 | [workspace] |
| 2 | resolver = "2" |
| 3 | members = ["garclip", "garclipctl", "garclip-picker"] |
| 4 | |
| 5 | [workspace.package] |
| 6 | version = "0.2.0" |
| 7 | edition = "2021" |
| 8 | authors = ["mfwolffe"] |
| 9 | license = "MIT" |
| 10 | repository = "https://github.com/mfwolffe/gardesk" |
| 11 | |
| 12 | [workspace.dependencies] |
| 13 | # X11 |
| 14 | x11rb = { version = "0.13", features = ["allow-unsafe-code", "xfixes"] } |
| 15 | |
| 16 | # Async runtime |
| 17 | tokio = { version = "1", features = ["full", "signal"] } |
| 18 | |
| 19 | # Serialization |
| 20 | serde = { version = "1.0", features = ["derive"] } |
| 21 | serde_json = "1.0" |
| 22 | toml = "0.8" |
| 23 | |
| 24 | # Error handling |
| 25 | thiserror = "2.0" |
| 26 | anyhow = "1.0" |
| 27 | |
| 28 | # CLI |
| 29 | clap = { version = "4.5", features = ["derive"] } |
| 30 | |
| 31 | # Utilities |
| 32 | dirs = "6.0" |
| 33 | tracing = "0.1" |
| 34 | tracing-subscriber = { version = "0.3", features = ["env-filter"] } |
| 35 | regex = "1.10" |
| 36 | base64 = "0.22" |
| 37 | blake3 = "1.5" |
| 38 | chrono = { version = "0.4", features = ["serde"] } |
| 39 | |
| 40 | # Image handling |
| 41 | image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "webp"] } |