├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.png ├── global.css └── index.html ├── rollup.config.js ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── 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 ├── rustfmt.toml ├── src │ ├── commands.rs │ └── main.rs └── tauri.conf.json ├── src ├── App.svelte └── main.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | .vscode 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 jbarszczewski 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tauri Svelte App Template 2 | 3 | This is a project template for [Tauri](https://tauri.studio) and [Svelte](https://svelte.dev) apps. It lives at https://github.com/jbarszczewski/tauri-svelte-template. 4 | 5 | To create a new project based on this template follow the official guide here: https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template 6 | 7 | ## Get started 8 | 9 | Before using template please see [Tauri Introduction](https://tauri.studio/en/docs/getting-started/intro) and follow instructions to setup your environment. 10 | 11 | Install the dependencies... 12 | 13 | ```bash 14 | yarn 15 | ``` 16 | 17 | ...then start development server: 18 | 19 | ```bash 20 | yarn tauri dev 21 | ``` 22 | 23 | This will take care of running both frontend and backend of your app with watch attached to both. That means whenever you change something in `src` (svelte frontend code) or `src-tauri` (rust backend code), it will be automatically processed and hot reloaded. To finish dev/debug mode simply close the app window. 24 | 25 | ## Building and running in production mode 26 | 27 | To create an optimised version of the app: 28 | 29 | ```bash 30 | yarn tauri build 31 | ``` 32 | 33 | This will create standalone app and installer in `src-tauri/target/release` directory. 34 | 35 | ## Useful links 36 | 37 | - [Tauri](https://tauri.studio) 38 | - [Svelte](https://svelte.dev) 39 | - [Sveltestrap](https://sveltestrap.js.org) 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-app", 3 | "version": "1.0.0", 4 | "private": true, 5 | "scripts": { 6 | "build": "rollup -c", 7 | "dev": "rollup -c -w", 8 | "start": "sirv public --no-clear -p 5050", 9 | "validate": "svelte-check" 10 | }, 11 | "devDependencies": { 12 | "@rollup/plugin-commonjs": "^17.0.0", 13 | "@rollup/plugin-node-resolve": "^11.0.0", 14 | "@rollup/plugin-typescript": "^8.0.0", 15 | "@tauri-apps/api": "^1.0.1", 16 | "@tauri-apps/cli": "^1.0.0", 17 | "@tsconfig/svelte": "^1.0.0", 18 | "rollup": "^2.3.4", 19 | "rollup-plugin-css-only": "^3.1.0", 20 | "rollup-plugin-livereload": "^2.0.0", 21 | "rollup-plugin-svelte": "^7.0.0", 22 | "rollup-plugin-terser": "^7.0.0", 23 | "svelte": "^3.49.0", 24 | "svelte-check": "^1.0.0", 25 | "svelte-preprocess": "^4.0.0", 26 | "tslib": "^2.0.0", 27 | "typescript": "^4.0.0" 28 | }, 29 | "dependencies": { 30 | "bootstrap": "^4.6.0", 31 | "sirv-cli": "^1.0.0", 32 | "sveltestrap": "^4.1.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- 1 | /* html, body { 2 | position: relative; 3 | width: 100%; 4 | height: 100%; 5 | } 6 | 7 | body { 8 | color: #333; 9 | margin: 0; 10 | padding: 8px; 11 | box-sizing: border-box; 12 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; 13 | } 14 | 15 | a { 16 | color: rgb(0,100,200); 17 | text-decoration: none; 18 | } 19 | 20 | a:hover { 21 | text-decoration: underline; 22 | } 23 | 24 | a:visited { 25 | color: rgb(0,80,160); 26 | } 27 | 28 | label { 29 | display: block; 30 | } 31 | 32 | input, button, select, textarea { 33 | font-family: inherit; 34 | font-size: inherit; 35 | -webkit-padding: 0.4em 0; 36 | padding: 0.4em; 37 | margin: 0 0 0.5em 0; 38 | box-sizing: border-box; 39 | border: 1px solid #ccc; 40 | border-radius: 2px; 41 | } 42 | 43 | input:disabled { 44 | color: #ccc; 45 | } 46 | 47 | button { 48 | color: #333; 49 | background-color: #f4f4f4; 50 | outline: none; 51 | } 52 | 53 | button:disabled { 54 | color: #999; 55 | } 56 | 57 | button:not(:disabled):active { 58 | background-color: #ddd; 59 | } 60 | 61 | button:focus { 62 | border-color: #666; 63 | } */ 64 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Svelte app 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import svelte from 'rollup-plugin-svelte'; 2 | import commonjs from '@rollup/plugin-commonjs'; 3 | import resolve from '@rollup/plugin-node-resolve'; 4 | import livereload from 'rollup-plugin-livereload'; 5 | import { terser } from 'rollup-plugin-terser'; 6 | import sveltePreprocess from 'svelte-preprocess'; 7 | import typescript from '@rollup/plugin-typescript'; 8 | import css from 'rollup-plugin-css-only'; 9 | 10 | const production = !process.env.ROLLUP_WATCH; 11 | 12 | function serve() { 13 | let server; 14 | 15 | function toExit() { 16 | if (server) server.kill(0); 17 | } 18 | 19 | return { 20 | writeBundle() { 21 | if (server) return; 22 | server = require('child_process').spawn('npm', ['run', 'start', '--', '--dev'], { 23 | stdio: ['ignore', 'inherit', 'inherit'], 24 | shell: true 25 | }); 26 | 27 | process.on('SIGTERM', toExit); 28 | process.on('exit', toExit); 29 | } 30 | }; 31 | } 32 | 33 | export default { 34 | input: 'src/main.ts', 35 | output: { 36 | sourcemap: true, 37 | format: 'iife', 38 | name: 'app', 39 | file: 'public/build/bundle.js' 40 | }, 41 | plugins: [ 42 | svelte({ 43 | preprocess: sveltePreprocess({ sourceMap: !production }), 44 | compilerOptions: { 45 | // enable run-time checks when not in production 46 | dev: !production 47 | } 48 | }), 49 | // we'll extract any component CSS out into 50 | // a separate file - better for performance 51 | css({ output: 'bundle.css' }), 52 | 53 | // If you have external dependencies installed from 54 | // npm, you'll most likely need these plugins. In 55 | // some cases you'll need additional configuration - 56 | // consult the documentation for details: 57 | // https://github.com/rollup/plugins/tree/master/packages/commonjs 58 | resolve({ 59 | browser: true, 60 | dedupe: ['svelte'] 61 | }), 62 | commonjs(), 63 | typescript({ 64 | sourceMap: !production, 65 | inlineSources: !production 66 | }), 67 | 68 | // In dev mode, call `npm run start` once 69 | // the bundle has been generated 70 | !production && serve(), 71 | 72 | // Watch the `public` directory and refresh the 73 | // browser on changes when not in production 74 | !production && livereload('public'), 75 | 76 | // If we're building for production (npm run build 77 | // instead of npm run dev), minify 78 | production && terser() 79 | ], 80 | watch: { 81 | clearScreen: false 82 | } 83 | }; 84 | -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | WixTools 5 | -------------------------------------------------------------------------------- /src-tauri/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 = "adler32" 13 | version = "1.2.0" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 16 | 17 | [[package]] 18 | name = "aho-corasick" 19 | version = "0.7.18" 20 | source = "registry+https://github.com/rust-lang/crates.io-index" 21 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 22 | dependencies = [ 23 | "memchr", 24 | ] 25 | 26 | [[package]] 27 | name = "alloc-no-stdlib" 28 | version = "2.0.3" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3" 31 | 32 | [[package]] 33 | name = "alloc-stdlib" 34 | version = "0.2.1" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2" 37 | dependencies = [ 38 | "alloc-no-stdlib", 39 | ] 40 | 41 | [[package]] 42 | name = "ansi_term" 43 | version = "0.12.1" 44 | source = "registry+https://github.com/rust-lang/crates.io-index" 45 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 46 | dependencies = [ 47 | "winapi", 48 | ] 49 | 50 | [[package]] 51 | name = "anyhow" 52 | version = "1.0.57" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" 55 | 56 | [[package]] 57 | name = "app" 58 | version = "0.3.0" 59 | dependencies = [ 60 | "serde", 61 | "serde_json", 62 | "tauri", 63 | "tauri-build", 64 | ] 65 | 66 | [[package]] 67 | name = "atk" 68 | version = "0.15.1" 69 | source = "registry+https://github.com/rust-lang/crates.io-index" 70 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 71 | dependencies = [ 72 | "atk-sys", 73 | "bitflags", 74 | "glib", 75 | "libc", 76 | ] 77 | 78 | [[package]] 79 | name = "atk-sys" 80 | version = "0.15.1" 81 | source = "registry+https://github.com/rust-lang/crates.io-index" 82 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 83 | dependencies = [ 84 | "glib-sys", 85 | "gobject-sys", 86 | "libc", 87 | "system-deps 6.0.2", 88 | ] 89 | 90 | [[package]] 91 | name = "attohttpc" 92 | version = "0.19.1" 93 | source = "registry+https://github.com/rust-lang/crates.io-index" 94 | checksum = "262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e" 95 | dependencies = [ 96 | "flate2", 97 | "http", 98 | "log", 99 | "native-tls", 100 | "openssl", 101 | "serde", 102 | "serde_json", 103 | "serde_urlencoded", 104 | "url", 105 | "wildmatch", 106 | ] 107 | 108 | [[package]] 109 | name = "autocfg" 110 | version = "1.1.0" 111 | source = "registry+https://github.com/rust-lang/crates.io-index" 112 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 113 | 114 | [[package]] 115 | name = "base64" 116 | version = "0.13.0" 117 | source = "registry+https://github.com/rust-lang/crates.io-index" 118 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 119 | 120 | [[package]] 121 | name = "bitflags" 122 | version = "1.3.2" 123 | source = "registry+https://github.com/rust-lang/crates.io-index" 124 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 125 | 126 | [[package]] 127 | name = "block" 128 | version = "0.1.6" 129 | source = "registry+https://github.com/rust-lang/crates.io-index" 130 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 131 | 132 | [[package]] 133 | name = "block-buffer" 134 | version = "0.10.2" 135 | source = "registry+https://github.com/rust-lang/crates.io-index" 136 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 137 | dependencies = [ 138 | "generic-array", 139 | ] 140 | 141 | [[package]] 142 | name = "brotli" 143 | version = "3.3.4" 144 | source = "registry+https://github.com/rust-lang/crates.io-index" 145 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 146 | dependencies = [ 147 | "alloc-no-stdlib", 148 | "alloc-stdlib", 149 | "brotli-decompressor", 150 | ] 151 | 152 | [[package]] 153 | name = "brotli-decompressor" 154 | version = "2.3.2" 155 | source = "registry+https://github.com/rust-lang/crates.io-index" 156 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 157 | dependencies = [ 158 | "alloc-no-stdlib", 159 | "alloc-stdlib", 160 | ] 161 | 162 | [[package]] 163 | name = "bstr" 164 | version = "0.2.17" 165 | source = "registry+https://github.com/rust-lang/crates.io-index" 166 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 167 | dependencies = [ 168 | "memchr", 169 | ] 170 | 171 | [[package]] 172 | name = "bumpalo" 173 | version = "3.10.0" 174 | source = "registry+https://github.com/rust-lang/crates.io-index" 175 | checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 176 | 177 | [[package]] 178 | name = "bytemuck" 179 | version = "1.9.1" 180 | source = "registry+https://github.com/rust-lang/crates.io-index" 181 | checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc" 182 | 183 | [[package]] 184 | name = "byteorder" 185 | version = "1.4.3" 186 | source = "registry+https://github.com/rust-lang/crates.io-index" 187 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 188 | 189 | [[package]] 190 | name = "bytes" 191 | version = "1.1.0" 192 | source = "registry+https://github.com/rust-lang/crates.io-index" 193 | checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 194 | 195 | [[package]] 196 | name = "cairo-rs" 197 | version = "0.15.11" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "62be3562254e90c1c6050a72aa638f6315593e98c5cdaba9017cedbabf0a5dee" 200 | dependencies = [ 201 | "bitflags", 202 | "cairo-sys-rs", 203 | "glib", 204 | "libc", 205 | "thiserror", 206 | ] 207 | 208 | [[package]] 209 | name = "cairo-sys-rs" 210 | version = "0.15.1" 211 | source = "registry+https://github.com/rust-lang/crates.io-index" 212 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 213 | dependencies = [ 214 | "glib-sys", 215 | "libc", 216 | "system-deps 6.0.2", 217 | ] 218 | 219 | [[package]] 220 | name = "cargo_toml" 221 | version = "0.11.5" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "5809dd3e6444651fd1cdd3dbec71eca438c439a0fcc8081674a14da0afe50185" 224 | dependencies = [ 225 | "serde", 226 | "serde_derive", 227 | "toml", 228 | ] 229 | 230 | [[package]] 231 | name = "cc" 232 | version = "1.0.73" 233 | source = "registry+https://github.com/rust-lang/crates.io-index" 234 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 235 | 236 | [[package]] 237 | name = "cesu8" 238 | version = "1.1.0" 239 | source = "registry+https://github.com/rust-lang/crates.io-index" 240 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 241 | 242 | [[package]] 243 | name = "cfb" 244 | version = "0.6.1" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c" 247 | dependencies = [ 248 | "byteorder", 249 | "uuid 0.8.2", 250 | ] 251 | 252 | [[package]] 253 | name = "cfg-expr" 254 | version = "0.9.1" 255 | source = "registry+https://github.com/rust-lang/crates.io-index" 256 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 257 | dependencies = [ 258 | "smallvec", 259 | ] 260 | 261 | [[package]] 262 | name = "cfg-expr" 263 | version = "0.10.3" 264 | source = "registry+https://github.com/rust-lang/crates.io-index" 265 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" 266 | dependencies = [ 267 | "smallvec", 268 | ] 269 | 270 | [[package]] 271 | name = "cfg-if" 272 | version = "1.0.0" 273 | source = "registry+https://github.com/rust-lang/crates.io-index" 274 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 275 | 276 | [[package]] 277 | name = "cocoa" 278 | version = "0.24.0" 279 | source = "registry+https://github.com/rust-lang/crates.io-index" 280 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832" 281 | dependencies = [ 282 | "bitflags", 283 | "block", 284 | "cocoa-foundation", 285 | "core-foundation", 286 | "core-graphics", 287 | "foreign-types", 288 | "libc", 289 | "objc", 290 | ] 291 | 292 | [[package]] 293 | name = "cocoa-foundation" 294 | version = "0.1.0" 295 | source = "registry+https://github.com/rust-lang/crates.io-index" 296 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 297 | dependencies = [ 298 | "bitflags", 299 | "block", 300 | "core-foundation", 301 | "core-graphics-types", 302 | "foreign-types", 303 | "libc", 304 | "objc", 305 | ] 306 | 307 | [[package]] 308 | name = "color_quant" 309 | version = "1.1.0" 310 | source = "registry+https://github.com/rust-lang/crates.io-index" 311 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 312 | 313 | [[package]] 314 | name = "combine" 315 | version = "4.6.4" 316 | source = "registry+https://github.com/rust-lang/crates.io-index" 317 | checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948" 318 | dependencies = [ 319 | "bytes", 320 | "memchr", 321 | ] 322 | 323 | [[package]] 324 | name = "convert_case" 325 | version = "0.4.0" 326 | source = "registry+https://github.com/rust-lang/crates.io-index" 327 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 328 | 329 | [[package]] 330 | name = "core-foundation" 331 | version = "0.9.3" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 334 | dependencies = [ 335 | "core-foundation-sys", 336 | "libc", 337 | ] 338 | 339 | [[package]] 340 | name = "core-foundation-sys" 341 | version = "0.8.3" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 344 | 345 | [[package]] 346 | name = "core-graphics" 347 | version = "0.22.3" 348 | source = "registry+https://github.com/rust-lang/crates.io-index" 349 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 350 | dependencies = [ 351 | "bitflags", 352 | "core-foundation", 353 | "core-graphics-types", 354 | "foreign-types", 355 | "libc", 356 | ] 357 | 358 | [[package]] 359 | name = "core-graphics-types" 360 | version = "0.1.1" 361 | source = "registry+https://github.com/rust-lang/crates.io-index" 362 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 363 | dependencies = [ 364 | "bitflags", 365 | "core-foundation", 366 | "foreign-types", 367 | "libc", 368 | ] 369 | 370 | [[package]] 371 | name = "cpufeatures" 372 | version = "0.2.2" 373 | source = "registry+https://github.com/rust-lang/crates.io-index" 374 | checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 375 | dependencies = [ 376 | "libc", 377 | ] 378 | 379 | [[package]] 380 | name = "crc32fast" 381 | version = "1.3.2" 382 | source = "registry+https://github.com/rust-lang/crates.io-index" 383 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 384 | dependencies = [ 385 | "cfg-if", 386 | ] 387 | 388 | [[package]] 389 | name = "crossbeam-channel" 390 | version = "0.5.5" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c" 393 | dependencies = [ 394 | "cfg-if", 395 | "crossbeam-utils", 396 | ] 397 | 398 | [[package]] 399 | name = "crossbeam-utils" 400 | version = "0.8.9" 401 | source = "registry+https://github.com/rust-lang/crates.io-index" 402 | checksum = "8ff1f980957787286a554052d03c7aee98d99cc32e09f6d45f0a814133c87978" 403 | dependencies = [ 404 | "cfg-if", 405 | "once_cell", 406 | ] 407 | 408 | [[package]] 409 | name = "crypto-common" 410 | version = "0.1.3" 411 | source = "registry+https://github.com/rust-lang/crates.io-index" 412 | checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 413 | dependencies = [ 414 | "generic-array", 415 | "typenum", 416 | ] 417 | 418 | [[package]] 419 | name = "cssparser" 420 | version = "0.27.2" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 423 | dependencies = [ 424 | "cssparser-macros", 425 | "dtoa-short", 426 | "itoa 0.4.8", 427 | "matches", 428 | "phf 0.8.0", 429 | "proc-macro2", 430 | "quote", 431 | "smallvec", 432 | "syn", 433 | ] 434 | 435 | [[package]] 436 | name = "cssparser-macros" 437 | version = "0.6.0" 438 | source = "registry+https://github.com/rust-lang/crates.io-index" 439 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 440 | dependencies = [ 441 | "quote", 442 | "syn", 443 | ] 444 | 445 | [[package]] 446 | name = "ctor" 447 | version = "0.1.22" 448 | source = "registry+https://github.com/rust-lang/crates.io-index" 449 | checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c" 450 | dependencies = [ 451 | "quote", 452 | "syn", 453 | ] 454 | 455 | [[package]] 456 | name = "cty" 457 | version = "0.2.2" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 460 | 461 | [[package]] 462 | name = "darling" 463 | version = "0.13.4" 464 | source = "registry+https://github.com/rust-lang/crates.io-index" 465 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 466 | dependencies = [ 467 | "darling_core", 468 | "darling_macro", 469 | ] 470 | 471 | [[package]] 472 | name = "darling_core" 473 | version = "0.13.4" 474 | source = "registry+https://github.com/rust-lang/crates.io-index" 475 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 476 | dependencies = [ 477 | "fnv", 478 | "ident_case", 479 | "proc-macro2", 480 | "quote", 481 | "strsim", 482 | "syn", 483 | ] 484 | 485 | [[package]] 486 | name = "darling_macro" 487 | version = "0.13.4" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 490 | dependencies = [ 491 | "darling_core", 492 | "quote", 493 | "syn", 494 | ] 495 | 496 | [[package]] 497 | name = "dbus" 498 | version = "0.9.5" 499 | source = "registry+https://github.com/rust-lang/crates.io-index" 500 | checksum = "de0a745c25b32caa56b82a3950f5fec7893a960f4c10ca3b02060b0c38d8c2ce" 501 | dependencies = [ 502 | "libc", 503 | "libdbus-sys", 504 | "winapi", 505 | ] 506 | 507 | [[package]] 508 | name = "deflate" 509 | version = "0.7.20" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4" 512 | dependencies = [ 513 | "adler32", 514 | "byteorder", 515 | ] 516 | 517 | [[package]] 518 | name = "deflate" 519 | version = "1.0.0" 520 | source = "registry+https://github.com/rust-lang/crates.io-index" 521 | checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f" 522 | dependencies = [ 523 | "adler32", 524 | ] 525 | 526 | [[package]] 527 | name = "derive_more" 528 | version = "0.99.17" 529 | source = "registry+https://github.com/rust-lang/crates.io-index" 530 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 531 | dependencies = [ 532 | "convert_case", 533 | "proc-macro2", 534 | "quote", 535 | "rustc_version 0.4.0", 536 | "syn", 537 | ] 538 | 539 | [[package]] 540 | name = "digest" 541 | version = "0.10.3" 542 | source = "registry+https://github.com/rust-lang/crates.io-index" 543 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 544 | dependencies = [ 545 | "block-buffer", 546 | "crypto-common", 547 | ] 548 | 549 | [[package]] 550 | name = "dirs-next" 551 | version = "2.0.0" 552 | source = "registry+https://github.com/rust-lang/crates.io-index" 553 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 554 | dependencies = [ 555 | "cfg-if", 556 | "dirs-sys-next", 557 | ] 558 | 559 | [[package]] 560 | name = "dirs-sys-next" 561 | version = "0.1.2" 562 | source = "registry+https://github.com/rust-lang/crates.io-index" 563 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 564 | dependencies = [ 565 | "libc", 566 | "redox_users", 567 | "winapi", 568 | ] 569 | 570 | [[package]] 571 | name = "dispatch" 572 | version = "0.2.0" 573 | source = "registry+https://github.com/rust-lang/crates.io-index" 574 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 575 | 576 | [[package]] 577 | name = "dtoa" 578 | version = "0.4.8" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 581 | 582 | [[package]] 583 | name = "dtoa-short" 584 | version = "0.3.3" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 587 | dependencies = [ 588 | "dtoa", 589 | ] 590 | 591 | [[package]] 592 | name = "embed-resource" 593 | version = "1.7.2" 594 | source = "registry+https://github.com/rust-lang/crates.io-index" 595 | checksum = "ecc24ff8d764818e9ab17963b0593c535f077a513f565e75e4352d758bc4d8c0" 596 | dependencies = [ 597 | "cc", 598 | "rustc_version 0.4.0", 599 | "toml", 600 | "vswhom", 601 | "winreg", 602 | ] 603 | 604 | [[package]] 605 | name = "embed_plist" 606 | version = "1.2.2" 607 | source = "registry+https://github.com/rust-lang/crates.io-index" 608 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 609 | 610 | [[package]] 611 | name = "fastrand" 612 | version = "1.7.0" 613 | source = "registry+https://github.com/rust-lang/crates.io-index" 614 | checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" 615 | dependencies = [ 616 | "instant", 617 | ] 618 | 619 | [[package]] 620 | name = "field-offset" 621 | version = "0.3.4" 622 | source = "registry+https://github.com/rust-lang/crates.io-index" 623 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 624 | dependencies = [ 625 | "memoffset", 626 | "rustc_version 0.3.3", 627 | ] 628 | 629 | [[package]] 630 | name = "filetime" 631 | version = "0.2.16" 632 | source = "registry+https://github.com/rust-lang/crates.io-index" 633 | checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c" 634 | dependencies = [ 635 | "cfg-if", 636 | "libc", 637 | "redox_syscall", 638 | "winapi", 639 | ] 640 | 641 | [[package]] 642 | name = "flate2" 643 | version = "1.0.24" 644 | source = "registry+https://github.com/rust-lang/crates.io-index" 645 | checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 646 | dependencies = [ 647 | "crc32fast", 648 | "miniz_oxide", 649 | ] 650 | 651 | [[package]] 652 | name = "fnv" 653 | version = "1.0.7" 654 | source = "registry+https://github.com/rust-lang/crates.io-index" 655 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 656 | 657 | [[package]] 658 | name = "foreign-types" 659 | version = "0.3.2" 660 | source = "registry+https://github.com/rust-lang/crates.io-index" 661 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 662 | dependencies = [ 663 | "foreign-types-shared", 664 | ] 665 | 666 | [[package]] 667 | name = "foreign-types-shared" 668 | version = "0.1.1" 669 | source = "registry+https://github.com/rust-lang/crates.io-index" 670 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 671 | 672 | [[package]] 673 | name = "form_urlencoded" 674 | version = "1.0.1" 675 | source = "registry+https://github.com/rust-lang/crates.io-index" 676 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 677 | dependencies = [ 678 | "matches", 679 | "percent-encoding", 680 | ] 681 | 682 | [[package]] 683 | name = "futf" 684 | version = "0.1.5" 685 | source = "registry+https://github.com/rust-lang/crates.io-index" 686 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 687 | dependencies = [ 688 | "mac", 689 | "new_debug_unreachable", 690 | ] 691 | 692 | [[package]] 693 | name = "futures" 694 | version = "0.3.21" 695 | source = "registry+https://github.com/rust-lang/crates.io-index" 696 | checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 697 | dependencies = [ 698 | "futures-channel", 699 | "futures-core", 700 | "futures-executor", 701 | "futures-io", 702 | "futures-sink", 703 | "futures-task", 704 | "futures-util", 705 | ] 706 | 707 | [[package]] 708 | name = "futures-channel" 709 | version = "0.3.21" 710 | source = "registry+https://github.com/rust-lang/crates.io-index" 711 | checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 712 | dependencies = [ 713 | "futures-core", 714 | "futures-sink", 715 | ] 716 | 717 | [[package]] 718 | name = "futures-core" 719 | version = "0.3.21" 720 | source = "registry+https://github.com/rust-lang/crates.io-index" 721 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 722 | 723 | [[package]] 724 | name = "futures-executor" 725 | version = "0.3.21" 726 | source = "registry+https://github.com/rust-lang/crates.io-index" 727 | checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 728 | dependencies = [ 729 | "futures-core", 730 | "futures-task", 731 | "futures-util", 732 | ] 733 | 734 | [[package]] 735 | name = "futures-io" 736 | version = "0.3.21" 737 | source = "registry+https://github.com/rust-lang/crates.io-index" 738 | checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 739 | 740 | [[package]] 741 | name = "futures-lite" 742 | version = "1.12.0" 743 | source = "registry+https://github.com/rust-lang/crates.io-index" 744 | checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 745 | dependencies = [ 746 | "fastrand", 747 | "futures-core", 748 | "futures-io", 749 | "memchr", 750 | "parking", 751 | "pin-project-lite", 752 | "waker-fn", 753 | ] 754 | 755 | [[package]] 756 | name = "futures-macro" 757 | version = "0.3.21" 758 | source = "registry+https://github.com/rust-lang/crates.io-index" 759 | checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 760 | dependencies = [ 761 | "proc-macro2", 762 | "quote", 763 | "syn", 764 | ] 765 | 766 | [[package]] 767 | name = "futures-sink" 768 | version = "0.3.21" 769 | source = "registry+https://github.com/rust-lang/crates.io-index" 770 | checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 771 | 772 | [[package]] 773 | name = "futures-task" 774 | version = "0.3.21" 775 | source = "registry+https://github.com/rust-lang/crates.io-index" 776 | checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 777 | 778 | [[package]] 779 | name = "futures-util" 780 | version = "0.3.21" 781 | source = "registry+https://github.com/rust-lang/crates.io-index" 782 | checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 783 | dependencies = [ 784 | "futures-channel", 785 | "futures-core", 786 | "futures-io", 787 | "futures-macro", 788 | "futures-sink", 789 | "futures-task", 790 | "memchr", 791 | "pin-project-lite", 792 | "pin-utils", 793 | "slab", 794 | ] 795 | 796 | [[package]] 797 | name = "fxhash" 798 | version = "0.2.1" 799 | source = "registry+https://github.com/rust-lang/crates.io-index" 800 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 801 | dependencies = [ 802 | "byteorder", 803 | ] 804 | 805 | [[package]] 806 | name = "gdk" 807 | version = "0.15.4" 808 | source = "registry+https://github.com/rust-lang/crates.io-index" 809 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 810 | dependencies = [ 811 | "bitflags", 812 | "cairo-rs", 813 | "gdk-pixbuf", 814 | "gdk-sys", 815 | "gio", 816 | "glib", 817 | "libc", 818 | "pango", 819 | ] 820 | 821 | [[package]] 822 | name = "gdk-pixbuf" 823 | version = "0.15.11" 824 | source = "registry+https://github.com/rust-lang/crates.io-index" 825 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 826 | dependencies = [ 827 | "bitflags", 828 | "gdk-pixbuf-sys", 829 | "gio", 830 | "glib", 831 | "libc", 832 | ] 833 | 834 | [[package]] 835 | name = "gdk-pixbuf-sys" 836 | version = "0.15.10" 837 | source = "registry+https://github.com/rust-lang/crates.io-index" 838 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 839 | dependencies = [ 840 | "gio-sys", 841 | "glib-sys", 842 | "gobject-sys", 843 | "libc", 844 | "system-deps 6.0.2", 845 | ] 846 | 847 | [[package]] 848 | name = "gdk-sys" 849 | version = "0.15.1" 850 | source = "registry+https://github.com/rust-lang/crates.io-index" 851 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 852 | dependencies = [ 853 | "cairo-sys-rs", 854 | "gdk-pixbuf-sys", 855 | "gio-sys", 856 | "glib-sys", 857 | "gobject-sys", 858 | "libc", 859 | "pango-sys", 860 | "pkg-config", 861 | "system-deps 6.0.2", 862 | ] 863 | 864 | [[package]] 865 | name = "gdkx11-sys" 866 | version = "0.15.1" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 869 | dependencies = [ 870 | "gdk-sys", 871 | "glib-sys", 872 | "libc", 873 | "system-deps 6.0.2", 874 | "x11", 875 | ] 876 | 877 | [[package]] 878 | name = "generator" 879 | version = "0.7.0" 880 | source = "registry+https://github.com/rust-lang/crates.io-index" 881 | checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee" 882 | dependencies = [ 883 | "cc", 884 | "libc", 885 | "log", 886 | "rustversion", 887 | "winapi", 888 | ] 889 | 890 | [[package]] 891 | name = "generic-array" 892 | version = "0.14.5" 893 | source = "registry+https://github.com/rust-lang/crates.io-index" 894 | checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 895 | dependencies = [ 896 | "typenum", 897 | "version_check", 898 | ] 899 | 900 | [[package]] 901 | name = "getrandom" 902 | version = "0.1.16" 903 | source = "registry+https://github.com/rust-lang/crates.io-index" 904 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 905 | dependencies = [ 906 | "cfg-if", 907 | "libc", 908 | "wasi 0.9.0+wasi-snapshot-preview1", 909 | ] 910 | 911 | [[package]] 912 | name = "getrandom" 913 | version = "0.2.7" 914 | source = "registry+https://github.com/rust-lang/crates.io-index" 915 | checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 916 | dependencies = [ 917 | "cfg-if", 918 | "libc", 919 | "wasi 0.11.0+wasi-snapshot-preview1", 920 | ] 921 | 922 | [[package]] 923 | name = "gio" 924 | version = "0.15.11" 925 | source = "registry+https://github.com/rust-lang/crates.io-index" 926 | checksum = "0f132be35e05d9662b9fa0fee3f349c6621f7782e0105917f4cc73c1bf47eceb" 927 | dependencies = [ 928 | "bitflags", 929 | "futures-channel", 930 | "futures-core", 931 | "futures-io", 932 | "gio-sys", 933 | "glib", 934 | "libc", 935 | "once_cell", 936 | "thiserror", 937 | ] 938 | 939 | [[package]] 940 | name = "gio-sys" 941 | version = "0.15.10" 942 | source = "registry+https://github.com/rust-lang/crates.io-index" 943 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 944 | dependencies = [ 945 | "glib-sys", 946 | "gobject-sys", 947 | "libc", 948 | "system-deps 6.0.2", 949 | "winapi", 950 | ] 951 | 952 | [[package]] 953 | name = "glib" 954 | version = "0.15.11" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "bd124026a2fa8c33a3d17a3fe59c103f2d9fa5bd92c19e029e037736729abeab" 957 | dependencies = [ 958 | "bitflags", 959 | "futures-channel", 960 | "futures-core", 961 | "futures-executor", 962 | "futures-task", 963 | "glib-macros", 964 | "glib-sys", 965 | "gobject-sys", 966 | "libc", 967 | "once_cell", 968 | "smallvec", 969 | "thiserror", 970 | ] 971 | 972 | [[package]] 973 | name = "glib-macros" 974 | version = "0.15.11" 975 | source = "registry+https://github.com/rust-lang/crates.io-index" 976 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" 977 | dependencies = [ 978 | "anyhow", 979 | "heck 0.4.0", 980 | "proc-macro-crate", 981 | "proc-macro-error", 982 | "proc-macro2", 983 | "quote", 984 | "syn", 985 | ] 986 | 987 | [[package]] 988 | name = "glib-sys" 989 | version = "0.15.10" 990 | source = "registry+https://github.com/rust-lang/crates.io-index" 991 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 992 | dependencies = [ 993 | "libc", 994 | "system-deps 6.0.2", 995 | ] 996 | 997 | [[package]] 998 | name = "glob" 999 | version = "0.3.0" 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" 1001 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1002 | 1003 | [[package]] 1004 | name = "globset" 1005 | version = "0.4.9" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 1008 | dependencies = [ 1009 | "aho-corasick", 1010 | "bstr", 1011 | "fnv", 1012 | "log", 1013 | "regex", 1014 | ] 1015 | 1016 | [[package]] 1017 | name = "gobject-sys" 1018 | version = "0.15.10" 1019 | source = "registry+https://github.com/rust-lang/crates.io-index" 1020 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1021 | dependencies = [ 1022 | "glib-sys", 1023 | "libc", 1024 | "system-deps 6.0.2", 1025 | ] 1026 | 1027 | [[package]] 1028 | name = "gtk" 1029 | version = "0.15.5" 1030 | source = "registry+https://github.com/rust-lang/crates.io-index" 1031 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1032 | dependencies = [ 1033 | "atk", 1034 | "bitflags", 1035 | "cairo-rs", 1036 | "field-offset", 1037 | "futures-channel", 1038 | "gdk", 1039 | "gdk-pixbuf", 1040 | "gio", 1041 | "glib", 1042 | "gtk-sys", 1043 | "gtk3-macros", 1044 | "libc", 1045 | "once_cell", 1046 | "pango", 1047 | "pkg-config", 1048 | ] 1049 | 1050 | [[package]] 1051 | name = "gtk-sys" 1052 | version = "0.15.3" 1053 | source = "registry+https://github.com/rust-lang/crates.io-index" 1054 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1055 | dependencies = [ 1056 | "atk-sys", 1057 | "cairo-sys-rs", 1058 | "gdk-pixbuf-sys", 1059 | "gdk-sys", 1060 | "gio-sys", 1061 | "glib-sys", 1062 | "gobject-sys", 1063 | "libc", 1064 | "pango-sys", 1065 | "system-deps 6.0.2", 1066 | ] 1067 | 1068 | [[package]] 1069 | name = "gtk3-macros" 1070 | version = "0.15.4" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9" 1073 | dependencies = [ 1074 | "anyhow", 1075 | "proc-macro-crate", 1076 | "proc-macro-error", 1077 | "proc-macro2", 1078 | "quote", 1079 | "syn", 1080 | ] 1081 | 1082 | [[package]] 1083 | name = "heck" 1084 | version = "0.3.3" 1085 | source = "registry+https://github.com/rust-lang/crates.io-index" 1086 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1087 | dependencies = [ 1088 | "unicode-segmentation", 1089 | ] 1090 | 1091 | [[package]] 1092 | name = "heck" 1093 | version = "0.4.0" 1094 | source = "registry+https://github.com/rust-lang/crates.io-index" 1095 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1096 | 1097 | [[package]] 1098 | name = "hermit-abi" 1099 | version = "0.1.19" 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" 1101 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1102 | dependencies = [ 1103 | "libc", 1104 | ] 1105 | 1106 | [[package]] 1107 | name = "html5ever" 1108 | version = "0.25.2" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1111 | dependencies = [ 1112 | "log", 1113 | "mac", 1114 | "markup5ever", 1115 | "proc-macro2", 1116 | "quote", 1117 | "syn", 1118 | ] 1119 | 1120 | [[package]] 1121 | name = "http" 1122 | version = "0.2.8" 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" 1124 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1125 | dependencies = [ 1126 | "bytes", 1127 | "fnv", 1128 | "itoa 1.0.2", 1129 | ] 1130 | 1131 | [[package]] 1132 | name = "http-range" 1133 | version = "0.1.5" 1134 | source = "registry+https://github.com/rust-lang/crates.io-index" 1135 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1136 | 1137 | [[package]] 1138 | name = "ico" 1139 | version = "0.1.0" 1140 | source = "registry+https://github.com/rust-lang/crates.io-index" 1141 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1142 | dependencies = [ 1143 | "byteorder", 1144 | "png 0.11.0", 1145 | ] 1146 | 1147 | [[package]] 1148 | name = "ident_case" 1149 | version = "1.0.1" 1150 | source = "registry+https://github.com/rust-lang/crates.io-index" 1151 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1152 | 1153 | [[package]] 1154 | name = "idna" 1155 | version = "0.2.3" 1156 | source = "registry+https://github.com/rust-lang/crates.io-index" 1157 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1158 | dependencies = [ 1159 | "matches", 1160 | "unicode-bidi", 1161 | "unicode-normalization", 1162 | ] 1163 | 1164 | [[package]] 1165 | name = "ignore" 1166 | version = "0.4.18" 1167 | source = "registry+https://github.com/rust-lang/crates.io-index" 1168 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1169 | dependencies = [ 1170 | "crossbeam-utils", 1171 | "globset", 1172 | "lazy_static", 1173 | "log", 1174 | "memchr", 1175 | "regex", 1176 | "same-file", 1177 | "thread_local", 1178 | "walkdir", 1179 | "winapi-util", 1180 | ] 1181 | 1182 | [[package]] 1183 | name = "image" 1184 | version = "0.24.2" 1185 | source = "registry+https://github.com/rust-lang/crates.io-index" 1186 | checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212" 1187 | dependencies = [ 1188 | "bytemuck", 1189 | "byteorder", 1190 | "color_quant", 1191 | "num-iter", 1192 | "num-rational", 1193 | "num-traits", 1194 | ] 1195 | 1196 | [[package]] 1197 | name = "infer" 1198 | version = "0.7.0" 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" 1200 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1201 | dependencies = [ 1202 | "cfb", 1203 | ] 1204 | 1205 | [[package]] 1206 | name = "inflate" 1207 | version = "0.3.4" 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" 1209 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1210 | dependencies = [ 1211 | "adler32", 1212 | ] 1213 | 1214 | [[package]] 1215 | name = "instant" 1216 | version = "0.1.12" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1219 | dependencies = [ 1220 | "cfg-if", 1221 | ] 1222 | 1223 | [[package]] 1224 | name = "itoa" 1225 | version = "0.4.8" 1226 | source = "registry+https://github.com/rust-lang/crates.io-index" 1227 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1228 | 1229 | [[package]] 1230 | name = "itoa" 1231 | version = "1.0.2" 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" 1233 | checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 1234 | 1235 | [[package]] 1236 | name = "javascriptcore-rs" 1237 | version = "0.16.0" 1238 | source = "registry+https://github.com/rust-lang/crates.io-index" 1239 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1240 | dependencies = [ 1241 | "bitflags", 1242 | "glib", 1243 | "javascriptcore-rs-sys", 1244 | ] 1245 | 1246 | [[package]] 1247 | name = "javascriptcore-rs-sys" 1248 | version = "0.4.0" 1249 | source = "registry+https://github.com/rust-lang/crates.io-index" 1250 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1251 | dependencies = [ 1252 | "glib-sys", 1253 | "gobject-sys", 1254 | "libc", 1255 | "system-deps 5.0.0", 1256 | ] 1257 | 1258 | [[package]] 1259 | name = "jni" 1260 | version = "0.18.0" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | checksum = "24967112a1e4301ca5342ea339763613a37592b8a6ce6cf2e4494537c7a42faf" 1263 | dependencies = [ 1264 | "cesu8", 1265 | "combine", 1266 | "jni-sys", 1267 | "log", 1268 | "thiserror", 1269 | "walkdir", 1270 | ] 1271 | 1272 | [[package]] 1273 | name = "jni" 1274 | version = "0.19.0" 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" 1276 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1277 | dependencies = [ 1278 | "cesu8", 1279 | "combine", 1280 | "jni-sys", 1281 | "log", 1282 | "thiserror", 1283 | "walkdir", 1284 | ] 1285 | 1286 | [[package]] 1287 | name = "jni-sys" 1288 | version = "0.3.0" 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" 1290 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1291 | 1292 | [[package]] 1293 | name = "js-sys" 1294 | version = "0.3.58" 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" 1296 | checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27" 1297 | dependencies = [ 1298 | "wasm-bindgen", 1299 | ] 1300 | 1301 | [[package]] 1302 | name = "json-patch" 1303 | version = "0.2.6" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 1306 | dependencies = [ 1307 | "serde", 1308 | "serde_json", 1309 | "treediff", 1310 | ] 1311 | 1312 | [[package]] 1313 | name = "kuchiki" 1314 | version = "0.8.1" 1315 | source = "registry+https://github.com/rust-lang/crates.io-index" 1316 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1317 | dependencies = [ 1318 | "cssparser", 1319 | "html5ever", 1320 | "matches", 1321 | "selectors", 1322 | ] 1323 | 1324 | [[package]] 1325 | name = "lazy_static" 1326 | version = "1.4.0" 1327 | source = "registry+https://github.com/rust-lang/crates.io-index" 1328 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1329 | 1330 | [[package]] 1331 | name = "libc" 1332 | version = "0.2.126" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 1335 | 1336 | [[package]] 1337 | name = "libdbus-sys" 1338 | version = "0.2.2" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" 1341 | dependencies = [ 1342 | "pkg-config", 1343 | ] 1344 | 1345 | [[package]] 1346 | name = "lock_api" 1347 | version = "0.4.7" 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" 1349 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1350 | dependencies = [ 1351 | "autocfg", 1352 | "scopeguard", 1353 | ] 1354 | 1355 | [[package]] 1356 | name = "log" 1357 | version = "0.4.17" 1358 | source = "registry+https://github.com/rust-lang/crates.io-index" 1359 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1360 | dependencies = [ 1361 | "cfg-if", 1362 | ] 1363 | 1364 | [[package]] 1365 | name = "loom" 1366 | version = "0.5.6" 1367 | source = "registry+https://github.com/rust-lang/crates.io-index" 1368 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1369 | dependencies = [ 1370 | "cfg-if", 1371 | "generator", 1372 | "scoped-tls", 1373 | "serde", 1374 | "serde_json", 1375 | "tracing", 1376 | "tracing-subscriber", 1377 | ] 1378 | 1379 | [[package]] 1380 | name = "mac" 1381 | version = "0.1.1" 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" 1383 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1384 | 1385 | [[package]] 1386 | name = "mac-notification-sys" 1387 | version = "0.5.2" 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" 1389 | checksum = "042f74a606175d72ca483e14e0873fe0f6c003f7af45865b17b16fdaface7203" 1390 | dependencies = [ 1391 | "cc", 1392 | "dirs-next", 1393 | "objc-foundation", 1394 | "objc_id", 1395 | "time", 1396 | ] 1397 | 1398 | [[package]] 1399 | name = "malloc_buf" 1400 | version = "0.0.6" 1401 | source = "registry+https://github.com/rust-lang/crates.io-index" 1402 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1403 | dependencies = [ 1404 | "libc", 1405 | ] 1406 | 1407 | [[package]] 1408 | name = "markup5ever" 1409 | version = "0.10.1" 1410 | source = "registry+https://github.com/rust-lang/crates.io-index" 1411 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1412 | dependencies = [ 1413 | "log", 1414 | "phf 0.8.0", 1415 | "phf_codegen", 1416 | "string_cache", 1417 | "string_cache_codegen", 1418 | "tendril", 1419 | ] 1420 | 1421 | [[package]] 1422 | name = "matchers" 1423 | version = "0.1.0" 1424 | source = "registry+https://github.com/rust-lang/crates.io-index" 1425 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1426 | dependencies = [ 1427 | "regex-automata", 1428 | ] 1429 | 1430 | [[package]] 1431 | name = "matches" 1432 | version = "0.1.9" 1433 | source = "registry+https://github.com/rust-lang/crates.io-index" 1434 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1435 | 1436 | [[package]] 1437 | name = "memchr" 1438 | version = "2.5.0" 1439 | source = "registry+https://github.com/rust-lang/crates.io-index" 1440 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1441 | 1442 | [[package]] 1443 | name = "memoffset" 1444 | version = "0.6.5" 1445 | source = "registry+https://github.com/rust-lang/crates.io-index" 1446 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1447 | dependencies = [ 1448 | "autocfg", 1449 | ] 1450 | 1451 | [[package]] 1452 | name = "miniz_oxide" 1453 | version = "0.5.3" 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" 1455 | checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1456 | dependencies = [ 1457 | "adler", 1458 | ] 1459 | 1460 | [[package]] 1461 | name = "native-tls" 1462 | version = "0.2.10" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1465 | dependencies = [ 1466 | "lazy_static", 1467 | "libc", 1468 | "log", 1469 | "openssl", 1470 | "openssl-probe", 1471 | "openssl-sys", 1472 | "schannel", 1473 | "security-framework", 1474 | "security-framework-sys", 1475 | "tempfile", 1476 | ] 1477 | 1478 | [[package]] 1479 | name = "ndk" 1480 | version = "0.6.0" 1481 | source = "registry+https://github.com/rust-lang/crates.io-index" 1482 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1483 | dependencies = [ 1484 | "bitflags", 1485 | "jni-sys", 1486 | "ndk-sys", 1487 | "num_enum", 1488 | "thiserror", 1489 | ] 1490 | 1491 | [[package]] 1492 | name = "ndk-context" 1493 | version = "0.1.1" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1496 | 1497 | [[package]] 1498 | name = "ndk-sys" 1499 | version = "0.3.0" 1500 | source = "registry+https://github.com/rust-lang/crates.io-index" 1501 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1502 | dependencies = [ 1503 | "jni-sys", 1504 | ] 1505 | 1506 | [[package]] 1507 | name = "new_debug_unreachable" 1508 | version = "1.0.4" 1509 | source = "registry+https://github.com/rust-lang/crates.io-index" 1510 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1511 | 1512 | [[package]] 1513 | name = "nodrop" 1514 | version = "0.1.14" 1515 | source = "registry+https://github.com/rust-lang/crates.io-index" 1516 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1517 | 1518 | [[package]] 1519 | name = "notify-rust" 1520 | version = "4.5.8" 1521 | source = "registry+https://github.com/rust-lang/crates.io-index" 1522 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4" 1523 | dependencies = [ 1524 | "dbus", 1525 | "mac-notification-sys", 1526 | "winrt-notification", 1527 | ] 1528 | 1529 | [[package]] 1530 | name = "num-integer" 1531 | version = "0.1.45" 1532 | source = "registry+https://github.com/rust-lang/crates.io-index" 1533 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1534 | dependencies = [ 1535 | "autocfg", 1536 | "num-traits", 1537 | ] 1538 | 1539 | [[package]] 1540 | name = "num-iter" 1541 | version = "0.1.43" 1542 | source = "registry+https://github.com/rust-lang/crates.io-index" 1543 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1544 | dependencies = [ 1545 | "autocfg", 1546 | "num-integer", 1547 | "num-traits", 1548 | ] 1549 | 1550 | [[package]] 1551 | name = "num-rational" 1552 | version = "0.4.0" 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" 1554 | checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" 1555 | dependencies = [ 1556 | "autocfg", 1557 | "num-integer", 1558 | "num-traits", 1559 | ] 1560 | 1561 | [[package]] 1562 | name = "num-traits" 1563 | version = "0.2.15" 1564 | source = "registry+https://github.com/rust-lang/crates.io-index" 1565 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1566 | dependencies = [ 1567 | "autocfg", 1568 | ] 1569 | 1570 | [[package]] 1571 | name = "num_cpus" 1572 | version = "1.13.1" 1573 | source = "registry+https://github.com/rust-lang/crates.io-index" 1574 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1575 | dependencies = [ 1576 | "hermit-abi", 1577 | "libc", 1578 | ] 1579 | 1580 | [[package]] 1581 | name = "num_enum" 1582 | version = "0.5.7" 1583 | source = "registry+https://github.com/rust-lang/crates.io-index" 1584 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1585 | dependencies = [ 1586 | "num_enum_derive", 1587 | ] 1588 | 1589 | [[package]] 1590 | name = "num_enum_derive" 1591 | version = "0.5.7" 1592 | source = "registry+https://github.com/rust-lang/crates.io-index" 1593 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1594 | dependencies = [ 1595 | "proc-macro-crate", 1596 | "proc-macro2", 1597 | "quote", 1598 | "syn", 1599 | ] 1600 | 1601 | [[package]] 1602 | name = "num_threads" 1603 | version = "0.1.6" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1606 | dependencies = [ 1607 | "libc", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "objc" 1612 | version = "0.2.7" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1615 | dependencies = [ 1616 | "malloc_buf", 1617 | "objc_exception", 1618 | ] 1619 | 1620 | [[package]] 1621 | name = "objc-foundation" 1622 | version = "0.1.1" 1623 | source = "registry+https://github.com/rust-lang/crates.io-index" 1624 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1625 | dependencies = [ 1626 | "block", 1627 | "objc", 1628 | "objc_id", 1629 | ] 1630 | 1631 | [[package]] 1632 | name = "objc_exception" 1633 | version = "0.1.2" 1634 | source = "registry+https://github.com/rust-lang/crates.io-index" 1635 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1636 | dependencies = [ 1637 | "cc", 1638 | ] 1639 | 1640 | [[package]] 1641 | name = "objc_id" 1642 | version = "0.1.1" 1643 | source = "registry+https://github.com/rust-lang/crates.io-index" 1644 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1645 | dependencies = [ 1646 | "objc", 1647 | ] 1648 | 1649 | [[package]] 1650 | name = "once_cell" 1651 | version = "1.12.0" 1652 | source = "registry+https://github.com/rust-lang/crates.io-index" 1653 | checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225" 1654 | 1655 | [[package]] 1656 | name = "open" 1657 | version = "3.0.1" 1658 | source = "registry+https://github.com/rust-lang/crates.io-index" 1659 | checksum = "360bcc8316bf6363aa3954c3ccc4de8add167b087e0259190a043c9514f910fe" 1660 | dependencies = [ 1661 | "pathdiff", 1662 | "windows-sys", 1663 | ] 1664 | 1665 | [[package]] 1666 | name = "openssl" 1667 | version = "0.10.40" 1668 | source = "registry+https://github.com/rust-lang/crates.io-index" 1669 | checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e" 1670 | dependencies = [ 1671 | "bitflags", 1672 | "cfg-if", 1673 | "foreign-types", 1674 | "libc", 1675 | "once_cell", 1676 | "openssl-macros", 1677 | "openssl-sys", 1678 | ] 1679 | 1680 | [[package]] 1681 | name = "openssl-macros" 1682 | version = "0.1.0" 1683 | source = "registry+https://github.com/rust-lang/crates.io-index" 1684 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1685 | dependencies = [ 1686 | "proc-macro2", 1687 | "quote", 1688 | "syn", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "openssl-probe" 1693 | version = "0.1.5" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1696 | 1697 | [[package]] 1698 | name = "openssl-sys" 1699 | version = "0.9.74" 1700 | source = "registry+https://github.com/rust-lang/crates.io-index" 1701 | checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1" 1702 | dependencies = [ 1703 | "autocfg", 1704 | "cc", 1705 | "libc", 1706 | "pkg-config", 1707 | "vcpkg", 1708 | ] 1709 | 1710 | [[package]] 1711 | name = "os_info" 1712 | version = "3.4.0" 1713 | source = "registry+https://github.com/rust-lang/crates.io-index" 1714 | checksum = "0eca3ecae1481e12c3d9379ec541b238a16f0b75c9a409942daa8ec20dbfdb62" 1715 | dependencies = [ 1716 | "log", 1717 | "serde", 1718 | "winapi", 1719 | ] 1720 | 1721 | [[package]] 1722 | name = "os_pipe" 1723 | version = "1.0.1" 1724 | source = "registry+https://github.com/rust-lang/crates.io-index" 1725 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55" 1726 | dependencies = [ 1727 | "libc", 1728 | "winapi", 1729 | ] 1730 | 1731 | [[package]] 1732 | name = "pango" 1733 | version = "0.15.10" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1736 | dependencies = [ 1737 | "bitflags", 1738 | "glib", 1739 | "libc", 1740 | "once_cell", 1741 | "pango-sys", 1742 | ] 1743 | 1744 | [[package]] 1745 | name = "pango-sys" 1746 | version = "0.15.10" 1747 | source = "registry+https://github.com/rust-lang/crates.io-index" 1748 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1749 | dependencies = [ 1750 | "glib-sys", 1751 | "gobject-sys", 1752 | "libc", 1753 | "system-deps 6.0.2", 1754 | ] 1755 | 1756 | [[package]] 1757 | name = "parking" 1758 | version = "2.0.0" 1759 | source = "registry+https://github.com/rust-lang/crates.io-index" 1760 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1761 | 1762 | [[package]] 1763 | name = "parking_lot" 1764 | version = "0.11.2" 1765 | source = "registry+https://github.com/rust-lang/crates.io-index" 1766 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1767 | dependencies = [ 1768 | "instant", 1769 | "lock_api", 1770 | "parking_lot_core 0.8.5", 1771 | ] 1772 | 1773 | [[package]] 1774 | name = "parking_lot" 1775 | version = "0.12.1" 1776 | source = "registry+https://github.com/rust-lang/crates.io-index" 1777 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1778 | dependencies = [ 1779 | "lock_api", 1780 | "parking_lot_core 0.9.3", 1781 | ] 1782 | 1783 | [[package]] 1784 | name = "parking_lot_core" 1785 | version = "0.8.5" 1786 | source = "registry+https://github.com/rust-lang/crates.io-index" 1787 | checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 1788 | dependencies = [ 1789 | "cfg-if", 1790 | "instant", 1791 | "libc", 1792 | "redox_syscall", 1793 | "smallvec", 1794 | "winapi", 1795 | ] 1796 | 1797 | [[package]] 1798 | name = "parking_lot_core" 1799 | version = "0.9.3" 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" 1801 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1802 | dependencies = [ 1803 | "cfg-if", 1804 | "libc", 1805 | "redox_syscall", 1806 | "smallvec", 1807 | "windows-sys", 1808 | ] 1809 | 1810 | [[package]] 1811 | name = "paste" 1812 | version = "1.0.7" 1813 | source = "registry+https://github.com/rust-lang/crates.io-index" 1814 | checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc" 1815 | 1816 | [[package]] 1817 | name = "pathdiff" 1818 | version = "0.2.1" 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" 1820 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1821 | 1822 | [[package]] 1823 | name = "percent-encoding" 1824 | version = "2.1.0" 1825 | source = "registry+https://github.com/rust-lang/crates.io-index" 1826 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1827 | 1828 | [[package]] 1829 | name = "pest" 1830 | version = "2.1.3" 1831 | source = "registry+https://github.com/rust-lang/crates.io-index" 1832 | checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 1833 | dependencies = [ 1834 | "ucd-trie", 1835 | ] 1836 | 1837 | [[package]] 1838 | name = "phf" 1839 | version = "0.8.0" 1840 | source = "registry+https://github.com/rust-lang/crates.io-index" 1841 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1842 | dependencies = [ 1843 | "phf_macros 0.8.0", 1844 | "phf_shared 0.8.0", 1845 | "proc-macro-hack", 1846 | ] 1847 | 1848 | [[package]] 1849 | name = "phf" 1850 | version = "0.10.1" 1851 | source = "registry+https://github.com/rust-lang/crates.io-index" 1852 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1853 | dependencies = [ 1854 | "phf_macros 0.10.0", 1855 | "phf_shared 0.10.0", 1856 | "proc-macro-hack", 1857 | ] 1858 | 1859 | [[package]] 1860 | name = "phf_codegen" 1861 | version = "0.8.0" 1862 | source = "registry+https://github.com/rust-lang/crates.io-index" 1863 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1864 | dependencies = [ 1865 | "phf_generator 0.8.0", 1866 | "phf_shared 0.8.0", 1867 | ] 1868 | 1869 | [[package]] 1870 | name = "phf_generator" 1871 | version = "0.8.0" 1872 | source = "registry+https://github.com/rust-lang/crates.io-index" 1873 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1874 | dependencies = [ 1875 | "phf_shared 0.8.0", 1876 | "rand 0.7.3", 1877 | ] 1878 | 1879 | [[package]] 1880 | name = "phf_generator" 1881 | version = "0.10.0" 1882 | source = "registry+https://github.com/rust-lang/crates.io-index" 1883 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1884 | dependencies = [ 1885 | "phf_shared 0.10.0", 1886 | "rand 0.8.5", 1887 | ] 1888 | 1889 | [[package]] 1890 | name = "phf_macros" 1891 | version = "0.8.0" 1892 | source = "registry+https://github.com/rust-lang/crates.io-index" 1893 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1894 | dependencies = [ 1895 | "phf_generator 0.8.0", 1896 | "phf_shared 0.8.0", 1897 | "proc-macro-hack", 1898 | "proc-macro2", 1899 | "quote", 1900 | "syn", 1901 | ] 1902 | 1903 | [[package]] 1904 | name = "phf_macros" 1905 | version = "0.10.0" 1906 | source = "registry+https://github.com/rust-lang/crates.io-index" 1907 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1908 | dependencies = [ 1909 | "phf_generator 0.10.0", 1910 | "phf_shared 0.10.0", 1911 | "proc-macro-hack", 1912 | "proc-macro2", 1913 | "quote", 1914 | "syn", 1915 | ] 1916 | 1917 | [[package]] 1918 | name = "phf_shared" 1919 | version = "0.8.0" 1920 | source = "registry+https://github.com/rust-lang/crates.io-index" 1921 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1922 | dependencies = [ 1923 | "siphasher", 1924 | ] 1925 | 1926 | [[package]] 1927 | name = "phf_shared" 1928 | version = "0.10.0" 1929 | source = "registry+https://github.com/rust-lang/crates.io-index" 1930 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1931 | dependencies = [ 1932 | "siphasher", 1933 | ] 1934 | 1935 | [[package]] 1936 | name = "pin-project-lite" 1937 | version = "0.2.9" 1938 | source = "registry+https://github.com/rust-lang/crates.io-index" 1939 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1940 | 1941 | [[package]] 1942 | name = "pin-utils" 1943 | version = "0.1.0" 1944 | source = "registry+https://github.com/rust-lang/crates.io-index" 1945 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1946 | 1947 | [[package]] 1948 | name = "pkg-config" 1949 | version = "0.3.25" 1950 | source = "registry+https://github.com/rust-lang/crates.io-index" 1951 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1952 | 1953 | [[package]] 1954 | name = "png" 1955 | version = "0.11.0" 1956 | source = "registry+https://github.com/rust-lang/crates.io-index" 1957 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1958 | dependencies = [ 1959 | "bitflags", 1960 | "deflate 0.7.20", 1961 | "inflate", 1962 | "num-iter", 1963 | ] 1964 | 1965 | [[package]] 1966 | name = "png" 1967 | version = "0.17.5" 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" 1969 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba" 1970 | dependencies = [ 1971 | "bitflags", 1972 | "crc32fast", 1973 | "deflate 1.0.0", 1974 | "miniz_oxide", 1975 | ] 1976 | 1977 | [[package]] 1978 | name = "ppv-lite86" 1979 | version = "0.2.16" 1980 | source = "registry+https://github.com/rust-lang/crates.io-index" 1981 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1982 | 1983 | [[package]] 1984 | name = "precomputed-hash" 1985 | version = "0.1.1" 1986 | source = "registry+https://github.com/rust-lang/crates.io-index" 1987 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1988 | 1989 | [[package]] 1990 | name = "proc-macro-crate" 1991 | version = "1.1.3" 1992 | source = "registry+https://github.com/rust-lang/crates.io-index" 1993 | checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" 1994 | dependencies = [ 1995 | "thiserror", 1996 | "toml", 1997 | ] 1998 | 1999 | [[package]] 2000 | name = "proc-macro-error" 2001 | version = "1.0.4" 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" 2003 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2004 | dependencies = [ 2005 | "proc-macro-error-attr", 2006 | "proc-macro2", 2007 | "quote", 2008 | "syn", 2009 | "version_check", 2010 | ] 2011 | 2012 | [[package]] 2013 | name = "proc-macro-error-attr" 2014 | version = "1.0.4" 2015 | source = "registry+https://github.com/rust-lang/crates.io-index" 2016 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2017 | dependencies = [ 2018 | "proc-macro2", 2019 | "quote", 2020 | "version_check", 2021 | ] 2022 | 2023 | [[package]] 2024 | name = "proc-macro-hack" 2025 | version = "0.5.19" 2026 | source = "registry+https://github.com/rust-lang/crates.io-index" 2027 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2028 | 2029 | [[package]] 2030 | name = "proc-macro2" 2031 | version = "1.0.39" 2032 | source = "registry+https://github.com/rust-lang/crates.io-index" 2033 | checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f" 2034 | dependencies = [ 2035 | "unicode-ident", 2036 | ] 2037 | 2038 | [[package]] 2039 | name = "quote" 2040 | version = "1.0.18" 2041 | source = "registry+https://github.com/rust-lang/crates.io-index" 2042 | checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" 2043 | dependencies = [ 2044 | "proc-macro2", 2045 | ] 2046 | 2047 | [[package]] 2048 | name = "rand" 2049 | version = "0.7.3" 2050 | source = "registry+https://github.com/rust-lang/crates.io-index" 2051 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2052 | dependencies = [ 2053 | "getrandom 0.1.16", 2054 | "libc", 2055 | "rand_chacha 0.2.2", 2056 | "rand_core 0.5.1", 2057 | "rand_hc", 2058 | "rand_pcg", 2059 | ] 2060 | 2061 | [[package]] 2062 | name = "rand" 2063 | version = "0.8.5" 2064 | source = "registry+https://github.com/rust-lang/crates.io-index" 2065 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2066 | dependencies = [ 2067 | "libc", 2068 | "rand_chacha 0.3.1", 2069 | "rand_core 0.6.3", 2070 | ] 2071 | 2072 | [[package]] 2073 | name = "rand_chacha" 2074 | version = "0.2.2" 2075 | source = "registry+https://github.com/rust-lang/crates.io-index" 2076 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2077 | dependencies = [ 2078 | "ppv-lite86", 2079 | "rand_core 0.5.1", 2080 | ] 2081 | 2082 | [[package]] 2083 | name = "rand_chacha" 2084 | version = "0.3.1" 2085 | source = "registry+https://github.com/rust-lang/crates.io-index" 2086 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2087 | dependencies = [ 2088 | "ppv-lite86", 2089 | "rand_core 0.6.3", 2090 | ] 2091 | 2092 | [[package]] 2093 | name = "rand_core" 2094 | version = "0.5.1" 2095 | source = "registry+https://github.com/rust-lang/crates.io-index" 2096 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2097 | dependencies = [ 2098 | "getrandom 0.1.16", 2099 | ] 2100 | 2101 | [[package]] 2102 | name = "rand_core" 2103 | version = "0.6.3" 2104 | source = "registry+https://github.com/rust-lang/crates.io-index" 2105 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2106 | dependencies = [ 2107 | "getrandom 0.2.7", 2108 | ] 2109 | 2110 | [[package]] 2111 | name = "rand_hc" 2112 | version = "0.2.0" 2113 | source = "registry+https://github.com/rust-lang/crates.io-index" 2114 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2115 | dependencies = [ 2116 | "rand_core 0.5.1", 2117 | ] 2118 | 2119 | [[package]] 2120 | name = "rand_pcg" 2121 | version = "0.2.1" 2122 | source = "registry+https://github.com/rust-lang/crates.io-index" 2123 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2124 | dependencies = [ 2125 | "rand_core 0.5.1", 2126 | ] 2127 | 2128 | [[package]] 2129 | name = "raw-window-handle" 2130 | version = "0.4.3" 2131 | source = "registry+https://github.com/rust-lang/crates.io-index" 2132 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 2133 | dependencies = [ 2134 | "cty", 2135 | ] 2136 | 2137 | [[package]] 2138 | name = "redox_syscall" 2139 | version = "0.2.13" 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" 2141 | checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" 2142 | dependencies = [ 2143 | "bitflags", 2144 | ] 2145 | 2146 | [[package]] 2147 | name = "redox_users" 2148 | version = "0.4.3" 2149 | source = "registry+https://github.com/rust-lang/crates.io-index" 2150 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2151 | dependencies = [ 2152 | "getrandom 0.2.7", 2153 | "redox_syscall", 2154 | "thiserror", 2155 | ] 2156 | 2157 | [[package]] 2158 | name = "regex" 2159 | version = "1.5.6" 2160 | source = "registry+https://github.com/rust-lang/crates.io-index" 2161 | checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" 2162 | dependencies = [ 2163 | "aho-corasick", 2164 | "memchr", 2165 | "regex-syntax", 2166 | ] 2167 | 2168 | [[package]] 2169 | name = "regex-automata" 2170 | version = "0.1.10" 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" 2172 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2173 | dependencies = [ 2174 | "regex-syntax", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "regex-syntax" 2179 | version = "0.6.26" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" 2182 | 2183 | [[package]] 2184 | name = "remove_dir_all" 2185 | version = "0.5.3" 2186 | source = "registry+https://github.com/rust-lang/crates.io-index" 2187 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2188 | dependencies = [ 2189 | "winapi", 2190 | ] 2191 | 2192 | [[package]] 2193 | name = "rfd" 2194 | version = "0.9.1" 2195 | source = "registry+https://github.com/rust-lang/crates.io-index" 2196 | checksum = "f121348fd3b9035ed11be1f028e8944263c30641f8c5deacf57a4320782fb402" 2197 | dependencies = [ 2198 | "block", 2199 | "dispatch", 2200 | "embed-resource", 2201 | "glib-sys", 2202 | "gobject-sys", 2203 | "gtk-sys", 2204 | "js-sys", 2205 | "lazy_static", 2206 | "log", 2207 | "objc", 2208 | "objc-foundation", 2209 | "objc_id", 2210 | "raw-window-handle", 2211 | "wasm-bindgen", 2212 | "wasm-bindgen-futures", 2213 | "web-sys", 2214 | "windows 0.37.0", 2215 | ] 2216 | 2217 | [[package]] 2218 | name = "rustc_version" 2219 | version = "0.3.3" 2220 | source = "registry+https://github.com/rust-lang/crates.io-index" 2221 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2222 | dependencies = [ 2223 | "semver 0.11.0", 2224 | ] 2225 | 2226 | [[package]] 2227 | name = "rustc_version" 2228 | version = "0.4.0" 2229 | source = "registry+https://github.com/rust-lang/crates.io-index" 2230 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2231 | dependencies = [ 2232 | "semver 1.0.10", 2233 | ] 2234 | 2235 | [[package]] 2236 | name = "rustversion" 2237 | version = "1.0.6" 2238 | source = "registry+https://github.com/rust-lang/crates.io-index" 2239 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" 2240 | 2241 | [[package]] 2242 | name = "ryu" 2243 | version = "1.0.10" 2244 | source = "registry+https://github.com/rust-lang/crates.io-index" 2245 | checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 2246 | 2247 | [[package]] 2248 | name = "same-file" 2249 | version = "1.0.6" 2250 | source = "registry+https://github.com/rust-lang/crates.io-index" 2251 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2252 | dependencies = [ 2253 | "winapi-util", 2254 | ] 2255 | 2256 | [[package]] 2257 | name = "schannel" 2258 | version = "0.1.20" 2259 | source = "registry+https://github.com/rust-lang/crates.io-index" 2260 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2261 | dependencies = [ 2262 | "lazy_static", 2263 | "windows-sys", 2264 | ] 2265 | 2266 | [[package]] 2267 | name = "scoped-tls" 2268 | version = "1.0.0" 2269 | source = "registry+https://github.com/rust-lang/crates.io-index" 2270 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2271 | 2272 | [[package]] 2273 | name = "scopeguard" 2274 | version = "1.1.0" 2275 | source = "registry+https://github.com/rust-lang/crates.io-index" 2276 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2277 | 2278 | [[package]] 2279 | name = "security-framework" 2280 | version = "2.6.1" 2281 | source = "registry+https://github.com/rust-lang/crates.io-index" 2282 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 2283 | dependencies = [ 2284 | "bitflags", 2285 | "core-foundation", 2286 | "core-foundation-sys", 2287 | "libc", 2288 | "security-framework-sys", 2289 | ] 2290 | 2291 | [[package]] 2292 | name = "security-framework-sys" 2293 | version = "2.6.1" 2294 | source = "registry+https://github.com/rust-lang/crates.io-index" 2295 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2296 | dependencies = [ 2297 | "core-foundation-sys", 2298 | "libc", 2299 | ] 2300 | 2301 | [[package]] 2302 | name = "selectors" 2303 | version = "0.22.0" 2304 | source = "registry+https://github.com/rust-lang/crates.io-index" 2305 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2306 | dependencies = [ 2307 | "bitflags", 2308 | "cssparser", 2309 | "derive_more", 2310 | "fxhash", 2311 | "log", 2312 | "matches", 2313 | "phf 0.8.0", 2314 | "phf_codegen", 2315 | "precomputed-hash", 2316 | "servo_arc", 2317 | "smallvec", 2318 | "thin-slice", 2319 | ] 2320 | 2321 | [[package]] 2322 | name = "semver" 2323 | version = "0.11.0" 2324 | source = "registry+https://github.com/rust-lang/crates.io-index" 2325 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2326 | dependencies = [ 2327 | "semver-parser", 2328 | ] 2329 | 2330 | [[package]] 2331 | name = "semver" 2332 | version = "1.0.10" 2333 | source = "registry+https://github.com/rust-lang/crates.io-index" 2334 | checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c" 2335 | dependencies = [ 2336 | "serde", 2337 | ] 2338 | 2339 | [[package]] 2340 | name = "semver-parser" 2341 | version = "0.10.2" 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" 2343 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2344 | dependencies = [ 2345 | "pest", 2346 | ] 2347 | 2348 | [[package]] 2349 | name = "serde" 2350 | version = "1.0.137" 2351 | source = "registry+https://github.com/rust-lang/crates.io-index" 2352 | checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 2353 | dependencies = [ 2354 | "serde_derive", 2355 | ] 2356 | 2357 | [[package]] 2358 | name = "serde_derive" 2359 | version = "1.0.137" 2360 | source = "registry+https://github.com/rust-lang/crates.io-index" 2361 | checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" 2362 | dependencies = [ 2363 | "proc-macro2", 2364 | "quote", 2365 | "syn", 2366 | ] 2367 | 2368 | [[package]] 2369 | name = "serde_json" 2370 | version = "1.0.81" 2371 | source = "registry+https://github.com/rust-lang/crates.io-index" 2372 | checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" 2373 | dependencies = [ 2374 | "itoa 1.0.2", 2375 | "ryu", 2376 | "serde", 2377 | ] 2378 | 2379 | [[package]] 2380 | name = "serde_repr" 2381 | version = "0.1.8" 2382 | source = "registry+https://github.com/rust-lang/crates.io-index" 2383 | checksum = "a2ad84e47328a31223de7fed7a4f5087f2d6ddfe586cf3ca25b7a165bc0a5aed" 2384 | dependencies = [ 2385 | "proc-macro2", 2386 | "quote", 2387 | "syn", 2388 | ] 2389 | 2390 | [[package]] 2391 | name = "serde_urlencoded" 2392 | version = "0.7.1" 2393 | source = "registry+https://github.com/rust-lang/crates.io-index" 2394 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2395 | dependencies = [ 2396 | "form_urlencoded", 2397 | "itoa 1.0.2", 2398 | "ryu", 2399 | "serde", 2400 | ] 2401 | 2402 | [[package]] 2403 | name = "serde_with" 2404 | version = "1.14.0" 2405 | source = "registry+https://github.com/rust-lang/crates.io-index" 2406 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2407 | dependencies = [ 2408 | "serde", 2409 | "serde_with_macros", 2410 | ] 2411 | 2412 | [[package]] 2413 | name = "serde_with_macros" 2414 | version = "1.5.2" 2415 | source = "registry+https://github.com/rust-lang/crates.io-index" 2416 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2417 | dependencies = [ 2418 | "darling", 2419 | "proc-macro2", 2420 | "quote", 2421 | "syn", 2422 | ] 2423 | 2424 | [[package]] 2425 | name = "serialize-to-javascript" 2426 | version = "0.1.1" 2427 | source = "registry+https://github.com/rust-lang/crates.io-index" 2428 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2429 | dependencies = [ 2430 | "serde", 2431 | "serde_json", 2432 | "serialize-to-javascript-impl", 2433 | ] 2434 | 2435 | [[package]] 2436 | name = "serialize-to-javascript-impl" 2437 | version = "0.1.1" 2438 | source = "registry+https://github.com/rust-lang/crates.io-index" 2439 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2440 | dependencies = [ 2441 | "proc-macro2", 2442 | "quote", 2443 | "syn", 2444 | ] 2445 | 2446 | [[package]] 2447 | name = "servo_arc" 2448 | version = "0.1.1" 2449 | source = "registry+https://github.com/rust-lang/crates.io-index" 2450 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2451 | dependencies = [ 2452 | "nodrop", 2453 | "stable_deref_trait", 2454 | ] 2455 | 2456 | [[package]] 2457 | name = "sha2" 2458 | version = "0.10.2" 2459 | source = "registry+https://github.com/rust-lang/crates.io-index" 2460 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 2461 | dependencies = [ 2462 | "cfg-if", 2463 | "cpufeatures", 2464 | "digest", 2465 | ] 2466 | 2467 | [[package]] 2468 | name = "sharded-slab" 2469 | version = "0.1.4" 2470 | source = "registry+https://github.com/rust-lang/crates.io-index" 2471 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2472 | dependencies = [ 2473 | "lazy_static", 2474 | ] 2475 | 2476 | [[package]] 2477 | name = "shared_child" 2478 | version = "1.0.0" 2479 | source = "registry+https://github.com/rust-lang/crates.io-index" 2480 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2481 | dependencies = [ 2482 | "libc", 2483 | "winapi", 2484 | ] 2485 | 2486 | [[package]] 2487 | name = "siphasher" 2488 | version = "0.3.10" 2489 | source = "registry+https://github.com/rust-lang/crates.io-index" 2490 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2491 | 2492 | [[package]] 2493 | name = "slab" 2494 | version = "0.4.6" 2495 | source = "registry+https://github.com/rust-lang/crates.io-index" 2496 | checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 2497 | 2498 | [[package]] 2499 | name = "smallvec" 2500 | version = "1.8.0" 2501 | source = "registry+https://github.com/rust-lang/crates.io-index" 2502 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" 2503 | 2504 | [[package]] 2505 | name = "soup2" 2506 | version = "0.2.1" 2507 | source = "registry+https://github.com/rust-lang/crates.io-index" 2508 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2509 | dependencies = [ 2510 | "bitflags", 2511 | "gio", 2512 | "glib", 2513 | "libc", 2514 | "once_cell", 2515 | "soup2-sys", 2516 | ] 2517 | 2518 | [[package]] 2519 | name = "soup2-sys" 2520 | version = "0.2.0" 2521 | source = "registry+https://github.com/rust-lang/crates.io-index" 2522 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2523 | dependencies = [ 2524 | "bitflags", 2525 | "gio-sys", 2526 | "glib-sys", 2527 | "gobject-sys", 2528 | "libc", 2529 | "system-deps 5.0.0", 2530 | ] 2531 | 2532 | [[package]] 2533 | name = "stable_deref_trait" 2534 | version = "1.2.0" 2535 | source = "registry+https://github.com/rust-lang/crates.io-index" 2536 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2537 | 2538 | [[package]] 2539 | name = "state" 2540 | version = "0.5.3" 2541 | source = "registry+https://github.com/rust-lang/crates.io-index" 2542 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2543 | dependencies = [ 2544 | "loom", 2545 | ] 2546 | 2547 | [[package]] 2548 | name = "string_cache" 2549 | version = "0.8.4" 2550 | source = "registry+https://github.com/rust-lang/crates.io-index" 2551 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2552 | dependencies = [ 2553 | "new_debug_unreachable", 2554 | "once_cell", 2555 | "parking_lot 0.12.1", 2556 | "phf_shared 0.10.0", 2557 | "precomputed-hash", 2558 | "serde", 2559 | ] 2560 | 2561 | [[package]] 2562 | name = "string_cache_codegen" 2563 | version = "0.5.2" 2564 | source = "registry+https://github.com/rust-lang/crates.io-index" 2565 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2566 | dependencies = [ 2567 | "phf_generator 0.10.0", 2568 | "phf_shared 0.10.0", 2569 | "proc-macro2", 2570 | "quote", 2571 | ] 2572 | 2573 | [[package]] 2574 | name = "strsim" 2575 | version = "0.10.0" 2576 | source = "registry+https://github.com/rust-lang/crates.io-index" 2577 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2578 | 2579 | [[package]] 2580 | name = "strum" 2581 | version = "0.22.0" 2582 | source = "registry+https://github.com/rust-lang/crates.io-index" 2583 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2584 | dependencies = [ 2585 | "strum_macros", 2586 | ] 2587 | 2588 | [[package]] 2589 | name = "strum_macros" 2590 | version = "0.22.0" 2591 | source = "registry+https://github.com/rust-lang/crates.io-index" 2592 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2593 | dependencies = [ 2594 | "heck 0.3.3", 2595 | "proc-macro2", 2596 | "quote", 2597 | "syn", 2598 | ] 2599 | 2600 | [[package]] 2601 | name = "syn" 2602 | version = "1.0.96" 2603 | source = "registry+https://github.com/rust-lang/crates.io-index" 2604 | checksum = "0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf" 2605 | dependencies = [ 2606 | "proc-macro2", 2607 | "quote", 2608 | "unicode-ident", 2609 | ] 2610 | 2611 | [[package]] 2612 | name = "system-deps" 2613 | version = "5.0.0" 2614 | source = "registry+https://github.com/rust-lang/crates.io-index" 2615 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2616 | dependencies = [ 2617 | "cfg-expr 0.9.1", 2618 | "heck 0.3.3", 2619 | "pkg-config", 2620 | "toml", 2621 | "version-compare 0.0.11", 2622 | ] 2623 | 2624 | [[package]] 2625 | name = "system-deps" 2626 | version = "6.0.2" 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" 2628 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" 2629 | dependencies = [ 2630 | "cfg-expr 0.10.3", 2631 | "heck 0.4.0", 2632 | "pkg-config", 2633 | "toml", 2634 | "version-compare 0.1.0", 2635 | ] 2636 | 2637 | [[package]] 2638 | name = "tao" 2639 | version = "0.11.2" 2640 | source = "registry+https://github.com/rust-lang/crates.io-index" 2641 | checksum = "3bfe4c782f0543f667ee3b732d026b2f1c64af39cd52e726dec1ea1f2d8f6b80" 2642 | dependencies = [ 2643 | "bitflags", 2644 | "cairo-rs", 2645 | "cc", 2646 | "cocoa", 2647 | "core-foundation", 2648 | "core-graphics", 2649 | "crossbeam-channel", 2650 | "dispatch", 2651 | "gdk", 2652 | "gdk-pixbuf", 2653 | "gdk-sys", 2654 | "gdkx11-sys", 2655 | "gio", 2656 | "glib", 2657 | "glib-sys", 2658 | "gtk", 2659 | "image", 2660 | "instant", 2661 | "jni 0.19.0", 2662 | "lazy_static", 2663 | "libc", 2664 | "log", 2665 | "ndk", 2666 | "ndk-context", 2667 | "ndk-sys", 2668 | "objc", 2669 | "once_cell", 2670 | "parking_lot 0.11.2", 2671 | "paste", 2672 | "png 0.17.5", 2673 | "raw-window-handle", 2674 | "scopeguard", 2675 | "serde", 2676 | "tao-core-video-sys", 2677 | "unicode-segmentation", 2678 | "uuid 0.8.2", 2679 | "windows 0.37.0", 2680 | "windows-implement", 2681 | "x11-dl", 2682 | ] 2683 | 2684 | [[package]] 2685 | name = "tao-core-video-sys" 2686 | version = "0.2.0" 2687 | source = "registry+https://github.com/rust-lang/crates.io-index" 2688 | checksum = "271450eb289cb4d8d0720c6ce70c72c8c858c93dd61fc625881616752e6b98f6" 2689 | dependencies = [ 2690 | "cfg-if", 2691 | "core-foundation-sys", 2692 | "libc", 2693 | "objc", 2694 | ] 2695 | 2696 | [[package]] 2697 | name = "tar" 2698 | version = "0.4.38" 2699 | source = "registry+https://github.com/rust-lang/crates.io-index" 2700 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2701 | dependencies = [ 2702 | "filetime", 2703 | "libc", 2704 | "xattr", 2705 | ] 2706 | 2707 | [[package]] 2708 | name = "tauri" 2709 | version = "1.0.0" 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" 2711 | checksum = "8e1ebb60bb8f246d5351ff9b7728fdfa7a6eba72baa722ab6021d553981caba1" 2712 | dependencies = [ 2713 | "anyhow", 2714 | "attohttpc", 2715 | "cocoa", 2716 | "dirs-next", 2717 | "embed_plist", 2718 | "flate2", 2719 | "futures", 2720 | "futures-lite", 2721 | "glib", 2722 | "glob", 2723 | "gtk", 2724 | "heck 0.4.0", 2725 | "http", 2726 | "ignore", 2727 | "notify-rust", 2728 | "objc", 2729 | "once_cell", 2730 | "open", 2731 | "os_info", 2732 | "os_pipe", 2733 | "percent-encoding", 2734 | "rand 0.8.5", 2735 | "raw-window-handle", 2736 | "regex", 2737 | "rfd", 2738 | "semver 1.0.10", 2739 | "serde", 2740 | "serde_json", 2741 | "serde_repr", 2742 | "serialize-to-javascript", 2743 | "shared_child", 2744 | "state", 2745 | "tar", 2746 | "tauri-macros", 2747 | "tauri-runtime", 2748 | "tauri-runtime-wry", 2749 | "tauri-utils", 2750 | "tempfile", 2751 | "thiserror", 2752 | "tokio", 2753 | "url", 2754 | "uuid 1.1.2", 2755 | "webkit2gtk", 2756 | "webview2-com", 2757 | "windows 0.37.0", 2758 | ] 2759 | 2760 | [[package]] 2761 | name = "tauri-build" 2762 | version = "1.0.0" 2763 | source = "registry+https://github.com/rust-lang/crates.io-index" 2764 | checksum = "e7b26eb3523e962b90012fedbfb744ca153d9be85e7981e00737e106d5323941" 2765 | dependencies = [ 2766 | "anyhow", 2767 | "cargo_toml", 2768 | "heck 0.4.0", 2769 | "semver 1.0.10", 2770 | "serde_json", 2771 | "tauri-utils", 2772 | "winres", 2773 | ] 2774 | 2775 | [[package]] 2776 | name = "tauri-codegen" 2777 | version = "1.0.0" 2778 | source = "registry+https://github.com/rust-lang/crates.io-index" 2779 | checksum = "9468c5189188c820ef605dfe4937c768cb2918e9460c8093dc4ee2cbd717b262" 2780 | dependencies = [ 2781 | "base64", 2782 | "brotli", 2783 | "ico", 2784 | "png 0.17.5", 2785 | "proc-macro2", 2786 | "quote", 2787 | "regex", 2788 | "semver 1.0.10", 2789 | "serde", 2790 | "serde_json", 2791 | "sha2", 2792 | "tauri-utils", 2793 | "thiserror", 2794 | "uuid 1.1.2", 2795 | "walkdir", 2796 | ] 2797 | 2798 | [[package]] 2799 | name = "tauri-macros" 2800 | version = "1.0.0" 2801 | source = "registry+https://github.com/rust-lang/crates.io-index" 2802 | checksum = "40e3ffddd7a274fc7baaa260888c971a0d95d2ef403aa16600c878b8b1c00ffe" 2803 | dependencies = [ 2804 | "heck 0.4.0", 2805 | "proc-macro2", 2806 | "quote", 2807 | "syn", 2808 | "tauri-codegen", 2809 | "tauri-utils", 2810 | ] 2811 | 2812 | [[package]] 2813 | name = "tauri-runtime" 2814 | version = "0.9.0" 2815 | source = "registry+https://github.com/rust-lang/crates.io-index" 2816 | checksum = "fb7dc4db360bb40584187b6cb7834da736ce4ef2ab0914e2be98014444fa9920" 2817 | dependencies = [ 2818 | "gtk", 2819 | "http", 2820 | "http-range", 2821 | "infer", 2822 | "serde", 2823 | "serde_json", 2824 | "tauri-utils", 2825 | "thiserror", 2826 | "uuid 1.1.2", 2827 | "webview2-com", 2828 | "windows 0.37.0", 2829 | ] 2830 | 2831 | [[package]] 2832 | name = "tauri-runtime-wry" 2833 | version = "0.9.0" 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" 2835 | checksum = "c876fb3a6e7c6fe2ac466b2a6ecd83658528844b4df0914558a9bc1501b31cf3" 2836 | dependencies = [ 2837 | "cocoa", 2838 | "gtk", 2839 | "percent-encoding", 2840 | "rand 0.8.5", 2841 | "tauri-runtime", 2842 | "tauri-utils", 2843 | "uuid 1.1.2", 2844 | "webkit2gtk", 2845 | "webview2-com", 2846 | "windows 0.37.0", 2847 | "wry", 2848 | ] 2849 | 2850 | [[package]] 2851 | name = "tauri-utils" 2852 | version = "1.0.0" 2853 | source = "registry+https://github.com/rust-lang/crates.io-index" 2854 | checksum = "727145cb55b8897fa9f2bcea4fad31dc39394703d037c9669b40f2d1c0c2d7f3" 2855 | dependencies = [ 2856 | "brotli", 2857 | "ctor", 2858 | "glob", 2859 | "heck 0.4.0", 2860 | "html5ever", 2861 | "json-patch", 2862 | "kuchiki", 2863 | "memchr", 2864 | "phf 0.10.1", 2865 | "proc-macro2", 2866 | "quote", 2867 | "semver 1.0.10", 2868 | "serde", 2869 | "serde_json", 2870 | "serde_with", 2871 | "thiserror", 2872 | "url", 2873 | "walkdir", 2874 | ] 2875 | 2876 | [[package]] 2877 | name = "tempfile" 2878 | version = "3.3.0" 2879 | source = "registry+https://github.com/rust-lang/crates.io-index" 2880 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2881 | dependencies = [ 2882 | "cfg-if", 2883 | "fastrand", 2884 | "libc", 2885 | "redox_syscall", 2886 | "remove_dir_all", 2887 | "winapi", 2888 | ] 2889 | 2890 | [[package]] 2891 | name = "tendril" 2892 | version = "0.4.3" 2893 | source = "registry+https://github.com/rust-lang/crates.io-index" 2894 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2895 | dependencies = [ 2896 | "futf", 2897 | "mac", 2898 | "utf-8", 2899 | ] 2900 | 2901 | [[package]] 2902 | name = "thin-slice" 2903 | version = "0.1.1" 2904 | source = "registry+https://github.com/rust-lang/crates.io-index" 2905 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2906 | 2907 | [[package]] 2908 | name = "thiserror" 2909 | version = "1.0.31" 2910 | source = "registry+https://github.com/rust-lang/crates.io-index" 2911 | checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" 2912 | dependencies = [ 2913 | "thiserror-impl", 2914 | ] 2915 | 2916 | [[package]] 2917 | name = "thiserror-impl" 2918 | version = "1.0.31" 2919 | source = "registry+https://github.com/rust-lang/crates.io-index" 2920 | checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" 2921 | dependencies = [ 2922 | "proc-macro2", 2923 | "quote", 2924 | "syn", 2925 | ] 2926 | 2927 | [[package]] 2928 | name = "thread_local" 2929 | version = "1.1.4" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2932 | dependencies = [ 2933 | "once_cell", 2934 | ] 2935 | 2936 | [[package]] 2937 | name = "time" 2938 | version = "0.3.9" 2939 | source = "registry+https://github.com/rust-lang/crates.io-index" 2940 | checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" 2941 | dependencies = [ 2942 | "libc", 2943 | "num_threads", 2944 | ] 2945 | 2946 | [[package]] 2947 | name = "tinyvec" 2948 | version = "1.6.0" 2949 | source = "registry+https://github.com/rust-lang/crates.io-index" 2950 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2951 | dependencies = [ 2952 | "tinyvec_macros", 2953 | ] 2954 | 2955 | [[package]] 2956 | name = "tinyvec_macros" 2957 | version = "0.1.0" 2958 | source = "registry+https://github.com/rust-lang/crates.io-index" 2959 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2960 | 2961 | [[package]] 2962 | name = "tokio" 2963 | version = "1.19.2" 2964 | source = "registry+https://github.com/rust-lang/crates.io-index" 2965 | checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" 2966 | dependencies = [ 2967 | "bytes", 2968 | "memchr", 2969 | "num_cpus", 2970 | "once_cell", 2971 | "pin-project-lite", 2972 | ] 2973 | 2974 | [[package]] 2975 | name = "toml" 2976 | version = "0.5.9" 2977 | source = "registry+https://github.com/rust-lang/crates.io-index" 2978 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2979 | dependencies = [ 2980 | "serde", 2981 | ] 2982 | 2983 | [[package]] 2984 | name = "tracing" 2985 | version = "0.1.35" 2986 | source = "registry+https://github.com/rust-lang/crates.io-index" 2987 | checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160" 2988 | dependencies = [ 2989 | "cfg-if", 2990 | "pin-project-lite", 2991 | "tracing-attributes", 2992 | "tracing-core", 2993 | ] 2994 | 2995 | [[package]] 2996 | name = "tracing-attributes" 2997 | version = "0.1.21" 2998 | source = "registry+https://github.com/rust-lang/crates.io-index" 2999 | checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" 3000 | dependencies = [ 3001 | "proc-macro2", 3002 | "quote", 3003 | "syn", 3004 | ] 3005 | 3006 | [[package]] 3007 | name = "tracing-core" 3008 | version = "0.1.27" 3009 | source = "registry+https://github.com/rust-lang/crates.io-index" 3010 | checksum = "7709595b8878a4965ce5e87ebf880a7d39c9afc6837721b21a5a816a8117d921" 3011 | dependencies = [ 3012 | "once_cell", 3013 | "valuable", 3014 | ] 3015 | 3016 | [[package]] 3017 | name = "tracing-log" 3018 | version = "0.1.3" 3019 | source = "registry+https://github.com/rust-lang/crates.io-index" 3020 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3021 | dependencies = [ 3022 | "lazy_static", 3023 | "log", 3024 | "tracing-core", 3025 | ] 3026 | 3027 | [[package]] 3028 | name = "tracing-subscriber" 3029 | version = "0.3.11" 3030 | source = "registry+https://github.com/rust-lang/crates.io-index" 3031 | checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596" 3032 | dependencies = [ 3033 | "ansi_term", 3034 | "lazy_static", 3035 | "matchers", 3036 | "regex", 3037 | "sharded-slab", 3038 | "smallvec", 3039 | "thread_local", 3040 | "tracing", 3041 | "tracing-core", 3042 | "tracing-log", 3043 | ] 3044 | 3045 | [[package]] 3046 | name = "treediff" 3047 | version = "3.0.2" 3048 | source = "registry+https://github.com/rust-lang/crates.io-index" 3049 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3050 | dependencies = [ 3051 | "serde_json", 3052 | ] 3053 | 3054 | [[package]] 3055 | name = "typenum" 3056 | version = "1.15.0" 3057 | source = "registry+https://github.com/rust-lang/crates.io-index" 3058 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3059 | 3060 | [[package]] 3061 | name = "ucd-trie" 3062 | version = "0.1.3" 3063 | source = "registry+https://github.com/rust-lang/crates.io-index" 3064 | checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 3065 | 3066 | [[package]] 3067 | name = "unicode-bidi" 3068 | version = "0.3.8" 3069 | source = "registry+https://github.com/rust-lang/crates.io-index" 3070 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3071 | 3072 | [[package]] 3073 | name = "unicode-ident" 3074 | version = "1.0.1" 3075 | source = "registry+https://github.com/rust-lang/crates.io-index" 3076 | checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" 3077 | 3078 | [[package]] 3079 | name = "unicode-normalization" 3080 | version = "0.1.19" 3081 | source = "registry+https://github.com/rust-lang/crates.io-index" 3082 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 3083 | dependencies = [ 3084 | "tinyvec", 3085 | ] 3086 | 3087 | [[package]] 3088 | name = "unicode-segmentation" 3089 | version = "1.9.0" 3090 | source = "registry+https://github.com/rust-lang/crates.io-index" 3091 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 3092 | 3093 | [[package]] 3094 | name = "url" 3095 | version = "2.2.2" 3096 | source = "registry+https://github.com/rust-lang/crates.io-index" 3097 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3098 | dependencies = [ 3099 | "form_urlencoded", 3100 | "idna", 3101 | "matches", 3102 | "percent-encoding", 3103 | "serde", 3104 | ] 3105 | 3106 | [[package]] 3107 | name = "utf-8" 3108 | version = "0.7.6" 3109 | source = "registry+https://github.com/rust-lang/crates.io-index" 3110 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3111 | 3112 | [[package]] 3113 | name = "uuid" 3114 | version = "0.8.2" 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" 3116 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3117 | dependencies = [ 3118 | "getrandom 0.2.7", 3119 | ] 3120 | 3121 | [[package]] 3122 | name = "uuid" 3123 | version = "1.1.2" 3124 | source = "registry+https://github.com/rust-lang/crates.io-index" 3125 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3126 | dependencies = [ 3127 | "getrandom 0.2.7", 3128 | ] 3129 | 3130 | [[package]] 3131 | name = "valuable" 3132 | version = "0.1.0" 3133 | source = "registry+https://github.com/rust-lang/crates.io-index" 3134 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3135 | 3136 | [[package]] 3137 | name = "vcpkg" 3138 | version = "0.2.15" 3139 | source = "registry+https://github.com/rust-lang/crates.io-index" 3140 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3141 | 3142 | [[package]] 3143 | name = "version-compare" 3144 | version = "0.0.11" 3145 | source = "registry+https://github.com/rust-lang/crates.io-index" 3146 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3147 | 3148 | [[package]] 3149 | name = "version-compare" 3150 | version = "0.1.0" 3151 | source = "registry+https://github.com/rust-lang/crates.io-index" 3152 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" 3153 | 3154 | [[package]] 3155 | name = "version_check" 3156 | version = "0.9.4" 3157 | source = "registry+https://github.com/rust-lang/crates.io-index" 3158 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3159 | 3160 | [[package]] 3161 | name = "vswhom" 3162 | version = "0.1.0" 3163 | source = "registry+https://github.com/rust-lang/crates.io-index" 3164 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 3165 | dependencies = [ 3166 | "libc", 3167 | "vswhom-sys", 3168 | ] 3169 | 3170 | [[package]] 3171 | name = "vswhom-sys" 3172 | version = "0.1.1" 3173 | source = "registry+https://github.com/rust-lang/crates.io-index" 3174 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39" 3175 | dependencies = [ 3176 | "cc", 3177 | "libc", 3178 | ] 3179 | 3180 | [[package]] 3181 | name = "waker-fn" 3182 | version = "1.1.0" 3183 | source = "registry+https://github.com/rust-lang/crates.io-index" 3184 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3185 | 3186 | [[package]] 3187 | name = "walkdir" 3188 | version = "2.3.2" 3189 | source = "registry+https://github.com/rust-lang/crates.io-index" 3190 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3191 | dependencies = [ 3192 | "same-file", 3193 | "winapi", 3194 | "winapi-util", 3195 | ] 3196 | 3197 | [[package]] 3198 | name = "wasi" 3199 | version = "0.9.0+wasi-snapshot-preview1" 3200 | source = "registry+https://github.com/rust-lang/crates.io-index" 3201 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3202 | 3203 | [[package]] 3204 | name = "wasi" 3205 | version = "0.11.0+wasi-snapshot-preview1" 3206 | source = "registry+https://github.com/rust-lang/crates.io-index" 3207 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3208 | 3209 | [[package]] 3210 | name = "wasm-bindgen" 3211 | version = "0.2.81" 3212 | source = "registry+https://github.com/rust-lang/crates.io-index" 3213 | checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994" 3214 | dependencies = [ 3215 | "cfg-if", 3216 | "wasm-bindgen-macro", 3217 | ] 3218 | 3219 | [[package]] 3220 | name = "wasm-bindgen-backend" 3221 | version = "0.2.81" 3222 | source = "registry+https://github.com/rust-lang/crates.io-index" 3223 | checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a" 3224 | dependencies = [ 3225 | "bumpalo", 3226 | "lazy_static", 3227 | "log", 3228 | "proc-macro2", 3229 | "quote", 3230 | "syn", 3231 | "wasm-bindgen-shared", 3232 | ] 3233 | 3234 | [[package]] 3235 | name = "wasm-bindgen-futures" 3236 | version = "0.4.31" 3237 | source = "registry+https://github.com/rust-lang/crates.io-index" 3238 | checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f" 3239 | dependencies = [ 3240 | "cfg-if", 3241 | "js-sys", 3242 | "wasm-bindgen", 3243 | "web-sys", 3244 | ] 3245 | 3246 | [[package]] 3247 | name = "wasm-bindgen-macro" 3248 | version = "0.2.81" 3249 | source = "registry+https://github.com/rust-lang/crates.io-index" 3250 | checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa" 3251 | dependencies = [ 3252 | "quote", 3253 | "wasm-bindgen-macro-support", 3254 | ] 3255 | 3256 | [[package]] 3257 | name = "wasm-bindgen-macro-support" 3258 | version = "0.2.81" 3259 | source = "registry+https://github.com/rust-lang/crates.io-index" 3260 | checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048" 3261 | dependencies = [ 3262 | "proc-macro2", 3263 | "quote", 3264 | "syn", 3265 | "wasm-bindgen-backend", 3266 | "wasm-bindgen-shared", 3267 | ] 3268 | 3269 | [[package]] 3270 | name = "wasm-bindgen-shared" 3271 | version = "0.2.81" 3272 | source = "registry+https://github.com/rust-lang/crates.io-index" 3273 | checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" 3274 | 3275 | [[package]] 3276 | name = "web-sys" 3277 | version = "0.3.58" 3278 | source = "registry+https://github.com/rust-lang/crates.io-index" 3279 | checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90" 3280 | dependencies = [ 3281 | "js-sys", 3282 | "wasm-bindgen", 3283 | ] 3284 | 3285 | [[package]] 3286 | name = "webkit2gtk" 3287 | version = "0.18.0" 3288 | source = "registry+https://github.com/rust-lang/crates.io-index" 3289 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc" 3290 | dependencies = [ 3291 | "bitflags", 3292 | "cairo-rs", 3293 | "gdk", 3294 | "gdk-sys", 3295 | "gio", 3296 | "gio-sys", 3297 | "glib", 3298 | "glib-sys", 3299 | "gobject-sys", 3300 | "gtk", 3301 | "gtk-sys", 3302 | "javascriptcore-rs", 3303 | "libc", 3304 | "once_cell", 3305 | "soup2", 3306 | "webkit2gtk-sys", 3307 | ] 3308 | 3309 | [[package]] 3310 | name = "webkit2gtk-sys" 3311 | version = "0.18.0" 3312 | source = "registry+https://github.com/rust-lang/crates.io-index" 3313 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3314 | dependencies = [ 3315 | "atk-sys", 3316 | "bitflags", 3317 | "cairo-sys-rs", 3318 | "gdk-pixbuf-sys", 3319 | "gdk-sys", 3320 | "gio-sys", 3321 | "glib-sys", 3322 | "gobject-sys", 3323 | "gtk-sys", 3324 | "javascriptcore-rs-sys", 3325 | "libc", 3326 | "pango-sys", 3327 | "pkg-config", 3328 | "soup2-sys", 3329 | "system-deps 6.0.2", 3330 | ] 3331 | 3332 | [[package]] 3333 | name = "webview2-com" 3334 | version = "0.16.0" 3335 | source = "registry+https://github.com/rust-lang/crates.io-index" 3336 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f" 3337 | dependencies = [ 3338 | "webview2-com-macros", 3339 | "webview2-com-sys", 3340 | "windows 0.37.0", 3341 | "windows-implement", 3342 | ] 3343 | 3344 | [[package]] 3345 | name = "webview2-com-macros" 3346 | version = "0.6.0" 3347 | source = "registry+https://github.com/rust-lang/crates.io-index" 3348 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3349 | dependencies = [ 3350 | "proc-macro2", 3351 | "quote", 3352 | "syn", 3353 | ] 3354 | 3355 | [[package]] 3356 | name = "webview2-com-sys" 3357 | version = "0.16.0" 3358 | source = "registry+https://github.com/rust-lang/crates.io-index" 3359 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1" 3360 | dependencies = [ 3361 | "regex", 3362 | "serde", 3363 | "serde_json", 3364 | "thiserror", 3365 | "windows 0.37.0", 3366 | "windows-bindgen", 3367 | ] 3368 | 3369 | [[package]] 3370 | name = "wildmatch" 3371 | version = "2.1.0" 3372 | source = "registry+https://github.com/rust-lang/crates.io-index" 3373 | checksum = "d6c48bd20df7e4ced539c12f570f937c6b4884928a87fee70a479d72f031d4e0" 3374 | 3375 | [[package]] 3376 | name = "winapi" 3377 | version = "0.3.9" 3378 | source = "registry+https://github.com/rust-lang/crates.io-index" 3379 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3380 | dependencies = [ 3381 | "winapi-i686-pc-windows-gnu", 3382 | "winapi-x86_64-pc-windows-gnu", 3383 | ] 3384 | 3385 | [[package]] 3386 | name = "winapi-i686-pc-windows-gnu" 3387 | version = "0.4.0" 3388 | source = "registry+https://github.com/rust-lang/crates.io-index" 3389 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3390 | 3391 | [[package]] 3392 | name = "winapi-util" 3393 | version = "0.1.5" 3394 | source = "registry+https://github.com/rust-lang/crates.io-index" 3395 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3396 | dependencies = [ 3397 | "winapi", 3398 | ] 3399 | 3400 | [[package]] 3401 | name = "winapi-x86_64-pc-windows-gnu" 3402 | version = "0.4.0" 3403 | source = "registry+https://github.com/rust-lang/crates.io-index" 3404 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3405 | 3406 | [[package]] 3407 | name = "windows" 3408 | version = "0.24.0" 3409 | source = "registry+https://github.com/rust-lang/crates.io-index" 3410 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944" 3411 | dependencies = [ 3412 | "windows_i686_gnu 0.24.0", 3413 | "windows_i686_msvc 0.24.0", 3414 | "windows_x86_64_gnu 0.24.0", 3415 | "windows_x86_64_msvc 0.24.0", 3416 | ] 3417 | 3418 | [[package]] 3419 | name = "windows" 3420 | version = "0.37.0" 3421 | source = "registry+https://github.com/rust-lang/crates.io-index" 3422 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3423 | dependencies = [ 3424 | "windows-implement", 3425 | "windows_aarch64_msvc 0.37.0", 3426 | "windows_i686_gnu 0.37.0", 3427 | "windows_i686_msvc 0.37.0", 3428 | "windows_x86_64_gnu 0.37.0", 3429 | "windows_x86_64_msvc 0.37.0", 3430 | ] 3431 | 3432 | [[package]] 3433 | name = "windows-bindgen" 3434 | version = "0.37.0" 3435 | source = "registry+https://github.com/rust-lang/crates.io-index" 3436 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8" 3437 | dependencies = [ 3438 | "windows-metadata", 3439 | "windows-tokens", 3440 | ] 3441 | 3442 | [[package]] 3443 | name = "windows-implement" 3444 | version = "0.37.0" 3445 | source = "registry+https://github.com/rust-lang/crates.io-index" 3446 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14" 3447 | dependencies = [ 3448 | "syn", 3449 | "windows-tokens", 3450 | ] 3451 | 3452 | [[package]] 3453 | name = "windows-metadata" 3454 | version = "0.37.0" 3455 | source = "registry+https://github.com/rust-lang/crates.io-index" 3456 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463" 3457 | 3458 | [[package]] 3459 | name = "windows-sys" 3460 | version = "0.36.1" 3461 | source = "registry+https://github.com/rust-lang/crates.io-index" 3462 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3463 | dependencies = [ 3464 | "windows_aarch64_msvc 0.36.1", 3465 | "windows_i686_gnu 0.36.1", 3466 | "windows_i686_msvc 0.36.1", 3467 | "windows_x86_64_gnu 0.36.1", 3468 | "windows_x86_64_msvc 0.36.1", 3469 | ] 3470 | 3471 | [[package]] 3472 | name = "windows-tokens" 3473 | version = "0.37.0" 3474 | source = "registry+https://github.com/rust-lang/crates.io-index" 3475 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169" 3476 | 3477 | [[package]] 3478 | name = "windows_aarch64_msvc" 3479 | version = "0.36.1" 3480 | source = "registry+https://github.com/rust-lang/crates.io-index" 3481 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3482 | 3483 | [[package]] 3484 | name = "windows_aarch64_msvc" 3485 | version = "0.37.0" 3486 | source = "registry+https://github.com/rust-lang/crates.io-index" 3487 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3488 | 3489 | [[package]] 3490 | name = "windows_i686_gnu" 3491 | version = "0.24.0" 3492 | source = "registry+https://github.com/rust-lang/crates.io-index" 3493 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd" 3494 | 3495 | [[package]] 3496 | name = "windows_i686_gnu" 3497 | version = "0.36.1" 3498 | source = "registry+https://github.com/rust-lang/crates.io-index" 3499 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3500 | 3501 | [[package]] 3502 | name = "windows_i686_gnu" 3503 | version = "0.37.0" 3504 | source = "registry+https://github.com/rust-lang/crates.io-index" 3505 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3506 | 3507 | [[package]] 3508 | name = "windows_i686_msvc" 3509 | version = "0.24.0" 3510 | source = "registry+https://github.com/rust-lang/crates.io-index" 3511 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6" 3512 | 3513 | [[package]] 3514 | name = "windows_i686_msvc" 3515 | version = "0.36.1" 3516 | source = "registry+https://github.com/rust-lang/crates.io-index" 3517 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3518 | 3519 | [[package]] 3520 | name = "windows_i686_msvc" 3521 | version = "0.37.0" 3522 | source = "registry+https://github.com/rust-lang/crates.io-index" 3523 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3524 | 3525 | [[package]] 3526 | name = "windows_x86_64_gnu" 3527 | version = "0.24.0" 3528 | source = "registry+https://github.com/rust-lang/crates.io-index" 3529 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4" 3530 | 3531 | [[package]] 3532 | name = "windows_x86_64_gnu" 3533 | version = "0.36.1" 3534 | source = "registry+https://github.com/rust-lang/crates.io-index" 3535 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3536 | 3537 | [[package]] 3538 | name = "windows_x86_64_gnu" 3539 | version = "0.37.0" 3540 | source = "registry+https://github.com/rust-lang/crates.io-index" 3541 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3542 | 3543 | [[package]] 3544 | name = "windows_x86_64_msvc" 3545 | version = "0.24.0" 3546 | source = "registry+https://github.com/rust-lang/crates.io-index" 3547 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399" 3548 | 3549 | [[package]] 3550 | name = "windows_x86_64_msvc" 3551 | version = "0.36.1" 3552 | source = "registry+https://github.com/rust-lang/crates.io-index" 3553 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3554 | 3555 | [[package]] 3556 | name = "windows_x86_64_msvc" 3557 | version = "0.37.0" 3558 | source = "registry+https://github.com/rust-lang/crates.io-index" 3559 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3560 | 3561 | [[package]] 3562 | name = "winreg" 3563 | version = "0.10.1" 3564 | source = "registry+https://github.com/rust-lang/crates.io-index" 3565 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3566 | dependencies = [ 3567 | "winapi", 3568 | ] 3569 | 3570 | [[package]] 3571 | name = "winres" 3572 | version = "0.1.12" 3573 | source = "registry+https://github.com/rust-lang/crates.io-index" 3574 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3575 | dependencies = [ 3576 | "toml", 3577 | ] 3578 | 3579 | [[package]] 3580 | name = "winrt-notification" 3581 | version = "0.5.1" 3582 | source = "registry+https://github.com/rust-lang/crates.io-index" 3583 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4" 3584 | dependencies = [ 3585 | "strum", 3586 | "windows 0.24.0", 3587 | "xml-rs", 3588 | ] 3589 | 3590 | [[package]] 3591 | name = "wry" 3592 | version = "0.18.3" 3593 | source = "registry+https://github.com/rust-lang/crates.io-index" 3594 | checksum = "26b1ba327c7dd4292f46bf8e6ba8e6ec2db4443b2973c9d304a359d95e0aa856" 3595 | dependencies = [ 3596 | "block", 3597 | "cocoa", 3598 | "core-graphics", 3599 | "gdk", 3600 | "gio", 3601 | "glib", 3602 | "gtk", 3603 | "http", 3604 | "jni 0.18.0", 3605 | "libc", 3606 | "log", 3607 | "objc", 3608 | "objc_id", 3609 | "once_cell", 3610 | "serde", 3611 | "serde_json", 3612 | "tao", 3613 | "thiserror", 3614 | "url", 3615 | "webkit2gtk", 3616 | "webkit2gtk-sys", 3617 | "webview2-com", 3618 | "windows 0.37.0", 3619 | "windows-implement", 3620 | ] 3621 | 3622 | [[package]] 3623 | name = "x11" 3624 | version = "2.19.1" 3625 | source = "registry+https://github.com/rust-lang/crates.io-index" 3626 | checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a" 3627 | dependencies = [ 3628 | "libc", 3629 | "pkg-config", 3630 | ] 3631 | 3632 | [[package]] 3633 | name = "x11-dl" 3634 | version = "2.19.1" 3635 | source = "registry+https://github.com/rust-lang/crates.io-index" 3636 | checksum = "ea26926b4ce81a6f5d9d0f3a0bc401e5a37c6ae14a1bfaa8ff6099ca80038c59" 3637 | dependencies = [ 3638 | "lazy_static", 3639 | "libc", 3640 | "pkg-config", 3641 | ] 3642 | 3643 | [[package]] 3644 | name = "xattr" 3645 | version = "0.2.3" 3646 | source = "registry+https://github.com/rust-lang/crates.io-index" 3647 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3648 | dependencies = [ 3649 | "libc", 3650 | ] 3651 | 3652 | [[package]] 3653 | name = "xml-rs" 3654 | version = "0.8.4" 3655 | source = "registry+https://github.com/rust-lang/crates.io-index" 3656 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3657 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | authors = ["you"] 3 | default-run = "app" 4 | description = "A Tauri App" 5 | edition = "2018" 6 | license = "GPL-3.0 License" 7 | name = "app" 8 | repository = "https://github.com/jbarszczewski/tauri-svelte-template" 9 | version = "0.3.0" 10 | 11 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 12 | 13 | [build-dependencies] 14 | tauri-build = {version = "1.0.0", features = [] } 15 | 16 | [dependencies] 17 | serde = {version = "1.0", features = ["derive"] } 18 | serde_json = "1.0" 19 | tauri = {version = "1.0.0", features = ["api-all"] } 20 | 21 | [features] 22 | custom-protocol = ["tauri/custom-protocol"] 23 | default = ["custom-protocol"] 24 | -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarszczewski/tauri-svelte-template/b038cde7f6ef749072e69b5108ba81f8c45fa122/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 2 | hard_tabs = false 3 | tab_spaces = 2 4 | newline_style = "Auto" 5 | use_small_heuristics = "Default" 6 | reorder_imports = true 7 | reorder_modules = true 8 | remove_nested_parens = true 9 | edition = "2018" 10 | merge_derives = true 11 | use_try_shorthand = false 12 | use_field_init_shorthand = false 13 | force_explicit_abi = true 14 | imports_granularity = "Crate" 15 | -------------------------------------------------------------------------------- /src-tauri/src/commands.rs: -------------------------------------------------------------------------------- 1 | #[tauri::command] 2 | pub fn my_custom_command(invoke_message: String) -> String { 3 | format!( 4 | "Hey! I was invoked from JS, with this message: {}", 5 | invoke_message 6 | ) 7 | } 8 | 9 | #[cfg(test)] 10 | mod tests { 11 | use super::*; 12 | 13 | #[test] 14 | fn it_works() { 15 | let result = my_custom_command(String::from("test")); 16 | assert_eq!( 17 | result, 18 | "Hey! I was invoked from JS, with this message: test" 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | mod commands; 7 | 8 | fn main() { 9 | tauri::Builder::default() 10 | .invoke_handler(tauri::generate_handler![commands::my_custom_command]) 11 | .run(tauri::generate_context!()) 12 | .expect("error while running tauri application"); 13 | } 14 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "package": { 3 | "productName": "svelte-app", 4 | "version": "0.1.0" 5 | }, 6 | "build": { 7 | "distDir": "../public", 8 | "devPath": "http://localhost:5050", 9 | "beforeDevCommand": "yarn dev", 10 | "beforeBuildCommand": "yarn build" 11 | }, 12 | "tauri": { 13 | "bundle": { 14 | "active": true, 15 | "targets": "all", 16 | "identifier": "svelte-app", 17 | "icon": [ 18 | "icons/32x32.png", 19 | "icons/128x128.png", 20 | "icons/128x128@2x.png", 21 | "icons/icon.icns", 22 | "icons/icon.ico" 23 | ], 24 | "resources": [], 25 | "externalBin": [], 26 | "copyright": "", 27 | "category": "DeveloperTool", 28 | "shortDescription": "", 29 | "longDescription": "", 30 | "deb": { 31 | "depends": [] 32 | }, 33 | "macOS": { 34 | "frameworks": [], 35 | "minimumSystemVersion": "", 36 | "exceptionDomain": "", 37 | "signingIdentity": null, 38 | "entitlements": null 39 | }, 40 | "windows": { 41 | "certificateThumbprint": null, 42 | "digestAlgorithm": "sha256", 43 | "timestampUrl": "" 44 | } 45 | }, 46 | "updater": { 47 | "active": false 48 | }, 49 | "allowlist": { 50 | "all": true 51 | }, 52 | "windows": [ 53 | { 54 | "title": "Tauri Svelte App", 55 | "width": 800, 56 | "height": 600, 57 | "resizable": true, 58 | "fullscreen": false 59 | } 60 | ], 61 | "security": { 62 | "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'" 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- 1 | 25 | 26 |
27 | 28 | 29 | 30 | Tauri + Svelte 31 | 32 | 33 | Example of async call to Tauri 34 | Write something below and press the button. 35 | 36 | 37 | 38 | 39 | {#if result.length !== 0} 40 | {result} 41 | {:else} 42 | No result yet. 43 | {/if} 44 | 45 | 46 | 47 |
48 | 49 | 63 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | import 'bootstrap/dist/css/bootstrap.min.css'; 3 | 4 | const app = new App({ 5 | target: document.body, 6 | props: { 7 | name: 'tauri', 8 | }, 9 | }); 10 | 11 | export default app; 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/svelte/tsconfig.json", 3 | 4 | "include": ["src/**/*", "tests/**/*.ts"], 5 | "exclude": ["node_modules/*", "__sapper__/*", "public/*"] 6 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.10.4": 6 | version "7.12.13" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 8 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 9 | dependencies: 10 | "@babel/highlight" "^7.12.13" 11 | 12 | "@babel/helper-validator-identifier@^7.14.0": 13 | version "7.14.0" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" 15 | integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== 16 | 17 | "@babel/highlight@^7.12.13": 18 | version "7.14.0" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf" 20 | integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.14.0" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@jridgewell/gen-mapping@^0.3.0": 27 | version "0.3.2" 28 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" 29 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 30 | dependencies: 31 | "@jridgewell/set-array" "^1.0.1" 32 | "@jridgewell/sourcemap-codec" "^1.4.10" 33 | "@jridgewell/trace-mapping" "^0.3.9" 34 | 35 | "@jridgewell/resolve-uri@^3.0.3": 36 | version "3.1.0" 37 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 38 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 39 | 40 | "@jridgewell/set-array@^1.0.1": 41 | version "1.1.2" 42 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 43 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 44 | 45 | "@jridgewell/source-map@^0.3.2": 46 | version "0.3.2" 47 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" 48 | integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== 49 | dependencies: 50 | "@jridgewell/gen-mapping" "^0.3.0" 51 | "@jridgewell/trace-mapping" "^0.3.9" 52 | 53 | "@jridgewell/sourcemap-codec@^1.4.10": 54 | version "1.4.14" 55 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 56 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 57 | 58 | "@jridgewell/trace-mapping@^0.3.9": 59 | version "0.3.14" 60 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" 61 | integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ== 62 | dependencies: 63 | "@jridgewell/resolve-uri" "^3.0.3" 64 | "@jridgewell/sourcemap-codec" "^1.4.10" 65 | 66 | "@polka/url@^1.0.0-next.9": 67 | version "1.0.0-next.12" 68 | resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.12.tgz#431ec342a7195622f86688bbda82e3166ce8cb28" 69 | integrity sha512-6RglhutqrGFMO1MNUXp95RBuYIuc8wTnMAV5MUhLmjTOy78ncwOw7RgeQ/HeymkKXRhZd0s2DNrM1rL7unk3MQ== 70 | 71 | "@popperjs/core@^2.6.0": 72 | version "2.9.2" 73 | resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353" 74 | integrity sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q== 75 | 76 | "@rollup/plugin-commonjs@^17.0.0": 77 | version "17.1.0" 78 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-17.1.0.tgz#757ec88737dffa8aa913eb392fade2e45aef2a2d" 79 | integrity sha512-PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew== 80 | dependencies: 81 | "@rollup/pluginutils" "^3.1.0" 82 | commondir "^1.0.1" 83 | estree-walker "^2.0.1" 84 | glob "^7.1.6" 85 | is-reference "^1.2.1" 86 | magic-string "^0.25.7" 87 | resolve "^1.17.0" 88 | 89 | "@rollup/plugin-node-resolve@^11.0.0": 90 | version "11.2.1" 91 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60" 92 | integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== 93 | dependencies: 94 | "@rollup/pluginutils" "^3.1.0" 95 | "@types/resolve" "1.17.1" 96 | builtin-modules "^3.1.0" 97 | deepmerge "^4.2.2" 98 | is-module "^1.0.0" 99 | resolve "^1.19.0" 100 | 101 | "@rollup/plugin-typescript@^8.0.0": 102 | version "8.2.1" 103 | resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.2.1.tgz#f1a32d4030cc83432ce36a80a922280f0f0b5d44" 104 | integrity sha512-Qd2E1pleDR4bwyFxqbjt4eJf+wB0UKVMLc7/BAFDGVdAXQMCsD4DUv5/7/ww47BZCYxWtJqe1Lo0KVNswBJlRw== 105 | dependencies: 106 | "@rollup/pluginutils" "^3.1.0" 107 | resolve "^1.17.0" 108 | 109 | "@rollup/pluginutils@4": 110 | version "4.1.0" 111 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838" 112 | integrity sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ== 113 | dependencies: 114 | estree-walker "^2.0.1" 115 | picomatch "^2.2.2" 116 | 117 | "@rollup/pluginutils@^3.1.0": 118 | version "3.1.0" 119 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 120 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 121 | dependencies: 122 | "@types/estree" "0.0.39" 123 | estree-walker "^1.0.1" 124 | picomatch "^2.2.2" 125 | 126 | "@tauri-apps/api@^1.0.1": 127 | version "1.0.1" 128 | resolved "https://registry.yarnpkg.com/@tauri-apps/api/-/api-1.0.1.tgz#f516cf3b83139312141123c08f1d75260274da50" 129 | integrity sha512-TJwKkXxtF52kN9Auu5TWD2AE4ssqTrsfdpIrixYwRb3gQ/FuYwvZjrMc9weYpgsW2cMhVNkvKgneNXF/4n04lw== 130 | dependencies: 131 | type-fest "2.13.1" 132 | 133 | "@tauri-apps/cli-darwin-arm64@1.0.0": 134 | version "1.0.0" 135 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.0.0.tgz#9ab439898b4d05a6e43df4451a42fa21e9d5eaa1" 136 | integrity sha512-0ryomgLjdpylXypMPVXLU3PZCde3Sw5nwN4coUhBcHPBLFRb8QPet+nweVK/HiZ3mxg8WeIazvpx2s8hS0l2GQ== 137 | 138 | "@tauri-apps/cli-darwin-x64@1.0.0": 139 | version "1.0.0" 140 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.0.0.tgz#5ffc8d444c7dc1cab14c8c743a929e448f1b1e93" 141 | integrity sha512-oejvYUT4dEfzBi+FWMj+CMz4cZ6C2gEFHrUtKVLdTXr8Flj5UTwdB1YPGQjiOqk73LOI7cB/vXxb9DZT+Lrxgg== 142 | 143 | "@tauri-apps/cli-linux-arm-gnueabihf@1.0.0": 144 | version "1.0.0" 145 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.0.0.tgz#c24d63b4637a0c20b9671f0284968b164482f6ee" 146 | integrity sha512-yAu78v8TeXNx/ETS5F2G2Uw/HX+LQvZkX94zNiqFsAj7snfWI/IqSUM52OBrdh/D0EC9NCdjUJ7Vuo32uxf7tg== 147 | 148 | "@tauri-apps/cli-linux-arm64-gnu@1.0.0": 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.0.0.tgz#dfb107a3d5f56dc0356126135f941261ffad10a3" 151 | integrity sha512-YFUN/S58AN317njAynzcQ+EHhRsCDXqmp5g9Oiqmcdg1vU7fPWZivVLc1WHz+0037C7JnsX5PtKpNYewP/+Oqw== 152 | 153 | "@tauri-apps/cli-linux-arm64-musl@1.0.0": 154 | version "1.0.0" 155 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.0.0.tgz#72ebfc5066c6fac82b513c20fbec6ab841b3ee05" 156 | integrity sha512-al+TxMGoNVikEvRQfMyYE/mdjUcUNMo5brkCIAb+fL4rWQlAhAnYVzmg/rM8N4nhdXm1MOaYAagQmxr8898dNA== 157 | 158 | "@tauri-apps/cli-linux-x64-gnu@1.0.0": 159 | version "1.0.0" 160 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.0.0.tgz#76f791378468a9ca2678885f0d14e05f4fd0d0c8" 161 | integrity sha512-KQmYlYyGpn6/2kSl9QivWG6EIepm6PJd57e6IKmYwAyNhLr2XfGl1CLuocUQQgO+jprjT70HXp+MXD0tcB0+Sw== 162 | 163 | "@tauri-apps/cli-linux-x64-musl@1.0.0": 164 | version "1.0.0" 165 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.0.0.tgz#12ccc0747c88e9c2cbdf21834b94718c8da689ca" 166 | integrity sha512-Qpaq5lZz569Aea6jfrRchgfEJaOrfLpCRBATcF8CJFFwVKmfCUcoV+MxbCIW30Zqw5Y06njC/ffa3261AV/ZIQ== 167 | 168 | "@tauri-apps/cli-win32-ia32-msvc@1.0.0": 169 | version "1.0.0" 170 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.0.0.tgz#5d56df6dbb62c11cae28b826619fbbad9a158399" 171 | integrity sha512-e2DzFqEMI+s+gv14UupdI91gPxTbUJTbbfQlTHdQlOsTk4HEZTsh+ibAYBcCLAaMRW38NEsFlAUe1lQA0iRu/w== 172 | 173 | "@tauri-apps/cli-win32-x64-msvc@1.0.0": 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.0.0.tgz#6227331d177118323cff13bc6bfb04894130c83f" 176 | integrity sha512-lWSs90pJeQX+L31IqIzmRhwLayEeyTh7mga0AxX8G868hvdLtcXCQA/rKoFtGdVLuHAx4+M+CBF5SMYb76xGYA== 177 | 178 | "@tauri-apps/cli@^1.0.0": 179 | version "1.0.0" 180 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli/-/cli-1.0.0.tgz#28f021a2db4c2087b569845d42b4fe7978ccee19" 181 | integrity sha512-4eHnk3p0xnCXd9Zel3kLvdiiSURnN98GMFvWUAdirm5AjyOjcx8TIET/jqRYmYKE5yd+LMQqYMUfHRwA6JJUkg== 182 | optionalDependencies: 183 | "@tauri-apps/cli-darwin-arm64" "1.0.0" 184 | "@tauri-apps/cli-darwin-x64" "1.0.0" 185 | "@tauri-apps/cli-linux-arm-gnueabihf" "1.0.0" 186 | "@tauri-apps/cli-linux-arm64-gnu" "1.0.0" 187 | "@tauri-apps/cli-linux-arm64-musl" "1.0.0" 188 | "@tauri-apps/cli-linux-x64-gnu" "1.0.0" 189 | "@tauri-apps/cli-linux-x64-musl" "1.0.0" 190 | "@tauri-apps/cli-win32-ia32-msvc" "1.0.0" 191 | "@tauri-apps/cli-win32-x64-msvc" "1.0.0" 192 | 193 | "@tsconfig/svelte@^1.0.0": 194 | version "1.0.10" 195 | resolved "https://registry.yarnpkg.com/@tsconfig/svelte/-/svelte-1.0.10.tgz#30ec7feeee0bdf38b12a50f0686f8a2e7b6b9dc0" 196 | integrity sha512-EBrpH2iXXfaf/9z81koiDYkp2mlwW2XzFcAqn6qh7VKyP8zBvHHAQzNhY+W9vH5arAjmGAm5g8ElWq6YmXm3ig== 197 | 198 | "@types/estree@*": 199 | version "0.0.47" 200 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.47.tgz#d7a51db20f0650efec24cd04994f523d93172ed4" 201 | integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg== 202 | 203 | "@types/estree@0.0.39": 204 | version "0.0.39" 205 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 206 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 207 | 208 | "@types/node@*": 209 | version "15.0.1" 210 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz#ef34dea0881028d11398be5bf4e856743e3dc35a" 211 | integrity sha512-TMkXt0Ck1y0KKsGr9gJtWGjttxlZnnvDtphxUOSd0bfaR6Q1jle+sPvrzNR1urqYTWMinoKvjKfXUGsumaO1PA== 212 | 213 | "@types/pug@^2.0.4": 214 | version "2.0.4" 215 | resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.4.tgz#8772fcd0418e3cd2cc171555d73007415051f4b2" 216 | integrity sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI= 217 | 218 | "@types/resolve@1.17.1": 219 | version "1.17.1" 220 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" 221 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 222 | dependencies: 223 | "@types/node" "*" 224 | 225 | "@types/sass@^1.16.0": 226 | version "1.16.0" 227 | resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.16.0.tgz#b41ac1c17fa68ffb57d43e2360486ef526b3d57d" 228 | integrity sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA== 229 | dependencies: 230 | "@types/node" "*" 231 | 232 | acorn@^8.5.0: 233 | version "8.7.1" 234 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 235 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== 236 | 237 | ansi-styles@^3.2.1: 238 | version "3.2.1" 239 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 240 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 241 | dependencies: 242 | color-convert "^1.9.0" 243 | 244 | ansi-styles@^4.1.0: 245 | version "4.3.0" 246 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 247 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 248 | dependencies: 249 | color-convert "^2.0.1" 250 | 251 | anymatch@~3.1.1: 252 | version "3.1.2" 253 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 254 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 255 | dependencies: 256 | normalize-path "^3.0.0" 257 | picomatch "^2.0.4" 258 | 259 | balanced-match@^1.0.0: 260 | version "1.0.2" 261 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 262 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 263 | 264 | binary-extensions@^2.0.0: 265 | version "2.2.0" 266 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 267 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 268 | 269 | bootstrap@^4.6.0: 270 | version "4.6.0" 271 | resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.0.tgz#97b9f29ac98f98dfa43bf7468262d84392552fd7" 272 | integrity sha512-Io55IuQY3kydzHtbGvQya3H+KorS/M9rSNyfCGCg9WZ4pyT/lCxIlpJgG1GXW/PswzC84Tr2fBYi+7+jFVQQBw== 273 | 274 | brace-expansion@^1.1.7: 275 | version "1.1.11" 276 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 277 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 278 | dependencies: 279 | balanced-match "^1.0.0" 280 | concat-map "0.0.1" 281 | 282 | braces@~3.0.2: 283 | version "3.0.2" 284 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 285 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 286 | dependencies: 287 | fill-range "^7.0.1" 288 | 289 | buffer-from@^1.0.0: 290 | version "1.1.2" 291 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 292 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 293 | 294 | builtin-modules@^3.1.0: 295 | version "3.2.0" 296 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" 297 | integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== 298 | 299 | callsites@^3.0.0: 300 | version "3.1.0" 301 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 302 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 303 | 304 | chalk@^2.0.0: 305 | version "2.4.2" 306 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 307 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 308 | dependencies: 309 | ansi-styles "^3.2.1" 310 | escape-string-regexp "^1.0.5" 311 | supports-color "^5.3.0" 312 | 313 | chalk@^4.0.0: 314 | version "4.1.1" 315 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 316 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 317 | dependencies: 318 | ansi-styles "^4.1.0" 319 | supports-color "^7.1.0" 320 | 321 | chokidar@^3.4.1, chokidar@^3.5.0: 322 | version "3.5.1" 323 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 324 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 325 | dependencies: 326 | anymatch "~3.1.1" 327 | braces "~3.0.2" 328 | glob-parent "~5.1.0" 329 | is-binary-path "~2.1.0" 330 | is-glob "~4.0.1" 331 | normalize-path "~3.0.0" 332 | readdirp "~3.5.0" 333 | optionalDependencies: 334 | fsevents "~2.3.1" 335 | 336 | color-convert@^1.9.0: 337 | version "1.9.3" 338 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 339 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 340 | dependencies: 341 | color-name "1.1.3" 342 | 343 | color-convert@^2.0.1: 344 | version "2.0.1" 345 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 346 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 347 | dependencies: 348 | color-name "~1.1.4" 349 | 350 | color-name@1.1.3: 351 | version "1.1.3" 352 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 353 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 354 | 355 | color-name@~1.1.4: 356 | version "1.1.4" 357 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 358 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 359 | 360 | commander@^2.20.0: 361 | version "2.20.3" 362 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 363 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 364 | 365 | commondir@^1.0.1: 366 | version "1.0.1" 367 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 368 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 369 | 370 | concat-map@0.0.1: 371 | version "0.0.1" 372 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 373 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 374 | 375 | console-clear@^1.1.0: 376 | version "1.1.1" 377 | resolved "https://registry.yarnpkg.com/console-clear/-/console-clear-1.1.1.tgz#995e20cbfbf14dd792b672cde387bd128d674bf7" 378 | integrity sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ== 379 | 380 | deepmerge@^4.2.2: 381 | version "4.2.2" 382 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 383 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 384 | 385 | detect-indent@^6.0.0: 386 | version "6.0.0" 387 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" 388 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 389 | 390 | escape-string-regexp@^1.0.5: 391 | version "1.0.5" 392 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 393 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 394 | 395 | estree-walker@^0.6.1: 396 | version "0.6.1" 397 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 398 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 399 | 400 | estree-walker@^1.0.1: 401 | version "1.0.1" 402 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 403 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 404 | 405 | estree-walker@^2.0.1: 406 | version "2.0.2" 407 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 408 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 409 | 410 | fill-range@^7.0.1: 411 | version "7.0.1" 412 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 413 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 414 | dependencies: 415 | to-regex-range "^5.0.1" 416 | 417 | fs.realpath@^1.0.0: 418 | version "1.0.0" 419 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 420 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 421 | 422 | fsevents@~2.3.1: 423 | version "2.3.2" 424 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 425 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 426 | 427 | function-bind@^1.1.1: 428 | version "1.1.1" 429 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 430 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 431 | 432 | get-port@^3.2.0: 433 | version "3.2.0" 434 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 435 | integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= 436 | 437 | glob-parent@~5.1.0: 438 | version "5.1.2" 439 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 440 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 441 | dependencies: 442 | is-glob "^4.0.1" 443 | 444 | glob@^7.1.6: 445 | version "7.1.6" 446 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 447 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 448 | dependencies: 449 | fs.realpath "^1.0.0" 450 | inflight "^1.0.4" 451 | inherits "2" 452 | minimatch "^3.0.4" 453 | once "^1.3.0" 454 | path-is-absolute "^1.0.0" 455 | 456 | has-flag@^3.0.0: 457 | version "3.0.0" 458 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 459 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 460 | 461 | has-flag@^4.0.0: 462 | version "4.0.0" 463 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 464 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 465 | 466 | has@^1.0.3: 467 | version "1.0.3" 468 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 469 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 470 | dependencies: 471 | function-bind "^1.1.1" 472 | 473 | import-fresh@^3.2.1: 474 | version "3.3.0" 475 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 476 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 477 | dependencies: 478 | parent-module "^1.0.0" 479 | resolve-from "^4.0.0" 480 | 481 | inflight@^1.0.4: 482 | version "1.0.6" 483 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 484 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 485 | dependencies: 486 | once "^1.3.0" 487 | wrappy "1" 488 | 489 | inherits@2: 490 | version "2.0.4" 491 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 492 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 493 | 494 | is-binary-path@~2.1.0: 495 | version "2.1.0" 496 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 497 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 498 | dependencies: 499 | binary-extensions "^2.0.0" 500 | 501 | is-core-module@^2.2.0: 502 | version "2.3.0" 503 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887" 504 | integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw== 505 | dependencies: 506 | has "^1.0.3" 507 | 508 | is-extglob@^2.1.1: 509 | version "2.1.1" 510 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 511 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 512 | 513 | is-glob@^4.0.1, is-glob@~4.0.1: 514 | version "4.0.1" 515 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 516 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 517 | dependencies: 518 | is-extglob "^2.1.1" 519 | 520 | is-module@^1.0.0: 521 | version "1.0.0" 522 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 523 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 524 | 525 | is-number@^7.0.0: 526 | version "7.0.0" 527 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 528 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 529 | 530 | is-reference@^1.2.1: 531 | version "1.2.1" 532 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 533 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 534 | dependencies: 535 | "@types/estree" "*" 536 | 537 | jest-worker@^26.2.1: 538 | version "26.6.2" 539 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 540 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 541 | dependencies: 542 | "@types/node" "*" 543 | merge-stream "^2.0.0" 544 | supports-color "^7.0.0" 545 | 546 | js-tokens@^4.0.0: 547 | version "4.0.0" 548 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 549 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 550 | 551 | kleur@^3.0.0: 552 | version "3.0.3" 553 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 554 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 555 | 556 | livereload-js@^3.3.1: 557 | version "3.3.2" 558 | resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-3.3.2.tgz#c88b009c6e466b15b91faa26fd7c99d620e12651" 559 | integrity sha512-w677WnINxFkuixAoUEXOStewzLYGI76XVag+0JWMMEyjJQKs0ibWZMxkTlB96Lm3EjZ7IeOxVziBEbtxVQqQZA== 560 | 561 | livereload@^0.9.1: 562 | version "0.9.3" 563 | resolved "https://registry.yarnpkg.com/livereload/-/livereload-0.9.3.tgz#a714816375ed52471408bede8b49b2ee6a0c55b1" 564 | integrity sha512-q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw== 565 | dependencies: 566 | chokidar "^3.5.0" 567 | livereload-js "^3.3.1" 568 | opts ">= 1.2.0" 569 | ws "^7.4.3" 570 | 571 | local-access@^1.0.1: 572 | version "1.1.0" 573 | resolved "https://registry.yarnpkg.com/local-access/-/local-access-1.1.0.tgz#e007c76ba2ca83d5877ba1a125fc8dfe23ba4798" 574 | integrity sha512-XfegD5pyTAfb+GY6chk283Ox5z8WexG56OvM06RWLpAc/UHozO8X6xAxEkIitZOtsSMM1Yr3DkHgW5W+onLhCw== 575 | 576 | magic-string@^0.25.7: 577 | version "0.25.7" 578 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 579 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 580 | dependencies: 581 | sourcemap-codec "^1.4.4" 582 | 583 | merge-stream@^2.0.0: 584 | version "2.0.0" 585 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 586 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 587 | 588 | mime@^2.3.1: 589 | version "2.5.2" 590 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" 591 | integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== 592 | 593 | min-indent@^1.0.0: 594 | version "1.0.1" 595 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 596 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 597 | 598 | minimatch@^3.0.4: 599 | version "3.0.4" 600 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 601 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 602 | dependencies: 603 | brace-expansion "^1.1.7" 604 | 605 | minimist@^1.2.5: 606 | version "1.2.6" 607 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 608 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 609 | 610 | mri@^1.1.0: 611 | version "1.1.6" 612 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" 613 | integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== 614 | 615 | normalize-path@^3.0.0, normalize-path@~3.0.0: 616 | version "3.0.0" 617 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 618 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 619 | 620 | once@^1.3.0: 621 | version "1.4.0" 622 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 623 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 624 | dependencies: 625 | wrappy "1" 626 | 627 | "opts@>= 1.2.0": 628 | version "2.0.2" 629 | resolved "https://registry.yarnpkg.com/opts/-/opts-2.0.2.tgz#a17e189fbbfee171da559edd8a42423bc5993ce1" 630 | integrity sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg== 631 | 632 | parent-module@^1.0.0: 633 | version "1.0.1" 634 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 635 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 636 | dependencies: 637 | callsites "^3.0.0" 638 | 639 | path-is-absolute@^1.0.0: 640 | version "1.0.1" 641 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 642 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 643 | 644 | path-parse@^1.0.6: 645 | version "1.0.7" 646 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 647 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 648 | 649 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2: 650 | version "2.2.3" 651 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" 652 | integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== 653 | 654 | randombytes@^2.1.0: 655 | version "2.1.0" 656 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 657 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 658 | dependencies: 659 | safe-buffer "^5.1.0" 660 | 661 | readdirp@~3.5.0: 662 | version "3.5.0" 663 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 664 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 665 | dependencies: 666 | picomatch "^2.2.1" 667 | 668 | require-relative@^0.8.7: 669 | version "0.8.7" 670 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 671 | integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= 672 | 673 | resolve-from@^4.0.0: 674 | version "4.0.0" 675 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 676 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 677 | 678 | resolve@^1.17.0, resolve@^1.19.0: 679 | version "1.20.0" 680 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 681 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 682 | dependencies: 683 | is-core-module "^2.2.0" 684 | path-parse "^1.0.6" 685 | 686 | rollup-plugin-css-only@^3.1.0: 687 | version "3.1.0" 688 | resolved "https://registry.yarnpkg.com/rollup-plugin-css-only/-/rollup-plugin-css-only-3.1.0.tgz#6a701cc5b051c6b3f0961e69b108a9a118e1b1df" 689 | integrity sha512-TYMOE5uoD76vpj+RTkQLzC9cQtbnJNktHPB507FzRWBVaofg7KhIqq1kGbcVOadARSozWF883Ho9KpSPKH8gqA== 690 | dependencies: 691 | "@rollup/pluginutils" "4" 692 | 693 | rollup-plugin-livereload@^2.0.0: 694 | version "2.0.0" 695 | resolved "https://registry.yarnpkg.com/rollup-plugin-livereload/-/rollup-plugin-livereload-2.0.0.tgz#d3928d74e8cf2ae4286c5dd46b770fd3f3b82313" 696 | integrity sha512-oC/8NqumGYuphkqrfszOHUUIwzKsaHBICw6QRwT5uD07gvePTS+HW+GFwu6f9K8W02CUuTvtIM9AWJrbj4wE1A== 697 | dependencies: 698 | livereload "^0.9.1" 699 | 700 | rollup-plugin-svelte@^7.0.0: 701 | version "7.1.0" 702 | resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-7.1.0.tgz#d45f2b92b1014be4eb46b55aa033fb9a9c65f04d" 703 | integrity sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg== 704 | dependencies: 705 | require-relative "^0.8.7" 706 | rollup-pluginutils "^2.8.2" 707 | 708 | rollup-plugin-terser@^7.0.0: 709 | version "7.0.2" 710 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" 711 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== 712 | dependencies: 713 | "@babel/code-frame" "^7.10.4" 714 | jest-worker "^26.2.1" 715 | serialize-javascript "^4.0.0" 716 | terser "^5.0.0" 717 | 718 | rollup-pluginutils@^2.8.2: 719 | version "2.8.2" 720 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 721 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 722 | dependencies: 723 | estree-walker "^0.6.1" 724 | 725 | rollup@^2.3.4: 726 | version "2.46.0" 727 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.46.0.tgz#8cacf89d2ee31a34755f1af40a665168f592b829" 728 | integrity sha512-qPGoUBNl+Z8uNu0z7pD3WPTABWRbcOwIrO/5ccDJzmrtzn0LVf6Lj91+L5CcWhXl6iWf23FQ6m8Jkl2CmN1O7Q== 729 | optionalDependencies: 730 | fsevents "~2.3.1" 731 | 732 | sade@^1.6.0: 733 | version "1.7.4" 734 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691" 735 | integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== 736 | dependencies: 737 | mri "^1.1.0" 738 | 739 | safe-buffer@^5.1.0: 740 | version "5.2.1" 741 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 742 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 743 | 744 | semiver@^1.0.0: 745 | version "1.1.0" 746 | resolved "https://registry.yarnpkg.com/semiver/-/semiver-1.1.0.tgz#9c97fb02c21c7ce4fcf1b73e2c7a24324bdddd5f" 747 | integrity sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg== 748 | 749 | serialize-javascript@^4.0.0: 750 | version "4.0.0" 751 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 752 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 753 | dependencies: 754 | randombytes "^2.1.0" 755 | 756 | sirv-cli@^1.0.0: 757 | version "1.0.11" 758 | resolved "https://registry.yarnpkg.com/sirv-cli/-/sirv-cli-1.0.11.tgz#a3f4bed53b7c09306ed7f16ebea6e1e7be676c74" 759 | integrity sha512-L8NILoRSBd38VcfFcERYCaVCnWPBLo9G6u/a37UJ8Ysv4DfjizMbFBcM+SswNnndJienhR6qy8KFuAEaeL4g8Q== 760 | dependencies: 761 | console-clear "^1.1.0" 762 | get-port "^3.2.0" 763 | kleur "^3.0.0" 764 | local-access "^1.0.1" 765 | sade "^1.6.0" 766 | semiver "^1.0.0" 767 | sirv "^1.0.11" 768 | tinydate "^1.0.0" 769 | 770 | sirv@^1.0.11: 771 | version "1.0.11" 772 | resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.11.tgz#81c19a29202048507d6ec0d8ba8910fda52eb5a4" 773 | integrity sha512-SR36i3/LSWja7AJNRBz4fF/Xjpn7lQFI30tZ434dIy+bitLYSP+ZEenHg36i23V2SGEz+kqjksg0uOGZ5LPiqg== 774 | dependencies: 775 | "@polka/url" "^1.0.0-next.9" 776 | mime "^2.3.1" 777 | totalist "^1.0.0" 778 | 779 | source-map-support@~0.5.20: 780 | version "0.5.21" 781 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 782 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 783 | dependencies: 784 | buffer-from "^1.0.0" 785 | source-map "^0.6.0" 786 | 787 | source-map@^0.6.0: 788 | version "0.6.1" 789 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 790 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 791 | 792 | source-map@^0.7.3: 793 | version "0.7.3" 794 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 795 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 796 | 797 | sourcemap-codec@^1.4.4: 798 | version "1.4.8" 799 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 800 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 801 | 802 | strip-indent@^3.0.0: 803 | version "3.0.0" 804 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 805 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 806 | dependencies: 807 | min-indent "^1.0.0" 808 | 809 | supports-color@^5.3.0: 810 | version "5.5.0" 811 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 812 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 813 | dependencies: 814 | has-flag "^3.0.0" 815 | 816 | supports-color@^7.0.0, supports-color@^7.1.0: 817 | version "7.2.0" 818 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 819 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 820 | dependencies: 821 | has-flag "^4.0.0" 822 | 823 | svelte-check@^1.0.0: 824 | version "1.5.2" 825 | resolved "https://registry.yarnpkg.com/svelte-check/-/svelte-check-1.5.2.tgz#783f48a8e3b3e484b3bcfb990ff5102348c63a23" 826 | integrity sha512-x9Pc13r814TKrMXY70IyqDEmPzuFiqNSpBmsrMKrFpi995MiG+lmqYnyw8iQC+DGh7H3eUt3LIFXbNd396XIFw== 827 | dependencies: 828 | chalk "^4.0.0" 829 | chokidar "^3.4.1" 830 | glob "^7.1.6" 831 | import-fresh "^3.2.1" 832 | minimist "^1.2.5" 833 | source-map "^0.7.3" 834 | svelte-preprocess "^4.0.0" 835 | typescript "*" 836 | 837 | svelte-preprocess@^4.0.0: 838 | version "4.7.3" 839 | resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-4.7.3.tgz#454fa059c2400b15e7a3caeca18993cff9df0e96" 840 | integrity sha512-Zx1/xLeGOIBlZMGPRCaXtlMe4ZA0faato5Dc3CosEqwu75MIEPuOstdkH6cy+RYTUYynoxzNaDxkPX4DbrPwRA== 841 | dependencies: 842 | "@types/pug" "^2.0.4" 843 | "@types/sass" "^1.16.0" 844 | detect-indent "^6.0.0" 845 | strip-indent "^3.0.0" 846 | 847 | svelte@^3.49.0: 848 | version "3.49.0" 849 | resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.49.0.tgz#5baee3c672306de1070c3b7888fc2204e36a4029" 850 | integrity sha512-+lmjic1pApJWDfPCpUUTc1m8azDqYCG1JN9YEngrx/hUyIcFJo6VZhj0A1Ai0wqoHcEIuQy+e9tk+4uDgdtsFA== 851 | 852 | sveltestrap@^4.1.0: 853 | version "4.1.0" 854 | resolved "https://registry.yarnpkg.com/sveltestrap/-/sveltestrap-4.1.0.tgz#d8644256605c5572fe49e1b8e595b339d1859feb" 855 | integrity sha512-FRUGHtEP0MGWnxdcO9HKWmLiF6MPKgYEbog7wVmWdRU1+OXxHVv8ETec5q619E4oSfN4XiFdDv+m8Wq6/E6cTg== 856 | dependencies: 857 | "@popperjs/core" "^2.6.0" 858 | 859 | terser@^5.0.0: 860 | version "5.14.2" 861 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10" 862 | integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA== 863 | dependencies: 864 | "@jridgewell/source-map" "^0.3.2" 865 | acorn "^8.5.0" 866 | commander "^2.20.0" 867 | source-map-support "~0.5.20" 868 | 869 | tinydate@^1.0.0: 870 | version "1.3.0" 871 | resolved "https://registry.yarnpkg.com/tinydate/-/tinydate-1.3.0.tgz#e6ca8e5a22b51bb4ea1c3a2a4fd1352dbd4c57fb" 872 | integrity sha512-7cR8rLy2QhYHpsBDBVYnnWXm8uRTr38RoZakFSW7Bs7PzfMPNZthuMLkwqZv7MTu8lhQ91cOFYS5a7iFj2oR3w== 873 | 874 | to-regex-range@^5.0.1: 875 | version "5.0.1" 876 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 877 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 878 | dependencies: 879 | is-number "^7.0.0" 880 | 881 | totalist@^1.0.0: 882 | version "1.1.0" 883 | resolved "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" 884 | integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== 885 | 886 | tslib@^2.0.0: 887 | version "2.2.0" 888 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" 889 | integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== 890 | 891 | type-fest@2.13.1: 892 | version "2.13.1" 893 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.13.1.tgz#621c84220df0e01a8469002594fc005714f0cfba" 894 | integrity sha512-hXYyrPFwETT2swFLHeoKtJrvSF/ftG/sA15/8nGaLuaDGfVAaq8DYFpu4yOyV4tzp082WqnTEoMsm3flKMI2FQ== 895 | 896 | typescript@*, typescript@^4.0.0: 897 | version "4.2.4" 898 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961" 899 | integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg== 900 | 901 | wrappy@1: 902 | version "1.0.2" 903 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 904 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 905 | 906 | ws@^7.4.3: 907 | version "7.4.5" 908 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" 909 | integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== 910 | --------------------------------------------------------------------------------