├── .github └── workflows │ └── build.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── build.rs ├── dist └── 1.txt ├── icons ├── 128x128.png ├── 128x128@2x.png ├── 32x32.png ├── Square107x107Logo.png ├── Square142x142Logo.png ├── Square150x150Logo.png ├── Square284x284Logo.png ├── Square30x30Logo.png ├── Square310x310Logo.png ├── Square44x44Logo.png ├── Square71x71Logo.png ├── Square89x89Logo.png ├── StoreLogo.png ├── icon.icns ├── icon.ico ├── icon.png └── src.png ├── readme.md ├── readme_files └── 1.png ├── src └── main.rs └── tauri.conf.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build Tauri App 2 | 3 | on: 4 | push: 5 | branches: [ "main" ] 6 | pull_request: 7 | branches: [ "main" ] 8 | env: 9 | CARGO_TERM_COLOR: always 10 | 11 | jobs: 12 | build_macos: 13 | runs-on: macos-latest 14 | steps: 15 | - uses: actions/checkout@v3 16 | - name: Install Rust 17 | run: | 18 | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y 19 | echo "$HOME/.cargo/bin" >> $GITHUB_PATH 20 | - name: Build Tauri App (x86_64) 21 | run: | 22 | cargo install tauri-cli 23 | cargo tauri build 24 | - name: Upload build artifact 25 | uses: actions/upload-artifact@v3 26 | with: 27 | name: tauri-claude_0.1.0_x64.dmg 28 | path: target/release/bundle/dmg/tauri-claude_0.1.0_x64.dmg 29 | 30 | build_macos_m2: 31 | runs-on: macos-latest 32 | steps: 33 | - uses: actions/checkout@v3 34 | - name: Install Rust and target for ARM64 35 | run: | 36 | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y 37 | echo "$HOME/.cargo/bin" >> $GITHUB_PATH 38 | rustup target add aarch64-apple-darwin 39 | - name: Build Tauri App (ARM64) 40 | run: | 41 | cargo install tauri-cli 42 | cargo tauri build --target aarch64-apple-darwin 43 | - name: Upload build artifact 44 | uses: actions/upload-artifact@v3 45 | with: 46 | name: tauri-claude_0.1.0_aarch64.dmg 47 | path: target/aarch64-apple-darwin/release/bundle/dmg/tauri-claude_0.1.0_aarch64.dmg 48 | 49 | # build_ubuntu: 50 | # runs-on: ubuntu-latest 51 | # steps: 52 | # - uses: actions/checkout@v3 53 | # - name: Install GTK+ 3 54 | # run: | 55 | # sudo apt-get update && sudo apt-get install -y libgtk-3-dev libsoup2.4-dev 56 | 57 | # - name: Install Rust 58 | # run: | 59 | # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y 60 | # echo "$HOME/.cargo/bin" >> $GITHUB_PATH 61 | # - name: Build Tauri App 62 | # run: | 63 | # cargo install tauri-cli 64 | # cargo tauri build 65 | # - name: Upload build artifact 66 | # uses: actions/upload-artifact@v3 67 | # with: 68 | # name: tauri-claude-ubuntu 69 | # path: target/release/bundle 70 | 71 | build_windows: 72 | runs-on: windows-latest 73 | steps: 74 | - uses: actions/checkout@v3 75 | - name: Install Rust 76 | run: | 77 | choco install rustup.install 78 | echo "$HOME/.cargo/bin" >> $GITHUB_PATH 79 | echo "$USERPROFILE\\.cargo\\bin" >> $GITHUB_PATH 80 | - name: Build Tauri App 81 | run: | 82 | cargo install tauri-cli 83 | cargo tauri build 84 | - name: Upload build artifact 85 | uses: actions/upload-artifact@v3 86 | with: 87 | name: tauri-claude_0.1.0_x64_en-US.msi 88 | path: target/release/bundle/msi/tauri-claude_0.1.0_x64_en-US.msi 89 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### Eclipse template 2 | *.pydevproject 3 | .metadata 4 | .gradle* 5 | classes/ 6 | bin/ 7 | tmp/ 8 | *.tmp 9 | *.bak 10 | *.swp 11 | *~.nib 12 | local.properties 13 | .settings/ 14 | .loadpath 15 | rebel.xml 16 | 17 | # Eclipse Core 18 | .project 19 | 20 | generatedsources 21 | 22 | # External tool builders 23 | .externalToolBuilders/ 24 | 25 | # Locally stored "Eclipse launch configurations" 26 | *.launch 27 | 28 | # CDT-specific 29 | .cproject 30 | 31 | # JDT-specific (Eclipse Java Development Tools) 32 | .classpath 33 | 34 | # PDT-specific 35 | .buildpath 36 | 37 | # sbteclipse plugin 38 | .target 39 | 40 | # TeXlipse plugin 41 | .texlipse 42 | 43 | 44 | 45 | ### JetBrains template 46 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm 47 | 48 | *.iml 49 | .flattened-pom.xml 50 | ## Directory-based project format: 51 | .idea/ 52 | # if you remove the above rule, at least ignore the following: 53 | 54 | # User-specific stuff: 55 | # .idea/workspace.xml 56 | # .idea/tasks.xml 57 | # .idea/dictionaries 58 | 59 | # Sensitive or high-churn files: 60 | # .idea/dataSources.ids 61 | # .idea/dataSources.xml 62 | # .idea/sqlDataSources.xml 63 | # .idea/dynamic.xml 64 | # .idea/uiDesigner.xml 65 | 66 | # Gradle: 67 | # .idea/gradle.xml 68 | # .idea/libraries 69 | 70 | # Mongo Explorer plugin: 71 | # .idea/mongoSettings.xml 72 | 73 | ## File-based project format: 74 | *.ipr 75 | *.iws 76 | 77 | ## Plugin-specific files: 78 | 79 | # IntelliJ 80 | /out/ 81 | 82 | # mpeltonen/sbt-idea plugin 83 | .idea_modules/ 84 | 85 | # JIRA plugin 86 | atlassian-ide-plugin.xml 87 | 88 | # Crashlytics plugin (for Android Studio and IntelliJ) 89 | com_crashlytics_export_strings.xml 90 | crashlytics.properties 91 | crashlytics-build.properties 92 | 93 | build/ 94 | 95 | # Ignore Gradle GUI config 96 | gradle-app.setting 97 | 98 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 99 | !gradle-wrapper.jar 100 | 101 | db 102 | 103 | ### Java template 104 | *.class 105 | 106 | # Mobile Tools for Java (J2ME) 107 | .mtj.tmp/ 108 | 109 | # Package Files # 110 | #*.jar 111 | 112 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 113 | hs_err_pid* 114 | 115 | 116 | ### Leiningen template 117 | target/ 118 | logs/ 119 | checkouts/ 120 | .lein-deps-sum 121 | .lein-repl-history 122 | .lein-plugins/ 123 | .lein-failures 124 | .nrepl-port 125 | 126 | querydsl/ 127 | 128 | .DS_Store 129 | 130 | *.log 131 | node_modules/ 132 | dist.zip 133 | package-lock.json -------------------------------------------------------------------------------- /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 = "adler" 7 | version = "1.0.2" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 | 11 | [[package]] 12 | name = "aho-corasick" 13 | version = "0.7.20" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16 | dependencies = [ 17 | "memchr", 18 | ] 19 | 20 | [[package]] 21 | name = "aho-corasick" 22 | version = "1.0.1" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 25 | dependencies = [ 26 | "memchr", 27 | ] 28 | 29 | [[package]] 30 | name = "alloc-no-stdlib" 31 | version = "2.0.4" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 34 | 35 | [[package]] 36 | name = "alloc-stdlib" 37 | version = "0.2.2" 38 | source = "registry+https://github.com/rust-lang/crates.io-index" 39 | checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 40 | dependencies = [ 41 | "alloc-no-stdlib", 42 | ] 43 | 44 | [[package]] 45 | name = "android_system_properties" 46 | version = "0.1.5" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 49 | dependencies = [ 50 | "libc", 51 | ] 52 | 53 | [[package]] 54 | name = "anyhow" 55 | version = "1.0.71" 56 | source = "registry+https://github.com/rust-lang/crates.io-index" 57 | checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 58 | 59 | [[package]] 60 | name = "app" 61 | version = "0.1.0" 62 | dependencies = [ 63 | "serde", 64 | "serde_json", 65 | "tauri", 66 | "tauri-build", 67 | ] 68 | 69 | [[package]] 70 | name = "atk" 71 | version = "0.15.1" 72 | source = "registry+https://github.com/rust-lang/crates.io-index" 73 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 74 | dependencies = [ 75 | "atk-sys", 76 | "bitflags", 77 | "glib", 78 | "libc", 79 | ] 80 | 81 | [[package]] 82 | name = "atk-sys" 83 | version = "0.15.1" 84 | source = "registry+https://github.com/rust-lang/crates.io-index" 85 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 86 | dependencies = [ 87 | "glib-sys", 88 | "gobject-sys", 89 | "libc", 90 | "system-deps 6.0.5", 91 | ] 92 | 93 | [[package]] 94 | name = "autocfg" 95 | version = "1.1.0" 96 | source = "registry+https://github.com/rust-lang/crates.io-index" 97 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 98 | 99 | [[package]] 100 | name = "base64" 101 | version = "0.13.1" 102 | source = "registry+https://github.com/rust-lang/crates.io-index" 103 | checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 104 | 105 | [[package]] 106 | name = "base64" 107 | version = "0.21.0" 108 | source = "registry+https://github.com/rust-lang/crates.io-index" 109 | checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 110 | 111 | [[package]] 112 | name = "bitflags" 113 | version = "1.3.2" 114 | source = "registry+https://github.com/rust-lang/crates.io-index" 115 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 116 | 117 | [[package]] 118 | name = "block" 119 | version = "0.1.6" 120 | source = "registry+https://github.com/rust-lang/crates.io-index" 121 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 122 | 123 | [[package]] 124 | name = "block-buffer" 125 | version = "0.10.4" 126 | source = "registry+https://github.com/rust-lang/crates.io-index" 127 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 128 | dependencies = [ 129 | "generic-array", 130 | ] 131 | 132 | [[package]] 133 | name = "brotli" 134 | version = "3.3.4" 135 | source = "registry+https://github.com/rust-lang/crates.io-index" 136 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 137 | dependencies = [ 138 | "alloc-no-stdlib", 139 | "alloc-stdlib", 140 | "brotli-decompressor", 141 | ] 142 | 143 | [[package]] 144 | name = "brotli-decompressor" 145 | version = "2.3.4" 146 | source = "registry+https://github.com/rust-lang/crates.io-index" 147 | checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 148 | dependencies = [ 149 | "alloc-no-stdlib", 150 | "alloc-stdlib", 151 | ] 152 | 153 | [[package]] 154 | name = "bstr" 155 | version = "1.4.0" 156 | source = "registry+https://github.com/rust-lang/crates.io-index" 157 | checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 158 | dependencies = [ 159 | "memchr", 160 | "serde", 161 | ] 162 | 163 | [[package]] 164 | name = "bumpalo" 165 | version = "3.12.1" 166 | source = "registry+https://github.com/rust-lang/crates.io-index" 167 | checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" 168 | 169 | [[package]] 170 | name = "bytemuck" 171 | version = "1.13.1" 172 | source = "registry+https://github.com/rust-lang/crates.io-index" 173 | checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 174 | 175 | [[package]] 176 | name = "byteorder" 177 | version = "1.4.3" 178 | source = "registry+https://github.com/rust-lang/crates.io-index" 179 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 180 | 181 | [[package]] 182 | name = "bytes" 183 | version = "1.4.0" 184 | source = "registry+https://github.com/rust-lang/crates.io-index" 185 | checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 186 | 187 | [[package]] 188 | name = "cairo-rs" 189 | version = "0.15.12" 190 | source = "registry+https://github.com/rust-lang/crates.io-index" 191 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 192 | dependencies = [ 193 | "bitflags", 194 | "cairo-sys-rs", 195 | "glib", 196 | "libc", 197 | "thiserror", 198 | ] 199 | 200 | [[package]] 201 | name = "cairo-sys-rs" 202 | version = "0.15.1" 203 | source = "registry+https://github.com/rust-lang/crates.io-index" 204 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 205 | dependencies = [ 206 | "glib-sys", 207 | "libc", 208 | "system-deps 6.0.5", 209 | ] 210 | 211 | [[package]] 212 | name = "cargo_toml" 213 | version = "0.15.2" 214 | source = "registry+https://github.com/rust-lang/crates.io-index" 215 | checksum = "7f83bc2e401ed041b7057345ebc488c005efa0341d5541ce7004d30458d0090b" 216 | dependencies = [ 217 | "serde", 218 | "toml 0.7.3", 219 | ] 220 | 221 | [[package]] 222 | name = "cc" 223 | version = "1.0.79" 224 | source = "registry+https://github.com/rust-lang/crates.io-index" 225 | checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 226 | 227 | [[package]] 228 | name = "cesu8" 229 | version = "1.1.0" 230 | source = "registry+https://github.com/rust-lang/crates.io-index" 231 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 232 | 233 | [[package]] 234 | name = "cfb" 235 | version = "0.7.3" 236 | source = "registry+https://github.com/rust-lang/crates.io-index" 237 | checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 238 | dependencies = [ 239 | "byteorder", 240 | "fnv", 241 | "uuid", 242 | ] 243 | 244 | [[package]] 245 | name = "cfg-expr" 246 | version = "0.9.1" 247 | source = "registry+https://github.com/rust-lang/crates.io-index" 248 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 249 | dependencies = [ 250 | "smallvec", 251 | ] 252 | 253 | [[package]] 254 | name = "cfg-expr" 255 | version = "0.15.1" 256 | source = "registry+https://github.com/rust-lang/crates.io-index" 257 | checksum = "c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9" 258 | dependencies = [ 259 | "smallvec", 260 | "target-lexicon", 261 | ] 262 | 263 | [[package]] 264 | name = "cfg-if" 265 | version = "1.0.0" 266 | source = "registry+https://github.com/rust-lang/crates.io-index" 267 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 268 | 269 | [[package]] 270 | name = "chrono" 271 | version = "0.4.24" 272 | source = "registry+https://github.com/rust-lang/crates.io-index" 273 | checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 274 | dependencies = [ 275 | "iana-time-zone", 276 | "num-integer", 277 | "num-traits", 278 | "serde", 279 | "winapi", 280 | ] 281 | 282 | [[package]] 283 | name = "cocoa" 284 | version = "0.24.1" 285 | source = "registry+https://github.com/rust-lang/crates.io-index" 286 | checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 287 | dependencies = [ 288 | "bitflags", 289 | "block", 290 | "cocoa-foundation", 291 | "core-foundation", 292 | "core-graphics", 293 | "foreign-types", 294 | "libc", 295 | "objc", 296 | ] 297 | 298 | [[package]] 299 | name = "cocoa-foundation" 300 | version = "0.1.1" 301 | source = "registry+https://github.com/rust-lang/crates.io-index" 302 | checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 303 | dependencies = [ 304 | "bitflags", 305 | "block", 306 | "core-foundation", 307 | "core-graphics-types", 308 | "foreign-types", 309 | "libc", 310 | "objc", 311 | ] 312 | 313 | [[package]] 314 | name = "codespan-reporting" 315 | version = "0.11.1" 316 | source = "registry+https://github.com/rust-lang/crates.io-index" 317 | checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 318 | dependencies = [ 319 | "termcolor", 320 | "unicode-width", 321 | ] 322 | 323 | [[package]] 324 | name = "color_quant" 325 | version = "1.1.0" 326 | source = "registry+https://github.com/rust-lang/crates.io-index" 327 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 328 | 329 | [[package]] 330 | name = "combine" 331 | version = "4.6.6" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 334 | dependencies = [ 335 | "bytes", 336 | "memchr", 337 | ] 338 | 339 | [[package]] 340 | name = "convert_case" 341 | version = "0.4.0" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 344 | 345 | [[package]] 346 | name = "core-foundation" 347 | version = "0.9.3" 348 | source = "registry+https://github.com/rust-lang/crates.io-index" 349 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 350 | dependencies = [ 351 | "core-foundation-sys", 352 | "libc", 353 | ] 354 | 355 | [[package]] 356 | name = "core-foundation-sys" 357 | version = "0.8.4" 358 | source = "registry+https://github.com/rust-lang/crates.io-index" 359 | checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 360 | 361 | [[package]] 362 | name = "core-graphics" 363 | version = "0.22.3" 364 | source = "registry+https://github.com/rust-lang/crates.io-index" 365 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 366 | dependencies = [ 367 | "bitflags", 368 | "core-foundation", 369 | "core-graphics-types", 370 | "foreign-types", 371 | "libc", 372 | ] 373 | 374 | [[package]] 375 | name = "core-graphics-types" 376 | version = "0.1.1" 377 | source = "registry+https://github.com/rust-lang/crates.io-index" 378 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 379 | dependencies = [ 380 | "bitflags", 381 | "core-foundation", 382 | "foreign-types", 383 | "libc", 384 | ] 385 | 386 | [[package]] 387 | name = "cpufeatures" 388 | version = "0.2.7" 389 | source = "registry+https://github.com/rust-lang/crates.io-index" 390 | checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 391 | dependencies = [ 392 | "libc", 393 | ] 394 | 395 | [[package]] 396 | name = "crc32fast" 397 | version = "1.3.2" 398 | source = "registry+https://github.com/rust-lang/crates.io-index" 399 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 400 | dependencies = [ 401 | "cfg-if", 402 | ] 403 | 404 | [[package]] 405 | name = "crossbeam-channel" 406 | version = "0.5.8" 407 | source = "registry+https://github.com/rust-lang/crates.io-index" 408 | checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 409 | dependencies = [ 410 | "cfg-if", 411 | "crossbeam-utils", 412 | ] 413 | 414 | [[package]] 415 | name = "crossbeam-utils" 416 | version = "0.8.15" 417 | source = "registry+https://github.com/rust-lang/crates.io-index" 418 | checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 419 | dependencies = [ 420 | "cfg-if", 421 | ] 422 | 423 | [[package]] 424 | name = "crypto-common" 425 | version = "0.1.6" 426 | source = "registry+https://github.com/rust-lang/crates.io-index" 427 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 428 | dependencies = [ 429 | "generic-array", 430 | "typenum", 431 | ] 432 | 433 | [[package]] 434 | name = "cssparser" 435 | version = "0.27.2" 436 | source = "registry+https://github.com/rust-lang/crates.io-index" 437 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 438 | dependencies = [ 439 | "cssparser-macros", 440 | "dtoa-short", 441 | "itoa 0.4.8", 442 | "matches", 443 | "phf 0.8.0", 444 | "proc-macro2", 445 | "quote", 446 | "smallvec", 447 | "syn 1.0.109", 448 | ] 449 | 450 | [[package]] 451 | name = "cssparser-macros" 452 | version = "0.6.0" 453 | source = "registry+https://github.com/rust-lang/crates.io-index" 454 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 455 | dependencies = [ 456 | "quote", 457 | "syn 1.0.109", 458 | ] 459 | 460 | [[package]] 461 | name = "ctor" 462 | version = "0.1.26" 463 | source = "registry+https://github.com/rust-lang/crates.io-index" 464 | checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 465 | dependencies = [ 466 | "quote", 467 | "syn 1.0.109", 468 | ] 469 | 470 | [[package]] 471 | name = "cty" 472 | version = "0.2.2" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 475 | 476 | [[package]] 477 | name = "cxx" 478 | version = "1.0.94" 479 | source = "registry+https://github.com/rust-lang/crates.io-index" 480 | checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" 481 | dependencies = [ 482 | "cc", 483 | "cxxbridge-flags", 484 | "cxxbridge-macro", 485 | "link-cplusplus", 486 | ] 487 | 488 | [[package]] 489 | name = "cxx-build" 490 | version = "1.0.94" 491 | source = "registry+https://github.com/rust-lang/crates.io-index" 492 | checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" 493 | dependencies = [ 494 | "cc", 495 | "codespan-reporting", 496 | "once_cell", 497 | "proc-macro2", 498 | "quote", 499 | "scratch", 500 | "syn 2.0.15", 501 | ] 502 | 503 | [[package]] 504 | name = "cxxbridge-flags" 505 | version = "1.0.94" 506 | source = "registry+https://github.com/rust-lang/crates.io-index" 507 | checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" 508 | 509 | [[package]] 510 | name = "cxxbridge-macro" 511 | version = "1.0.94" 512 | source = "registry+https://github.com/rust-lang/crates.io-index" 513 | checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" 514 | dependencies = [ 515 | "proc-macro2", 516 | "quote", 517 | "syn 2.0.15", 518 | ] 519 | 520 | [[package]] 521 | name = "darling" 522 | version = "0.20.1" 523 | source = "registry+https://github.com/rust-lang/crates.io-index" 524 | checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944" 525 | dependencies = [ 526 | "darling_core", 527 | "darling_macro", 528 | ] 529 | 530 | [[package]] 531 | name = "darling_core" 532 | version = "0.20.1" 533 | source = "registry+https://github.com/rust-lang/crates.io-index" 534 | checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb" 535 | dependencies = [ 536 | "fnv", 537 | "ident_case", 538 | "proc-macro2", 539 | "quote", 540 | "strsim", 541 | "syn 2.0.15", 542 | ] 543 | 544 | [[package]] 545 | name = "darling_macro" 546 | version = "0.20.1" 547 | source = "registry+https://github.com/rust-lang/crates.io-index" 548 | checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a" 549 | dependencies = [ 550 | "darling_core", 551 | "quote", 552 | "syn 2.0.15", 553 | ] 554 | 555 | [[package]] 556 | name = "derive_more" 557 | version = "0.99.17" 558 | source = "registry+https://github.com/rust-lang/crates.io-index" 559 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 560 | dependencies = [ 561 | "convert_case", 562 | "proc-macro2", 563 | "quote", 564 | "rustc_version", 565 | "syn 1.0.109", 566 | ] 567 | 568 | [[package]] 569 | name = "digest" 570 | version = "0.10.6" 571 | source = "registry+https://github.com/rust-lang/crates.io-index" 572 | checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 573 | dependencies = [ 574 | "block-buffer", 575 | "crypto-common", 576 | ] 577 | 578 | [[package]] 579 | name = "dirs-next" 580 | version = "2.0.0" 581 | source = "registry+https://github.com/rust-lang/crates.io-index" 582 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 583 | dependencies = [ 584 | "cfg-if", 585 | "dirs-sys-next", 586 | ] 587 | 588 | [[package]] 589 | name = "dirs-sys-next" 590 | version = "0.1.2" 591 | source = "registry+https://github.com/rust-lang/crates.io-index" 592 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 593 | dependencies = [ 594 | "libc", 595 | "redox_users", 596 | "winapi", 597 | ] 598 | 599 | [[package]] 600 | name = "dispatch" 601 | version = "0.2.0" 602 | source = "registry+https://github.com/rust-lang/crates.io-index" 603 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 604 | 605 | [[package]] 606 | name = "dtoa" 607 | version = "0.4.8" 608 | source = "registry+https://github.com/rust-lang/crates.io-index" 609 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 610 | 611 | [[package]] 612 | name = "dtoa-short" 613 | version = "0.3.3" 614 | source = "registry+https://github.com/rust-lang/crates.io-index" 615 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 616 | dependencies = [ 617 | "dtoa", 618 | ] 619 | 620 | [[package]] 621 | name = "dunce" 622 | version = "1.0.4" 623 | source = "registry+https://github.com/rust-lang/crates.io-index" 624 | checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 625 | 626 | [[package]] 627 | name = "embed_plist" 628 | version = "1.2.2" 629 | source = "registry+https://github.com/rust-lang/crates.io-index" 630 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 631 | 632 | [[package]] 633 | name = "encoding_rs" 634 | version = "0.8.32" 635 | source = "registry+https://github.com/rust-lang/crates.io-index" 636 | checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 637 | dependencies = [ 638 | "cfg-if", 639 | ] 640 | 641 | [[package]] 642 | name = "errno" 643 | version = "0.3.1" 644 | source = "registry+https://github.com/rust-lang/crates.io-index" 645 | checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 646 | dependencies = [ 647 | "errno-dragonfly", 648 | "libc", 649 | "windows-sys 0.48.0", 650 | ] 651 | 652 | [[package]] 653 | name = "errno-dragonfly" 654 | version = "0.1.2" 655 | source = "registry+https://github.com/rust-lang/crates.io-index" 656 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 657 | dependencies = [ 658 | "cc", 659 | "libc", 660 | ] 661 | 662 | [[package]] 663 | name = "fastrand" 664 | version = "1.9.0" 665 | source = "registry+https://github.com/rust-lang/crates.io-index" 666 | checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 667 | dependencies = [ 668 | "instant", 669 | ] 670 | 671 | [[package]] 672 | name = "fdeflate" 673 | version = "0.3.0" 674 | source = "registry+https://github.com/rust-lang/crates.io-index" 675 | checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 676 | dependencies = [ 677 | "simd-adler32", 678 | ] 679 | 680 | [[package]] 681 | name = "field-offset" 682 | version = "0.3.5" 683 | source = "registry+https://github.com/rust-lang/crates.io-index" 684 | checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" 685 | dependencies = [ 686 | "memoffset", 687 | "rustc_version", 688 | ] 689 | 690 | [[package]] 691 | name = "filetime" 692 | version = "0.2.21" 693 | source = "registry+https://github.com/rust-lang/crates.io-index" 694 | checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 695 | dependencies = [ 696 | "cfg-if", 697 | "libc", 698 | "redox_syscall 0.2.16", 699 | "windows-sys 0.48.0", 700 | ] 701 | 702 | [[package]] 703 | name = "flate2" 704 | version = "1.0.26" 705 | source = "registry+https://github.com/rust-lang/crates.io-index" 706 | checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 707 | dependencies = [ 708 | "crc32fast", 709 | "miniz_oxide", 710 | ] 711 | 712 | [[package]] 713 | name = "fnv" 714 | version = "1.0.7" 715 | source = "registry+https://github.com/rust-lang/crates.io-index" 716 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 717 | 718 | [[package]] 719 | name = "foreign-types" 720 | version = "0.3.2" 721 | source = "registry+https://github.com/rust-lang/crates.io-index" 722 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 723 | dependencies = [ 724 | "foreign-types-shared", 725 | ] 726 | 727 | [[package]] 728 | name = "foreign-types-shared" 729 | version = "0.1.1" 730 | source = "registry+https://github.com/rust-lang/crates.io-index" 731 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 732 | 733 | [[package]] 734 | name = "form_urlencoded" 735 | version = "1.1.0" 736 | source = "registry+https://github.com/rust-lang/crates.io-index" 737 | checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 738 | dependencies = [ 739 | "percent-encoding", 740 | ] 741 | 742 | [[package]] 743 | name = "futf" 744 | version = "0.1.5" 745 | source = "registry+https://github.com/rust-lang/crates.io-index" 746 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 747 | dependencies = [ 748 | "mac", 749 | "new_debug_unreachable", 750 | ] 751 | 752 | [[package]] 753 | name = "futures-channel" 754 | version = "0.3.28" 755 | source = "registry+https://github.com/rust-lang/crates.io-index" 756 | checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 757 | dependencies = [ 758 | "futures-core", 759 | ] 760 | 761 | [[package]] 762 | name = "futures-core" 763 | version = "0.3.28" 764 | source = "registry+https://github.com/rust-lang/crates.io-index" 765 | checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 766 | 767 | [[package]] 768 | name = "futures-executor" 769 | version = "0.3.28" 770 | source = "registry+https://github.com/rust-lang/crates.io-index" 771 | checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 772 | dependencies = [ 773 | "futures-core", 774 | "futures-task", 775 | "futures-util", 776 | ] 777 | 778 | [[package]] 779 | name = "futures-io" 780 | version = "0.3.28" 781 | source = "registry+https://github.com/rust-lang/crates.io-index" 782 | checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 783 | 784 | [[package]] 785 | name = "futures-macro" 786 | version = "0.3.28" 787 | source = "registry+https://github.com/rust-lang/crates.io-index" 788 | checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 789 | dependencies = [ 790 | "proc-macro2", 791 | "quote", 792 | "syn 2.0.15", 793 | ] 794 | 795 | [[package]] 796 | name = "futures-task" 797 | version = "0.3.28" 798 | source = "registry+https://github.com/rust-lang/crates.io-index" 799 | checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 800 | 801 | [[package]] 802 | name = "futures-util" 803 | version = "0.3.28" 804 | source = "registry+https://github.com/rust-lang/crates.io-index" 805 | checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 806 | dependencies = [ 807 | "futures-core", 808 | "futures-macro", 809 | "futures-task", 810 | "pin-project-lite", 811 | "pin-utils", 812 | "slab", 813 | ] 814 | 815 | [[package]] 816 | name = "fxhash" 817 | version = "0.2.1" 818 | source = "registry+https://github.com/rust-lang/crates.io-index" 819 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 820 | dependencies = [ 821 | "byteorder", 822 | ] 823 | 824 | [[package]] 825 | name = "gdk" 826 | version = "0.15.4" 827 | source = "registry+https://github.com/rust-lang/crates.io-index" 828 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 829 | dependencies = [ 830 | "bitflags", 831 | "cairo-rs", 832 | "gdk-pixbuf", 833 | "gdk-sys", 834 | "gio", 835 | "glib", 836 | "libc", 837 | "pango", 838 | ] 839 | 840 | [[package]] 841 | name = "gdk-pixbuf" 842 | version = "0.15.11" 843 | source = "registry+https://github.com/rust-lang/crates.io-index" 844 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 845 | dependencies = [ 846 | "bitflags", 847 | "gdk-pixbuf-sys", 848 | "gio", 849 | "glib", 850 | "libc", 851 | ] 852 | 853 | [[package]] 854 | name = "gdk-pixbuf-sys" 855 | version = "0.15.10" 856 | source = "registry+https://github.com/rust-lang/crates.io-index" 857 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 858 | dependencies = [ 859 | "gio-sys", 860 | "glib-sys", 861 | "gobject-sys", 862 | "libc", 863 | "system-deps 6.0.5", 864 | ] 865 | 866 | [[package]] 867 | name = "gdk-sys" 868 | version = "0.15.1" 869 | source = "registry+https://github.com/rust-lang/crates.io-index" 870 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 871 | dependencies = [ 872 | "cairo-sys-rs", 873 | "gdk-pixbuf-sys", 874 | "gio-sys", 875 | "glib-sys", 876 | "gobject-sys", 877 | "libc", 878 | "pango-sys", 879 | "pkg-config", 880 | "system-deps 6.0.5", 881 | ] 882 | 883 | [[package]] 884 | name = "gdkx11-sys" 885 | version = "0.15.1" 886 | source = "registry+https://github.com/rust-lang/crates.io-index" 887 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 888 | dependencies = [ 889 | "gdk-sys", 890 | "glib-sys", 891 | "libc", 892 | "system-deps 6.0.5", 893 | "x11", 894 | ] 895 | 896 | [[package]] 897 | name = "generator" 898 | version = "0.7.4" 899 | source = "registry+https://github.com/rust-lang/crates.io-index" 900 | checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a" 901 | dependencies = [ 902 | "cc", 903 | "libc", 904 | "log", 905 | "rustversion", 906 | "windows 0.48.0", 907 | ] 908 | 909 | [[package]] 910 | name = "generic-array" 911 | version = "0.14.7" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 914 | dependencies = [ 915 | "typenum", 916 | "version_check", 917 | ] 918 | 919 | [[package]] 920 | name = "getrandom" 921 | version = "0.1.16" 922 | source = "registry+https://github.com/rust-lang/crates.io-index" 923 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 924 | dependencies = [ 925 | "cfg-if", 926 | "libc", 927 | "wasi 0.9.0+wasi-snapshot-preview1", 928 | ] 929 | 930 | [[package]] 931 | name = "getrandom" 932 | version = "0.2.9" 933 | source = "registry+https://github.com/rust-lang/crates.io-index" 934 | checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 935 | dependencies = [ 936 | "cfg-if", 937 | "libc", 938 | "wasi 0.11.0+wasi-snapshot-preview1", 939 | ] 940 | 941 | [[package]] 942 | name = "gio" 943 | version = "0.15.12" 944 | source = "registry+https://github.com/rust-lang/crates.io-index" 945 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 946 | dependencies = [ 947 | "bitflags", 948 | "futures-channel", 949 | "futures-core", 950 | "futures-io", 951 | "gio-sys", 952 | "glib", 953 | "libc", 954 | "once_cell", 955 | "thiserror", 956 | ] 957 | 958 | [[package]] 959 | name = "gio-sys" 960 | version = "0.15.10" 961 | source = "registry+https://github.com/rust-lang/crates.io-index" 962 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 963 | dependencies = [ 964 | "glib-sys", 965 | "gobject-sys", 966 | "libc", 967 | "system-deps 6.0.5", 968 | "winapi", 969 | ] 970 | 971 | [[package]] 972 | name = "glib" 973 | version = "0.15.12" 974 | source = "registry+https://github.com/rust-lang/crates.io-index" 975 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 976 | dependencies = [ 977 | "bitflags", 978 | "futures-channel", 979 | "futures-core", 980 | "futures-executor", 981 | "futures-task", 982 | "glib-macros", 983 | "glib-sys", 984 | "gobject-sys", 985 | "libc", 986 | "once_cell", 987 | "smallvec", 988 | "thiserror", 989 | ] 990 | 991 | [[package]] 992 | name = "glib-macros" 993 | version = "0.15.13" 994 | source = "registry+https://github.com/rust-lang/crates.io-index" 995 | checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a" 996 | dependencies = [ 997 | "anyhow", 998 | "heck 0.4.1", 999 | "proc-macro-crate", 1000 | "proc-macro-error", 1001 | "proc-macro2", 1002 | "quote", 1003 | "syn 1.0.109", 1004 | ] 1005 | 1006 | [[package]] 1007 | name = "glib-sys" 1008 | version = "0.15.10" 1009 | source = "registry+https://github.com/rust-lang/crates.io-index" 1010 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1011 | dependencies = [ 1012 | "libc", 1013 | "system-deps 6.0.5", 1014 | ] 1015 | 1016 | [[package]] 1017 | name = "glob" 1018 | version = "0.3.1" 1019 | source = "registry+https://github.com/rust-lang/crates.io-index" 1020 | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1021 | 1022 | [[package]] 1023 | name = "globset" 1024 | version = "0.4.10" 1025 | source = "registry+https://github.com/rust-lang/crates.io-index" 1026 | checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 1027 | dependencies = [ 1028 | "aho-corasick 0.7.20", 1029 | "bstr", 1030 | "fnv", 1031 | "log", 1032 | "regex", 1033 | ] 1034 | 1035 | [[package]] 1036 | name = "gobject-sys" 1037 | version = "0.15.10" 1038 | source = "registry+https://github.com/rust-lang/crates.io-index" 1039 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1040 | dependencies = [ 1041 | "glib-sys", 1042 | "libc", 1043 | "system-deps 6.0.5", 1044 | ] 1045 | 1046 | [[package]] 1047 | name = "gtk" 1048 | version = "0.15.5" 1049 | source = "registry+https://github.com/rust-lang/crates.io-index" 1050 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1051 | dependencies = [ 1052 | "atk", 1053 | "bitflags", 1054 | "cairo-rs", 1055 | "field-offset", 1056 | "futures-channel", 1057 | "gdk", 1058 | "gdk-pixbuf", 1059 | "gio", 1060 | "glib", 1061 | "gtk-sys", 1062 | "gtk3-macros", 1063 | "libc", 1064 | "once_cell", 1065 | "pango", 1066 | "pkg-config", 1067 | ] 1068 | 1069 | [[package]] 1070 | name = "gtk-sys" 1071 | version = "0.15.3" 1072 | source = "registry+https://github.com/rust-lang/crates.io-index" 1073 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1074 | dependencies = [ 1075 | "atk-sys", 1076 | "cairo-sys-rs", 1077 | "gdk-pixbuf-sys", 1078 | "gdk-sys", 1079 | "gio-sys", 1080 | "glib-sys", 1081 | "gobject-sys", 1082 | "libc", 1083 | "pango-sys", 1084 | "system-deps 6.0.5", 1085 | ] 1086 | 1087 | [[package]] 1088 | name = "gtk3-macros" 1089 | version = "0.15.6" 1090 | source = "registry+https://github.com/rust-lang/crates.io-index" 1091 | checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d" 1092 | dependencies = [ 1093 | "anyhow", 1094 | "proc-macro-crate", 1095 | "proc-macro-error", 1096 | "proc-macro2", 1097 | "quote", 1098 | "syn 1.0.109", 1099 | ] 1100 | 1101 | [[package]] 1102 | name = "hashbrown" 1103 | version = "0.12.3" 1104 | source = "registry+https://github.com/rust-lang/crates.io-index" 1105 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1106 | 1107 | [[package]] 1108 | name = "heck" 1109 | version = "0.3.3" 1110 | source = "registry+https://github.com/rust-lang/crates.io-index" 1111 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1112 | dependencies = [ 1113 | "unicode-segmentation", 1114 | ] 1115 | 1116 | [[package]] 1117 | name = "heck" 1118 | version = "0.4.1" 1119 | source = "registry+https://github.com/rust-lang/crates.io-index" 1120 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1121 | 1122 | [[package]] 1123 | name = "hermit-abi" 1124 | version = "0.2.6" 1125 | source = "registry+https://github.com/rust-lang/crates.io-index" 1126 | checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1127 | dependencies = [ 1128 | "libc", 1129 | ] 1130 | 1131 | [[package]] 1132 | name = "hermit-abi" 1133 | version = "0.3.1" 1134 | source = "registry+https://github.com/rust-lang/crates.io-index" 1135 | checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1136 | 1137 | [[package]] 1138 | name = "hex" 1139 | version = "0.4.3" 1140 | source = "registry+https://github.com/rust-lang/crates.io-index" 1141 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1142 | 1143 | [[package]] 1144 | name = "html5ever" 1145 | version = "0.25.2" 1146 | source = "registry+https://github.com/rust-lang/crates.io-index" 1147 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1148 | dependencies = [ 1149 | "log", 1150 | "mac", 1151 | "markup5ever", 1152 | "proc-macro2", 1153 | "quote", 1154 | "syn 1.0.109", 1155 | ] 1156 | 1157 | [[package]] 1158 | name = "http" 1159 | version = "0.2.9" 1160 | source = "registry+https://github.com/rust-lang/crates.io-index" 1161 | checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1162 | dependencies = [ 1163 | "bytes", 1164 | "fnv", 1165 | "itoa 1.0.6", 1166 | ] 1167 | 1168 | [[package]] 1169 | name = "http-range" 1170 | version = "0.1.5" 1171 | source = "registry+https://github.com/rust-lang/crates.io-index" 1172 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1173 | 1174 | [[package]] 1175 | name = "iana-time-zone" 1176 | version = "0.1.56" 1177 | source = "registry+https://github.com/rust-lang/crates.io-index" 1178 | checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 1179 | dependencies = [ 1180 | "android_system_properties", 1181 | "core-foundation-sys", 1182 | "iana-time-zone-haiku", 1183 | "js-sys", 1184 | "wasm-bindgen", 1185 | "windows 0.48.0", 1186 | ] 1187 | 1188 | [[package]] 1189 | name = "iana-time-zone-haiku" 1190 | version = "0.1.1" 1191 | source = "registry+https://github.com/rust-lang/crates.io-index" 1192 | checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1193 | dependencies = [ 1194 | "cxx", 1195 | "cxx-build", 1196 | ] 1197 | 1198 | [[package]] 1199 | name = "ico" 1200 | version = "0.3.0" 1201 | source = "registry+https://github.com/rust-lang/crates.io-index" 1202 | checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" 1203 | dependencies = [ 1204 | "byteorder", 1205 | "png", 1206 | ] 1207 | 1208 | [[package]] 1209 | name = "ident_case" 1210 | version = "1.0.1" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1213 | 1214 | [[package]] 1215 | name = "idna" 1216 | version = "0.3.0" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1219 | dependencies = [ 1220 | "unicode-bidi", 1221 | "unicode-normalization", 1222 | ] 1223 | 1224 | [[package]] 1225 | name = "ignore" 1226 | version = "0.4.18" 1227 | source = "registry+https://github.com/rust-lang/crates.io-index" 1228 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1229 | dependencies = [ 1230 | "crossbeam-utils", 1231 | "globset", 1232 | "lazy_static", 1233 | "log", 1234 | "memchr", 1235 | "regex", 1236 | "same-file", 1237 | "thread_local", 1238 | "walkdir", 1239 | "winapi-util", 1240 | ] 1241 | 1242 | [[package]] 1243 | name = "image" 1244 | version = "0.24.6" 1245 | source = "registry+https://github.com/rust-lang/crates.io-index" 1246 | checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 1247 | dependencies = [ 1248 | "bytemuck", 1249 | "byteorder", 1250 | "color_quant", 1251 | "num-rational", 1252 | "num-traits", 1253 | ] 1254 | 1255 | [[package]] 1256 | name = "indexmap" 1257 | version = "1.9.3" 1258 | source = "registry+https://github.com/rust-lang/crates.io-index" 1259 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1260 | dependencies = [ 1261 | "autocfg", 1262 | "hashbrown", 1263 | "serde", 1264 | ] 1265 | 1266 | [[package]] 1267 | name = "infer" 1268 | version = "0.12.0" 1269 | source = "registry+https://github.com/rust-lang/crates.io-index" 1270 | checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 1271 | dependencies = [ 1272 | "cfb", 1273 | ] 1274 | 1275 | [[package]] 1276 | name = "instant" 1277 | version = "0.1.12" 1278 | source = "registry+https://github.com/rust-lang/crates.io-index" 1279 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1280 | dependencies = [ 1281 | "cfg-if", 1282 | ] 1283 | 1284 | [[package]] 1285 | name = "io-lifetimes" 1286 | version = "1.0.10" 1287 | source = "registry+https://github.com/rust-lang/crates.io-index" 1288 | checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 1289 | dependencies = [ 1290 | "hermit-abi 0.3.1", 1291 | "libc", 1292 | "windows-sys 0.48.0", 1293 | ] 1294 | 1295 | [[package]] 1296 | name = "itoa" 1297 | version = "0.4.8" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1300 | 1301 | [[package]] 1302 | name = "itoa" 1303 | version = "1.0.6" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1306 | 1307 | [[package]] 1308 | name = "javascriptcore-rs" 1309 | version = "0.16.0" 1310 | source = "registry+https://github.com/rust-lang/crates.io-index" 1311 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1312 | dependencies = [ 1313 | "bitflags", 1314 | "glib", 1315 | "javascriptcore-rs-sys", 1316 | ] 1317 | 1318 | [[package]] 1319 | name = "javascriptcore-rs-sys" 1320 | version = "0.4.0" 1321 | source = "registry+https://github.com/rust-lang/crates.io-index" 1322 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1323 | dependencies = [ 1324 | "glib-sys", 1325 | "gobject-sys", 1326 | "libc", 1327 | "system-deps 5.0.0", 1328 | ] 1329 | 1330 | [[package]] 1331 | name = "jni" 1332 | version = "0.20.0" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 1335 | dependencies = [ 1336 | "cesu8", 1337 | "combine", 1338 | "jni-sys", 1339 | "log", 1340 | "thiserror", 1341 | "walkdir", 1342 | ] 1343 | 1344 | [[package]] 1345 | name = "jni-sys" 1346 | version = "0.3.0" 1347 | source = "registry+https://github.com/rust-lang/crates.io-index" 1348 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1349 | 1350 | [[package]] 1351 | name = "js-sys" 1352 | version = "0.3.61" 1353 | source = "registry+https://github.com/rust-lang/crates.io-index" 1354 | checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1355 | dependencies = [ 1356 | "wasm-bindgen", 1357 | ] 1358 | 1359 | [[package]] 1360 | name = "json-patch" 1361 | version = "1.0.0" 1362 | source = "registry+https://github.com/rust-lang/crates.io-index" 1363 | checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658" 1364 | dependencies = [ 1365 | "serde", 1366 | "serde_json", 1367 | "thiserror", 1368 | "treediff", 1369 | ] 1370 | 1371 | [[package]] 1372 | name = "kuchiki" 1373 | version = "0.8.1" 1374 | source = "registry+https://github.com/rust-lang/crates.io-index" 1375 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1376 | dependencies = [ 1377 | "cssparser", 1378 | "html5ever", 1379 | "matches", 1380 | "selectors", 1381 | ] 1382 | 1383 | [[package]] 1384 | name = "lazy_static" 1385 | version = "1.4.0" 1386 | source = "registry+https://github.com/rust-lang/crates.io-index" 1387 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1388 | 1389 | [[package]] 1390 | name = "libc" 1391 | version = "0.2.142" 1392 | source = "registry+https://github.com/rust-lang/crates.io-index" 1393 | checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" 1394 | 1395 | [[package]] 1396 | name = "line-wrap" 1397 | version = "0.1.1" 1398 | source = "registry+https://github.com/rust-lang/crates.io-index" 1399 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1400 | dependencies = [ 1401 | "safemem", 1402 | ] 1403 | 1404 | [[package]] 1405 | name = "link-cplusplus" 1406 | version = "1.0.8" 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" 1408 | checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1409 | dependencies = [ 1410 | "cc", 1411 | ] 1412 | 1413 | [[package]] 1414 | name = "linux-raw-sys" 1415 | version = "0.3.6" 1416 | source = "registry+https://github.com/rust-lang/crates.io-index" 1417 | checksum = "b64f40e5e03e0d54f03845c8197d0291253cdbedfb1cb46b13c2c117554a9f4c" 1418 | 1419 | [[package]] 1420 | name = "lock_api" 1421 | version = "0.4.9" 1422 | source = "registry+https://github.com/rust-lang/crates.io-index" 1423 | checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1424 | dependencies = [ 1425 | "autocfg", 1426 | "scopeguard", 1427 | ] 1428 | 1429 | [[package]] 1430 | name = "log" 1431 | version = "0.4.17" 1432 | source = "registry+https://github.com/rust-lang/crates.io-index" 1433 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1434 | dependencies = [ 1435 | "cfg-if", 1436 | ] 1437 | 1438 | [[package]] 1439 | name = "loom" 1440 | version = "0.5.6" 1441 | source = "registry+https://github.com/rust-lang/crates.io-index" 1442 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1443 | dependencies = [ 1444 | "cfg-if", 1445 | "generator", 1446 | "scoped-tls", 1447 | "serde", 1448 | "serde_json", 1449 | "tracing", 1450 | "tracing-subscriber", 1451 | ] 1452 | 1453 | [[package]] 1454 | name = "mac" 1455 | version = "0.1.1" 1456 | source = "registry+https://github.com/rust-lang/crates.io-index" 1457 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1458 | 1459 | [[package]] 1460 | name = "malloc_buf" 1461 | version = "0.0.6" 1462 | source = "registry+https://github.com/rust-lang/crates.io-index" 1463 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1464 | dependencies = [ 1465 | "libc", 1466 | ] 1467 | 1468 | [[package]] 1469 | name = "markup5ever" 1470 | version = "0.10.1" 1471 | source = "registry+https://github.com/rust-lang/crates.io-index" 1472 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1473 | dependencies = [ 1474 | "log", 1475 | "phf 0.8.0", 1476 | "phf_codegen", 1477 | "string_cache", 1478 | "string_cache_codegen", 1479 | "tendril", 1480 | ] 1481 | 1482 | [[package]] 1483 | name = "matchers" 1484 | version = "0.1.0" 1485 | source = "registry+https://github.com/rust-lang/crates.io-index" 1486 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1487 | dependencies = [ 1488 | "regex-automata", 1489 | ] 1490 | 1491 | [[package]] 1492 | name = "matches" 1493 | version = "0.1.10" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1496 | 1497 | [[package]] 1498 | name = "memchr" 1499 | version = "2.5.0" 1500 | source = "registry+https://github.com/rust-lang/crates.io-index" 1501 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1502 | 1503 | [[package]] 1504 | name = "memoffset" 1505 | version = "0.8.0" 1506 | source = "registry+https://github.com/rust-lang/crates.io-index" 1507 | checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1508 | dependencies = [ 1509 | "autocfg", 1510 | ] 1511 | 1512 | [[package]] 1513 | name = "miniz_oxide" 1514 | version = "0.7.1" 1515 | source = "registry+https://github.com/rust-lang/crates.io-index" 1516 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1517 | dependencies = [ 1518 | "adler", 1519 | "simd-adler32", 1520 | ] 1521 | 1522 | [[package]] 1523 | name = "ndk" 1524 | version = "0.6.0" 1525 | source = "registry+https://github.com/rust-lang/crates.io-index" 1526 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1527 | dependencies = [ 1528 | "bitflags", 1529 | "jni-sys", 1530 | "ndk-sys", 1531 | "num_enum", 1532 | "thiserror", 1533 | ] 1534 | 1535 | [[package]] 1536 | name = "ndk-context" 1537 | version = "0.1.1" 1538 | source = "registry+https://github.com/rust-lang/crates.io-index" 1539 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1540 | 1541 | [[package]] 1542 | name = "ndk-sys" 1543 | version = "0.3.0" 1544 | source = "registry+https://github.com/rust-lang/crates.io-index" 1545 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1546 | dependencies = [ 1547 | "jni-sys", 1548 | ] 1549 | 1550 | [[package]] 1551 | name = "new_debug_unreachable" 1552 | version = "1.0.4" 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" 1554 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1555 | 1556 | [[package]] 1557 | name = "nodrop" 1558 | version = "0.1.14" 1559 | source = "registry+https://github.com/rust-lang/crates.io-index" 1560 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1561 | 1562 | [[package]] 1563 | name = "nu-ansi-term" 1564 | version = "0.46.0" 1565 | source = "registry+https://github.com/rust-lang/crates.io-index" 1566 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1567 | dependencies = [ 1568 | "overload", 1569 | "winapi", 1570 | ] 1571 | 1572 | [[package]] 1573 | name = "num-integer" 1574 | version = "0.1.45" 1575 | source = "registry+https://github.com/rust-lang/crates.io-index" 1576 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1577 | dependencies = [ 1578 | "autocfg", 1579 | "num-traits", 1580 | ] 1581 | 1582 | [[package]] 1583 | name = "num-rational" 1584 | version = "0.4.1" 1585 | source = "registry+https://github.com/rust-lang/crates.io-index" 1586 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1587 | dependencies = [ 1588 | "autocfg", 1589 | "num-integer", 1590 | "num-traits", 1591 | ] 1592 | 1593 | [[package]] 1594 | name = "num-traits" 1595 | version = "0.2.15" 1596 | source = "registry+https://github.com/rust-lang/crates.io-index" 1597 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1598 | dependencies = [ 1599 | "autocfg", 1600 | ] 1601 | 1602 | [[package]] 1603 | name = "num_cpus" 1604 | version = "1.15.0" 1605 | source = "registry+https://github.com/rust-lang/crates.io-index" 1606 | checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1607 | dependencies = [ 1608 | "hermit-abi 0.2.6", 1609 | "libc", 1610 | ] 1611 | 1612 | [[package]] 1613 | name = "num_enum" 1614 | version = "0.5.11" 1615 | source = "registry+https://github.com/rust-lang/crates.io-index" 1616 | checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 1617 | dependencies = [ 1618 | "num_enum_derive", 1619 | ] 1620 | 1621 | [[package]] 1622 | name = "num_enum_derive" 1623 | version = "0.5.11" 1624 | source = "registry+https://github.com/rust-lang/crates.io-index" 1625 | checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 1626 | dependencies = [ 1627 | "proc-macro-crate", 1628 | "proc-macro2", 1629 | "quote", 1630 | "syn 1.0.109", 1631 | ] 1632 | 1633 | [[package]] 1634 | name = "num_threads" 1635 | version = "0.1.6" 1636 | source = "registry+https://github.com/rust-lang/crates.io-index" 1637 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1638 | dependencies = [ 1639 | "libc", 1640 | ] 1641 | 1642 | [[package]] 1643 | name = "objc" 1644 | version = "0.2.7" 1645 | source = "registry+https://github.com/rust-lang/crates.io-index" 1646 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1647 | dependencies = [ 1648 | "malloc_buf", 1649 | "objc_exception", 1650 | ] 1651 | 1652 | [[package]] 1653 | name = "objc_exception" 1654 | version = "0.1.2" 1655 | source = "registry+https://github.com/rust-lang/crates.io-index" 1656 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1657 | dependencies = [ 1658 | "cc", 1659 | ] 1660 | 1661 | [[package]] 1662 | name = "objc_id" 1663 | version = "0.1.1" 1664 | source = "registry+https://github.com/rust-lang/crates.io-index" 1665 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1666 | dependencies = [ 1667 | "objc", 1668 | ] 1669 | 1670 | [[package]] 1671 | name = "once_cell" 1672 | version = "1.17.1" 1673 | source = "registry+https://github.com/rust-lang/crates.io-index" 1674 | checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1675 | 1676 | [[package]] 1677 | name = "overload" 1678 | version = "0.1.1" 1679 | source = "registry+https://github.com/rust-lang/crates.io-index" 1680 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1681 | 1682 | [[package]] 1683 | name = "pango" 1684 | version = "0.15.10" 1685 | source = "registry+https://github.com/rust-lang/crates.io-index" 1686 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1687 | dependencies = [ 1688 | "bitflags", 1689 | "glib", 1690 | "libc", 1691 | "once_cell", 1692 | "pango-sys", 1693 | ] 1694 | 1695 | [[package]] 1696 | name = "pango-sys" 1697 | version = "0.15.10" 1698 | source = "registry+https://github.com/rust-lang/crates.io-index" 1699 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1700 | dependencies = [ 1701 | "glib-sys", 1702 | "gobject-sys", 1703 | "libc", 1704 | "system-deps 6.0.5", 1705 | ] 1706 | 1707 | [[package]] 1708 | name = "parking_lot" 1709 | version = "0.12.1" 1710 | source = "registry+https://github.com/rust-lang/crates.io-index" 1711 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1712 | dependencies = [ 1713 | "lock_api", 1714 | "parking_lot_core", 1715 | ] 1716 | 1717 | [[package]] 1718 | name = "parking_lot_core" 1719 | version = "0.9.7" 1720 | source = "registry+https://github.com/rust-lang/crates.io-index" 1721 | checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1722 | dependencies = [ 1723 | "cfg-if", 1724 | "libc", 1725 | "redox_syscall 0.2.16", 1726 | "smallvec", 1727 | "windows-sys 0.45.0", 1728 | ] 1729 | 1730 | [[package]] 1731 | name = "percent-encoding" 1732 | version = "2.2.0" 1733 | source = "registry+https://github.com/rust-lang/crates.io-index" 1734 | checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1735 | 1736 | [[package]] 1737 | name = "phf" 1738 | version = "0.8.0" 1739 | source = "registry+https://github.com/rust-lang/crates.io-index" 1740 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1741 | dependencies = [ 1742 | "phf_macros 0.8.0", 1743 | "phf_shared 0.8.0", 1744 | "proc-macro-hack", 1745 | ] 1746 | 1747 | [[package]] 1748 | name = "phf" 1749 | version = "0.10.1" 1750 | source = "registry+https://github.com/rust-lang/crates.io-index" 1751 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1752 | dependencies = [ 1753 | "phf_macros 0.10.0", 1754 | "phf_shared 0.10.0", 1755 | "proc-macro-hack", 1756 | ] 1757 | 1758 | [[package]] 1759 | name = "phf_codegen" 1760 | version = "0.8.0" 1761 | source = "registry+https://github.com/rust-lang/crates.io-index" 1762 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1763 | dependencies = [ 1764 | "phf_generator 0.8.0", 1765 | "phf_shared 0.8.0", 1766 | ] 1767 | 1768 | [[package]] 1769 | name = "phf_generator" 1770 | version = "0.8.0" 1771 | source = "registry+https://github.com/rust-lang/crates.io-index" 1772 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1773 | dependencies = [ 1774 | "phf_shared 0.8.0", 1775 | "rand 0.7.3", 1776 | ] 1777 | 1778 | [[package]] 1779 | name = "phf_generator" 1780 | version = "0.10.0" 1781 | source = "registry+https://github.com/rust-lang/crates.io-index" 1782 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1783 | dependencies = [ 1784 | "phf_shared 0.10.0", 1785 | "rand 0.8.5", 1786 | ] 1787 | 1788 | [[package]] 1789 | name = "phf_macros" 1790 | version = "0.8.0" 1791 | source = "registry+https://github.com/rust-lang/crates.io-index" 1792 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1793 | dependencies = [ 1794 | "phf_generator 0.8.0", 1795 | "phf_shared 0.8.0", 1796 | "proc-macro-hack", 1797 | "proc-macro2", 1798 | "quote", 1799 | "syn 1.0.109", 1800 | ] 1801 | 1802 | [[package]] 1803 | name = "phf_macros" 1804 | version = "0.10.0" 1805 | source = "registry+https://github.com/rust-lang/crates.io-index" 1806 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1807 | dependencies = [ 1808 | "phf_generator 0.10.0", 1809 | "phf_shared 0.10.0", 1810 | "proc-macro-hack", 1811 | "proc-macro2", 1812 | "quote", 1813 | "syn 1.0.109", 1814 | ] 1815 | 1816 | [[package]] 1817 | name = "phf_shared" 1818 | version = "0.8.0" 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" 1820 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1821 | dependencies = [ 1822 | "siphasher", 1823 | ] 1824 | 1825 | [[package]] 1826 | name = "phf_shared" 1827 | version = "0.10.0" 1828 | source = "registry+https://github.com/rust-lang/crates.io-index" 1829 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1830 | dependencies = [ 1831 | "siphasher", 1832 | ] 1833 | 1834 | [[package]] 1835 | name = "pin-project-lite" 1836 | version = "0.2.9" 1837 | source = "registry+https://github.com/rust-lang/crates.io-index" 1838 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1839 | 1840 | [[package]] 1841 | name = "pin-utils" 1842 | version = "0.1.0" 1843 | source = "registry+https://github.com/rust-lang/crates.io-index" 1844 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1845 | 1846 | [[package]] 1847 | name = "pkg-config" 1848 | version = "0.3.27" 1849 | source = "registry+https://github.com/rust-lang/crates.io-index" 1850 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1851 | 1852 | [[package]] 1853 | name = "plist" 1854 | version = "1.4.3" 1855 | source = "registry+https://github.com/rust-lang/crates.io-index" 1856 | checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590" 1857 | dependencies = [ 1858 | "base64 0.21.0", 1859 | "indexmap", 1860 | "line-wrap", 1861 | "quick-xml", 1862 | "serde", 1863 | "time", 1864 | ] 1865 | 1866 | [[package]] 1867 | name = "png" 1868 | version = "0.17.8" 1869 | source = "registry+https://github.com/rust-lang/crates.io-index" 1870 | checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" 1871 | dependencies = [ 1872 | "bitflags", 1873 | "crc32fast", 1874 | "fdeflate", 1875 | "flate2", 1876 | "miniz_oxide", 1877 | ] 1878 | 1879 | [[package]] 1880 | name = "ppv-lite86" 1881 | version = "0.2.17" 1882 | source = "registry+https://github.com/rust-lang/crates.io-index" 1883 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1884 | 1885 | [[package]] 1886 | name = "precomputed-hash" 1887 | version = "0.1.1" 1888 | source = "registry+https://github.com/rust-lang/crates.io-index" 1889 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1890 | 1891 | [[package]] 1892 | name = "proc-macro-crate" 1893 | version = "1.3.1" 1894 | source = "registry+https://github.com/rust-lang/crates.io-index" 1895 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1896 | dependencies = [ 1897 | "once_cell", 1898 | "toml_edit", 1899 | ] 1900 | 1901 | [[package]] 1902 | name = "proc-macro-error" 1903 | version = "1.0.4" 1904 | source = "registry+https://github.com/rust-lang/crates.io-index" 1905 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1906 | dependencies = [ 1907 | "proc-macro-error-attr", 1908 | "proc-macro2", 1909 | "quote", 1910 | "syn 1.0.109", 1911 | "version_check", 1912 | ] 1913 | 1914 | [[package]] 1915 | name = "proc-macro-error-attr" 1916 | version = "1.0.4" 1917 | source = "registry+https://github.com/rust-lang/crates.io-index" 1918 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1919 | dependencies = [ 1920 | "proc-macro2", 1921 | "quote", 1922 | "version_check", 1923 | ] 1924 | 1925 | [[package]] 1926 | name = "proc-macro-hack" 1927 | version = "0.5.20+deprecated" 1928 | source = "registry+https://github.com/rust-lang/crates.io-index" 1929 | checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 1930 | 1931 | [[package]] 1932 | name = "proc-macro2" 1933 | version = "1.0.56" 1934 | source = "registry+https://github.com/rust-lang/crates.io-index" 1935 | checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1936 | dependencies = [ 1937 | "unicode-ident", 1938 | ] 1939 | 1940 | [[package]] 1941 | name = "quick-xml" 1942 | version = "0.28.2" 1943 | source = "registry+https://github.com/rust-lang/crates.io-index" 1944 | checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 1945 | dependencies = [ 1946 | "memchr", 1947 | ] 1948 | 1949 | [[package]] 1950 | name = "quote" 1951 | version = "1.0.26" 1952 | source = "registry+https://github.com/rust-lang/crates.io-index" 1953 | checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1954 | dependencies = [ 1955 | "proc-macro2", 1956 | ] 1957 | 1958 | [[package]] 1959 | name = "rand" 1960 | version = "0.7.3" 1961 | source = "registry+https://github.com/rust-lang/crates.io-index" 1962 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1963 | dependencies = [ 1964 | "getrandom 0.1.16", 1965 | "libc", 1966 | "rand_chacha 0.2.2", 1967 | "rand_core 0.5.1", 1968 | "rand_hc", 1969 | "rand_pcg", 1970 | ] 1971 | 1972 | [[package]] 1973 | name = "rand" 1974 | version = "0.8.5" 1975 | source = "registry+https://github.com/rust-lang/crates.io-index" 1976 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1977 | dependencies = [ 1978 | "libc", 1979 | "rand_chacha 0.3.1", 1980 | "rand_core 0.6.4", 1981 | ] 1982 | 1983 | [[package]] 1984 | name = "rand_chacha" 1985 | version = "0.2.2" 1986 | source = "registry+https://github.com/rust-lang/crates.io-index" 1987 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1988 | dependencies = [ 1989 | "ppv-lite86", 1990 | "rand_core 0.5.1", 1991 | ] 1992 | 1993 | [[package]] 1994 | name = "rand_chacha" 1995 | version = "0.3.1" 1996 | source = "registry+https://github.com/rust-lang/crates.io-index" 1997 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1998 | dependencies = [ 1999 | "ppv-lite86", 2000 | "rand_core 0.6.4", 2001 | ] 2002 | 2003 | [[package]] 2004 | name = "rand_core" 2005 | version = "0.5.1" 2006 | source = "registry+https://github.com/rust-lang/crates.io-index" 2007 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2008 | dependencies = [ 2009 | "getrandom 0.1.16", 2010 | ] 2011 | 2012 | [[package]] 2013 | name = "rand_core" 2014 | version = "0.6.4" 2015 | source = "registry+https://github.com/rust-lang/crates.io-index" 2016 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2017 | dependencies = [ 2018 | "getrandom 0.2.9", 2019 | ] 2020 | 2021 | [[package]] 2022 | name = "rand_hc" 2023 | version = "0.2.0" 2024 | source = "registry+https://github.com/rust-lang/crates.io-index" 2025 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2026 | dependencies = [ 2027 | "rand_core 0.5.1", 2028 | ] 2029 | 2030 | [[package]] 2031 | name = "rand_pcg" 2032 | version = "0.2.1" 2033 | source = "registry+https://github.com/rust-lang/crates.io-index" 2034 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2035 | dependencies = [ 2036 | "rand_core 0.5.1", 2037 | ] 2038 | 2039 | [[package]] 2040 | name = "raw-window-handle" 2041 | version = "0.5.0" 2042 | source = "registry+https://github.com/rust-lang/crates.io-index" 2043 | checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a" 2044 | dependencies = [ 2045 | "cty", 2046 | ] 2047 | 2048 | [[package]] 2049 | name = "redox_syscall" 2050 | version = "0.2.16" 2051 | source = "registry+https://github.com/rust-lang/crates.io-index" 2052 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2053 | dependencies = [ 2054 | "bitflags", 2055 | ] 2056 | 2057 | [[package]] 2058 | name = "redox_syscall" 2059 | version = "0.3.5" 2060 | source = "registry+https://github.com/rust-lang/crates.io-index" 2061 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2062 | dependencies = [ 2063 | "bitflags", 2064 | ] 2065 | 2066 | [[package]] 2067 | name = "redox_users" 2068 | version = "0.4.3" 2069 | source = "registry+https://github.com/rust-lang/crates.io-index" 2070 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2071 | dependencies = [ 2072 | "getrandom 0.2.9", 2073 | "redox_syscall 0.2.16", 2074 | "thiserror", 2075 | ] 2076 | 2077 | [[package]] 2078 | name = "regex" 2079 | version = "1.8.1" 2080 | source = "registry+https://github.com/rust-lang/crates.io-index" 2081 | checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 2082 | dependencies = [ 2083 | "aho-corasick 1.0.1", 2084 | "memchr", 2085 | "regex-syntax 0.7.1", 2086 | ] 2087 | 2088 | [[package]] 2089 | name = "regex-automata" 2090 | version = "0.1.10" 2091 | source = "registry+https://github.com/rust-lang/crates.io-index" 2092 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2093 | dependencies = [ 2094 | "regex-syntax 0.6.29", 2095 | ] 2096 | 2097 | [[package]] 2098 | name = "regex-syntax" 2099 | version = "0.6.29" 2100 | source = "registry+https://github.com/rust-lang/crates.io-index" 2101 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2102 | 2103 | [[package]] 2104 | name = "regex-syntax" 2105 | version = "0.7.1" 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" 2107 | checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 2108 | 2109 | [[package]] 2110 | name = "rustc_version" 2111 | version = "0.4.0" 2112 | source = "registry+https://github.com/rust-lang/crates.io-index" 2113 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2114 | dependencies = [ 2115 | "semver", 2116 | ] 2117 | 2118 | [[package]] 2119 | name = "rustix" 2120 | version = "0.37.18" 2121 | source = "registry+https://github.com/rust-lang/crates.io-index" 2122 | checksum = "8bbfc1d1c7c40c01715f47d71444744a81669ca84e8b63e25a55e169b1f86433" 2123 | dependencies = [ 2124 | "bitflags", 2125 | "errno", 2126 | "io-lifetimes", 2127 | "libc", 2128 | "linux-raw-sys", 2129 | "windows-sys 0.48.0", 2130 | ] 2131 | 2132 | [[package]] 2133 | name = "rustversion" 2134 | version = "1.0.12" 2135 | source = "registry+https://github.com/rust-lang/crates.io-index" 2136 | checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 2137 | 2138 | [[package]] 2139 | name = "ryu" 2140 | version = "1.0.13" 2141 | source = "registry+https://github.com/rust-lang/crates.io-index" 2142 | checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2143 | 2144 | [[package]] 2145 | name = "safemem" 2146 | version = "0.3.3" 2147 | source = "registry+https://github.com/rust-lang/crates.io-index" 2148 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2149 | 2150 | [[package]] 2151 | name = "same-file" 2152 | version = "1.0.6" 2153 | source = "registry+https://github.com/rust-lang/crates.io-index" 2154 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2155 | dependencies = [ 2156 | "winapi-util", 2157 | ] 2158 | 2159 | [[package]] 2160 | name = "scoped-tls" 2161 | version = "1.0.1" 2162 | source = "registry+https://github.com/rust-lang/crates.io-index" 2163 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2164 | 2165 | [[package]] 2166 | name = "scopeguard" 2167 | version = "1.1.0" 2168 | source = "registry+https://github.com/rust-lang/crates.io-index" 2169 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2170 | 2171 | [[package]] 2172 | name = "scratch" 2173 | version = "1.0.5" 2174 | source = "registry+https://github.com/rust-lang/crates.io-index" 2175 | checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 2176 | 2177 | [[package]] 2178 | name = "selectors" 2179 | version = "0.22.0" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2182 | dependencies = [ 2183 | "bitflags", 2184 | "cssparser", 2185 | "derive_more", 2186 | "fxhash", 2187 | "log", 2188 | "matches", 2189 | "phf 0.8.0", 2190 | "phf_codegen", 2191 | "precomputed-hash", 2192 | "servo_arc", 2193 | "smallvec", 2194 | "thin-slice", 2195 | ] 2196 | 2197 | [[package]] 2198 | name = "semver" 2199 | version = "1.0.17" 2200 | source = "registry+https://github.com/rust-lang/crates.io-index" 2201 | checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2202 | dependencies = [ 2203 | "serde", 2204 | ] 2205 | 2206 | [[package]] 2207 | name = "serde" 2208 | version = "1.0.160" 2209 | source = "registry+https://github.com/rust-lang/crates.io-index" 2210 | checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" 2211 | dependencies = [ 2212 | "serde_derive", 2213 | ] 2214 | 2215 | [[package]] 2216 | name = "serde_derive" 2217 | version = "1.0.160" 2218 | source = "registry+https://github.com/rust-lang/crates.io-index" 2219 | checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" 2220 | dependencies = [ 2221 | "proc-macro2", 2222 | "quote", 2223 | "syn 2.0.15", 2224 | ] 2225 | 2226 | [[package]] 2227 | name = "serde_json" 2228 | version = "1.0.96" 2229 | source = "registry+https://github.com/rust-lang/crates.io-index" 2230 | checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 2231 | dependencies = [ 2232 | "itoa 1.0.6", 2233 | "ryu", 2234 | "serde", 2235 | ] 2236 | 2237 | [[package]] 2238 | name = "serde_repr" 2239 | version = "0.1.12" 2240 | source = "registry+https://github.com/rust-lang/crates.io-index" 2241 | checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" 2242 | dependencies = [ 2243 | "proc-macro2", 2244 | "quote", 2245 | "syn 2.0.15", 2246 | ] 2247 | 2248 | [[package]] 2249 | name = "serde_spanned" 2250 | version = "0.6.1" 2251 | source = "registry+https://github.com/rust-lang/crates.io-index" 2252 | checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 2253 | dependencies = [ 2254 | "serde", 2255 | ] 2256 | 2257 | [[package]] 2258 | name = "serde_with" 2259 | version = "2.3.3" 2260 | source = "registry+https://github.com/rust-lang/crates.io-index" 2261 | checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" 2262 | dependencies = [ 2263 | "base64 0.13.1", 2264 | "chrono", 2265 | "hex", 2266 | "indexmap", 2267 | "serde", 2268 | "serde_json", 2269 | "serde_with_macros", 2270 | "time", 2271 | ] 2272 | 2273 | [[package]] 2274 | name = "serde_with_macros" 2275 | version = "2.3.3" 2276 | source = "registry+https://github.com/rust-lang/crates.io-index" 2277 | checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" 2278 | dependencies = [ 2279 | "darling", 2280 | "proc-macro2", 2281 | "quote", 2282 | "syn 2.0.15", 2283 | ] 2284 | 2285 | [[package]] 2286 | name = "serialize-to-javascript" 2287 | version = "0.1.1" 2288 | source = "registry+https://github.com/rust-lang/crates.io-index" 2289 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2290 | dependencies = [ 2291 | "serde", 2292 | "serde_json", 2293 | "serialize-to-javascript-impl", 2294 | ] 2295 | 2296 | [[package]] 2297 | name = "serialize-to-javascript-impl" 2298 | version = "0.1.1" 2299 | source = "registry+https://github.com/rust-lang/crates.io-index" 2300 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2301 | dependencies = [ 2302 | "proc-macro2", 2303 | "quote", 2304 | "syn 1.0.109", 2305 | ] 2306 | 2307 | [[package]] 2308 | name = "servo_arc" 2309 | version = "0.1.1" 2310 | source = "registry+https://github.com/rust-lang/crates.io-index" 2311 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2312 | dependencies = [ 2313 | "nodrop", 2314 | "stable_deref_trait", 2315 | ] 2316 | 2317 | [[package]] 2318 | name = "sha2" 2319 | version = "0.10.6" 2320 | source = "registry+https://github.com/rust-lang/crates.io-index" 2321 | checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2322 | dependencies = [ 2323 | "cfg-if", 2324 | "cpufeatures", 2325 | "digest", 2326 | ] 2327 | 2328 | [[package]] 2329 | name = "sharded-slab" 2330 | version = "0.1.4" 2331 | source = "registry+https://github.com/rust-lang/crates.io-index" 2332 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2333 | dependencies = [ 2334 | "lazy_static", 2335 | ] 2336 | 2337 | [[package]] 2338 | name = "simd-adler32" 2339 | version = "0.3.5" 2340 | source = "registry+https://github.com/rust-lang/crates.io-index" 2341 | checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 2342 | 2343 | [[package]] 2344 | name = "siphasher" 2345 | version = "0.3.10" 2346 | source = "registry+https://github.com/rust-lang/crates.io-index" 2347 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2348 | 2349 | [[package]] 2350 | name = "slab" 2351 | version = "0.4.8" 2352 | source = "registry+https://github.com/rust-lang/crates.io-index" 2353 | checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2354 | dependencies = [ 2355 | "autocfg", 2356 | ] 2357 | 2358 | [[package]] 2359 | name = "smallvec" 2360 | version = "1.10.0" 2361 | source = "registry+https://github.com/rust-lang/crates.io-index" 2362 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2363 | 2364 | [[package]] 2365 | name = "soup2" 2366 | version = "0.2.1" 2367 | source = "registry+https://github.com/rust-lang/crates.io-index" 2368 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2369 | dependencies = [ 2370 | "bitflags", 2371 | "gio", 2372 | "glib", 2373 | "libc", 2374 | "once_cell", 2375 | "soup2-sys", 2376 | ] 2377 | 2378 | [[package]] 2379 | name = "soup2-sys" 2380 | version = "0.2.0" 2381 | source = "registry+https://github.com/rust-lang/crates.io-index" 2382 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2383 | dependencies = [ 2384 | "bitflags", 2385 | "gio-sys", 2386 | "glib-sys", 2387 | "gobject-sys", 2388 | "libc", 2389 | "system-deps 5.0.0", 2390 | ] 2391 | 2392 | [[package]] 2393 | name = "stable_deref_trait" 2394 | version = "1.2.0" 2395 | source = "registry+https://github.com/rust-lang/crates.io-index" 2396 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2397 | 2398 | [[package]] 2399 | name = "state" 2400 | version = "0.5.3" 2401 | source = "registry+https://github.com/rust-lang/crates.io-index" 2402 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2403 | dependencies = [ 2404 | "loom", 2405 | ] 2406 | 2407 | [[package]] 2408 | name = "string_cache" 2409 | version = "0.8.7" 2410 | source = "registry+https://github.com/rust-lang/crates.io-index" 2411 | checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 2412 | dependencies = [ 2413 | "new_debug_unreachable", 2414 | "once_cell", 2415 | "parking_lot", 2416 | "phf_shared 0.10.0", 2417 | "precomputed-hash", 2418 | "serde", 2419 | ] 2420 | 2421 | [[package]] 2422 | name = "string_cache_codegen" 2423 | version = "0.5.2" 2424 | source = "registry+https://github.com/rust-lang/crates.io-index" 2425 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2426 | dependencies = [ 2427 | "phf_generator 0.10.0", 2428 | "phf_shared 0.10.0", 2429 | "proc-macro2", 2430 | "quote", 2431 | ] 2432 | 2433 | [[package]] 2434 | name = "strsim" 2435 | version = "0.10.0" 2436 | source = "registry+https://github.com/rust-lang/crates.io-index" 2437 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2438 | 2439 | [[package]] 2440 | name = "syn" 2441 | version = "1.0.109" 2442 | source = "registry+https://github.com/rust-lang/crates.io-index" 2443 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2444 | dependencies = [ 2445 | "proc-macro2", 2446 | "quote", 2447 | "unicode-ident", 2448 | ] 2449 | 2450 | [[package]] 2451 | name = "syn" 2452 | version = "2.0.15" 2453 | source = "registry+https://github.com/rust-lang/crates.io-index" 2454 | checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 2455 | dependencies = [ 2456 | "proc-macro2", 2457 | "quote", 2458 | "unicode-ident", 2459 | ] 2460 | 2461 | [[package]] 2462 | name = "system-deps" 2463 | version = "5.0.0" 2464 | source = "registry+https://github.com/rust-lang/crates.io-index" 2465 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2466 | dependencies = [ 2467 | "cfg-expr 0.9.1", 2468 | "heck 0.3.3", 2469 | "pkg-config", 2470 | "toml 0.5.11", 2471 | "version-compare 0.0.11", 2472 | ] 2473 | 2474 | [[package]] 2475 | name = "system-deps" 2476 | version = "6.0.5" 2477 | source = "registry+https://github.com/rust-lang/crates.io-index" 2478 | checksum = "d0fe581ad25d11420b873cf9aedaca0419c2b411487b134d4d21065f3d092055" 2479 | dependencies = [ 2480 | "cfg-expr 0.15.1", 2481 | "heck 0.4.1", 2482 | "pkg-config", 2483 | "toml 0.7.3", 2484 | "version-compare 0.1.1", 2485 | ] 2486 | 2487 | [[package]] 2488 | name = "tao" 2489 | version = "0.16.0" 2490 | source = "registry+https://github.com/rust-lang/crates.io-index" 2491 | checksum = "704522803dda895767f69198af8351b0a3f4fe2e293c3ca54cce0ecba05a97f2" 2492 | dependencies = [ 2493 | "bitflags", 2494 | "cairo-rs", 2495 | "cc", 2496 | "cocoa", 2497 | "core-foundation", 2498 | "core-graphics", 2499 | "crossbeam-channel", 2500 | "dispatch", 2501 | "gdk", 2502 | "gdk-pixbuf", 2503 | "gdk-sys", 2504 | "gdkx11-sys", 2505 | "gio", 2506 | "glib", 2507 | "glib-sys", 2508 | "gtk", 2509 | "image", 2510 | "instant", 2511 | "jni", 2512 | "lazy_static", 2513 | "libc", 2514 | "log", 2515 | "ndk", 2516 | "ndk-context", 2517 | "ndk-sys", 2518 | "objc", 2519 | "once_cell", 2520 | "parking_lot", 2521 | "png", 2522 | "raw-window-handle", 2523 | "scopeguard", 2524 | "serde", 2525 | "tao-macros", 2526 | "unicode-segmentation", 2527 | "uuid", 2528 | "windows 0.39.0", 2529 | "windows-implement", 2530 | "x11-dl", 2531 | ] 2532 | 2533 | [[package]] 2534 | name = "tao-macros" 2535 | version = "0.1.1" 2536 | source = "registry+https://github.com/rust-lang/crates.io-index" 2537 | checksum = "3b27a4bcc5eb524658234589bdffc7e7bfb996dbae6ce9393bfd39cb4159b445" 2538 | dependencies = [ 2539 | "proc-macro2", 2540 | "quote", 2541 | "syn 1.0.109", 2542 | ] 2543 | 2544 | [[package]] 2545 | name = "tar" 2546 | version = "0.4.38" 2547 | source = "registry+https://github.com/rust-lang/crates.io-index" 2548 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2549 | dependencies = [ 2550 | "filetime", 2551 | "libc", 2552 | "xattr", 2553 | ] 2554 | 2555 | [[package]] 2556 | name = "target-lexicon" 2557 | version = "0.12.7" 2558 | source = "registry+https://github.com/rust-lang/crates.io-index" 2559 | checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" 2560 | 2561 | [[package]] 2562 | name = "tauri" 2563 | version = "1.3.0" 2564 | source = "registry+https://github.com/rust-lang/crates.io-index" 2565 | checksum = "d42ba3a2e8556722f31336a0750c10dbb6a81396a1c452977f515da83f69f842" 2566 | dependencies = [ 2567 | "anyhow", 2568 | "cocoa", 2569 | "dirs-next", 2570 | "embed_plist", 2571 | "encoding_rs", 2572 | "flate2", 2573 | "futures-util", 2574 | "glib", 2575 | "glob", 2576 | "gtk", 2577 | "heck 0.4.1", 2578 | "http", 2579 | "ignore", 2580 | "objc", 2581 | "once_cell", 2582 | "percent-encoding", 2583 | "rand 0.8.5", 2584 | "raw-window-handle", 2585 | "semver", 2586 | "serde", 2587 | "serde_json", 2588 | "serde_repr", 2589 | "serialize-to-javascript", 2590 | "state", 2591 | "tar", 2592 | "tauri-macros", 2593 | "tauri-runtime", 2594 | "tauri-runtime-wry", 2595 | "tauri-utils", 2596 | "tempfile", 2597 | "thiserror", 2598 | "tokio", 2599 | "url", 2600 | "uuid", 2601 | "webkit2gtk", 2602 | "webview2-com", 2603 | "windows 0.39.0", 2604 | ] 2605 | 2606 | [[package]] 2607 | name = "tauri-build" 2608 | version = "1.3.0" 2609 | source = "registry+https://github.com/rust-lang/crates.io-index" 2610 | checksum = "929b3bd1248afc07b63e33a6a53c3f82c32d0b0a5e216e4530e94c467e019389" 2611 | dependencies = [ 2612 | "anyhow", 2613 | "cargo_toml", 2614 | "heck 0.4.1", 2615 | "json-patch", 2616 | "semver", 2617 | "serde", 2618 | "serde_json", 2619 | "tauri-utils", 2620 | "tauri-winres", 2621 | "winnow", 2622 | ] 2623 | 2624 | [[package]] 2625 | name = "tauri-codegen" 2626 | version = "1.3.0" 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" 2628 | checksum = "e5a2105f807c6f50b2fa2ce5abd62ef207bc6f14c9fcc6b8caec437f6fb13bde" 2629 | dependencies = [ 2630 | "base64 0.21.0", 2631 | "brotli", 2632 | "ico", 2633 | "json-patch", 2634 | "plist", 2635 | "png", 2636 | "proc-macro2", 2637 | "quote", 2638 | "semver", 2639 | "serde", 2640 | "serde_json", 2641 | "sha2", 2642 | "tauri-utils", 2643 | "thiserror", 2644 | "time", 2645 | "uuid", 2646 | "walkdir", 2647 | ] 2648 | 2649 | [[package]] 2650 | name = "tauri-macros" 2651 | version = "1.3.0" 2652 | source = "registry+https://github.com/rust-lang/crates.io-index" 2653 | checksum = "8784cfe6f5444097e93c69107d1ac5e8f13d02850efa8d8f2a40fe79674cef46" 2654 | dependencies = [ 2655 | "heck 0.4.1", 2656 | "proc-macro2", 2657 | "quote", 2658 | "syn 1.0.109", 2659 | "tauri-codegen", 2660 | "tauri-utils", 2661 | ] 2662 | 2663 | [[package]] 2664 | name = "tauri-runtime" 2665 | version = "0.13.0" 2666 | source = "registry+https://github.com/rust-lang/crates.io-index" 2667 | checksum = "b3b80ea3fcd5fefb60739a3b577b277e8fc30434538a2f5bba82ad7d4368c422" 2668 | dependencies = [ 2669 | "gtk", 2670 | "http", 2671 | "http-range", 2672 | "rand 0.8.5", 2673 | "raw-window-handle", 2674 | "serde", 2675 | "serde_json", 2676 | "tauri-utils", 2677 | "thiserror", 2678 | "url", 2679 | "uuid", 2680 | "webview2-com", 2681 | "windows 0.39.0", 2682 | ] 2683 | 2684 | [[package]] 2685 | name = "tauri-runtime-wry" 2686 | version = "0.13.0" 2687 | source = "registry+https://github.com/rust-lang/crates.io-index" 2688 | checksum = "d1c396950b1ba06aee1b4ffe6c7cd305ff433ca0e30acbc5fa1a2f92a4ce70f1" 2689 | dependencies = [ 2690 | "cocoa", 2691 | "gtk", 2692 | "percent-encoding", 2693 | "rand 0.8.5", 2694 | "raw-window-handle", 2695 | "tauri-runtime", 2696 | "tauri-utils", 2697 | "uuid", 2698 | "webkit2gtk", 2699 | "webview2-com", 2700 | "windows 0.39.0", 2701 | "wry", 2702 | ] 2703 | 2704 | [[package]] 2705 | name = "tauri-utils" 2706 | version = "1.3.0" 2707 | source = "registry+https://github.com/rust-lang/crates.io-index" 2708 | checksum = "5a6f9c2dafef5cbcf52926af57ce9561bd33bb41d7394f8bb849c0330260d864" 2709 | dependencies = [ 2710 | "brotli", 2711 | "ctor", 2712 | "glob", 2713 | "heck 0.4.1", 2714 | "html5ever", 2715 | "infer", 2716 | "json-patch", 2717 | "kuchiki", 2718 | "memchr", 2719 | "phf 0.10.1", 2720 | "proc-macro2", 2721 | "quote", 2722 | "semver", 2723 | "serde", 2724 | "serde_json", 2725 | "serde_with", 2726 | "thiserror", 2727 | "url", 2728 | "walkdir", 2729 | "windows 0.39.0", 2730 | ] 2731 | 2732 | [[package]] 2733 | name = "tauri-winres" 2734 | version = "0.1.0" 2735 | source = "registry+https://github.com/rust-lang/crates.io-index" 2736 | checksum = "1b7a78dc04f75fb5ab815e66ac561c81e92a968a40f29e7c21afd152d694fad8" 2737 | dependencies = [ 2738 | "toml 0.5.11", 2739 | "version_check", 2740 | ] 2741 | 2742 | [[package]] 2743 | name = "tempfile" 2744 | version = "3.5.0" 2745 | source = "registry+https://github.com/rust-lang/crates.io-index" 2746 | checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 2747 | dependencies = [ 2748 | "cfg-if", 2749 | "fastrand", 2750 | "redox_syscall 0.3.5", 2751 | "rustix", 2752 | "windows-sys 0.45.0", 2753 | ] 2754 | 2755 | [[package]] 2756 | name = "tendril" 2757 | version = "0.4.3" 2758 | source = "registry+https://github.com/rust-lang/crates.io-index" 2759 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2760 | dependencies = [ 2761 | "futf", 2762 | "mac", 2763 | "utf-8", 2764 | ] 2765 | 2766 | [[package]] 2767 | name = "termcolor" 2768 | version = "1.2.0" 2769 | source = "registry+https://github.com/rust-lang/crates.io-index" 2770 | checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2771 | dependencies = [ 2772 | "winapi-util", 2773 | ] 2774 | 2775 | [[package]] 2776 | name = "thin-slice" 2777 | version = "0.1.1" 2778 | source = "registry+https://github.com/rust-lang/crates.io-index" 2779 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2780 | 2781 | [[package]] 2782 | name = "thiserror" 2783 | version = "1.0.40" 2784 | source = "registry+https://github.com/rust-lang/crates.io-index" 2785 | checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2786 | dependencies = [ 2787 | "thiserror-impl", 2788 | ] 2789 | 2790 | [[package]] 2791 | name = "thiserror-impl" 2792 | version = "1.0.40" 2793 | source = "registry+https://github.com/rust-lang/crates.io-index" 2794 | checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2795 | dependencies = [ 2796 | "proc-macro2", 2797 | "quote", 2798 | "syn 2.0.15", 2799 | ] 2800 | 2801 | [[package]] 2802 | name = "thread_local" 2803 | version = "1.1.7" 2804 | source = "registry+https://github.com/rust-lang/crates.io-index" 2805 | checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2806 | dependencies = [ 2807 | "cfg-if", 2808 | "once_cell", 2809 | ] 2810 | 2811 | [[package]] 2812 | name = "time" 2813 | version = "0.3.15" 2814 | source = "registry+https://github.com/rust-lang/crates.io-index" 2815 | checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c" 2816 | dependencies = [ 2817 | "itoa 1.0.6", 2818 | "libc", 2819 | "num_threads", 2820 | "serde", 2821 | ] 2822 | 2823 | [[package]] 2824 | name = "tinyvec" 2825 | version = "1.6.0" 2826 | source = "registry+https://github.com/rust-lang/crates.io-index" 2827 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2828 | dependencies = [ 2829 | "tinyvec_macros", 2830 | ] 2831 | 2832 | [[package]] 2833 | name = "tinyvec_macros" 2834 | version = "0.1.1" 2835 | source = "registry+https://github.com/rust-lang/crates.io-index" 2836 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2837 | 2838 | [[package]] 2839 | name = "tokio" 2840 | version = "1.28.0" 2841 | source = "registry+https://github.com/rust-lang/crates.io-index" 2842 | checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f" 2843 | dependencies = [ 2844 | "autocfg", 2845 | "bytes", 2846 | "num_cpus", 2847 | "pin-project-lite", 2848 | "windows-sys 0.48.0", 2849 | ] 2850 | 2851 | [[package]] 2852 | name = "toml" 2853 | version = "0.5.11" 2854 | source = "registry+https://github.com/rust-lang/crates.io-index" 2855 | checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2856 | dependencies = [ 2857 | "serde", 2858 | ] 2859 | 2860 | [[package]] 2861 | name = "toml" 2862 | version = "0.7.3" 2863 | source = "registry+https://github.com/rust-lang/crates.io-index" 2864 | checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 2865 | dependencies = [ 2866 | "serde", 2867 | "serde_spanned", 2868 | "toml_datetime", 2869 | "toml_edit", 2870 | ] 2871 | 2872 | [[package]] 2873 | name = "toml_datetime" 2874 | version = "0.6.1" 2875 | source = "registry+https://github.com/rust-lang/crates.io-index" 2876 | checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 2877 | dependencies = [ 2878 | "serde", 2879 | ] 2880 | 2881 | [[package]] 2882 | name = "toml_edit" 2883 | version = "0.19.8" 2884 | source = "registry+https://github.com/rust-lang/crates.io-index" 2885 | checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 2886 | dependencies = [ 2887 | "indexmap", 2888 | "serde", 2889 | "serde_spanned", 2890 | "toml_datetime", 2891 | "winnow", 2892 | ] 2893 | 2894 | [[package]] 2895 | name = "tracing" 2896 | version = "0.1.37" 2897 | source = "registry+https://github.com/rust-lang/crates.io-index" 2898 | checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2899 | dependencies = [ 2900 | "cfg-if", 2901 | "pin-project-lite", 2902 | "tracing-attributes", 2903 | "tracing-core", 2904 | ] 2905 | 2906 | [[package]] 2907 | name = "tracing-attributes" 2908 | version = "0.1.24" 2909 | source = "registry+https://github.com/rust-lang/crates.io-index" 2910 | checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 2911 | dependencies = [ 2912 | "proc-macro2", 2913 | "quote", 2914 | "syn 2.0.15", 2915 | ] 2916 | 2917 | [[package]] 2918 | name = "tracing-core" 2919 | version = "0.1.30" 2920 | source = "registry+https://github.com/rust-lang/crates.io-index" 2921 | checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2922 | dependencies = [ 2923 | "once_cell", 2924 | "valuable", 2925 | ] 2926 | 2927 | [[package]] 2928 | name = "tracing-log" 2929 | version = "0.1.3" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 2932 | dependencies = [ 2933 | "lazy_static", 2934 | "log", 2935 | "tracing-core", 2936 | ] 2937 | 2938 | [[package]] 2939 | name = "tracing-subscriber" 2940 | version = "0.3.17" 2941 | source = "registry+https://github.com/rust-lang/crates.io-index" 2942 | checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 2943 | dependencies = [ 2944 | "matchers", 2945 | "nu-ansi-term", 2946 | "once_cell", 2947 | "regex", 2948 | "sharded-slab", 2949 | "smallvec", 2950 | "thread_local", 2951 | "tracing", 2952 | "tracing-core", 2953 | "tracing-log", 2954 | ] 2955 | 2956 | [[package]] 2957 | name = "treediff" 2958 | version = "4.0.2" 2959 | source = "registry+https://github.com/rust-lang/crates.io-index" 2960 | checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303" 2961 | dependencies = [ 2962 | "serde_json", 2963 | ] 2964 | 2965 | [[package]] 2966 | name = "typenum" 2967 | version = "1.16.0" 2968 | source = "registry+https://github.com/rust-lang/crates.io-index" 2969 | checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2970 | 2971 | [[package]] 2972 | name = "unicode-bidi" 2973 | version = "0.3.13" 2974 | source = "registry+https://github.com/rust-lang/crates.io-index" 2975 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2976 | 2977 | [[package]] 2978 | name = "unicode-ident" 2979 | version = "1.0.8" 2980 | source = "registry+https://github.com/rust-lang/crates.io-index" 2981 | checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2982 | 2983 | [[package]] 2984 | name = "unicode-normalization" 2985 | version = "0.1.22" 2986 | source = "registry+https://github.com/rust-lang/crates.io-index" 2987 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2988 | dependencies = [ 2989 | "tinyvec", 2990 | ] 2991 | 2992 | [[package]] 2993 | name = "unicode-segmentation" 2994 | version = "1.10.1" 2995 | source = "registry+https://github.com/rust-lang/crates.io-index" 2996 | checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2997 | 2998 | [[package]] 2999 | name = "unicode-width" 3000 | version = "0.1.10" 3001 | source = "registry+https://github.com/rust-lang/crates.io-index" 3002 | checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3003 | 3004 | [[package]] 3005 | name = "url" 3006 | version = "2.3.1" 3007 | source = "registry+https://github.com/rust-lang/crates.io-index" 3008 | checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3009 | dependencies = [ 3010 | "form_urlencoded", 3011 | "idna", 3012 | "percent-encoding", 3013 | "serde", 3014 | ] 3015 | 3016 | [[package]] 3017 | name = "utf-8" 3018 | version = "0.7.6" 3019 | source = "registry+https://github.com/rust-lang/crates.io-index" 3020 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3021 | 3022 | [[package]] 3023 | name = "uuid" 3024 | version = "1.3.2" 3025 | source = "registry+https://github.com/rust-lang/crates.io-index" 3026 | checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" 3027 | dependencies = [ 3028 | "getrandom 0.2.9", 3029 | ] 3030 | 3031 | [[package]] 3032 | name = "valuable" 3033 | version = "0.1.0" 3034 | source = "registry+https://github.com/rust-lang/crates.io-index" 3035 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3036 | 3037 | [[package]] 3038 | name = "version-compare" 3039 | version = "0.0.11" 3040 | source = "registry+https://github.com/rust-lang/crates.io-index" 3041 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3042 | 3043 | [[package]] 3044 | name = "version-compare" 3045 | version = "0.1.1" 3046 | source = "registry+https://github.com/rust-lang/crates.io-index" 3047 | checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 3048 | 3049 | [[package]] 3050 | name = "version_check" 3051 | version = "0.9.4" 3052 | source = "registry+https://github.com/rust-lang/crates.io-index" 3053 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3054 | 3055 | [[package]] 3056 | name = "walkdir" 3057 | version = "2.3.3" 3058 | source = "registry+https://github.com/rust-lang/crates.io-index" 3059 | checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 3060 | dependencies = [ 3061 | "same-file", 3062 | "winapi-util", 3063 | ] 3064 | 3065 | [[package]] 3066 | name = "wasi" 3067 | version = "0.9.0+wasi-snapshot-preview1" 3068 | source = "registry+https://github.com/rust-lang/crates.io-index" 3069 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3070 | 3071 | [[package]] 3072 | name = "wasi" 3073 | version = "0.11.0+wasi-snapshot-preview1" 3074 | source = "registry+https://github.com/rust-lang/crates.io-index" 3075 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3076 | 3077 | [[package]] 3078 | name = "wasm-bindgen" 3079 | version = "0.2.84" 3080 | source = "registry+https://github.com/rust-lang/crates.io-index" 3081 | checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 3082 | dependencies = [ 3083 | "cfg-if", 3084 | "wasm-bindgen-macro", 3085 | ] 3086 | 3087 | [[package]] 3088 | name = "wasm-bindgen-backend" 3089 | version = "0.2.84" 3090 | source = "registry+https://github.com/rust-lang/crates.io-index" 3091 | checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 3092 | dependencies = [ 3093 | "bumpalo", 3094 | "log", 3095 | "once_cell", 3096 | "proc-macro2", 3097 | "quote", 3098 | "syn 1.0.109", 3099 | "wasm-bindgen-shared", 3100 | ] 3101 | 3102 | [[package]] 3103 | name = "wasm-bindgen-macro" 3104 | version = "0.2.84" 3105 | source = "registry+https://github.com/rust-lang/crates.io-index" 3106 | checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 3107 | dependencies = [ 3108 | "quote", 3109 | "wasm-bindgen-macro-support", 3110 | ] 3111 | 3112 | [[package]] 3113 | name = "wasm-bindgen-macro-support" 3114 | version = "0.2.84" 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" 3116 | checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 3117 | dependencies = [ 3118 | "proc-macro2", 3119 | "quote", 3120 | "syn 1.0.109", 3121 | "wasm-bindgen-backend", 3122 | "wasm-bindgen-shared", 3123 | ] 3124 | 3125 | [[package]] 3126 | name = "wasm-bindgen-shared" 3127 | version = "0.2.84" 3128 | source = "registry+https://github.com/rust-lang/crates.io-index" 3129 | checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 3130 | 3131 | [[package]] 3132 | name = "webkit2gtk" 3133 | version = "0.18.2" 3134 | source = "registry+https://github.com/rust-lang/crates.io-index" 3135 | checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370" 3136 | dependencies = [ 3137 | "bitflags", 3138 | "cairo-rs", 3139 | "gdk", 3140 | "gdk-sys", 3141 | "gio", 3142 | "gio-sys", 3143 | "glib", 3144 | "glib-sys", 3145 | "gobject-sys", 3146 | "gtk", 3147 | "gtk-sys", 3148 | "javascriptcore-rs", 3149 | "libc", 3150 | "once_cell", 3151 | "soup2", 3152 | "webkit2gtk-sys", 3153 | ] 3154 | 3155 | [[package]] 3156 | name = "webkit2gtk-sys" 3157 | version = "0.18.0" 3158 | source = "registry+https://github.com/rust-lang/crates.io-index" 3159 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3160 | dependencies = [ 3161 | "atk-sys", 3162 | "bitflags", 3163 | "cairo-sys-rs", 3164 | "gdk-pixbuf-sys", 3165 | "gdk-sys", 3166 | "gio-sys", 3167 | "glib-sys", 3168 | "gobject-sys", 3169 | "gtk-sys", 3170 | "javascriptcore-rs-sys", 3171 | "libc", 3172 | "pango-sys", 3173 | "pkg-config", 3174 | "soup2-sys", 3175 | "system-deps 6.0.5", 3176 | ] 3177 | 3178 | [[package]] 3179 | name = "webview2-com" 3180 | version = "0.19.1" 3181 | source = "registry+https://github.com/rust-lang/crates.io-index" 3182 | checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178" 3183 | dependencies = [ 3184 | "webview2-com-macros", 3185 | "webview2-com-sys", 3186 | "windows 0.39.0", 3187 | "windows-implement", 3188 | ] 3189 | 3190 | [[package]] 3191 | name = "webview2-com-macros" 3192 | version = "0.6.0" 3193 | source = "registry+https://github.com/rust-lang/crates.io-index" 3194 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3195 | dependencies = [ 3196 | "proc-macro2", 3197 | "quote", 3198 | "syn 1.0.109", 3199 | ] 3200 | 3201 | [[package]] 3202 | name = "webview2-com-sys" 3203 | version = "0.19.0" 3204 | source = "registry+https://github.com/rust-lang/crates.io-index" 3205 | checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7" 3206 | dependencies = [ 3207 | "regex", 3208 | "serde", 3209 | "serde_json", 3210 | "thiserror", 3211 | "windows 0.39.0", 3212 | "windows-bindgen", 3213 | "windows-metadata", 3214 | ] 3215 | 3216 | [[package]] 3217 | name = "winapi" 3218 | version = "0.3.9" 3219 | source = "registry+https://github.com/rust-lang/crates.io-index" 3220 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3221 | dependencies = [ 3222 | "winapi-i686-pc-windows-gnu", 3223 | "winapi-x86_64-pc-windows-gnu", 3224 | ] 3225 | 3226 | [[package]] 3227 | name = "winapi-i686-pc-windows-gnu" 3228 | version = "0.4.0" 3229 | source = "registry+https://github.com/rust-lang/crates.io-index" 3230 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3231 | 3232 | [[package]] 3233 | name = "winapi-util" 3234 | version = "0.1.5" 3235 | source = "registry+https://github.com/rust-lang/crates.io-index" 3236 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3237 | dependencies = [ 3238 | "winapi", 3239 | ] 3240 | 3241 | [[package]] 3242 | name = "winapi-x86_64-pc-windows-gnu" 3243 | version = "0.4.0" 3244 | source = "registry+https://github.com/rust-lang/crates.io-index" 3245 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3246 | 3247 | [[package]] 3248 | name = "windows" 3249 | version = "0.39.0" 3250 | source = "registry+https://github.com/rust-lang/crates.io-index" 3251 | checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3252 | dependencies = [ 3253 | "windows-implement", 3254 | "windows_aarch64_msvc 0.39.0", 3255 | "windows_i686_gnu 0.39.0", 3256 | "windows_i686_msvc 0.39.0", 3257 | "windows_x86_64_gnu 0.39.0", 3258 | "windows_x86_64_msvc 0.39.0", 3259 | ] 3260 | 3261 | [[package]] 3262 | name = "windows" 3263 | version = "0.48.0" 3264 | source = "registry+https://github.com/rust-lang/crates.io-index" 3265 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 3266 | dependencies = [ 3267 | "windows-targets 0.48.0", 3268 | ] 3269 | 3270 | [[package]] 3271 | name = "windows-bindgen" 3272 | version = "0.39.0" 3273 | source = "registry+https://github.com/rust-lang/crates.io-index" 3274 | checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41" 3275 | dependencies = [ 3276 | "windows-metadata", 3277 | "windows-tokens", 3278 | ] 3279 | 3280 | [[package]] 3281 | name = "windows-implement" 3282 | version = "0.39.0" 3283 | source = "registry+https://github.com/rust-lang/crates.io-index" 3284 | checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7" 3285 | dependencies = [ 3286 | "syn 1.0.109", 3287 | "windows-tokens", 3288 | ] 3289 | 3290 | [[package]] 3291 | name = "windows-metadata" 3292 | version = "0.39.0" 3293 | source = "registry+https://github.com/rust-lang/crates.io-index" 3294 | checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 3295 | 3296 | [[package]] 3297 | name = "windows-sys" 3298 | version = "0.45.0" 3299 | source = "registry+https://github.com/rust-lang/crates.io-index" 3300 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3301 | dependencies = [ 3302 | "windows-targets 0.42.2", 3303 | ] 3304 | 3305 | [[package]] 3306 | name = "windows-sys" 3307 | version = "0.48.0" 3308 | source = "registry+https://github.com/rust-lang/crates.io-index" 3309 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3310 | dependencies = [ 3311 | "windows-targets 0.48.0", 3312 | ] 3313 | 3314 | [[package]] 3315 | name = "windows-targets" 3316 | version = "0.42.2" 3317 | source = "registry+https://github.com/rust-lang/crates.io-index" 3318 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3319 | dependencies = [ 3320 | "windows_aarch64_gnullvm 0.42.2", 3321 | "windows_aarch64_msvc 0.42.2", 3322 | "windows_i686_gnu 0.42.2", 3323 | "windows_i686_msvc 0.42.2", 3324 | "windows_x86_64_gnu 0.42.2", 3325 | "windows_x86_64_gnullvm 0.42.2", 3326 | "windows_x86_64_msvc 0.42.2", 3327 | ] 3328 | 3329 | [[package]] 3330 | name = "windows-targets" 3331 | version = "0.48.0" 3332 | source = "registry+https://github.com/rust-lang/crates.io-index" 3333 | checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 3334 | dependencies = [ 3335 | "windows_aarch64_gnullvm 0.48.0", 3336 | "windows_aarch64_msvc 0.48.0", 3337 | "windows_i686_gnu 0.48.0", 3338 | "windows_i686_msvc 0.48.0", 3339 | "windows_x86_64_gnu 0.48.0", 3340 | "windows_x86_64_gnullvm 0.48.0", 3341 | "windows_x86_64_msvc 0.48.0", 3342 | ] 3343 | 3344 | [[package]] 3345 | name = "windows-tokens" 3346 | version = "0.39.0" 3347 | source = "registry+https://github.com/rust-lang/crates.io-index" 3348 | checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 3349 | 3350 | [[package]] 3351 | name = "windows_aarch64_gnullvm" 3352 | version = "0.42.2" 3353 | source = "registry+https://github.com/rust-lang/crates.io-index" 3354 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3355 | 3356 | [[package]] 3357 | name = "windows_aarch64_gnullvm" 3358 | version = "0.48.0" 3359 | source = "registry+https://github.com/rust-lang/crates.io-index" 3360 | checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 3361 | 3362 | [[package]] 3363 | name = "windows_aarch64_msvc" 3364 | version = "0.39.0" 3365 | source = "registry+https://github.com/rust-lang/crates.io-index" 3366 | checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3367 | 3368 | [[package]] 3369 | name = "windows_aarch64_msvc" 3370 | version = "0.42.2" 3371 | source = "registry+https://github.com/rust-lang/crates.io-index" 3372 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3373 | 3374 | [[package]] 3375 | name = "windows_aarch64_msvc" 3376 | version = "0.48.0" 3377 | source = "registry+https://github.com/rust-lang/crates.io-index" 3378 | checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 3379 | 3380 | [[package]] 3381 | name = "windows_i686_gnu" 3382 | version = "0.39.0" 3383 | source = "registry+https://github.com/rust-lang/crates.io-index" 3384 | checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3385 | 3386 | [[package]] 3387 | name = "windows_i686_gnu" 3388 | version = "0.42.2" 3389 | source = "registry+https://github.com/rust-lang/crates.io-index" 3390 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3391 | 3392 | [[package]] 3393 | name = "windows_i686_gnu" 3394 | version = "0.48.0" 3395 | source = "registry+https://github.com/rust-lang/crates.io-index" 3396 | checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 3397 | 3398 | [[package]] 3399 | name = "windows_i686_msvc" 3400 | version = "0.39.0" 3401 | source = "registry+https://github.com/rust-lang/crates.io-index" 3402 | checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3403 | 3404 | [[package]] 3405 | name = "windows_i686_msvc" 3406 | version = "0.42.2" 3407 | source = "registry+https://github.com/rust-lang/crates.io-index" 3408 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3409 | 3410 | [[package]] 3411 | name = "windows_i686_msvc" 3412 | version = "0.48.0" 3413 | source = "registry+https://github.com/rust-lang/crates.io-index" 3414 | checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 3415 | 3416 | [[package]] 3417 | name = "windows_x86_64_gnu" 3418 | version = "0.39.0" 3419 | source = "registry+https://github.com/rust-lang/crates.io-index" 3420 | checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3421 | 3422 | [[package]] 3423 | name = "windows_x86_64_gnu" 3424 | version = "0.42.2" 3425 | source = "registry+https://github.com/rust-lang/crates.io-index" 3426 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3427 | 3428 | [[package]] 3429 | name = "windows_x86_64_gnu" 3430 | version = "0.48.0" 3431 | source = "registry+https://github.com/rust-lang/crates.io-index" 3432 | checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 3433 | 3434 | [[package]] 3435 | name = "windows_x86_64_gnullvm" 3436 | version = "0.42.2" 3437 | source = "registry+https://github.com/rust-lang/crates.io-index" 3438 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3439 | 3440 | [[package]] 3441 | name = "windows_x86_64_gnullvm" 3442 | version = "0.48.0" 3443 | source = "registry+https://github.com/rust-lang/crates.io-index" 3444 | checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 3445 | 3446 | [[package]] 3447 | name = "windows_x86_64_msvc" 3448 | version = "0.39.0" 3449 | source = "registry+https://github.com/rust-lang/crates.io-index" 3450 | checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3451 | 3452 | [[package]] 3453 | name = "windows_x86_64_msvc" 3454 | version = "0.42.2" 3455 | source = "registry+https://github.com/rust-lang/crates.io-index" 3456 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3457 | 3458 | [[package]] 3459 | name = "windows_x86_64_msvc" 3460 | version = "0.48.0" 3461 | source = "registry+https://github.com/rust-lang/crates.io-index" 3462 | checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 3463 | 3464 | [[package]] 3465 | name = "winnow" 3466 | version = "0.4.1" 3467 | source = "registry+https://github.com/rust-lang/crates.io-index" 3468 | checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 3469 | dependencies = [ 3470 | "memchr", 3471 | ] 3472 | 3473 | [[package]] 3474 | name = "wry" 3475 | version = "0.24.1" 3476 | source = "registry+https://github.com/rust-lang/crates.io-index" 3477 | checksum = "1c846dc4dda988e959869dd0802cd27417c9696e584593e49178aeee28890d25" 3478 | dependencies = [ 3479 | "base64 0.13.1", 3480 | "block", 3481 | "cocoa", 3482 | "core-graphics", 3483 | "crossbeam-channel", 3484 | "dunce", 3485 | "gdk", 3486 | "gio", 3487 | "glib", 3488 | "gtk", 3489 | "html5ever", 3490 | "http", 3491 | "kuchiki", 3492 | "libc", 3493 | "log", 3494 | "objc", 3495 | "objc_id", 3496 | "once_cell", 3497 | "serde", 3498 | "serde_json", 3499 | "sha2", 3500 | "soup2", 3501 | "tao", 3502 | "thiserror", 3503 | "url", 3504 | "webkit2gtk", 3505 | "webkit2gtk-sys", 3506 | "webview2-com", 3507 | "windows 0.39.0", 3508 | "windows-implement", 3509 | ] 3510 | 3511 | [[package]] 3512 | name = "x11" 3513 | version = "2.21.0" 3514 | source = "registry+https://github.com/rust-lang/crates.io-index" 3515 | checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 3516 | dependencies = [ 3517 | "libc", 3518 | "pkg-config", 3519 | ] 3520 | 3521 | [[package]] 3522 | name = "x11-dl" 3523 | version = "2.21.0" 3524 | source = "registry+https://github.com/rust-lang/crates.io-index" 3525 | checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 3526 | dependencies = [ 3527 | "libc", 3528 | "once_cell", 3529 | "pkg-config", 3530 | ] 3531 | 3532 | [[package]] 3533 | name = "xattr" 3534 | version = "0.2.3" 3535 | source = "registry+https://github.com/rust-lang/crates.io-index" 3536 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3537 | dependencies = [ 3538 | "libc", 3539 | ] 3540 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "app" 3 | version = "0.1.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | default-run = "app" 9 | edition = "2021" 10 | rust-version = "1.59" 11 | 12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 | 14 | [build-dependencies] 15 | tauri-build = { version = "1.2.1", features = [] } 16 | 17 | [dependencies] 18 | serde_json = "1.0" 19 | serde = { version = "1.0", features = ["derive"] } 20 | tauri = { version = "1.2.4", features = [] } 21 | 22 | [features] 23 | # by default Tauri runs in production mode 24 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL 25 | default = [ "custom-protocol" ] 26 | # this feature is used for production builds where `devPath` points to the filesystem 27 | # DO NOT remove this 28 | custom-protocol = [ "tauri/custom-protocol" ] 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Tong Li 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /dist/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/dist/1.txt -------------------------------------------------------------------------------- /icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/128x128.png -------------------------------------------------------------------------------- /icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/128x128@2x.png -------------------------------------------------------------------------------- /icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/32x32.png -------------------------------------------------------------------------------- /icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/StoreLogo.png -------------------------------------------------------------------------------- /icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/icon.icns -------------------------------------------------------------------------------- /icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/icon.ico -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/icon.png -------------------------------------------------------------------------------- /icons/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/icons/src.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## tauri-claude 2 | 3 | Claude Desktop is a revolutionary AI application that allows you to seamlessly utilize the advanced conversational AI assistant Claude on Windows, Linux, and macOS systems. Developed using the Rust programming language and leveraging the innovative Tauri cross-platform framework, it ensures high performance and a native-like experience. 4 | 5 | Claude Desktop provides you with an intuitive graphical interface, enabling natural language conversations with Claude. Whether seeking professional advice, solving complex problems, or exploring new knowledge, Claude can provide insightful responses in a humanized manner. With its powerful natural language processing capabilities and vast knowledge base, Claude will become your trusted intelligent companion. 6 | 7 | Harnessing the advantages of the Tauri framework, Claude Desktop runs seamlessly across all major desktop platforms, delivering native-level performance and responsiveness. You can access Claude anytime, anywhere, enjoying a fluid user experience. Whether seeking improved efficiency at work or assistance in daily life, Claude Desktop will be your capable assistant. 8 | 9 | With its innovative technological implementation and powerful AI capabilities, Claude Desktop will bring an unprecedented intelligent experience to users, helping you boost productivity, ignite creativity, and acquire new knowledge. 10 | 11 | ![1](readme_files/1.png) 12 | 13 | ## Features 14 | * **Native Experience**: Interact with Claude directly from your desktop without needing a browser. 15 | * **Fast and Lightweight**: Built using Tauri, the application is light on resources and starts up quickly. 16 | * **Cross-Platform**: Available for Windows, macOS, and Linux. 17 | 18 | ## Installation 19 | 20 | ### Pre-built binaries 21 | You can download the pre-built binaries for your platform from the [Releases](https://github.com/litongjava/tauri-claude/releases) page. 22 | 23 | ### Building from Source 24 | 25 | 1. Clone this repository: 26 | ```bash 27 | git clone https://github.com/litongjava/tauri-claude 28 | ``` 29 | 2. Navigate to the project directory: 30 | ```bash 31 | cd tauri-claude 32 | ``` 33 | 3. Install tauri: 34 | ```bash 35 | cargo install tauri-cli 36 | ``` 37 | 4. Build the application: 38 | ```bash 39 | cargo tauri build 40 | ``` 41 | 42 | ## Usage 43 | 44 | 1. Launch the application. 45 | 2. Interact with claude directly from the app interface. 46 | 47 | ## Cache 48 | Cache Folder 49 | - windows C:\Users\Administrator\AppData\Local\com.litongjava.tauri.claude 50 | ## Contributing 51 | 52 | Pull requests are welcome! For major changes, please open an issue first to discuss what you'd like to change. 53 | 54 | ## License 55 | 56 | [MIT License](LICENSE) 57 | 58 | 59 | -------------------------------------------------------------------------------- /readme_files/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litongjava/tauri-claude/effb1276410a56d1f8cecb532b299657274cd0f2/readme_files/1.png -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | fn main() { 7 | tauri::Builder::default() 8 | .run(tauri::generate_context!()) 9 | .expect("error while running tauri application"); 10 | } 11 | -------------------------------------------------------------------------------- /tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "build": { 3 | "beforeBuildCommand": "", 4 | "beforeDevCommand": "", 5 | "devPath": "https://claude.ai/", 6 | "distDir": "dist" 7 | }, 8 | "package": { 9 | "productName": "tauri-claude", 10 | "version": "0.1.0" 11 | }, 12 | "tauri": { 13 | "allowlist": { 14 | "all": false 15 | }, 16 | "bundle": { 17 | "active": true, 18 | "category": "DeveloperTool", 19 | "copyright": "", 20 | "deb": { 21 | "depends": [] 22 | }, 23 | "externalBin": [], 24 | "icon": [ 25 | "icons/32x32.png", 26 | "icons/128x128.png", 27 | "icons/128x128@2x.png", 28 | "icons/icon.icns", 29 | "icons/icon.ico" 30 | ], 31 | "identifier": "com.litongjava.tauri.claude", 32 | "longDescription": "", 33 | "macOS": { 34 | "entitlements": null, 35 | "exceptionDomain": "", 36 | "frameworks": [], 37 | "providerShortName": null, 38 | "signingIdentity": null 39 | }, 40 | "resources": [], 41 | "shortDescription": "", 42 | "targets": "all", 43 | "windows": { 44 | "certificateThumbprint": null, 45 | "digestAlgorithm": "sha256", 46 | "timestampUrl": "" 47 | } 48 | }, 49 | "security": { 50 | "csp": null 51 | }, 52 | "updater": { 53 | "active": false 54 | }, 55 | "windows": [ 56 | { 57 | "title": "Tauri Claude", 58 | "fullscreen": false, 59 | "resizable": true, 60 | "height": 1000, 61 | "width": 1500, 62 | "url": "https://claude.ai/", 63 | "x": 100, 64 | "y": 0 65 | } 66 | ] 67 | } 68 | } 69 | --------------------------------------------------------------------------------