diff options
| author | Amir M. Saeid <amir@glgdgt.com> | 2025-06-29 21:53:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-29 21:53:17 +0100 |
| commit | 5da6e6d7e3c3c206ffd38825b848e6d5fd8ffd81 (patch) | |
| tree | 8fab02477ee4797b3bb772c7f9719cbe22691a95 /Cargo.toml | |
| parent | 86ae6e4ff18477f0d598367fba09f940b7b62cd8 (diff) | |
| parent | 7a9375a3b2cccbbc0fd9373c1cd1101082b68499 (diff) | |
Add macOS support
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -1,21 +1,24 @@ [package] name = "sctd" -version = "0.3.0" +version = "0.4.0" authors = ["Amir Saeid <amir@glgdgt.com>"] edition = "2018" license = "CC0-1.0" [dependencies] chrono = "0.4" -spa = "0.3" -clap = "3.2" +spa = "0.5" +clap = "4.5" log = "0.4" [dependencies.env_logger] -version = "0.9" -default_features = false +version = "0.11" +default-features = false features = ["humantime"] -[dependencies.x11] -version = "2.20" +[target.'cfg(target_os = "linux")'.dependencies.x11] +version = "2.21" features = ["xlib", "xrandr"] + +[target.'cfg(target_os = "macos")'.dependencies] +core-graphics = "0.25" |
