├── .devcontainer ├── devcontainer.json └── devcontainer.json.license ├── .editorconfig ├── .editorconfig.license ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-config.yaml.license ├── .reuse └── dep5 ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.lock.license ├── Cargo.toml ├── LICENSE ├── LICENSES └── Apache-2.0.txt ├── README.md ├── docs └── NOTES.md ├── flake.lock ├── flake.lock.license ├── flake.nix ├── rust-toolchain ├── rust-toolchain.license └── src ├── backends ├── Cargo.toml └── src │ ├── common │ └── mod.rs │ ├── lib.rs │ └── platforms │ ├── macos │ └── mod.rs │ ├── unix │ └── mod.rs │ └── windows │ └── mod.rs ├── bin ├── rawrctl │ ├── Cargo.toml │ └── src │ │ └── main.rs └── rawrd │ ├── Cargo.toml │ └── src │ └── main.rs └── core ├── Cargo.toml └── src └── lib.rs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RawrWM VS Code Development Environment", 3 | "image": "mcr.microsoft.com/devcontainers/rust:bullseye", 4 | "customizations": { 5 | "vscode": { 6 | "extensions": [ 7 | "Zerotaskx.rust-extension-pack" 8 | ] 9 | } 10 | }, 11 | "postCreateCommand": "rustc --version" 12 | } 13 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | insert_final_newline = true 8 | indent_style = space 9 | indent_size = 4 10 | -------------------------------------------------------------------------------- /.editorconfig.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | version: 2 6 | updates: 7 | - package-ecosystem: "github-actions" 8 | directory: "/" 9 | schedule: 10 | interval: "weekly" 11 | - package-ecosystem: "cargo" 12 | directory: "/" 13 | schedule: 14 | interval: "weekly" 15 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | name: RawrWM builder workflow 6 | 7 | on: [push, pull_request] 8 | 9 | env: 10 | CARGO_TERM_COLOR: always 11 | 12 | jobs: 13 | build: 14 | name: Build job 15 | runs-on: ubuntu-latest 16 | steps: 17 | - name: Checkout code 18 | uses: actions/checkout@v4 19 | 20 | - name: Install APT dependencies 21 | run: sudo apt-get update && sudo apt-get install -y libinput-dev libudev-dev libwayland-dev libx11-dev libsdl-pango-dev libdbus-1-dev pkg-config libsystemd-dev 22 | 23 | - name: Setup Rust (stable) toolchain 24 | uses: actions-rs/toolchain@v1 25 | with: 26 | toolchain: stable 27 | 28 | - name: Build RawrWM (debug) 29 | uses: actions-rs/cargo@v1 30 | with: 31 | command: build 32 | args: --locked --all 33 | 34 | - name: Upload Debug build binaries 35 | uses: actions/upload-artifact@v4 36 | with: 37 | name: RawrWM-debug-${{ github.ref_name }} 38 | path: | 39 | target/debug/rawrd 40 | target/debug/rawrctl 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | # Created by https://www.toptal.com/developers/gitignore/api/rust 6 | # Edit at https://www.toptal.com/developers/gitignore?templates=rust 7 | 8 | ### Rust ### 9 | # Generated by Cargo 10 | # will have compiled files and executables 11 | **/target/ 12 | 13 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries 14 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html 15 | # Cargo.lock 16 | 17 | # End of https://www.toptal.com/developers/gitignore/api/rust 18 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # See https://pre-commit.com for more information 2 | # See https://pre-commit.com/hooks.html for more hooks 3 | repos: 4 | - repo: https://github.com/pre-commit/pre-commit-hooks 5 | rev: v4.4.0 6 | hooks: 7 | - id: trailing-whitespace 8 | - id: end-of-file-fixer 9 | - id: check-yaml 10 | - id: check-added-large-files 11 | - repo: https://github.com/doublify/pre-commit-rust 12 | rev: v1.0 13 | hooks: 14 | - id: fmt 15 | - id: cargo-check 16 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: The RawrWM Developers 2 | SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: RawrWM 3 | Upstream-Contact: Dom Rodriguez (shymega) 4 | Source: https://github.com/shymega/RawrWM 5 | 6 | # Sample paragraph, commented out: 7 | # 8 | # Files: src/* 9 | # Copyright: $YEAR $NAME <$CONTACT> 10 | # License: ... 11 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | reorder_imports = true 6 | use_try_shorthand = true 7 | max_width = 80 8 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "ab_glyph_rasterizer" 7 | version = "0.1.8" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" 10 | 11 | [[package]] 12 | name = "addr2line" 13 | version = "0.20.0" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 16 | dependencies = [ 17 | "gimli", 18 | ] 19 | 20 | [[package]] 21 | name = "adler" 22 | version = "1.0.2" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 25 | 26 | [[package]] 27 | name = "advance" 28 | version = "0.1.0" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "17a4eb65a5640c5b3767dc6adb1d3dc23444ebae7073aca839a6d74fdf362340" 31 | 32 | [[package]] 33 | name = "ahash" 34 | version = "0.7.6" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 37 | dependencies = [ 38 | "const-random", 39 | "getrandom 0.2.10", 40 | "once_cell", 41 | "version_check", 42 | ] 43 | 44 | [[package]] 45 | name = "aho-corasick" 46 | version = "1.0.2" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 49 | dependencies = [ 50 | "memchr", 51 | ] 52 | 53 | [[package]] 54 | name = "andrew" 55 | version = "0.3.1" 56 | source = "registry+https://github.com/rust-lang/crates.io-index" 57 | checksum = "8c4afb09dd642feec8408e33f92f3ffc4052946f6b20f32fb99c1f58cd4fa7cf" 58 | dependencies = [ 59 | "bitflags 1.3.2", 60 | "rusttype", 61 | "walkdir", 62 | "xdg", 63 | "xml-rs", 64 | ] 65 | 66 | [[package]] 67 | name = "anstream" 68 | version = "0.3.2" 69 | source = "registry+https://github.com/rust-lang/crates.io-index" 70 | checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 71 | dependencies = [ 72 | "anstyle", 73 | "anstyle-parse", 74 | "anstyle-query", 75 | "anstyle-wincon", 76 | "colorchoice", 77 | "is-terminal", 78 | "utf8parse", 79 | ] 80 | 81 | [[package]] 82 | name = "anstyle" 83 | version = "1.0.1" 84 | source = "registry+https://github.com/rust-lang/crates.io-index" 85 | checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" 86 | 87 | [[package]] 88 | name = "anstyle-parse" 89 | version = "0.2.1" 90 | source = "registry+https://github.com/rust-lang/crates.io-index" 91 | checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 92 | dependencies = [ 93 | "utf8parse", 94 | ] 95 | 96 | [[package]] 97 | name = "anstyle-query" 98 | version = "1.0.0" 99 | source = "registry+https://github.com/rust-lang/crates.io-index" 100 | checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 101 | dependencies = [ 102 | "windows-sys 0.48.0", 103 | ] 104 | 105 | [[package]] 106 | name = "anstyle-wincon" 107 | version = "1.0.1" 108 | source = "registry+https://github.com/rust-lang/crates.io-index" 109 | checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 110 | dependencies = [ 111 | "anstyle", 112 | "windows-sys 0.48.0", 113 | ] 114 | 115 | [[package]] 116 | name = "anyhow" 117 | version = "1.0.72" 118 | source = "registry+https://github.com/rust-lang/crates.io-index" 119 | checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" 120 | 121 | [[package]] 122 | name = "appendlist" 123 | version = "1.4.0" 124 | source = "registry+https://github.com/rust-lang/crates.io-index" 125 | checksum = "e149dc73cd30538307e7ffa2acd3d2221148eaeed4871f246657b1c3eaa1cbd2" 126 | 127 | [[package]] 128 | name = "approx" 129 | version = "0.4.0" 130 | source = "registry+https://github.com/rust-lang/crates.io-index" 131 | checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278" 132 | dependencies = [ 133 | "num-traits", 134 | ] 135 | 136 | [[package]] 137 | name = "arc-swap" 138 | version = "1.6.0" 139 | source = "registry+https://github.com/rust-lang/crates.io-index" 140 | checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 141 | 142 | [[package]] 143 | name = "autocfg" 144 | version = "1.1.0" 145 | source = "registry+https://github.com/rust-lang/crates.io-index" 146 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 147 | 148 | [[package]] 149 | name = "backtrace" 150 | version = "0.3.68" 151 | source = "registry+https://github.com/rust-lang/crates.io-index" 152 | checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 153 | dependencies = [ 154 | "addr2line", 155 | "cc", 156 | "cfg-if 1.0.0", 157 | "libc", 158 | "miniz_oxide", 159 | "object", 160 | "rustc-demangle", 161 | ] 162 | 163 | [[package]] 164 | name = "base64" 165 | version = "0.13.1" 166 | source = "registry+https://github.com/rust-lang/crates.io-index" 167 | checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 168 | 169 | [[package]] 170 | name = "bitflags" 171 | version = "1.3.2" 172 | source = "registry+https://github.com/rust-lang/crates.io-index" 173 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 174 | 175 | [[package]] 176 | name = "bitflags" 177 | version = "2.3.3" 178 | source = "registry+https://github.com/rust-lang/crates.io-index" 179 | checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 180 | 181 | [[package]] 182 | name = "block" 183 | version = "0.1.6" 184 | source = "registry+https://github.com/rust-lang/crates.io-index" 185 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 186 | 187 | [[package]] 188 | name = "breadx" 189 | version = "3.1.0" 190 | source = "registry+https://github.com/rust-lang/crates.io-index" 191 | checksum = "51265dcd9119613c859db85d9dc4148f05995f4b42cc6efbe1984d0c63ccb0d5" 192 | dependencies = [ 193 | "advance", 194 | "ahash", 195 | "bytemuck", 196 | "cfg-if 1.0.0", 197 | "fionread", 198 | "gethostname", 199 | "hashbrown 0.11.2", 200 | "nix 0.24.3", 201 | "socket2", 202 | "tracing", 203 | "x11rb-protocol", 204 | ] 205 | 206 | [[package]] 207 | name = "bstr" 208 | version = "1.6.0" 209 | source = "registry+https://github.com/rust-lang/crates.io-index" 210 | checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 211 | dependencies = [ 212 | "memchr", 213 | "serde", 214 | ] 215 | 216 | [[package]] 217 | name = "bytemuck" 218 | version = "1.13.1" 219 | source = "registry+https://github.com/rust-lang/crates.io-index" 220 | checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 221 | 222 | [[package]] 223 | name = "bytes" 224 | version = "1.4.0" 225 | source = "registry+https://github.com/rust-lang/crates.io-index" 226 | checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 227 | 228 | [[package]] 229 | name = "calloop" 230 | version = "0.6.5" 231 | source = "registry+https://github.com/rust-lang/crates.io-index" 232 | checksum = "0b036167e76041694579972c28cf4877b4f92da222560ddb49008937b6a6727c" 233 | dependencies = [ 234 | "log", 235 | "nix 0.18.0", 236 | ] 237 | 238 | [[package]] 239 | name = "calloop" 240 | version = "0.9.3" 241 | source = "registry+https://github.com/rust-lang/crates.io-index" 242 | checksum = "bf2eec61efe56aa1e813f5126959296933cf0700030e4314786c48779a66ab82" 243 | dependencies = [ 244 | "log", 245 | "nix 0.22.3", 246 | ] 247 | 248 | [[package]] 249 | name = "cc" 250 | version = "1.0.79" 251 | source = "registry+https://github.com/rust-lang/crates.io-index" 252 | checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 253 | 254 | [[package]] 255 | name = "cfg-if" 256 | version = "0.1.10" 257 | source = "registry+https://github.com/rust-lang/crates.io-index" 258 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 259 | 260 | [[package]] 261 | name = "cfg-if" 262 | version = "1.0.0" 263 | source = "registry+https://github.com/rust-lang/crates.io-index" 264 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 265 | 266 | [[package]] 267 | name = "cgmath" 268 | version = "0.18.0" 269 | source = "registry+https://github.com/rust-lang/crates.io-index" 270 | checksum = "1a98d30140e3296250832bbaaff83b27dcd6fa3cc70fb6f1f3e5c9c0023b5317" 271 | dependencies = [ 272 | "approx", 273 | "num-traits", 274 | ] 275 | 276 | [[package]] 277 | name = "clap" 278 | version = "4.3.19" 279 | source = "registry+https://github.com/rust-lang/crates.io-index" 280 | checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" 281 | dependencies = [ 282 | "clap_builder", 283 | ] 284 | 285 | [[package]] 286 | name = "clap_builder" 287 | version = "4.3.19" 288 | source = "registry+https://github.com/rust-lang/crates.io-index" 289 | checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" 290 | dependencies = [ 291 | "anstream", 292 | "anstyle", 293 | "clap_lex", 294 | "strsim 0.10.0", 295 | "terminal_size", 296 | ] 297 | 298 | [[package]] 299 | name = "clap_lex" 300 | version = "0.5.0" 301 | source = "registry+https://github.com/rust-lang/crates.io-index" 302 | checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 303 | 304 | [[package]] 305 | name = "cocoa" 306 | version = "0.24.1" 307 | source = "registry+https://github.com/rust-lang/crates.io-index" 308 | checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 309 | dependencies = [ 310 | "bitflags 1.3.2", 311 | "block", 312 | "cocoa-foundation", 313 | "core-foundation 0.9.3", 314 | "core-graphics 0.22.3", 315 | "foreign-types 0.3.2", 316 | "libc", 317 | "objc", 318 | ] 319 | 320 | [[package]] 321 | name = "cocoa-foundation" 322 | version = "0.1.1" 323 | source = "registry+https://github.com/rust-lang/crates.io-index" 324 | checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 325 | dependencies = [ 326 | "bitflags 1.3.2", 327 | "block", 328 | "core-foundation 0.9.3", 329 | "core-graphics-types", 330 | "foreign-types 0.3.2", 331 | "libc", 332 | "objc", 333 | ] 334 | 335 | [[package]] 336 | name = "colorchoice" 337 | version = "1.0.0" 338 | source = "registry+https://github.com/rust-lang/crates.io-index" 339 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 340 | 341 | [[package]] 342 | name = "const-random" 343 | version = "0.1.15" 344 | source = "registry+https://github.com/rust-lang/crates.io-index" 345 | checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 346 | dependencies = [ 347 | "const-random-macro", 348 | "proc-macro-hack", 349 | ] 350 | 351 | [[package]] 352 | name = "const-random-macro" 353 | version = "0.1.15" 354 | source = "registry+https://github.com/rust-lang/crates.io-index" 355 | checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 356 | dependencies = [ 357 | "getrandom 0.2.10", 358 | "once_cell", 359 | "proc-macro-hack", 360 | "tiny-keccak", 361 | ] 362 | 363 | [[package]] 364 | name = "convert_case" 365 | version = "0.4.0" 366 | source = "registry+https://github.com/rust-lang/crates.io-index" 367 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 368 | 369 | [[package]] 370 | name = "core-foundation" 371 | version = "0.7.0" 372 | source = "registry+https://github.com/rust-lang/crates.io-index" 373 | checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" 374 | dependencies = [ 375 | "core-foundation-sys 0.7.0", 376 | "libc", 377 | ] 378 | 379 | [[package]] 380 | name = "core-foundation" 381 | version = "0.9.3" 382 | source = "registry+https://github.com/rust-lang/crates.io-index" 383 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 384 | dependencies = [ 385 | "core-foundation-sys 0.8.4", 386 | "libc", 387 | ] 388 | 389 | [[package]] 390 | name = "core-foundation-sys" 391 | version = "0.7.0" 392 | source = "registry+https://github.com/rust-lang/crates.io-index" 393 | checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" 394 | 395 | [[package]] 396 | name = "core-foundation-sys" 397 | version = "0.8.4" 398 | source = "registry+https://github.com/rust-lang/crates.io-index" 399 | checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 400 | 401 | [[package]] 402 | name = "core-graphics" 403 | version = "0.19.2" 404 | source = "registry+https://github.com/rust-lang/crates.io-index" 405 | checksum = "b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923" 406 | dependencies = [ 407 | "bitflags 1.3.2", 408 | "core-foundation 0.7.0", 409 | "foreign-types 0.3.2", 410 | "libc", 411 | ] 412 | 413 | [[package]] 414 | name = "core-graphics" 415 | version = "0.22.3" 416 | source = "registry+https://github.com/rust-lang/crates.io-index" 417 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 418 | dependencies = [ 419 | "bitflags 1.3.2", 420 | "core-foundation 0.9.3", 421 | "core-graphics-types", 422 | "foreign-types 0.3.2", 423 | "libc", 424 | ] 425 | 426 | [[package]] 427 | name = "core-graphics" 428 | version = "0.23.1" 429 | source = "registry+https://github.com/rust-lang/crates.io-index" 430 | checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 431 | dependencies = [ 432 | "bitflags 1.3.2", 433 | "core-foundation 0.9.3", 434 | "core-graphics-types", 435 | "foreign-types 0.5.0", 436 | "libc", 437 | ] 438 | 439 | [[package]] 440 | name = "core-graphics-types" 441 | version = "0.1.2" 442 | source = "registry+https://github.com/rust-lang/crates.io-index" 443 | checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 444 | dependencies = [ 445 | "bitflags 1.3.2", 446 | "core-foundation 0.9.3", 447 | "libc", 448 | ] 449 | 450 | [[package]] 451 | name = "core-video-sys" 452 | version = "0.1.4" 453 | source = "registry+https://github.com/rust-lang/crates.io-index" 454 | checksum = "34ecad23610ad9757664d644e369246edde1803fcb43ed72876565098a5d3828" 455 | dependencies = [ 456 | "cfg-if 0.1.10", 457 | "core-foundation-sys 0.7.0", 458 | "core-graphics 0.19.2", 459 | "libc", 460 | "objc", 461 | ] 462 | 463 | [[package]] 464 | name = "crossbeam" 465 | version = "0.8.2" 466 | source = "registry+https://github.com/rust-lang/crates.io-index" 467 | checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 468 | dependencies = [ 469 | "cfg-if 1.0.0", 470 | "crossbeam-channel", 471 | "crossbeam-deque", 472 | "crossbeam-epoch", 473 | "crossbeam-queue", 474 | "crossbeam-utils", 475 | ] 476 | 477 | [[package]] 478 | name = "crossbeam-channel" 479 | version = "0.5.8" 480 | source = "registry+https://github.com/rust-lang/crates.io-index" 481 | checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 482 | dependencies = [ 483 | "cfg-if 1.0.0", 484 | "crossbeam-utils", 485 | ] 486 | 487 | [[package]] 488 | name = "crossbeam-deque" 489 | version = "0.8.3" 490 | source = "registry+https://github.com/rust-lang/crates.io-index" 491 | checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 492 | dependencies = [ 493 | "cfg-if 1.0.0", 494 | "crossbeam-epoch", 495 | "crossbeam-utils", 496 | ] 497 | 498 | [[package]] 499 | name = "crossbeam-epoch" 500 | version = "0.9.15" 501 | source = "registry+https://github.com/rust-lang/crates.io-index" 502 | checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 503 | dependencies = [ 504 | "autocfg", 505 | "cfg-if 1.0.0", 506 | "crossbeam-utils", 507 | "memoffset 0.9.0", 508 | "scopeguard", 509 | ] 510 | 511 | [[package]] 512 | name = "crossbeam-queue" 513 | version = "0.3.8" 514 | source = "registry+https://github.com/rust-lang/crates.io-index" 515 | checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 516 | dependencies = [ 517 | "cfg-if 1.0.0", 518 | "crossbeam-utils", 519 | ] 520 | 521 | [[package]] 522 | name = "crossbeam-utils" 523 | version = "0.8.16" 524 | source = "registry+https://github.com/rust-lang/crates.io-index" 525 | checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 526 | dependencies = [ 527 | "cfg-if 1.0.0", 528 | ] 529 | 530 | [[package]] 531 | name = "crunchy" 532 | version = "0.2.2" 533 | source = "registry+https://github.com/rust-lang/crates.io-index" 534 | checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 535 | 536 | [[package]] 537 | name = "cty" 538 | version = "0.2.2" 539 | source = "registry+https://github.com/rust-lang/crates.io-index" 540 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 541 | 542 | [[package]] 543 | name = "darling" 544 | version = "0.10.2" 545 | source = "registry+https://github.com/rust-lang/crates.io-index" 546 | checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" 547 | dependencies = [ 548 | "darling_core", 549 | "darling_macro", 550 | ] 551 | 552 | [[package]] 553 | name = "darling_core" 554 | version = "0.10.2" 555 | source = "registry+https://github.com/rust-lang/crates.io-index" 556 | checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" 557 | dependencies = [ 558 | "fnv", 559 | "ident_case", 560 | "proc-macro2", 561 | "quote", 562 | "strsim 0.9.3", 563 | "syn 1.0.109", 564 | ] 565 | 566 | [[package]] 567 | name = "darling_macro" 568 | version = "0.10.2" 569 | source = "registry+https://github.com/rust-lang/crates.io-index" 570 | checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" 571 | dependencies = [ 572 | "darling_core", 573 | "quote", 574 | "syn 1.0.109", 575 | ] 576 | 577 | [[package]] 578 | name = "dbus" 579 | version = "0.9.7" 580 | source = "registry+https://github.com/rust-lang/crates.io-index" 581 | checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 582 | dependencies = [ 583 | "libc", 584 | "libdbus-sys", 585 | "winapi", 586 | ] 587 | 588 | [[package]] 589 | name = "derive_more" 590 | version = "0.99.17" 591 | source = "registry+https://github.com/rust-lang/crates.io-index" 592 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 593 | dependencies = [ 594 | "convert_case", 595 | "proc-macro2", 596 | "quote", 597 | "rustc_version", 598 | "syn 1.0.109", 599 | ] 600 | 601 | [[package]] 602 | name = "dirs" 603 | version = "5.0.1" 604 | source = "registry+https://github.com/rust-lang/crates.io-index" 605 | checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 606 | dependencies = [ 607 | "dirs-sys", 608 | ] 609 | 610 | [[package]] 611 | name = "dirs-sys" 612 | version = "0.4.1" 613 | source = "registry+https://github.com/rust-lang/crates.io-index" 614 | checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 615 | dependencies = [ 616 | "libc", 617 | "option-ext", 618 | "redox_users", 619 | "windows-sys 0.48.0", 620 | ] 621 | 622 | [[package]] 623 | name = "dispatch" 624 | version = "0.2.0" 625 | source = "registry+https://github.com/rust-lang/crates.io-index" 626 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 627 | 628 | [[package]] 629 | name = "dlib" 630 | version = "0.4.2" 631 | source = "registry+https://github.com/rust-lang/crates.io-index" 632 | checksum = "b11f15d1e3268f140f68d390637d5e76d849782d971ae7063e0da69fe9709a76" 633 | dependencies = [ 634 | "libloading 0.6.7", 635 | ] 636 | 637 | [[package]] 638 | name = "dlib" 639 | version = "0.5.2" 640 | source = "registry+https://github.com/rust-lang/crates.io-index" 641 | checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 642 | dependencies = [ 643 | "libloading 0.8.0", 644 | ] 645 | 646 | [[package]] 647 | name = "downcast-rs" 648 | version = "1.2.0" 649 | source = "registry+https://github.com/rust-lang/crates.io-index" 650 | checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 651 | 652 | [[package]] 653 | name = "drm" 654 | version = "0.5.0" 655 | source = "registry+https://github.com/rust-lang/crates.io-index" 656 | checksum = "c00d7f6793e5450d907535c66e036b3bb8db6df933025e3ceb0aac1e8f6c63de" 657 | dependencies = [ 658 | "drm-ffi", 659 | "drm-fourcc", 660 | "nix 0.22.3", 661 | ] 662 | 663 | [[package]] 664 | name = "drm-ffi" 665 | version = "0.2.1" 666 | source = "registry+https://github.com/rust-lang/crates.io-index" 667 | checksum = "198d1b7fdb33b75e9bd08ba6842ddb730760f7eeea25552acc88c5403c4f0652" 668 | dependencies = [ 669 | "drm-sys", 670 | "nix 0.22.3", 671 | ] 672 | 673 | [[package]] 674 | name = "drm-fourcc" 675 | version = "2.2.0" 676 | source = "registry+https://github.com/rust-lang/crates.io-index" 677 | checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 678 | 679 | [[package]] 680 | name = "drm-sys" 681 | version = "0.1.2" 682 | source = "registry+https://github.com/rust-lang/crates.io-index" 683 | checksum = "f5f45fcdd3b2f3c13fadea11b2a4eda2023e7de55021da039eac4a3beecfe91c" 684 | dependencies = [ 685 | "libc", 686 | ] 687 | 688 | [[package]] 689 | name = "env_logger" 690 | version = "0.10.0" 691 | source = "registry+https://github.com/rust-lang/crates.io-index" 692 | checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 693 | dependencies = [ 694 | "humantime", 695 | "is-terminal", 696 | "log", 697 | "regex", 698 | "termcolor", 699 | ] 700 | 701 | [[package]] 702 | name = "equivalent" 703 | version = "1.0.1" 704 | source = "registry+https://github.com/rust-lang/crates.io-index" 705 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 706 | 707 | [[package]] 708 | name = "errno" 709 | version = "0.3.1" 710 | source = "registry+https://github.com/rust-lang/crates.io-index" 711 | checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 712 | dependencies = [ 713 | "errno-dragonfly", 714 | "libc", 715 | "windows-sys 0.48.0", 716 | ] 717 | 718 | [[package]] 719 | name = "errno-dragonfly" 720 | version = "0.1.2" 721 | source = "registry+https://github.com/rust-lang/crates.io-index" 722 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 723 | dependencies = [ 724 | "cc", 725 | "libc", 726 | ] 727 | 728 | [[package]] 729 | name = "fastrand" 730 | version = "2.0.0" 731 | source = "registry+https://github.com/rust-lang/crates.io-index" 732 | checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 733 | 734 | [[package]] 735 | name = "fionread" 736 | version = "0.1.1" 737 | source = "registry+https://github.com/rust-lang/crates.io-index" 738 | checksum = "ff330b19fcc7e88d40667b9582beb1600c8dc7e62d154a9dfd7b2878a6681d32" 739 | dependencies = [ 740 | "nix 0.23.2", 741 | "windows-sys 0.32.0", 742 | ] 743 | 744 | [[package]] 745 | name = "fnv" 746 | version = "1.0.7" 747 | source = "registry+https://github.com/rust-lang/crates.io-index" 748 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 749 | 750 | [[package]] 751 | name = "foreign-types" 752 | version = "0.3.2" 753 | source = "registry+https://github.com/rust-lang/crates.io-index" 754 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 755 | dependencies = [ 756 | "foreign-types-shared 0.1.1", 757 | ] 758 | 759 | [[package]] 760 | name = "foreign-types" 761 | version = "0.5.0" 762 | source = "registry+https://github.com/rust-lang/crates.io-index" 763 | checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 764 | dependencies = [ 765 | "foreign-types-macros", 766 | "foreign-types-shared 0.3.1", 767 | ] 768 | 769 | [[package]] 770 | name = "foreign-types-macros" 771 | version = "0.2.3" 772 | source = "registry+https://github.com/rust-lang/crates.io-index" 773 | checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 774 | dependencies = [ 775 | "proc-macro2", 776 | "quote", 777 | "syn 2.0.27", 778 | ] 779 | 780 | [[package]] 781 | name = "foreign-types-shared" 782 | version = "0.1.1" 783 | source = "registry+https://github.com/rust-lang/crates.io-index" 784 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 785 | 786 | [[package]] 787 | name = "foreign-types-shared" 788 | version = "0.3.1" 789 | source = "registry+https://github.com/rust-lang/crates.io-index" 790 | checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 791 | 792 | [[package]] 793 | name = "futures" 794 | version = "0.1.31" 795 | source = "registry+https://github.com/rust-lang/crates.io-index" 796 | checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" 797 | 798 | [[package]] 799 | name = "futures" 800 | version = "0.3.28" 801 | source = "registry+https://github.com/rust-lang/crates.io-index" 802 | checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 803 | dependencies = [ 804 | "futures-channel", 805 | "futures-core", 806 | "futures-executor", 807 | "futures-io", 808 | "futures-sink", 809 | "futures-task", 810 | "futures-util", 811 | ] 812 | 813 | [[package]] 814 | name = "futures-channel" 815 | version = "0.3.28" 816 | source = "registry+https://github.com/rust-lang/crates.io-index" 817 | checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 818 | dependencies = [ 819 | "futures-core", 820 | "futures-sink", 821 | ] 822 | 823 | [[package]] 824 | name = "futures-core" 825 | version = "0.3.28" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 828 | 829 | [[package]] 830 | name = "futures-executor" 831 | version = "0.3.28" 832 | source = "registry+https://github.com/rust-lang/crates.io-index" 833 | checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 834 | dependencies = [ 835 | "futures-core", 836 | "futures-task", 837 | "futures-util", 838 | "num_cpus", 839 | ] 840 | 841 | [[package]] 842 | name = "futures-io" 843 | version = "0.3.28" 844 | source = "registry+https://github.com/rust-lang/crates.io-index" 845 | checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 846 | 847 | [[package]] 848 | name = "futures-macro" 849 | version = "0.3.28" 850 | source = "registry+https://github.com/rust-lang/crates.io-index" 851 | checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 852 | dependencies = [ 853 | "proc-macro2", 854 | "quote", 855 | "syn 2.0.27", 856 | ] 857 | 858 | [[package]] 859 | name = "futures-sink" 860 | version = "0.3.28" 861 | source = "registry+https://github.com/rust-lang/crates.io-index" 862 | checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 863 | 864 | [[package]] 865 | name = "futures-task" 866 | version = "0.3.28" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 869 | 870 | [[package]] 871 | name = "futures-util" 872 | version = "0.3.28" 873 | source = "registry+https://github.com/rust-lang/crates.io-index" 874 | checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 875 | dependencies = [ 876 | "futures 0.1.31", 877 | "futures-channel", 878 | "futures-core", 879 | "futures-io", 880 | "futures-macro", 881 | "futures-sink", 882 | "futures-task", 883 | "memchr", 884 | "pin-project-lite", 885 | "pin-utils", 886 | "slab", 887 | ] 888 | 889 | [[package]] 890 | name = "gbm" 891 | version = "0.7.0" 892 | source = "registry+https://github.com/rust-lang/crates.io-index" 893 | checksum = "040856dd5202dbb14f492bd7802e10782a39238fc0bff3a6dcd4feb89e2a7d8e" 894 | dependencies = [ 895 | "bitflags 1.3.2", 896 | "drm", 897 | "drm-fourcc", 898 | "gbm-sys", 899 | "libc", 900 | ] 901 | 902 | [[package]] 903 | name = "gbm-sys" 904 | version = "0.2.2" 905 | source = "registry+https://github.com/rust-lang/crates.io-index" 906 | checksum = "b63eba9b9b7a231514482deb08759301c9f9f049ac6869403f381834ebfeaf67" 907 | dependencies = [ 908 | "libc", 909 | ] 910 | 911 | [[package]] 912 | name = "gethostname" 913 | version = "0.2.3" 914 | source = "registry+https://github.com/rust-lang/crates.io-index" 915 | checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" 916 | dependencies = [ 917 | "libc", 918 | "winapi", 919 | ] 920 | 921 | [[package]] 922 | name = "getrandom" 923 | version = "0.1.16" 924 | source = "registry+https://github.com/rust-lang/crates.io-index" 925 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 926 | dependencies = [ 927 | "cfg-if 1.0.0", 928 | "libc", 929 | "wasi 0.9.0+wasi-snapshot-preview1", 930 | ] 931 | 932 | [[package]] 933 | name = "getrandom" 934 | version = "0.2.10" 935 | source = "registry+https://github.com/rust-lang/crates.io-index" 936 | checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 937 | dependencies = [ 938 | "cfg-if 1.0.0", 939 | "libc", 940 | "wasi 0.11.0+wasi-snapshot-preview1", 941 | ] 942 | 943 | [[package]] 944 | name = "gimli" 945 | version = "0.27.3" 946 | source = "registry+https://github.com/rust-lang/crates.io-index" 947 | checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 948 | 949 | [[package]] 950 | name = "gl_generator" 951 | version = "0.14.0" 952 | source = "registry+https://github.com/rust-lang/crates.io-index" 953 | checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 954 | dependencies = [ 955 | "khronos_api", 956 | "log", 957 | "xml-rs", 958 | ] 959 | 960 | [[package]] 961 | name = "globset" 962 | version = "0.4.11" 963 | source = "registry+https://github.com/rust-lang/crates.io-index" 964 | checksum = "1391ab1f92ffcc08911957149833e682aa3fe252b9f45f966d2ef972274c97df" 965 | dependencies = [ 966 | "aho-corasick", 967 | "bstr", 968 | "fnv", 969 | "log", 970 | "regex", 971 | ] 972 | 973 | [[package]] 974 | name = "hashbrown" 975 | version = "0.11.2" 976 | source = "registry+https://github.com/rust-lang/crates.io-index" 977 | checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 978 | 979 | [[package]] 980 | name = "hashbrown" 981 | version = "0.14.0" 982 | source = "registry+https://github.com/rust-lang/crates.io-index" 983 | checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 984 | 985 | [[package]] 986 | name = "hermit-abi" 987 | version = "0.3.2" 988 | source = "registry+https://github.com/rust-lang/crates.io-index" 989 | checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 990 | 991 | [[package]] 992 | name = "humantime" 993 | version = "2.1.0" 994 | source = "registry+https://github.com/rust-lang/crates.io-index" 995 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 996 | 997 | [[package]] 998 | name = "ident_case" 999 | version = "1.0.1" 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" 1001 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1002 | 1003 | [[package]] 1004 | name = "idna" 1005 | version = "0.1.5" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 1008 | dependencies = [ 1009 | "matches", 1010 | "unicode-bidi", 1011 | "unicode-normalization", 1012 | ] 1013 | 1014 | [[package]] 1015 | name = "indexmap" 1016 | version = "2.0.0" 1017 | source = "registry+https://github.com/rust-lang/crates.io-index" 1018 | checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 1019 | dependencies = [ 1020 | "equivalent", 1021 | "hashbrown 0.14.0", 1022 | ] 1023 | 1024 | [[package]] 1025 | name = "input" 1026 | version = "0.6.0" 1027 | source = "registry+https://github.com/rust-lang/crates.io-index" 1028 | checksum = "f68c2be575d5695a03d446acd1016b1665b26172fb37a75300459abeffba09d1" 1029 | dependencies = [ 1030 | "bitflags 1.3.2", 1031 | "input-sys", 1032 | "libc", 1033 | "udev", 1034 | ] 1035 | 1036 | [[package]] 1037 | name = "input-sys" 1038 | version = "1.17.0" 1039 | source = "registry+https://github.com/rust-lang/crates.io-index" 1040 | checksum = "05f6c2a17e8aba7217660e32863af87b0febad811d4b8620ef76b386603fddc2" 1041 | dependencies = [ 1042 | "libc", 1043 | ] 1044 | 1045 | [[package]] 1046 | name = "instant" 1047 | version = "0.1.12" 1048 | source = "registry+https://github.com/rust-lang/crates.io-index" 1049 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1050 | dependencies = [ 1051 | "cfg-if 1.0.0", 1052 | ] 1053 | 1054 | [[package]] 1055 | name = "io-lifetimes" 1056 | version = "1.0.11" 1057 | source = "registry+https://github.com/rust-lang/crates.io-index" 1058 | checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1059 | dependencies = [ 1060 | "hermit-abi", 1061 | "libc", 1062 | "windows-sys 0.48.0", 1063 | ] 1064 | 1065 | [[package]] 1066 | name = "is-terminal" 1067 | version = "0.4.9" 1068 | source = "registry+https://github.com/rust-lang/crates.io-index" 1069 | checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1070 | dependencies = [ 1071 | "hermit-abi", 1072 | "rustix 0.38.4", 1073 | "windows-sys 0.48.0", 1074 | ] 1075 | 1076 | [[package]] 1077 | name = "itoa" 1078 | version = "1.0.9" 1079 | source = "registry+https://github.com/rust-lang/crates.io-index" 1080 | checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1081 | 1082 | [[package]] 1083 | name = "jni-sys" 1084 | version = "0.3.0" 1085 | source = "registry+https://github.com/rust-lang/crates.io-index" 1086 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1087 | 1088 | [[package]] 1089 | name = "jsonrpc" 1090 | version = "0.16.0" 1091 | source = "registry+https://github.com/rust-lang/crates.io-index" 1092 | checksum = "34efde8d2422fb79ed56db1d3aea8fa5b583351d15a26770cdee2f88813dd702" 1093 | dependencies = [ 1094 | "base64", 1095 | "serde", 1096 | "serde_json", 1097 | ] 1098 | 1099 | [[package]] 1100 | name = "jsonrpc-client-transports" 1101 | version = "18.0.0" 1102 | source = "registry+https://github.com/rust-lang/crates.io-index" 1103 | checksum = "d2b99d4207e2a04fb4581746903c2bb7eb376f88de9c699d0f3e10feeac0cd3a" 1104 | dependencies = [ 1105 | "derive_more", 1106 | "futures 0.3.28", 1107 | "jsonrpc-core", 1108 | "jsonrpc-pubsub", 1109 | "jsonrpc-server-utils", 1110 | "log", 1111 | "parity-tokio-ipc", 1112 | "serde", 1113 | "serde_json", 1114 | "tokio", 1115 | "url", 1116 | ] 1117 | 1118 | [[package]] 1119 | name = "jsonrpc-core" 1120 | version = "18.0.0" 1121 | source = "registry+https://github.com/rust-lang/crates.io-index" 1122 | checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" 1123 | dependencies = [ 1124 | "futures 0.3.28", 1125 | "futures-executor", 1126 | "futures-util", 1127 | "log", 1128 | "serde", 1129 | "serde_derive", 1130 | "serde_json", 1131 | ] 1132 | 1133 | [[package]] 1134 | name = "jsonrpc-core-client" 1135 | version = "18.0.0" 1136 | source = "registry+https://github.com/rust-lang/crates.io-index" 1137 | checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0" 1138 | dependencies = [ 1139 | "futures 0.3.28", 1140 | "jsonrpc-client-transports", 1141 | ] 1142 | 1143 | [[package]] 1144 | name = "jsonrpc-ipc-server" 1145 | version = "18.0.0" 1146 | source = "registry+https://github.com/rust-lang/crates.io-index" 1147 | checksum = "382bb0206323ca7cda3dcd7e245cea86d37d02457a02a975e3378fb149a48845" 1148 | dependencies = [ 1149 | "futures 0.3.28", 1150 | "jsonrpc-core", 1151 | "jsonrpc-server-utils", 1152 | "log", 1153 | "parity-tokio-ipc", 1154 | "parking_lot 0.11.2", 1155 | "tower-service", 1156 | ] 1157 | 1158 | [[package]] 1159 | name = "jsonrpc-pubsub" 1160 | version = "18.0.0" 1161 | source = "registry+https://github.com/rust-lang/crates.io-index" 1162 | checksum = "240f87695e6c6f62fb37f05c02c04953cf68d6408b8c1c89de85c7a0125b1011" 1163 | dependencies = [ 1164 | "futures 0.3.28", 1165 | "jsonrpc-core", 1166 | "lazy_static", 1167 | "log", 1168 | "parking_lot 0.11.2", 1169 | "rand", 1170 | "serde", 1171 | ] 1172 | 1173 | [[package]] 1174 | name = "jsonrpc-server-utils" 1175 | version = "18.0.0" 1176 | source = "registry+https://github.com/rust-lang/crates.io-index" 1177 | checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4" 1178 | dependencies = [ 1179 | "bytes", 1180 | "futures 0.3.28", 1181 | "globset", 1182 | "jsonrpc-core", 1183 | "lazy_static", 1184 | "log", 1185 | "tokio", 1186 | "tokio-stream", 1187 | "tokio-util", 1188 | "unicase", 1189 | ] 1190 | 1191 | [[package]] 1192 | name = "khronos_api" 1193 | version = "3.1.0" 1194 | source = "registry+https://github.com/rust-lang/crates.io-index" 1195 | checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 1196 | 1197 | [[package]] 1198 | name = "lazy_static" 1199 | version = "1.4.0" 1200 | source = "registry+https://github.com/rust-lang/crates.io-index" 1201 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1202 | 1203 | [[package]] 1204 | name = "libc" 1205 | version = "0.2.147" 1206 | source = "registry+https://github.com/rust-lang/crates.io-index" 1207 | checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1208 | 1209 | [[package]] 1210 | name = "libdbus-sys" 1211 | version = "0.2.5" 1212 | source = "registry+https://github.com/rust-lang/crates.io-index" 1213 | checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 1214 | dependencies = [ 1215 | "pkg-config", 1216 | ] 1217 | 1218 | [[package]] 1219 | name = "libloading" 1220 | version = "0.6.7" 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" 1222 | checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" 1223 | dependencies = [ 1224 | "cfg-if 1.0.0", 1225 | "winapi", 1226 | ] 1227 | 1228 | [[package]] 1229 | name = "libloading" 1230 | version = "0.7.4" 1231 | source = "registry+https://github.com/rust-lang/crates.io-index" 1232 | checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1233 | dependencies = [ 1234 | "cfg-if 1.0.0", 1235 | "winapi", 1236 | ] 1237 | 1238 | [[package]] 1239 | name = "libloading" 1240 | version = "0.8.0" 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" 1242 | checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" 1243 | dependencies = [ 1244 | "cfg-if 1.0.0", 1245 | "windows-sys 0.48.0", 1246 | ] 1247 | 1248 | [[package]] 1249 | name = "libudev-sys" 1250 | version = "0.1.4" 1251 | source = "registry+https://github.com/rust-lang/crates.io-index" 1252 | checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324" 1253 | dependencies = [ 1254 | "libc", 1255 | "pkg-config", 1256 | ] 1257 | 1258 | [[package]] 1259 | name = "linux-raw-sys" 1260 | version = "0.3.8" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1263 | 1264 | [[package]] 1265 | name = "linux-raw-sys" 1266 | version = "0.4.3" 1267 | source = "registry+https://github.com/rust-lang/crates.io-index" 1268 | checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 1269 | 1270 | [[package]] 1271 | name = "lock_api" 1272 | version = "0.4.10" 1273 | source = "registry+https://github.com/rust-lang/crates.io-index" 1274 | checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1275 | dependencies = [ 1276 | "autocfg", 1277 | "scopeguard", 1278 | ] 1279 | 1280 | [[package]] 1281 | name = "log" 1282 | version = "0.4.19" 1283 | source = "registry+https://github.com/rust-lang/crates.io-index" 1284 | checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1285 | 1286 | [[package]] 1287 | name = "malloc_buf" 1288 | version = "0.0.6" 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" 1290 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1291 | dependencies = [ 1292 | "libc", 1293 | ] 1294 | 1295 | [[package]] 1296 | name = "matches" 1297 | version = "0.1.10" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1300 | 1301 | [[package]] 1302 | name = "memchr" 1303 | version = "2.5.0" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1306 | 1307 | [[package]] 1308 | name = "memmap2" 1309 | version = "0.1.0" 1310 | source = "registry+https://github.com/rust-lang/crates.io-index" 1311 | checksum = "d9b70ca2a6103ac8b665dc150b142ef0e4e89df640c9e6cf295d189c3caebe5a" 1312 | dependencies = [ 1313 | "libc", 1314 | ] 1315 | 1316 | [[package]] 1317 | name = "memoffset" 1318 | version = "0.6.5" 1319 | source = "registry+https://github.com/rust-lang/crates.io-index" 1320 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1321 | dependencies = [ 1322 | "autocfg", 1323 | ] 1324 | 1325 | [[package]] 1326 | name = "memoffset" 1327 | version = "0.9.0" 1328 | source = "registry+https://github.com/rust-lang/crates.io-index" 1329 | checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1330 | dependencies = [ 1331 | "autocfg", 1332 | ] 1333 | 1334 | [[package]] 1335 | name = "minimal-lexical" 1336 | version = "0.2.1" 1337 | source = "registry+https://github.com/rust-lang/crates.io-index" 1338 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1339 | 1340 | [[package]] 1341 | name = "miniz_oxide" 1342 | version = "0.7.1" 1343 | source = "registry+https://github.com/rust-lang/crates.io-index" 1344 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1345 | dependencies = [ 1346 | "adler", 1347 | ] 1348 | 1349 | [[package]] 1350 | name = "mio" 1351 | version = "0.7.14" 1352 | source = "registry+https://github.com/rust-lang/crates.io-index" 1353 | checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 1354 | dependencies = [ 1355 | "libc", 1356 | "log", 1357 | "miow", 1358 | "ntapi", 1359 | "winapi", 1360 | ] 1361 | 1362 | [[package]] 1363 | name = "mio" 1364 | version = "0.8.8" 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" 1366 | checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1367 | dependencies = [ 1368 | "libc", 1369 | "wasi 0.11.0+wasi-snapshot-preview1", 1370 | "windows-sys 0.48.0", 1371 | ] 1372 | 1373 | [[package]] 1374 | name = "mio-misc" 1375 | version = "1.2.2" 1376 | source = "registry+https://github.com/rust-lang/crates.io-index" 1377 | checksum = "b47412f3a52115b936ff2a229b803498c7b4d332adeb87c2f1498c9da54c398c" 1378 | dependencies = [ 1379 | "crossbeam", 1380 | "crossbeam-queue", 1381 | "log", 1382 | "mio 0.7.14", 1383 | ] 1384 | 1385 | [[package]] 1386 | name = "miow" 1387 | version = "0.3.7" 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" 1389 | checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1390 | dependencies = [ 1391 | "winapi", 1392 | ] 1393 | 1394 | [[package]] 1395 | name = "ndk" 1396 | version = "0.3.0" 1397 | source = "registry+https://github.com/rust-lang/crates.io-index" 1398 | checksum = "8794322172319b972f528bf90c6b467be0079f1fa82780ffb431088e741a73ab" 1399 | dependencies = [ 1400 | "jni-sys", 1401 | "ndk-sys", 1402 | "num_enum", 1403 | "thiserror", 1404 | ] 1405 | 1406 | [[package]] 1407 | name = "ndk-glue" 1408 | version = "0.3.0" 1409 | source = "registry+https://github.com/rust-lang/crates.io-index" 1410 | checksum = "c5caf0c24d51ac1c905c27d4eda4fa0635bbe0de596b8f79235e0b17a4d29385" 1411 | dependencies = [ 1412 | "lazy_static", 1413 | "libc", 1414 | "log", 1415 | "ndk", 1416 | "ndk-macro", 1417 | "ndk-sys", 1418 | ] 1419 | 1420 | [[package]] 1421 | name = "ndk-macro" 1422 | version = "0.2.0" 1423 | source = "registry+https://github.com/rust-lang/crates.io-index" 1424 | checksum = "05d1c6307dc424d0f65b9b06e94f88248e6305726b14729fd67a5e47b2dc481d" 1425 | dependencies = [ 1426 | "darling", 1427 | "proc-macro-crate 0.1.5", 1428 | "proc-macro2", 1429 | "quote", 1430 | "syn 1.0.109", 1431 | ] 1432 | 1433 | [[package]] 1434 | name = "ndk-sys" 1435 | version = "0.2.2" 1436 | source = "registry+https://github.com/rust-lang/crates.io-index" 1437 | checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121" 1438 | 1439 | [[package]] 1440 | name = "nix" 1441 | version = "0.18.0" 1442 | source = "registry+https://github.com/rust-lang/crates.io-index" 1443 | checksum = "83450fe6a6142ddd95fb064b746083fc4ef1705fe81f64a64e1d4b39f54a1055" 1444 | dependencies = [ 1445 | "bitflags 1.3.2", 1446 | "cc", 1447 | "cfg-if 0.1.10", 1448 | "libc", 1449 | ] 1450 | 1451 | [[package]] 1452 | name = "nix" 1453 | version = "0.20.0" 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" 1455 | checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" 1456 | dependencies = [ 1457 | "bitflags 1.3.2", 1458 | "cc", 1459 | "cfg-if 1.0.0", 1460 | "libc", 1461 | ] 1462 | 1463 | [[package]] 1464 | name = "nix" 1465 | version = "0.22.3" 1466 | source = "registry+https://github.com/rust-lang/crates.io-index" 1467 | checksum = "e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf" 1468 | dependencies = [ 1469 | "bitflags 1.3.2", 1470 | "cc", 1471 | "cfg-if 1.0.0", 1472 | "libc", 1473 | "memoffset 0.6.5", 1474 | ] 1475 | 1476 | [[package]] 1477 | name = "nix" 1478 | version = "0.23.2" 1479 | source = "registry+https://github.com/rust-lang/crates.io-index" 1480 | checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c" 1481 | dependencies = [ 1482 | "bitflags 1.3.2", 1483 | "cc", 1484 | "cfg-if 1.0.0", 1485 | "libc", 1486 | "memoffset 0.6.5", 1487 | ] 1488 | 1489 | [[package]] 1490 | name = "nix" 1491 | version = "0.24.3" 1492 | source = "registry+https://github.com/rust-lang/crates.io-index" 1493 | checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 1494 | dependencies = [ 1495 | "bitflags 1.3.2", 1496 | "cfg-if 1.0.0", 1497 | "libc", 1498 | "memoffset 0.6.5", 1499 | ] 1500 | 1501 | [[package]] 1502 | name = "nom" 1503 | version = "7.1.3" 1504 | source = "registry+https://github.com/rust-lang/crates.io-index" 1505 | checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1506 | dependencies = [ 1507 | "memchr", 1508 | "minimal-lexical", 1509 | ] 1510 | 1511 | [[package]] 1512 | name = "ntapi" 1513 | version = "0.3.7" 1514 | source = "registry+https://github.com/rust-lang/crates.io-index" 1515 | checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 1516 | dependencies = [ 1517 | "winapi", 1518 | ] 1519 | 1520 | [[package]] 1521 | name = "num-traits" 1522 | version = "0.2.16" 1523 | source = "registry+https://github.com/rust-lang/crates.io-index" 1524 | checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1525 | dependencies = [ 1526 | "autocfg", 1527 | ] 1528 | 1529 | [[package]] 1530 | name = "num_cpus" 1531 | version = "1.16.0" 1532 | source = "registry+https://github.com/rust-lang/crates.io-index" 1533 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1534 | dependencies = [ 1535 | "hermit-abi", 1536 | "libc", 1537 | ] 1538 | 1539 | [[package]] 1540 | name = "num_enum" 1541 | version = "0.5.11" 1542 | source = "registry+https://github.com/rust-lang/crates.io-index" 1543 | checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 1544 | dependencies = [ 1545 | "num_enum_derive", 1546 | ] 1547 | 1548 | [[package]] 1549 | name = "num_enum_derive" 1550 | version = "0.5.11" 1551 | source = "registry+https://github.com/rust-lang/crates.io-index" 1552 | checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 1553 | dependencies = [ 1554 | "proc-macro-crate 1.3.1", 1555 | "proc-macro2", 1556 | "quote", 1557 | "syn 1.0.109", 1558 | ] 1559 | 1560 | [[package]] 1561 | name = "objc" 1562 | version = "0.2.7" 1563 | source = "registry+https://github.com/rust-lang/crates.io-index" 1564 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1565 | dependencies = [ 1566 | "malloc_buf", 1567 | ] 1568 | 1569 | [[package]] 1570 | name = "object" 1571 | version = "0.31.1" 1572 | source = "registry+https://github.com/rust-lang/crates.io-index" 1573 | checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1574 | dependencies = [ 1575 | "memchr", 1576 | ] 1577 | 1578 | [[package]] 1579 | name = "once_cell" 1580 | version = "1.18.0" 1581 | source = "registry+https://github.com/rust-lang/crates.io-index" 1582 | checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1583 | 1584 | [[package]] 1585 | name = "option-ext" 1586 | version = "0.2.0" 1587 | source = "registry+https://github.com/rust-lang/crates.io-index" 1588 | checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1589 | 1590 | [[package]] 1591 | name = "owned_ttf_parser" 1592 | version = "0.15.2" 1593 | source = "registry+https://github.com/rust-lang/crates.io-index" 1594 | checksum = "05e6affeb1632d6ff6a23d2cd40ffed138e82f1532571a26f527c8a284bb2fbb" 1595 | dependencies = [ 1596 | "ttf-parser", 1597 | ] 1598 | 1599 | [[package]] 1600 | name = "parity-tokio-ipc" 1601 | version = "0.9.0" 1602 | source = "registry+https://github.com/rust-lang/crates.io-index" 1603 | checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6" 1604 | dependencies = [ 1605 | "futures 0.3.28", 1606 | "libc", 1607 | "log", 1608 | "rand", 1609 | "tokio", 1610 | "winapi", 1611 | ] 1612 | 1613 | [[package]] 1614 | name = "parking_lot" 1615 | version = "0.11.2" 1616 | source = "registry+https://github.com/rust-lang/crates.io-index" 1617 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1618 | dependencies = [ 1619 | "instant", 1620 | "lock_api", 1621 | "parking_lot_core 0.8.6", 1622 | ] 1623 | 1624 | [[package]] 1625 | name = "parking_lot" 1626 | version = "0.12.1" 1627 | source = "registry+https://github.com/rust-lang/crates.io-index" 1628 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1629 | dependencies = [ 1630 | "lock_api", 1631 | "parking_lot_core 0.9.8", 1632 | ] 1633 | 1634 | [[package]] 1635 | name = "parking_lot_core" 1636 | version = "0.8.6" 1637 | source = "registry+https://github.com/rust-lang/crates.io-index" 1638 | checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 1639 | dependencies = [ 1640 | "cfg-if 1.0.0", 1641 | "instant", 1642 | "libc", 1643 | "redox_syscall 0.2.16", 1644 | "smallvec", 1645 | "winapi", 1646 | ] 1647 | 1648 | [[package]] 1649 | name = "parking_lot_core" 1650 | version = "0.9.8" 1651 | source = "registry+https://github.com/rust-lang/crates.io-index" 1652 | checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1653 | dependencies = [ 1654 | "cfg-if 1.0.0", 1655 | "libc", 1656 | "redox_syscall 0.3.5", 1657 | "smallvec", 1658 | "windows-targets", 1659 | ] 1660 | 1661 | [[package]] 1662 | name = "percent-encoding" 1663 | version = "1.0.1" 1664 | source = "registry+https://github.com/rust-lang/crates.io-index" 1665 | checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 1666 | 1667 | [[package]] 1668 | name = "percent-encoding" 1669 | version = "2.3.0" 1670 | source = "registry+https://github.com/rust-lang/crates.io-index" 1671 | checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1672 | 1673 | [[package]] 1674 | name = "pin-project-lite" 1675 | version = "0.2.10" 1676 | source = "registry+https://github.com/rust-lang/crates.io-index" 1677 | checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1678 | 1679 | [[package]] 1680 | name = "pin-utils" 1681 | version = "0.1.0" 1682 | source = "registry+https://github.com/rust-lang/crates.io-index" 1683 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1684 | 1685 | [[package]] 1686 | name = "pkg-config" 1687 | version = "0.3.27" 1688 | source = "registry+https://github.com/rust-lang/crates.io-index" 1689 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1690 | 1691 | [[package]] 1692 | name = "ppv-lite86" 1693 | version = "0.2.17" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1696 | 1697 | [[package]] 1698 | name = "proc-macro-crate" 1699 | version = "0.1.5" 1700 | source = "registry+https://github.com/rust-lang/crates.io-index" 1701 | checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 1702 | dependencies = [ 1703 | "toml", 1704 | ] 1705 | 1706 | [[package]] 1707 | name = "proc-macro-crate" 1708 | version = "1.3.1" 1709 | source = "registry+https://github.com/rust-lang/crates.io-index" 1710 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1711 | dependencies = [ 1712 | "once_cell", 1713 | "toml_edit", 1714 | ] 1715 | 1716 | [[package]] 1717 | name = "proc-macro-hack" 1718 | version = "0.5.20+deprecated" 1719 | source = "registry+https://github.com/rust-lang/crates.io-index" 1720 | checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 1721 | 1722 | [[package]] 1723 | name = "proc-macro2" 1724 | version = "1.0.66" 1725 | source = "registry+https://github.com/rust-lang/crates.io-index" 1726 | checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1727 | dependencies = [ 1728 | "unicode-ident", 1729 | ] 1730 | 1731 | [[package]] 1732 | name = "quote" 1733 | version = "1.0.32" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 1736 | dependencies = [ 1737 | "proc-macro2", 1738 | ] 1739 | 1740 | [[package]] 1741 | name = "rand" 1742 | version = "0.7.3" 1743 | source = "registry+https://github.com/rust-lang/crates.io-index" 1744 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1745 | dependencies = [ 1746 | "getrandom 0.1.16", 1747 | "libc", 1748 | "rand_chacha", 1749 | "rand_core", 1750 | "rand_hc", 1751 | ] 1752 | 1753 | [[package]] 1754 | name = "rand_chacha" 1755 | version = "0.2.2" 1756 | source = "registry+https://github.com/rust-lang/crates.io-index" 1757 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1758 | dependencies = [ 1759 | "ppv-lite86", 1760 | "rand_core", 1761 | ] 1762 | 1763 | [[package]] 1764 | name = "rand_core" 1765 | version = "0.5.1" 1766 | source = "registry+https://github.com/rust-lang/crates.io-index" 1767 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1768 | dependencies = [ 1769 | "getrandom 0.1.16", 1770 | ] 1771 | 1772 | [[package]] 1773 | name = "rand_hc" 1774 | version = "0.2.0" 1775 | source = "registry+https://github.com/rust-lang/crates.io-index" 1776 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1777 | dependencies = [ 1778 | "rand_core", 1779 | ] 1780 | 1781 | [[package]] 1782 | name = "raw-window-handle" 1783 | version = "0.3.4" 1784 | source = "registry+https://github.com/rust-lang/crates.io-index" 1785 | checksum = "e28f55143d0548dad60bb4fbdc835a3d7ac6acc3324506450c5fdd6e42903a76" 1786 | dependencies = [ 1787 | "libc", 1788 | "raw-window-handle 0.4.3", 1789 | ] 1790 | 1791 | [[package]] 1792 | name = "raw-window-handle" 1793 | version = "0.4.3" 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" 1795 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 1796 | dependencies = [ 1797 | "cty", 1798 | ] 1799 | 1800 | [[package]] 1801 | name = "rawrctl" 1802 | version = "0.1.0" 1803 | dependencies = [ 1804 | "clap", 1805 | "env_logger", 1806 | "log", 1807 | "rawrwm-core", 1808 | ] 1809 | 1810 | [[package]] 1811 | name = "rawrd" 1812 | version = "0.1.0" 1813 | dependencies = [ 1814 | "clap", 1815 | "env_logger", 1816 | "log", 1817 | "rawrwm-core", 1818 | "tokio", 1819 | ] 1820 | 1821 | [[package]] 1822 | name = "rawrwm-backends" 1823 | version = "0.1.0" 1824 | dependencies = [ 1825 | "breadx", 1826 | "core-graphics 0.23.1", 1827 | "smithay", 1828 | "windows", 1829 | ] 1830 | 1831 | [[package]] 1832 | name = "rawrwm-core" 1833 | version = "0.1.0" 1834 | dependencies = [ 1835 | "anyhow", 1836 | "dirs", 1837 | "env_logger", 1838 | "futures 0.3.28", 1839 | "jsonrpc", 1840 | "jsonrpc-core-client", 1841 | "jsonrpc-ipc-server", 1842 | "log", 1843 | "rawrwm-backends", 1844 | "serde", 1845 | "thiserror", 1846 | "tokio", 1847 | ] 1848 | 1849 | [[package]] 1850 | name = "redox_syscall" 1851 | version = "0.2.16" 1852 | source = "registry+https://github.com/rust-lang/crates.io-index" 1853 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1854 | dependencies = [ 1855 | "bitflags 1.3.2", 1856 | ] 1857 | 1858 | [[package]] 1859 | name = "redox_syscall" 1860 | version = "0.3.5" 1861 | source = "registry+https://github.com/rust-lang/crates.io-index" 1862 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1863 | dependencies = [ 1864 | "bitflags 1.3.2", 1865 | ] 1866 | 1867 | [[package]] 1868 | name = "redox_users" 1869 | version = "0.4.3" 1870 | source = "registry+https://github.com/rust-lang/crates.io-index" 1871 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1872 | dependencies = [ 1873 | "getrandom 0.2.10", 1874 | "redox_syscall 0.2.16", 1875 | "thiserror", 1876 | ] 1877 | 1878 | [[package]] 1879 | name = "regex" 1880 | version = "1.9.1" 1881 | source = "registry+https://github.com/rust-lang/crates.io-index" 1882 | checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 1883 | dependencies = [ 1884 | "aho-corasick", 1885 | "memchr", 1886 | "regex-automata", 1887 | "regex-syntax", 1888 | ] 1889 | 1890 | [[package]] 1891 | name = "regex-automata" 1892 | version = "0.3.3" 1893 | source = "registry+https://github.com/rust-lang/crates.io-index" 1894 | checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 1895 | dependencies = [ 1896 | "aho-corasick", 1897 | "memchr", 1898 | "regex-syntax", 1899 | ] 1900 | 1901 | [[package]] 1902 | name = "regex-syntax" 1903 | version = "0.7.4" 1904 | source = "registry+https://github.com/rust-lang/crates.io-index" 1905 | checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 1906 | 1907 | [[package]] 1908 | name = "rustc-demangle" 1909 | version = "0.1.23" 1910 | source = "registry+https://github.com/rust-lang/crates.io-index" 1911 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1912 | 1913 | [[package]] 1914 | name = "rustc_version" 1915 | version = "0.4.0" 1916 | source = "registry+https://github.com/rust-lang/crates.io-index" 1917 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1918 | dependencies = [ 1919 | "semver", 1920 | ] 1921 | 1922 | [[package]] 1923 | name = "rustix" 1924 | version = "0.37.23" 1925 | source = "registry+https://github.com/rust-lang/crates.io-index" 1926 | checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 1927 | dependencies = [ 1928 | "bitflags 1.3.2", 1929 | "errno", 1930 | "io-lifetimes", 1931 | "libc", 1932 | "linux-raw-sys 0.3.8", 1933 | "windows-sys 0.48.0", 1934 | ] 1935 | 1936 | [[package]] 1937 | name = "rustix" 1938 | version = "0.38.4" 1939 | source = "registry+https://github.com/rust-lang/crates.io-index" 1940 | checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" 1941 | dependencies = [ 1942 | "bitflags 2.3.3", 1943 | "errno", 1944 | "libc", 1945 | "linux-raw-sys 0.4.3", 1946 | "windows-sys 0.48.0", 1947 | ] 1948 | 1949 | [[package]] 1950 | name = "rusttype" 1951 | version = "0.9.3" 1952 | source = "registry+https://github.com/rust-lang/crates.io-index" 1953 | checksum = "3ff8374aa04134254b7995b63ad3dc41c7f7236f69528b28553da7d72efaa967" 1954 | dependencies = [ 1955 | "ab_glyph_rasterizer", 1956 | "owned_ttf_parser", 1957 | ] 1958 | 1959 | [[package]] 1960 | name = "ryu" 1961 | version = "1.0.15" 1962 | source = "registry+https://github.com/rust-lang/crates.io-index" 1963 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1964 | 1965 | [[package]] 1966 | name = "same-file" 1967 | version = "1.0.6" 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" 1969 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1970 | dependencies = [ 1971 | "winapi-util", 1972 | ] 1973 | 1974 | [[package]] 1975 | name = "scan_fmt" 1976 | version = "0.2.6" 1977 | source = "registry+https://github.com/rust-lang/crates.io-index" 1978 | checksum = "0b53b0a5db882a8e2fdaae0a43f7b39e7e9082389e978398bdf223a55b581248" 1979 | 1980 | [[package]] 1981 | name = "scoped-tls" 1982 | version = "1.0.1" 1983 | source = "registry+https://github.com/rust-lang/crates.io-index" 1984 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1985 | 1986 | [[package]] 1987 | name = "scopeguard" 1988 | version = "1.2.0" 1989 | source = "registry+https://github.com/rust-lang/crates.io-index" 1990 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1991 | 1992 | [[package]] 1993 | name = "semver" 1994 | version = "1.0.18" 1995 | source = "registry+https://github.com/rust-lang/crates.io-index" 1996 | checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 1997 | 1998 | [[package]] 1999 | name = "serde" 2000 | version = "1.0.177" 2001 | source = "registry+https://github.com/rust-lang/crates.io-index" 2002 | checksum = "63ba2516aa6bf82e0b19ca8b50019d52df58455d3cf9bdaf6315225fdd0c560a" 2003 | dependencies = [ 2004 | "serde_derive", 2005 | ] 2006 | 2007 | [[package]] 2008 | name = "serde_derive" 2009 | version = "1.0.177" 2010 | source = "registry+https://github.com/rust-lang/crates.io-index" 2011 | checksum = "401797fe7833d72109fedec6bfcbe67c0eed9b99772f26eb8afd261f0abc6fd3" 2012 | dependencies = [ 2013 | "proc-macro2", 2014 | "quote", 2015 | "syn 2.0.27", 2016 | ] 2017 | 2018 | [[package]] 2019 | name = "serde_json" 2020 | version = "1.0.103" 2021 | source = "registry+https://github.com/rust-lang/crates.io-index" 2022 | checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" 2023 | dependencies = [ 2024 | "itoa", 2025 | "ryu", 2026 | "serde", 2027 | ] 2028 | 2029 | [[package]] 2030 | name = "signal-hook-registry" 2031 | version = "1.4.1" 2032 | source = "registry+https://github.com/rust-lang/crates.io-index" 2033 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2034 | dependencies = [ 2035 | "libc", 2036 | ] 2037 | 2038 | [[package]] 2039 | name = "slab" 2040 | version = "0.4.8" 2041 | source = "registry+https://github.com/rust-lang/crates.io-index" 2042 | checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2043 | dependencies = [ 2044 | "autocfg", 2045 | ] 2046 | 2047 | [[package]] 2048 | name = "slog" 2049 | version = "2.7.0" 2050 | source = "registry+https://github.com/rust-lang/crates.io-index" 2051 | checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06" 2052 | 2053 | [[package]] 2054 | name = "slog-scope" 2055 | version = "4.4.0" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" 2058 | dependencies = [ 2059 | "arc-swap", 2060 | "lazy_static", 2061 | "slog", 2062 | ] 2063 | 2064 | [[package]] 2065 | name = "slog-stdlog" 2066 | version = "4.1.1" 2067 | source = "registry+https://github.com/rust-lang/crates.io-index" 2068 | checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" 2069 | dependencies = [ 2070 | "log", 2071 | "slog", 2072 | "slog-scope", 2073 | ] 2074 | 2075 | [[package]] 2076 | name = "smallvec" 2077 | version = "1.11.0" 2078 | source = "registry+https://github.com/rust-lang/crates.io-index" 2079 | checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2080 | 2081 | [[package]] 2082 | name = "smithay" 2083 | version = "0.3.0" 2084 | source = "registry+https://github.com/rust-lang/crates.io-index" 2085 | checksum = "524a70d391cdbcca9a3b56bd357620c95f89a365c326c99c0bf03974f923d5df" 2086 | dependencies = [ 2087 | "appendlist", 2088 | "bitflags 1.3.2", 2089 | "calloop 0.9.3", 2090 | "cgmath", 2091 | "dbus", 2092 | "downcast-rs", 2093 | "drm", 2094 | "drm-ffi", 2095 | "drm-fourcc", 2096 | "gbm", 2097 | "gl_generator", 2098 | "input", 2099 | "lazy_static", 2100 | "libc", 2101 | "libloading 0.7.4", 2102 | "nix 0.22.3", 2103 | "pkg-config", 2104 | "scan_fmt", 2105 | "slog", 2106 | "slog-stdlog", 2107 | "tempfile", 2108 | "thiserror", 2109 | "udev", 2110 | "wayland-commons 0.29.5", 2111 | "wayland-egl", 2112 | "wayland-protocols 0.29.5", 2113 | "wayland-server", 2114 | "winit", 2115 | "xkbcommon", 2116 | ] 2117 | 2118 | [[package]] 2119 | name = "smithay-client-toolkit" 2120 | version = "0.12.3" 2121 | source = "registry+https://github.com/rust-lang/crates.io-index" 2122 | checksum = "4750c76fd5d3ac95fa3ed80fe667d6a3d8590a960e5b575b98eea93339a80b80" 2123 | dependencies = [ 2124 | "andrew", 2125 | "bitflags 1.3.2", 2126 | "calloop 0.6.5", 2127 | "dlib 0.4.2", 2128 | "lazy_static", 2129 | "log", 2130 | "memmap2", 2131 | "nix 0.18.0", 2132 | "wayland-client 0.28.6", 2133 | "wayland-cursor", 2134 | "wayland-protocols 0.28.6", 2135 | ] 2136 | 2137 | [[package]] 2138 | name = "socket2" 2139 | version = "0.4.9" 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" 2141 | checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2142 | dependencies = [ 2143 | "libc", 2144 | "winapi", 2145 | ] 2146 | 2147 | [[package]] 2148 | name = "strsim" 2149 | version = "0.9.3" 2150 | source = "registry+https://github.com/rust-lang/crates.io-index" 2151 | checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" 2152 | 2153 | [[package]] 2154 | name = "strsim" 2155 | version = "0.10.0" 2156 | source = "registry+https://github.com/rust-lang/crates.io-index" 2157 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2158 | 2159 | [[package]] 2160 | name = "syn" 2161 | version = "1.0.109" 2162 | source = "registry+https://github.com/rust-lang/crates.io-index" 2163 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2164 | dependencies = [ 2165 | "proc-macro2", 2166 | "quote", 2167 | "unicode-ident", 2168 | ] 2169 | 2170 | [[package]] 2171 | name = "syn" 2172 | version = "2.0.27" 2173 | source = "registry+https://github.com/rust-lang/crates.io-index" 2174 | checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" 2175 | dependencies = [ 2176 | "proc-macro2", 2177 | "quote", 2178 | "unicode-ident", 2179 | ] 2180 | 2181 | [[package]] 2182 | name = "tempfile" 2183 | version = "3.7.0" 2184 | source = "registry+https://github.com/rust-lang/crates.io-index" 2185 | checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" 2186 | dependencies = [ 2187 | "cfg-if 1.0.0", 2188 | "fastrand", 2189 | "redox_syscall 0.3.5", 2190 | "rustix 0.38.4", 2191 | "windows-sys 0.48.0", 2192 | ] 2193 | 2194 | [[package]] 2195 | name = "termcolor" 2196 | version = "1.2.0" 2197 | source = "registry+https://github.com/rust-lang/crates.io-index" 2198 | checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2199 | dependencies = [ 2200 | "winapi-util", 2201 | ] 2202 | 2203 | [[package]] 2204 | name = "terminal_size" 2205 | version = "0.2.6" 2206 | source = "registry+https://github.com/rust-lang/crates.io-index" 2207 | checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 2208 | dependencies = [ 2209 | "rustix 0.37.23", 2210 | "windows-sys 0.48.0", 2211 | ] 2212 | 2213 | [[package]] 2214 | name = "thiserror" 2215 | version = "1.0.44" 2216 | source = "registry+https://github.com/rust-lang/crates.io-index" 2217 | checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 2218 | dependencies = [ 2219 | "thiserror-impl", 2220 | ] 2221 | 2222 | [[package]] 2223 | name = "thiserror-impl" 2224 | version = "1.0.44" 2225 | source = "registry+https://github.com/rust-lang/crates.io-index" 2226 | checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 2227 | dependencies = [ 2228 | "proc-macro2", 2229 | "quote", 2230 | "syn 2.0.27", 2231 | ] 2232 | 2233 | [[package]] 2234 | name = "tiny-keccak" 2235 | version = "2.0.2" 2236 | source = "registry+https://github.com/rust-lang/crates.io-index" 2237 | checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 2238 | dependencies = [ 2239 | "crunchy", 2240 | ] 2241 | 2242 | [[package]] 2243 | name = "tinyvec" 2244 | version = "1.6.0" 2245 | source = "registry+https://github.com/rust-lang/crates.io-index" 2246 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2247 | dependencies = [ 2248 | "tinyvec_macros", 2249 | ] 2250 | 2251 | [[package]] 2252 | name = "tinyvec_macros" 2253 | version = "0.1.1" 2254 | source = "registry+https://github.com/rust-lang/crates.io-index" 2255 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2256 | 2257 | [[package]] 2258 | name = "tokio" 2259 | version = "1.29.1" 2260 | source = "registry+https://github.com/rust-lang/crates.io-index" 2261 | checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 2262 | dependencies = [ 2263 | "autocfg", 2264 | "backtrace", 2265 | "bytes", 2266 | "libc", 2267 | "mio 0.8.8", 2268 | "num_cpus", 2269 | "parking_lot 0.12.1", 2270 | "pin-project-lite", 2271 | "signal-hook-registry", 2272 | "socket2", 2273 | "tokio-macros", 2274 | "windows-sys 0.48.0", 2275 | ] 2276 | 2277 | [[package]] 2278 | name = "tokio-macros" 2279 | version = "2.1.0" 2280 | source = "registry+https://github.com/rust-lang/crates.io-index" 2281 | checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2282 | dependencies = [ 2283 | "proc-macro2", 2284 | "quote", 2285 | "syn 2.0.27", 2286 | ] 2287 | 2288 | [[package]] 2289 | name = "tokio-stream" 2290 | version = "0.1.14" 2291 | source = "registry+https://github.com/rust-lang/crates.io-index" 2292 | checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 2293 | dependencies = [ 2294 | "futures-core", 2295 | "pin-project-lite", 2296 | "tokio", 2297 | ] 2298 | 2299 | [[package]] 2300 | name = "tokio-util" 2301 | version = "0.6.10" 2302 | source = "registry+https://github.com/rust-lang/crates.io-index" 2303 | checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" 2304 | dependencies = [ 2305 | "bytes", 2306 | "futures-core", 2307 | "futures-sink", 2308 | "log", 2309 | "pin-project-lite", 2310 | "tokio", 2311 | ] 2312 | 2313 | [[package]] 2314 | name = "toml" 2315 | version = "0.5.11" 2316 | source = "registry+https://github.com/rust-lang/crates.io-index" 2317 | checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2318 | dependencies = [ 2319 | "serde", 2320 | ] 2321 | 2322 | [[package]] 2323 | name = "toml_datetime" 2324 | version = "0.6.3" 2325 | source = "registry+https://github.com/rust-lang/crates.io-index" 2326 | checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2327 | 2328 | [[package]] 2329 | name = "toml_edit" 2330 | version = "0.19.14" 2331 | source = "registry+https://github.com/rust-lang/crates.io-index" 2332 | checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 2333 | dependencies = [ 2334 | "indexmap", 2335 | "toml_datetime", 2336 | "winnow", 2337 | ] 2338 | 2339 | [[package]] 2340 | name = "tower-service" 2341 | version = "0.3.2" 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" 2343 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2344 | 2345 | [[package]] 2346 | name = "tracing" 2347 | version = "0.1.37" 2348 | source = "registry+https://github.com/rust-lang/crates.io-index" 2349 | checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2350 | dependencies = [ 2351 | "cfg-if 1.0.0", 2352 | "pin-project-lite", 2353 | "tracing-core", 2354 | ] 2355 | 2356 | [[package]] 2357 | name = "tracing-core" 2358 | version = "0.1.31" 2359 | source = "registry+https://github.com/rust-lang/crates.io-index" 2360 | checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2361 | 2362 | [[package]] 2363 | name = "ttf-parser" 2364 | version = "0.15.2" 2365 | source = "registry+https://github.com/rust-lang/crates.io-index" 2366 | checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd" 2367 | 2368 | [[package]] 2369 | name = "udev" 2370 | version = "0.6.3" 2371 | source = "registry+https://github.com/rust-lang/crates.io-index" 2372 | checksum = "1c960764f7e816eed851a96c364745d37f9fe71a2e7dba79fbd40104530b5dd0" 2373 | dependencies = [ 2374 | "libc", 2375 | "libudev-sys", 2376 | "pkg-config", 2377 | ] 2378 | 2379 | [[package]] 2380 | name = "unicase" 2381 | version = "2.6.0" 2382 | source = "registry+https://github.com/rust-lang/crates.io-index" 2383 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2384 | dependencies = [ 2385 | "version_check", 2386 | ] 2387 | 2388 | [[package]] 2389 | name = "unicode-bidi" 2390 | version = "0.3.13" 2391 | source = "registry+https://github.com/rust-lang/crates.io-index" 2392 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2393 | 2394 | [[package]] 2395 | name = "unicode-ident" 2396 | version = "1.0.11" 2397 | source = "registry+https://github.com/rust-lang/crates.io-index" 2398 | checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 2399 | 2400 | [[package]] 2401 | name = "unicode-normalization" 2402 | version = "0.1.22" 2403 | source = "registry+https://github.com/rust-lang/crates.io-index" 2404 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2405 | dependencies = [ 2406 | "tinyvec", 2407 | ] 2408 | 2409 | [[package]] 2410 | name = "url" 2411 | version = "1.7.2" 2412 | source = "registry+https://github.com/rust-lang/crates.io-index" 2413 | checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 2414 | dependencies = [ 2415 | "idna", 2416 | "matches", 2417 | "percent-encoding 1.0.1", 2418 | ] 2419 | 2420 | [[package]] 2421 | name = "utf8parse" 2422 | version = "0.2.1" 2423 | source = "registry+https://github.com/rust-lang/crates.io-index" 2424 | checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2425 | 2426 | [[package]] 2427 | name = "version_check" 2428 | version = "0.9.4" 2429 | source = "registry+https://github.com/rust-lang/crates.io-index" 2430 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2431 | 2432 | [[package]] 2433 | name = "walkdir" 2434 | version = "2.3.3" 2435 | source = "registry+https://github.com/rust-lang/crates.io-index" 2436 | checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2437 | dependencies = [ 2438 | "same-file", 2439 | "winapi-util", 2440 | ] 2441 | 2442 | [[package]] 2443 | name = "wasi" 2444 | version = "0.9.0+wasi-snapshot-preview1" 2445 | source = "registry+https://github.com/rust-lang/crates.io-index" 2446 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2447 | 2448 | [[package]] 2449 | name = "wasi" 2450 | version = "0.11.0+wasi-snapshot-preview1" 2451 | source = "registry+https://github.com/rust-lang/crates.io-index" 2452 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2453 | 2454 | [[package]] 2455 | name = "wayland-client" 2456 | version = "0.28.6" 2457 | source = "registry+https://github.com/rust-lang/crates.io-index" 2458 | checksum = "e3ab332350e502f159382201394a78e3cc12d0f04db863429260164ea40e0355" 2459 | dependencies = [ 2460 | "bitflags 1.3.2", 2461 | "downcast-rs", 2462 | "libc", 2463 | "nix 0.20.0", 2464 | "scoped-tls", 2465 | "wayland-commons 0.28.6", 2466 | "wayland-scanner 0.28.6", 2467 | "wayland-sys 0.28.6", 2468 | ] 2469 | 2470 | [[package]] 2471 | name = "wayland-client" 2472 | version = "0.29.5" 2473 | source = "registry+https://github.com/rust-lang/crates.io-index" 2474 | checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" 2475 | dependencies = [ 2476 | "bitflags 1.3.2", 2477 | "downcast-rs", 2478 | "libc", 2479 | "nix 0.24.3", 2480 | "scoped-tls", 2481 | "wayland-commons 0.29.5", 2482 | "wayland-scanner 0.29.5", 2483 | "wayland-sys 0.29.5", 2484 | ] 2485 | 2486 | [[package]] 2487 | name = "wayland-commons" 2488 | version = "0.28.6" 2489 | source = "registry+https://github.com/rust-lang/crates.io-index" 2490 | checksum = "a21817947c7011bbd0a27e11b17b337bfd022e8544b071a2641232047966fbda" 2491 | dependencies = [ 2492 | "nix 0.20.0", 2493 | "once_cell", 2494 | "smallvec", 2495 | "wayland-sys 0.28.6", 2496 | ] 2497 | 2498 | [[package]] 2499 | name = "wayland-commons" 2500 | version = "0.29.5" 2501 | source = "registry+https://github.com/rust-lang/crates.io-index" 2502 | checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902" 2503 | dependencies = [ 2504 | "nix 0.24.3", 2505 | "once_cell", 2506 | "smallvec", 2507 | "wayland-sys 0.29.5", 2508 | ] 2509 | 2510 | [[package]] 2511 | name = "wayland-cursor" 2512 | version = "0.28.6" 2513 | source = "registry+https://github.com/rust-lang/crates.io-index" 2514 | checksum = "be610084edd1586d45e7bdd275fe345c7c1873598caa464c4fb835dee70fa65a" 2515 | dependencies = [ 2516 | "nix 0.20.0", 2517 | "wayland-client 0.28.6", 2518 | "xcursor", 2519 | ] 2520 | 2521 | [[package]] 2522 | name = "wayland-egl" 2523 | version = "0.29.5" 2524 | source = "registry+https://github.com/rust-lang/crates.io-index" 2525 | checksum = "402de949f81a012926d821a2d659f930694257e76dd92b6e0042ceb27be4107d" 2526 | dependencies = [ 2527 | "wayland-client 0.29.5", 2528 | "wayland-sys 0.29.5", 2529 | ] 2530 | 2531 | [[package]] 2532 | name = "wayland-protocols" 2533 | version = "0.28.6" 2534 | source = "registry+https://github.com/rust-lang/crates.io-index" 2535 | checksum = "286620ea4d803bacf61fa087a4242ee316693099ee5a140796aaba02b29f861f" 2536 | dependencies = [ 2537 | "bitflags 1.3.2", 2538 | "wayland-client 0.28.6", 2539 | "wayland-commons 0.28.6", 2540 | "wayland-scanner 0.28.6", 2541 | ] 2542 | 2543 | [[package]] 2544 | name = "wayland-protocols" 2545 | version = "0.29.5" 2546 | source = "registry+https://github.com/rust-lang/crates.io-index" 2547 | checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" 2548 | dependencies = [ 2549 | "bitflags 1.3.2", 2550 | "wayland-commons 0.29.5", 2551 | "wayland-scanner 0.29.5", 2552 | "wayland-server", 2553 | ] 2554 | 2555 | [[package]] 2556 | name = "wayland-scanner" 2557 | version = "0.28.6" 2558 | source = "registry+https://github.com/rust-lang/crates.io-index" 2559 | checksum = "ce923eb2deb61de332d1f356ec7b6bf37094dc5573952e1c8936db03b54c03f1" 2560 | dependencies = [ 2561 | "proc-macro2", 2562 | "quote", 2563 | "xml-rs", 2564 | ] 2565 | 2566 | [[package]] 2567 | name = "wayland-scanner" 2568 | version = "0.29.5" 2569 | source = "registry+https://github.com/rust-lang/crates.io-index" 2570 | checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 2571 | dependencies = [ 2572 | "proc-macro2", 2573 | "quote", 2574 | "xml-rs", 2575 | ] 2576 | 2577 | [[package]] 2578 | name = "wayland-server" 2579 | version = "0.29.5" 2580 | source = "registry+https://github.com/rust-lang/crates.io-index" 2581 | checksum = "5360846dd8dba714874644f2d300e08e49ad921cd41437154f41bb8b979c2c86" 2582 | dependencies = [ 2583 | "bitflags 1.3.2", 2584 | "downcast-rs", 2585 | "lazy_static", 2586 | "libc", 2587 | "nix 0.24.3", 2588 | "parking_lot 0.11.2", 2589 | "scoped-tls", 2590 | "wayland-commons 0.29.5", 2591 | "wayland-scanner 0.29.5", 2592 | "wayland-sys 0.29.5", 2593 | ] 2594 | 2595 | [[package]] 2596 | name = "wayland-sys" 2597 | version = "0.28.6" 2598 | source = "registry+https://github.com/rust-lang/crates.io-index" 2599 | checksum = "d841fca9aed7febf9bed2e9796c49bf58d4152ceda8ac949ebe00868d8f0feb8" 2600 | dependencies = [ 2601 | "dlib 0.5.2", 2602 | "lazy_static", 2603 | "pkg-config", 2604 | ] 2605 | 2606 | [[package]] 2607 | name = "wayland-sys" 2608 | version = "0.29.5" 2609 | source = "registry+https://github.com/rust-lang/crates.io-index" 2610 | checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4" 2611 | dependencies = [ 2612 | "dlib 0.5.2", 2613 | "lazy_static", 2614 | "libc", 2615 | "memoffset 0.6.5", 2616 | "pkg-config", 2617 | ] 2618 | 2619 | [[package]] 2620 | name = "winapi" 2621 | version = "0.3.9" 2622 | source = "registry+https://github.com/rust-lang/crates.io-index" 2623 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2624 | dependencies = [ 2625 | "winapi-i686-pc-windows-gnu", 2626 | "winapi-x86_64-pc-windows-gnu", 2627 | ] 2628 | 2629 | [[package]] 2630 | name = "winapi-i686-pc-windows-gnu" 2631 | version = "0.4.0" 2632 | source = "registry+https://github.com/rust-lang/crates.io-index" 2633 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2634 | 2635 | [[package]] 2636 | name = "winapi-util" 2637 | version = "0.1.5" 2638 | source = "registry+https://github.com/rust-lang/crates.io-index" 2639 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2640 | dependencies = [ 2641 | "winapi", 2642 | ] 2643 | 2644 | [[package]] 2645 | name = "winapi-x86_64-pc-windows-gnu" 2646 | version = "0.4.0" 2647 | source = "registry+https://github.com/rust-lang/crates.io-index" 2648 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2649 | 2650 | [[package]] 2651 | name = "windows" 2652 | version = "0.48.0" 2653 | source = "registry+https://github.com/rust-lang/crates.io-index" 2654 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2655 | dependencies = [ 2656 | "windows-implement", 2657 | "windows-interface", 2658 | "windows-targets", 2659 | ] 2660 | 2661 | [[package]] 2662 | name = "windows-implement" 2663 | version = "0.48.0" 2664 | source = "registry+https://github.com/rust-lang/crates.io-index" 2665 | checksum = "5e2ee588991b9e7e6c8338edf3333fbe4da35dc72092643958ebb43f0ab2c49c" 2666 | dependencies = [ 2667 | "proc-macro2", 2668 | "quote", 2669 | "syn 1.0.109", 2670 | ] 2671 | 2672 | [[package]] 2673 | name = "windows-interface" 2674 | version = "0.48.0" 2675 | source = "registry+https://github.com/rust-lang/crates.io-index" 2676 | checksum = "e6fb8df20c9bcaa8ad6ab513f7b40104840c8867d5751126e4df3b08388d0cc7" 2677 | dependencies = [ 2678 | "proc-macro2", 2679 | "quote", 2680 | "syn 1.0.109", 2681 | ] 2682 | 2683 | [[package]] 2684 | name = "windows-sys" 2685 | version = "0.32.0" 2686 | source = "registry+https://github.com/rust-lang/crates.io-index" 2687 | checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6" 2688 | dependencies = [ 2689 | "windows_aarch64_msvc 0.32.0", 2690 | "windows_i686_gnu 0.32.0", 2691 | "windows_i686_msvc 0.32.0", 2692 | "windows_x86_64_gnu 0.32.0", 2693 | "windows_x86_64_msvc 0.32.0", 2694 | ] 2695 | 2696 | [[package]] 2697 | name = "windows-sys" 2698 | version = "0.48.0" 2699 | source = "registry+https://github.com/rust-lang/crates.io-index" 2700 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2701 | dependencies = [ 2702 | "windows-targets", 2703 | ] 2704 | 2705 | [[package]] 2706 | name = "windows-targets" 2707 | version = "0.48.1" 2708 | source = "registry+https://github.com/rust-lang/crates.io-index" 2709 | checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2710 | dependencies = [ 2711 | "windows_aarch64_gnullvm", 2712 | "windows_aarch64_msvc 0.48.0", 2713 | "windows_i686_gnu 0.48.0", 2714 | "windows_i686_msvc 0.48.0", 2715 | "windows_x86_64_gnu 0.48.0", 2716 | "windows_x86_64_gnullvm", 2717 | "windows_x86_64_msvc 0.48.0", 2718 | ] 2719 | 2720 | [[package]] 2721 | name = "windows_aarch64_gnullvm" 2722 | version = "0.48.0" 2723 | source = "registry+https://github.com/rust-lang/crates.io-index" 2724 | checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2725 | 2726 | [[package]] 2727 | name = "windows_aarch64_msvc" 2728 | version = "0.32.0" 2729 | source = "registry+https://github.com/rust-lang/crates.io-index" 2730 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" 2731 | 2732 | [[package]] 2733 | name = "windows_aarch64_msvc" 2734 | version = "0.48.0" 2735 | source = "registry+https://github.com/rust-lang/crates.io-index" 2736 | checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2737 | 2738 | [[package]] 2739 | name = "windows_i686_gnu" 2740 | version = "0.32.0" 2741 | source = "registry+https://github.com/rust-lang/crates.io-index" 2742 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" 2743 | 2744 | [[package]] 2745 | name = "windows_i686_gnu" 2746 | version = "0.48.0" 2747 | source = "registry+https://github.com/rust-lang/crates.io-index" 2748 | checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2749 | 2750 | [[package]] 2751 | name = "windows_i686_msvc" 2752 | version = "0.32.0" 2753 | source = "registry+https://github.com/rust-lang/crates.io-index" 2754 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" 2755 | 2756 | [[package]] 2757 | name = "windows_i686_msvc" 2758 | version = "0.48.0" 2759 | source = "registry+https://github.com/rust-lang/crates.io-index" 2760 | checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2761 | 2762 | [[package]] 2763 | name = "windows_x86_64_gnu" 2764 | version = "0.32.0" 2765 | source = "registry+https://github.com/rust-lang/crates.io-index" 2766 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" 2767 | 2768 | [[package]] 2769 | name = "windows_x86_64_gnu" 2770 | version = "0.48.0" 2771 | source = "registry+https://github.com/rust-lang/crates.io-index" 2772 | checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2773 | 2774 | [[package]] 2775 | name = "windows_x86_64_gnullvm" 2776 | version = "0.48.0" 2777 | source = "registry+https://github.com/rust-lang/crates.io-index" 2778 | checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2779 | 2780 | [[package]] 2781 | name = "windows_x86_64_msvc" 2782 | version = "0.32.0" 2783 | source = "registry+https://github.com/rust-lang/crates.io-index" 2784 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" 2785 | 2786 | [[package]] 2787 | name = "windows_x86_64_msvc" 2788 | version = "0.48.0" 2789 | source = "registry+https://github.com/rust-lang/crates.io-index" 2790 | checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2791 | 2792 | [[package]] 2793 | name = "winit" 2794 | version = "0.25.0" 2795 | source = "registry+https://github.com/rust-lang/crates.io-index" 2796 | checksum = "79610794594d5e86be473ef7763f604f2159cbac8c94debd00df8fb41e86c2f8" 2797 | dependencies = [ 2798 | "bitflags 1.3.2", 2799 | "cocoa", 2800 | "core-foundation 0.9.3", 2801 | "core-graphics 0.22.3", 2802 | "core-video-sys", 2803 | "dispatch", 2804 | "instant", 2805 | "lazy_static", 2806 | "libc", 2807 | "log", 2808 | "mio 0.7.14", 2809 | "mio-misc", 2810 | "ndk", 2811 | "ndk-glue", 2812 | "ndk-sys", 2813 | "objc", 2814 | "parking_lot 0.11.2", 2815 | "percent-encoding 2.3.0", 2816 | "raw-window-handle 0.3.4", 2817 | "scopeguard", 2818 | "smithay-client-toolkit", 2819 | "wayland-client 0.28.6", 2820 | "winapi", 2821 | "x11-dl", 2822 | ] 2823 | 2824 | [[package]] 2825 | name = "winnow" 2826 | version = "0.5.1" 2827 | source = "registry+https://github.com/rust-lang/crates.io-index" 2828 | checksum = "25b5872fa2e10bd067ae946f927e726d7d603eaeb6e02fa6a350e0722d2b8c11" 2829 | dependencies = [ 2830 | "memchr", 2831 | ] 2832 | 2833 | [[package]] 2834 | name = "x11-dl" 2835 | version = "2.21.0" 2836 | source = "registry+https://github.com/rust-lang/crates.io-index" 2837 | checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 2838 | dependencies = [ 2839 | "libc", 2840 | "once_cell", 2841 | "pkg-config", 2842 | ] 2843 | 2844 | [[package]] 2845 | name = "x11rb-protocol" 2846 | version = "0.10.0" 2847 | source = "registry+https://github.com/rust-lang/crates.io-index" 2848 | checksum = "56b245751c0ac9db0e006dc812031482784e434630205a93c73cfefcaabeac67" 2849 | dependencies = [ 2850 | "nix 0.24.3", 2851 | ] 2852 | 2853 | [[package]] 2854 | name = "xcursor" 2855 | version = "0.3.4" 2856 | source = "registry+https://github.com/rust-lang/crates.io-index" 2857 | checksum = "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7" 2858 | dependencies = [ 2859 | "nom", 2860 | ] 2861 | 2862 | [[package]] 2863 | name = "xdg" 2864 | version = "2.5.2" 2865 | source = "registry+https://github.com/rust-lang/crates.io-index" 2866 | checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 2867 | 2868 | [[package]] 2869 | name = "xkbcommon" 2870 | version = "0.4.1" 2871 | source = "registry+https://github.com/rust-lang/crates.io-index" 2872 | checksum = "032ed00cc755c31221bbd6aaf9fa4196a01bf33bca185f9316e14f26d28c28cf" 2873 | dependencies = [ 2874 | "libc", 2875 | ] 2876 | 2877 | [[package]] 2878 | name = "xml-rs" 2879 | version = "0.8.16" 2880 | source = "registry+https://github.com/rust-lang/crates.io-index" 2881 | checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" 2882 | -------------------------------------------------------------------------------- /Cargo.lock.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | [workspace] 6 | members = [ 7 | "src/backends", 8 | "src/bin/rawrctl", 9 | "src/bin/rawrd", 10 | "src/core" 11 | ] 12 | 13 | [profile.dev] 14 | lto = true 15 | opt-level = 3 16 | codegen-units = 1 17 | debug = true 18 | 19 | [profile.dev.package."*"] 20 | codegen-units = 1 21 | opt-level = 3 22 | debug = true 23 | 24 | [profile.release] 25 | lto = true 26 | opt-level = 's' 27 | codegen-units = 1 28 | debug = true 29 | strip = true 30 | 31 | [profile.release.package."*"] 32 | codegen-units = 1 33 | opt-level = 's' 34 | debug = false 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 10 | 11 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 12 | 13 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 14 | 15 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 16 | 17 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 18 | 19 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 20 | 21 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 22 | 23 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 24 | 25 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 26 | 27 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 28 | 29 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 30 | 31 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 32 | 33 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 34 | 35 | (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and 36 | 37 | (b) You must cause any modified files to carry prominent notices stating that You changed the files; and 38 | 39 | (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 40 | 41 | (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 42 | 43 | You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 44 | 45 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 46 | 47 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 48 | 49 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 50 | 51 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 52 | 53 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 54 | 55 | END OF TERMS AND CONDITIONS 56 | 57 | APPENDIX: How to apply the Apache License to your work. 58 | 59 | To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. 60 | 61 | Copyright [yyyy] [name of copyright owner] 62 | 63 | Licensed under the Apache License, Version 2.0 (the "License"); 64 | you may not use this file except in compliance with the License. 65 | You may obtain a copy of the License at 66 | 67 | http://www.apache.org/licenses/LICENSE-2.0 68 | 69 | Unless required by applicable law or agreed to in writing, software 70 | distributed under the License is distributed on an "AS IS" BASIS, 71 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 72 | See the License for the specific language governing permissions and 73 | limitations under the License. 74 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # RawrWM 8 | 9 | [![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme) 10 | 11 | 12 | 13 | An adaptable, fast and flexible window manager for various platforms - and 14 | configured with GNU Guile! 15 | 16 | # Description 17 | 18 | This is an experiment in window managers, where the same language - GNU Guile! - is used to configure it - with a standardised gRPC interface for control. 19 | 20 | It [will] comes with an out of the box configuration, and users are encouraged to tinker to their heart's desire! Control is done via the `rawrctl` executable, which [will] run on Windows, Linux, \*BSD, and macOS. 21 | 22 | RawrWM is based around 'backends'. The idea is to have a unifying API exposed by Guile, and to be able to use the same configuration acrsos platforms. This includes Microsoft Windows 10/11 (previous versions will *not* be supported), and recent-ish macOS/Linux/\*BSD (TBC). 23 | 24 | It's heavily a work in progress, but integration is expected with [automon][automon], another project of mine, and [guile-rs][guile-rs]. 25 | 26 | Ideas and notes can be seen [here](/docs/NOTES.md). 27 | 28 | ## Table of Contents 29 | 30 | - [Background](#background) 31 | - [Install](#install) 32 | - [Usage](#usage) 33 | - [Maintainers](#maintainers) 34 | - [Contributing](#contributing) 35 | - [License](#license) 36 | 37 | ## Background 38 | 39 | ## Install 40 | 41 | Not ready for installation yet - keep tuned! 42 | 43 | ## Usage 44 | 45 | Not ready for usage yet - keep tuned! 46 | 47 | ## Maintainers 48 | 49 | [@shymega](https://github.com/shymega) 50 | 51 | ## Contributing 52 | 53 | PRs accepted. Make sure they pass the 'pre-commit' hook checks. 54 | 55 | Small note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification. 56 | 57 | ## License 58 | 59 | Apache-2.0 © 2023 The RawrWM Developers 60 | 61 | [automon]: https://github.com/shymega/automon 62 | [guile-rs]: https://github.com/guile-rs/guile-rs 63 | -------------------------------------------------------------------------------- /docs/NOTES.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | Notes. 8 | ====== 9 | 10 | 11 | 12 | # Backends 13 | 14 | # Daemon 15 | 16 | - Daemon runs on startup of the user session. 17 | - Async. 18 | 19 | # Features to support 20 | 21 | - HiDPI 22 | - Speed 23 | - Startup, fast 24 | - Greetd support 25 | 26 | # Configuration 27 | 28 | GNU Guile. 29 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "flake-utils": { 4 | "inputs": { 5 | "systems": "systems" 6 | }, 7 | "locked": { 8 | "lastModified": 1689068808, 9 | "narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=", 10 | "owner": "numtide", 11 | "repo": "flake-utils", 12 | "rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4", 13 | "type": "github" 14 | }, 15 | "original": { 16 | "owner": "numtide", 17 | "repo": "flake-utils", 18 | "type": "github" 19 | } 20 | }, 21 | "naersk": { 22 | "inputs": { 23 | "nixpkgs": "nixpkgs" 24 | }, 25 | "locked": { 26 | "lastModified": 1688534083, 27 | "narHash": "sha256-/bI5vsioXscQTsx+Hk9X5HfweeNZz/6kVKsbdqfwW7g=", 28 | "owner": "nix-community", 29 | "repo": "naersk", 30 | "rev": "abca1fb7a6cfdd355231fc220c3d0302dbb4369a", 31 | "type": "github" 32 | }, 33 | "original": { 34 | "owner": "nix-community", 35 | "repo": "naersk", 36 | "type": "github" 37 | } 38 | }, 39 | "nixpkgs": { 40 | "locked": { 41 | "lastModified": 1690148897, 42 | "narHash": "sha256-l/j/AX1d2K79EWslwgWR2+htkzCbtjKZsS5NbWXnhz4=", 43 | "path": "/nix/store/5kzk1ii7nq6a5ch8jwbib8whvi1ri1rl-source", 44 | "rev": "ac1acba43b2f9db073943ff5ed883ce7e8a40a2c", 45 | "type": "path" 46 | }, 47 | "original": { 48 | "id": "nixpkgs", 49 | "type": "indirect" 50 | } 51 | }, 52 | "nixpkgs_2": { 53 | "locked": { 54 | "lastModified": 1690235791, 55 | "narHash": "sha256-QkPVQ859F0wXyd74A7UPYbmi4B5xYN4Ns7AQ0pvM0Wo=", 56 | "owner": "NixOS", 57 | "repo": "nixpkgs", 58 | "rev": "dfcffbd74fd6f0419370d8240e445252a39f4d10", 59 | "type": "github" 60 | }, 61 | "original": { 62 | "owner": "NixOS", 63 | "ref": "nixpkgs-unstable", 64 | "repo": "nixpkgs", 65 | "type": "github" 66 | } 67 | }, 68 | "root": { 69 | "inputs": { 70 | "flake-utils": "flake-utils", 71 | "naersk": "naersk", 72 | "nixpkgs": "nixpkgs_2" 73 | } 74 | }, 75 | "systems": { 76 | "locked": { 77 | "lastModified": 1681028828, 78 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 79 | "owner": "nix-systems", 80 | "repo": "default", 81 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 82 | "type": "github" 83 | }, 84 | "original": { 85 | "owner": "nix-systems", 86 | "repo": "default", 87 | "type": "github" 88 | } 89 | } 90 | }, 91 | "root": "root", 92 | "version": 7 93 | } 94 | -------------------------------------------------------------------------------- /flake.lock.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | { 5 | inputs = { 6 | flake-utils.url = "github:numtide/flake-utils"; 7 | naersk.url = "github:nix-community/naersk"; 8 | nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 9 | }; 10 | 11 | outputs = { self, flake-utils, naersk, nixpkgs }: 12 | flake-utils.lib.eachDefaultSystem (system: 13 | let 14 | pkgs = (import nixpkgs) { 15 | inherit system; 16 | }; 17 | 18 | naersk' = pkgs.callPackage naersk {}; 19 | 20 | in rec { 21 | # For `nix build` & `nix run`: 22 | defaultPackage = naersk'.buildPackage { 23 | src = ./.; 24 | nativeBuildInputs = with pkgs; [ pkg-config cmake ] ; 25 | buildInputs = with pkgs; [ systemd.dev dbus.dev ]; 26 | }; 27 | 28 | # For `nix develop`: 29 | devShell = pkgs.mkShell { 30 | nativeBuildInputs = with pkgs; [ rustc cargo pkg-config cmake ]; 31 | buildInputs = with pkgs; [ systemd.dev dbus.dev ]; 32 | }; 33 | } 34 | ); 35 | } 36 | -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /rust-toolchain.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /src/backends/Cargo.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | [package] 6 | name = "rawrwm-backends" 7 | version = "0.1.0" 8 | authors = ["Dom Rodriguez "] 9 | edition = "2018" 10 | 11 | [features] 12 | default = [] 13 | x11 = ["breadx"] 14 | wayland = ["smithay"] 15 | 16 | [dependencies] 17 | 18 | [target.'cfg(all(target_family = "unix", not(any(target_os = "ios", target_os = "macos"))))'.dependencies] 19 | breadx = { version = "3.1.0", optional = true } 20 | smithay = { version = "0.3.0", optional = true } 21 | 22 | [target.'cfg(target_os = "macos")'.dependencies] 23 | core-graphics = "0.23.1" 24 | 25 | [target.'cfg(target_os = "windows")'.dependencies] 26 | windows = { version = "0.48", features = [ 27 | "Win32_Foundation", 28 | "Win32_Graphics_Dwm", 29 | "Win32_Graphics_Gdi", 30 | "Win32_System_Com", 31 | "Win32_System_LibraryLoader", 32 | "Win32_System_RemoteDesktop", 33 | "Win32_System_SystemServices", 34 | "Win32_System_Threading", 35 | "Win32_UI_Accessibility", 36 | "Win32_UI_HiDpi", 37 | "Win32_UI_Input_KeyboardAndMouse", 38 | "Win32_UI_Shell", 39 | "Win32_UI_Shell_Common", 40 | "Win32_UI_Shell_Common", 41 | "Win32_UI_WindowsAndMessaging", 42 | "implement" 43 | ] } 44 | -------------------------------------------------------------------------------- /src/backends/src/common/mod.rs: -------------------------------------------------------------------------------- 1 | //! Stub module (TODO) for the `common` types. 2 | -------------------------------------------------------------------------------- /src/backends/src/lib.rs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | 5 | //! Conditionally-compiled, all backends crate for `RawrWM`. 6 | #![deny( 7 | warnings, 8 | missing_copy_implementations, 9 | missing_debug_implementations, 10 | missing_docs, 11 | clippy::all, 12 | clippy::cargo, 13 | trivial_casts, 14 | trivial_numeric_casts, 15 | unused_import_braces, 16 | unused_qualifications, 17 | unused_extern_crates, 18 | variant_size_differences 19 | )] 20 | 21 | #[cfg_attr( 22 | all( 23 | target_family = "unix", 24 | not(any(target_os = "ios", target_os = "macos")) 25 | ), 26 | path = "platforms/unix/mod.rs" 27 | )] 28 | #[cfg_attr(target_os = "windows", path = "platforms/windows/mod.rs")] 29 | #[cfg_attr(target_os = "macos", path = "platforms/macos/mod.rs")] 30 | pub mod platform; 31 | 32 | pub mod common; 33 | -------------------------------------------------------------------------------- /src/backends/src/platforms/macos/mod.rs: -------------------------------------------------------------------------------- 1 | //! Stub module (TODO) for the macOS backend. 2 | -------------------------------------------------------------------------------- /src/backends/src/platforms/unix/mod.rs: -------------------------------------------------------------------------------- 1 | //! Stub module (TODO) for the Unix backend. Excluding macOS. 2 | -------------------------------------------------------------------------------- /src/backends/src/platforms/windows/mod.rs: -------------------------------------------------------------------------------- 1 | //! Stub module (TODO) for the Windows backend. 2 | -------------------------------------------------------------------------------- /src/bin/rawrctl/Cargo.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | [package] 6 | name = "rawrctl" 7 | version = "0.1.0" 8 | authors = ["Dom Rodriguez "] 9 | edition = "2021" 10 | 11 | [[bin]] 12 | name = "rawrctl" 13 | path = "src/main.rs" 14 | 15 | [dependencies] 16 | env_logger = "0.10.0" 17 | log = "0.4.19" 18 | 19 | [dependencies.clap] 20 | features = ["suggestions", "color", "wrap_help"] 21 | version = "4.3.19" 22 | 23 | [dependencies.rawrwm-core] 24 | path = "../../core" 25 | -------------------------------------------------------------------------------- /src/bin/rawrctl/src/main.rs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | 5 | //! Client for controlling `RawrWM`. 6 | #![deny( 7 | warnings, 8 | missing_copy_implementations, 9 | missing_debug_implementations, 10 | missing_docs, 11 | clippy::all, 12 | clippy::cargo, 13 | trivial_casts, 14 | trivial_numeric_casts, 15 | unsafe_code, 16 | unused_import_braces, 17 | unused_qualifications, 18 | unused_extern_crates, 19 | variant_size_differences 20 | )] 21 | 22 | // Platform-agnostic main entrypoint. 23 | fn main() {} 24 | -------------------------------------------------------------------------------- /src/bin/rawrd/Cargo.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | [package] 6 | name = "rawrd" 7 | version = "0.1.0" 8 | authors = ["Dom Rodriguez "] 9 | edition = "2021" 10 | 11 | [[bin]] 12 | name = "rawrd" 13 | path = "src/main.rs" 14 | 15 | [dependencies] 16 | log = "0.4.19" 17 | tokio = { version = "1.29.1", features = ["full"] } 18 | env_logger = "0.10.0" 19 | 20 | [dependencies.rawrwm-core] 21 | path = "../../core" 22 | 23 | [dependencies.clap] 24 | features = ["suggestions", "color", "wrap_help"] 25 | version = "4.3.19" 26 | -------------------------------------------------------------------------------- /src/bin/rawrd/src/main.rs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | 5 | //! Daemon for `RawrWM` 6 | #![deny( 7 | warnings, 8 | missing_copy_implementations, 9 | missing_debug_implementations, 10 | missing_docs, 11 | clippy::all, 12 | clippy::cargo, 13 | trivial_casts, 14 | trivial_numeric_casts, 15 | unsafe_code, 16 | unused_import_braces, 17 | unused_qualifications, 18 | unused_extern_crates, 19 | variant_size_differences 20 | )] 21 | 22 | pub use rawrwm::reexports::anyhow::{Context, Result}; 23 | pub use rawrwm::reexports::thiserror::Error; 24 | pub use rawrwm_core as rawrwm; 25 | 26 | #[derive(Error, Debug)] 27 | #[allow(dead_code)] 28 | enum AppStartError { 29 | #[error("Initialization error")] 30 | InitializationError, 31 | } 32 | 33 | type AppStartResult = Result<(), AppStartError>; 34 | 35 | #[cfg(target_os = "windows")] 36 | async fn windows_main() -> AppStartResult { 37 | Ok(()) 38 | } 39 | 40 | #[cfg(target_os = "macos")] 41 | async fn macos_main() -> AppStartResult { 42 | Ok(()) 43 | } 44 | 45 | #[cfg(all( 46 | target_family = "unix", 47 | not(any(target_os = "ios", target_os = "macos")) 48 | ))] 49 | async fn unix_main() -> AppStartResult { 50 | Ok(()) 51 | } 52 | 53 | #[tokio::main] 54 | async fn main() -> Result<()> { 55 | #[cfg(target_os = "windows")] 56 | windows_main().await.context("Initialization error?")?; 57 | 58 | #[cfg(target_os = "macos")] 59 | macos_main().await.context("Initialization error?")?; 60 | 61 | #[cfg(all( 62 | target_family = "unix", 63 | not(any(target_os = "ios", target_os = "macos")) 64 | ))] 65 | unix_main().await.context("Initialization error?")?; 66 | 67 | Ok(()) 68 | } 69 | -------------------------------------------------------------------------------- /src/core/Cargo.toml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | [package] 6 | name = "rawrwm-core" 7 | version = "0.1.0" 8 | authors = ["Dom Rodriguez "] 9 | edition = "2021" 10 | 11 | [dependencies] 12 | anyhow = "1.0.72" 13 | dirs = "5.0.1" 14 | env_logger = "0.10.0" 15 | futures = "0.3.28" 16 | jsonrpc = { version = "0.16.0", default-features = false, features = ["base64"] } 17 | jsonrpc-core-client = { version = "18.0.0", features = ["ipc"] } 18 | jsonrpc-ipc-server = "18.0.0" 19 | log = "0.4.19" 20 | rawrwm-backends = { path = "../backends" } 21 | serde = { version = "1.0.177", features = ["derive"] } 22 | thiserror = "1.0.44" 23 | tokio = { version = "1.29.1", features = ["full", "io-util", "net", "rt", "time", "sync"], default-features = false } 24 | -------------------------------------------------------------------------------- /src/core/src/lib.rs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 The RawrWM Developers 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | 5 | //! Core (shared) crate for `RawrWM`. 6 | #![deny( 7 | warnings, 8 | missing_copy_implementations, 9 | missing_debug_implementations, 10 | missing_docs, 11 | clippy::all, 12 | clippy::cargo, 13 | trivial_casts, 14 | trivial_numeric_casts, 15 | unsafe_code, 16 | unused_import_braces, 17 | unused_qualifications, 18 | unused_extern_crates, 19 | variant_size_differences 20 | )] 21 | 22 | pub mod reexports { 23 | //! Re-exports of RawrWM components. 24 | pub use anyhow; 25 | pub use dirs; 26 | pub use jsonrpc; 27 | pub use jsonrpc_core_client; 28 | pub use jsonrpc_ipc_server; 29 | pub use rawrwm_backends as backends; 30 | pub use serde; 31 | pub use thiserror; 32 | pub use tokio; 33 | } 34 | --------------------------------------------------------------------------------