├── src-tauri ├── build.rs ├── icons │ ├── 32x32.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── StoreLogo.png │ ├── Square30x30Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ └── Square310x310Logo.png ├── .gitignore ├── Cargo.toml ├── tauri.conf.json ├── src │ └── main.rs └── Cargo.lock ├── public ├── icon.png └── favicon.ico ├── screenshot.png ├── src ├── vite-env.d.ts ├── main.ts └── App.svelte ├── postcss.config.cjs ├── tsconfig.node.json ├── vite.config.ts ├── tailwind.config.cjs ├── svelte.config.js ├── index.html ├── README.md ├── tsconfig.json ├── package.json ├── .gitignore └── yarn.lock /src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/public/icon.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/screenshot.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | 5 | -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spy16/taurishell/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import App from "./App.svelte"; 2 | 3 | const app = new App({ 4 | target: document.getElementById("app"), 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import { svelte } from '@sveltejs/vite-plugin-svelte' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [svelte()] 7 | }) 8 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["index.html", "./src/**/*.{svelte,js,ts}"], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | }; 9 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import sveltePreprocess from 'svelte-preprocess' 2 | 3 | export default { 4 | // Consult https://github.com/sveltejs/svelte-preprocess 5 | // for more information about preprocessors 6 | preprocess: sveltePreprocess() 7 | } 8 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | TauriShell 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tauri Shell 2 | 3 | This repo can be used as reference for building alfred/raycast/spotlight apps using Tauri. 4 | 5 | ![Tauri](./screenshot.png) 6 | 7 | ## Usage 8 | 9 | This reference repository is using Svelte for the content shown inside the window. But any framework (React, Vue, etc.) can also be used just as easily. 10 | 11 | For example, to use this with React: 12 | 13 | 1. Create a React project (e.g., with `create-react-app`) 14 | 2. Copy the `src-tauri/` into your React project root. 15 | 3. Update the `build.distDir` key in `src-tauri/tauri.conf.json` file to `../build` (Becuase React generates production build in `build/`) 16 | 17 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/svelte/tsconfig.json", 3 | "compilerOptions": { 4 | "target": "ESNext", 5 | "useDefineForClassFields": true, 6 | "module": "ESNext", 7 | "resolveJsonModule": true, 8 | "baseUrl": ".", 9 | /** 10 | * Typecheck JS in `.svelte` and `.js` files by default. 11 | * Disable checkJs if you'd like to use dynamic types in JS. 12 | * Note that setting allowJs false does not prevent the use 13 | * of JS in `.svelte` files. 14 | */ 15 | "allowJs": true, 16 | "checkJs": true, 17 | "isolatedModules": true 18 | }, 19 | "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"], 20 | "references": [{ "path": "./tsconfig.node.json" }] 21 | } 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "taurishell", 3 | "private": true, 4 | "version": "0.1.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "preview": "vite preview", 10 | "check": "svelte-check --tsconfig ./tsconfig.json" 11 | }, 12 | "devDependencies": { 13 | "@sveltejs/vite-plugin-svelte": "^1.0.2", 14 | "@tauri-apps/cli": "^1.1.1", 15 | "@tsconfig/svelte": "^3.0.0", 16 | "autoprefixer": "^10.4.12", 17 | "postcss": "^8.4.16", 18 | "svelte": "^3.49.0", 19 | "svelte-check": "^2.8.1", 20 | "svelte-preprocess": "^4.10.7", 21 | "tailwindcss": "^3.1.8", 22 | "tslib": "^2.4.0", 23 | "typescript": "^4.6.4", 24 | "vite": "^3.1.0" 25 | }, 26 | "dependencies": { 27 | "@tauri-apps/api": "^1.1.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "launch-shell" 3 | version = "0.0.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | edition = "2021" 9 | rust-version = "1.57" 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_json = "1.0" 18 | serde = { version = "1.0", features = ["derive"] } 19 | tauri = { version = "1.0.0", features = ["api-all", "macos-private-api", "system-tray"] } 20 | window-vibrancy = {version = "0.1.3"} 21 | window-shadows = {version = "0.1.3"} 22 | 23 | [features] 24 | # by default Tauri runs in production mode 25 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL 26 | default = [ "custom-protocol" ] 27 | # this feature is used used for production builds where `devPath` points to the filesystem 28 | # DO NOT remove this 29 | custom-protocol = [ "tauri/custom-protocol" ] 30 | -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- 1 | 26 | 27 |
28 |
29 | Tauri 30 |

Welcome!

31 |

32 | This is Tauri shell. The content you are seeing is coming from embedded 33 | Svelte app. 34 |

35 |
36 |

For styling Tailwind CSS is configured.

37 |
38 |
39 | 40 | 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | .DS_Store 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # TypeScript cache 43 | *.tsbuildinfo 44 | 45 | # Optional npm cache directory 46 | .npm 47 | 48 | # Optional eslint cache 49 | .eslintcache 50 | 51 | # Optional REPL history 52 | .node_repl_history 53 | 54 | # Output of 'npm pack' 55 | *.tgz 56 | 57 | # Yarn Integrity file 58 | .yarn-integrity 59 | 60 | # dotenv environment variables file 61 | .env 62 | .env.test 63 | 64 | # parcel-bundler cache (https://parceljs.org/) 65 | .cache 66 | 67 | # next.js build output 68 | .next 69 | 70 | # nuxt.js build output 71 | .nuxt 72 | 73 | # vuepress build output 74 | .vuepress/dist 75 | 76 | # Serverless directories 77 | .serverless/ 78 | 79 | # FuseBox cache 80 | .fusebox/ 81 | 82 | # DynamoDB Local files 83 | .dynamodb/ 84 | 85 | # Webpack 86 | .webpack/ 87 | 88 | # Electron-Forge 89 | out/ 90 | dist/ 91 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "build": { 3 | "beforeDevCommand": "yarn dev", 4 | "beforeBuildCommand": "yarn build", 5 | "devPath": "http://localhost:5173", 6 | "distDir": "../dist" 7 | }, 8 | "package": { 9 | "productName": "taurishell", 10 | "version": "0.1.0" 11 | }, 12 | "tauri": { 13 | "allowlist": { 14 | "all": true 15 | }, 16 | "systemTray": { 17 | "iconPath": "icons/icon.png", 18 | "iconAsTemplate": true 19 | }, 20 | "bundle": { 21 | "active": true, 22 | "category": "DeveloperTool", 23 | "copyright": "", 24 | "deb": { 25 | "depends": [] 26 | }, 27 | "externalBin": [], 28 | "icon": [ 29 | "icons/32x32.png", 30 | "icons/128x128.png", 31 | "icons/128x128@2x.png", 32 | "icons/icon.icns", 33 | "icons/icon.ico" 34 | ], 35 | "identifier": "in.spy16.taurishell", 36 | "longDescription": "", 37 | "macOS": { 38 | "entitlements": null, 39 | "exceptionDomain": "", 40 | "frameworks": [], 41 | "providerShortName": null, 42 | "signingIdentity": null 43 | }, 44 | "resources": [], 45 | "shortDescription": "", 46 | "targets": "all", 47 | "windows": { 48 | "certificateThumbprint": null, 49 | "digestAlgorithm": "sha256", 50 | "timestampUrl": "" 51 | } 52 | }, 53 | "security": { 54 | "csp": null 55 | }, 56 | "updater": { 57 | "active": false 58 | }, 59 | "macOSPrivateApi": true, 60 | "windows": [ 61 | { 62 | "title": "taurishell", 63 | "width": 600, 64 | "height": 500, 65 | "resizable": false, 66 | "fullscreen": false, 67 | "transparent": true, 68 | "decorations": false 69 | } 70 | ] 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | use tauri::{Manager, SystemTrayEvent, GlobalShortcutManager, Window}; 7 | use window_vibrancy::{apply_blur, apply_vibrancy, NSVisualEffectMaterial}; 8 | use window_shadows::set_shadow; 9 | use tauri::SystemTray; 10 | 11 | fn toggle_visibility(win: Window) { 12 | if win.is_visible().unwrap() { 13 | win.hide().expect("failed to hide window"); 14 | }else { 15 | win.center().unwrap(); 16 | win.show().expect("failed to show window"); 17 | win.set_focus().expect("failed to set-focus to window"); 18 | } 19 | } 20 | 21 | fn main() { 22 | let tray = SystemTray::new(); 23 | 24 | tauri::Builder::default() 25 | .setup(|app| { 26 | let window = app.get_window("main").unwrap(); 27 | 28 | app.set_activation_policy(tauri::ActivationPolicy::Accessory); 29 | 30 | #[cfg(target_os = "macos")] 31 | apply_vibrancy(&window, NSVisualEffectMaterial::UltraDark) 32 | .expect("Unsupported platform! 'apply_vibrancy' is only supported on macOS"); 33 | 34 | #[cfg(target_os = "windows")] 35 | apply_blur(&window, Some((18, 18, 18, 125))) 36 | .expect("Unsupported platform! 'apply_blur' is only supported on Windows"); 37 | 38 | set_shadow(&window, true).expect("Unsupported platform!"); 39 | 40 | window.hide().expect("failed to hide"); 41 | Ok(()) 42 | }) 43 | .system_tray(tray) 44 | .on_system_tray_event(|app, event| match event { 45 | SystemTrayEvent::LeftClick { 46 | position: _, 47 | size: _, 48 | .. 49 | } => { 50 | let window = app.get_window("main").unwrap(); 51 | toggle_visibility(window); 52 | } 53 | _ => {} 54 | }) 55 | .run(tauri::generate_context!()).expect("error while running tauri application"); 56 | } 57 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@esbuild/android-arm@0.15.9": 6 | version "0.15.9" 7 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.9.tgz#7e1221604ab88ed5021ead74fa8cca4405e1e431" 8 | integrity sha512-VZPy/ETF3fBG5PiinIkA0W/tlsvlEgJccyN2DzWZEl0DlVKRbu91PvY2D6Lxgluj4w9QtYHjOWjAT44C+oQ+EQ== 9 | 10 | "@esbuild/linux-loong64@0.15.9": 11 | version "0.15.9" 12 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.9.tgz#b658a97babf1f40783354af7039b84c3fdfc3fc3" 13 | integrity sha512-O+NfmkfRrb3uSsTa4jE3WApidSe3N5++fyOVGP1SmMZi4A3BZELkhUUvj5hwmMuNdlpzAZ8iAPz2vmcR7DCFQA== 14 | 15 | "@jridgewell/resolve-uri@^3.0.3": 16 | version "3.1.0" 17 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 18 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 19 | 20 | "@jridgewell/sourcemap-codec@^1.4.10": 21 | version "1.4.14" 22 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 23 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 24 | 25 | "@jridgewell/trace-mapping@^0.3.9": 26 | version "0.3.15" 27 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz#aba35c48a38d3fd84b37e66c9c0423f9744f9774" 28 | integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== 29 | dependencies: 30 | "@jridgewell/resolve-uri" "^3.0.3" 31 | "@jridgewell/sourcemap-codec" "^1.4.10" 32 | 33 | "@nodelib/fs.scandir@2.1.5": 34 | version "2.1.5" 35 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 36 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 37 | dependencies: 38 | "@nodelib/fs.stat" "2.0.5" 39 | run-parallel "^1.1.9" 40 | 41 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 42 | version "2.0.5" 43 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 44 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 45 | 46 | "@nodelib/fs.walk@^1.2.3": 47 | version "1.2.8" 48 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 49 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 50 | dependencies: 51 | "@nodelib/fs.scandir" "2.1.5" 52 | fastq "^1.6.0" 53 | 54 | "@rollup/pluginutils@^4.2.1": 55 | version "4.2.1" 56 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" 57 | integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== 58 | dependencies: 59 | estree-walker "^2.0.1" 60 | picomatch "^2.2.2" 61 | 62 | "@sveltejs/vite-plugin-svelte@^1.0.2": 63 | version "1.0.8" 64 | resolved "https://registry.yarnpkg.com/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-1.0.8.tgz#a8ebf58d3efc7bdb9eb8692ef3d78fdc39a6baa8" 65 | integrity sha512-1xkVTB4pm6zuign858FzVYE9Fdw9MQBOlxrdd85STV0NvTDmcofcRpcrK+zcIyT8SZ2dseHLu8hvDwzssF6RfA== 66 | dependencies: 67 | "@rollup/pluginutils" "^4.2.1" 68 | debug "^4.3.4" 69 | deepmerge "^4.2.2" 70 | kleur "^4.1.5" 71 | magic-string "^0.26.3" 72 | svelte-hmr "^0.15.0" 73 | 74 | "@tauri-apps/api@^1.1.0": 75 | version "1.1.0" 76 | resolved "https://registry.yarnpkg.com/@tauri-apps/api/-/api-1.1.0.tgz#2c5756f6aeecd36f7683183eaba021690711bedf" 77 | integrity sha512-n13pIqdPd3KtaMmmAcrU7BTfdMtIlGNnfZD0dNX8L4p8dgmuNyikm6JAA+yCpl9gqq6I8x5cV2Y0muqdgD0cWw== 78 | 79 | "@tauri-apps/cli-darwin-arm64@1.1.1": 80 | version "1.1.1" 81 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.1.1.tgz#c6f4553cfb338f24131910a1ebbe9fe74d89b8ae" 82 | integrity sha512-qBG11ig525/qf0f5OQxn0ON3hT8YdpTfpa4Y4kVqBJhdW50R5fadPv6tv5Dpl2TS2X7nWh/zg5mEXYoCK3HZ9w== 83 | 84 | "@tauri-apps/cli-darwin-x64@1.1.1": 85 | version "1.1.1" 86 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.1.1.tgz#11beb8b3dfc43725f0acd3736cd9d181f93526a2" 87 | integrity sha512-M3dMsp78OdxisbTwAWGvy3jIb3uqThtQcUYVvqOu9LeEOHyldOBFDSht+6PTBpaJLAHFMQK2rmNxiWgigklJaA== 88 | 89 | "@tauri-apps/cli-linux-arm-gnueabihf@1.1.1": 90 | version "1.1.1" 91 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.1.1.tgz#f4bd3f5839cfcd69132d213efee09ce5da5c6d90" 92 | integrity sha512-LYlvdAd73cq+yTi6rw7j/DWIvDpeApwgQkIn+HYsNNeFhyFmABU7tmw+pekK3W3nHAkYAJ69Rl4ZdoxdNGKmHg== 93 | 94 | "@tauri-apps/cli-linux-arm64-gnu@1.1.1": 95 | version "1.1.1" 96 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.1.1.tgz#2631b2a68e7901ea7281af022d8826c0d82b9edd" 97 | integrity sha512-o/hbMQIKuFI7cTNpeQBHD/OCNJOBIci78faKms/t6AstLXx0QJuRHDk477Rg6VVy/I3BBKbyATALbmcTq+ti0A== 98 | 99 | "@tauri-apps/cli-linux-arm64-musl@1.1.1": 100 | version "1.1.1" 101 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.1.1.tgz#11a4bdc52696583152fc70ea373cf31717cb0f4c" 102 | integrity sha512-8Ci4qlDnXIp93XqUrtzFCBDatUzPHpZq7L3bociUbWpvy/bnlzxp1C/C+vwdc4uS1MiAp9v3BFgrU4i0f0Z3QQ== 103 | 104 | "@tauri-apps/cli-linux-x64-gnu@1.1.1": 105 | version "1.1.1" 106 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.1.1.tgz#11acbcc4743562cc8166c92ffc3bc12f68e0987f" 107 | integrity sha512-ES4Bkx2JAI8+dDNDJswhLS3yqt+yT/4C6UfGOPIHFxcXUh6fe36eUllrTt+HLRS9xTZbYnteJy7ebq2TqMkaxw== 108 | 109 | "@tauri-apps/cli-linux-x64-musl@1.1.1": 110 | version "1.1.1" 111 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.1.1.tgz#7dd81b8380d7e7183fb43a2ccbbc26931718204a" 112 | integrity sha512-qrN1WOMAaDl+LE8P8iO0+DYlrWNTc9jIu/CsnVY/LImTn79ZPxEkcVBo0UGeKRI7f10TfvkVmLCBLxTz8QhEyA== 113 | 114 | "@tauri-apps/cli-win32-ia32-msvc@1.1.1": 115 | version "1.1.1" 116 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.1.1.tgz#1d106ae1c3766f95d7f49bac51eba0d2cd2daf33" 117 | integrity sha512-vw7VOmrQlywHhFV3pf54udf2FRNj9dg9WP1gL0My55FnB+w+PWS9Ipm871kX5qepmChdnZHKq9fsqE2uTjX//Q== 118 | 119 | "@tauri-apps/cli-win32-x64-msvc@1.1.1": 120 | version "1.1.1" 121 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.1.1.tgz#ce931d299fcc8c60aceec3f9e18b0987f9951c25" 122 | integrity sha512-OukxlLLi3AoCN4ABnqCDTiiC7xJGWukAjrKCIx7wFISrLjNfsrnH7/UOzuopfGpZChSe2c+AamVmcpBfVsEmJA== 123 | 124 | "@tauri-apps/cli@^1.1.1": 125 | version "1.1.1" 126 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli/-/cli-1.1.1.tgz#480d5e1ab758aa1d7efcbf97d801bf9812b15cd4" 127 | integrity sha512-80kjMEMPBwLYCp0tTKSquy90PHHGGBvZsneNr3B/mWxNsvjzA1C0vOyGJGFrJuT2OmkvrdvuJZ5mch5hL8O1Xg== 128 | optionalDependencies: 129 | "@tauri-apps/cli-darwin-arm64" "1.1.1" 130 | "@tauri-apps/cli-darwin-x64" "1.1.1" 131 | "@tauri-apps/cli-linux-arm-gnueabihf" "1.1.1" 132 | "@tauri-apps/cli-linux-arm64-gnu" "1.1.1" 133 | "@tauri-apps/cli-linux-arm64-musl" "1.1.1" 134 | "@tauri-apps/cli-linux-x64-gnu" "1.1.1" 135 | "@tauri-apps/cli-linux-x64-musl" "1.1.1" 136 | "@tauri-apps/cli-win32-ia32-msvc" "1.1.1" 137 | "@tauri-apps/cli-win32-x64-msvc" "1.1.1" 138 | 139 | "@tsconfig/svelte@^3.0.0": 140 | version "3.0.0" 141 | resolved "https://registry.yarnpkg.com/@tsconfig/svelte/-/svelte-3.0.0.tgz#b06e059209f04c414de0069f2f0e2796d979fc6f" 142 | integrity sha512-pYrtLtOwku/7r1i9AMONsJMVYAtk3hzOfiGNekhtq5tYBGA7unMve8RvUclKLMT3PrihvJqUmzsRGh0RP84hKg== 143 | 144 | "@types/node@*": 145 | version "18.7.23" 146 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.23.tgz#75c580983846181ebe5f4abc40fe9dfb2d65665f" 147 | integrity sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg== 148 | 149 | "@types/pug@^2.0.4": 150 | version "2.0.6" 151 | resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.6.tgz#f830323c88172e66826d0bde413498b61054b5a6" 152 | integrity sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg== 153 | 154 | "@types/sass@^1.16.0": 155 | version "1.43.1" 156 | resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.43.1.tgz#86bb0168e9e881d7dade6eba16c9ed6d25dc2f68" 157 | integrity sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g== 158 | dependencies: 159 | "@types/node" "*" 160 | 161 | acorn-node@^1.8.2: 162 | version "1.8.2" 163 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 164 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 165 | dependencies: 166 | acorn "^7.0.0" 167 | acorn-walk "^7.0.0" 168 | xtend "^4.0.2" 169 | 170 | acorn-walk@^7.0.0: 171 | version "7.2.0" 172 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 173 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 174 | 175 | acorn@^7.0.0: 176 | version "7.4.1" 177 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 178 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 179 | 180 | anymatch@~3.1.2: 181 | version "3.1.2" 182 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 183 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 184 | dependencies: 185 | normalize-path "^3.0.0" 186 | picomatch "^2.0.4" 187 | 188 | arg@^5.0.2: 189 | version "5.0.2" 190 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" 191 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 192 | 193 | autoprefixer@^10.4.12: 194 | version "10.4.12" 195 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.12.tgz#183f30bf0b0722af54ee5ef257f7d4320bb33129" 196 | integrity sha512-WrCGV9/b97Pa+jtwf5UGaRjgQIg7OK3D06GnoYoZNcG1Xb8Gt3EfuKjlhh9i/VtT16g6PYjZ69jdJ2g8FxSC4Q== 197 | dependencies: 198 | browserslist "^4.21.4" 199 | caniuse-lite "^1.0.30001407" 200 | fraction.js "^4.2.0" 201 | normalize-range "^0.1.2" 202 | picocolors "^1.0.0" 203 | postcss-value-parser "^4.2.0" 204 | 205 | balanced-match@^1.0.0: 206 | version "1.0.2" 207 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 208 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 209 | 210 | binary-extensions@^2.0.0: 211 | version "2.2.0" 212 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 213 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 214 | 215 | brace-expansion@^1.1.7: 216 | version "1.1.11" 217 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 218 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 219 | dependencies: 220 | balanced-match "^1.0.0" 221 | concat-map "0.0.1" 222 | 223 | braces@^3.0.2, braces@~3.0.2: 224 | version "3.0.2" 225 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 226 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 227 | dependencies: 228 | fill-range "^7.0.1" 229 | 230 | browserslist@^4.21.4: 231 | version "4.21.4" 232 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" 233 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 234 | dependencies: 235 | caniuse-lite "^1.0.30001400" 236 | electron-to-chromium "^1.4.251" 237 | node-releases "^2.0.6" 238 | update-browserslist-db "^1.0.9" 239 | 240 | buffer-crc32@^0.2.5: 241 | version "0.2.13" 242 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 243 | integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 244 | 245 | callsites@^3.0.0: 246 | version "3.1.0" 247 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 248 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 249 | 250 | camelcase-css@^2.0.1: 251 | version "2.0.1" 252 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 253 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 254 | 255 | caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001407: 256 | version "1.0.30001414" 257 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001414.tgz#5f1715e506e71860b4b07c50060ea6462217611e" 258 | integrity sha512-t55jfSaWjCdocnFdKQoO+d2ct9C59UZg4dY3OnUlSZ447r8pUtIKdp0hpAzrGFultmTC+Us+KpKi4GZl/LXlFg== 259 | 260 | chokidar@^3.4.1, chokidar@^3.5.3: 261 | version "3.5.3" 262 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 263 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 264 | dependencies: 265 | anymatch "~3.1.2" 266 | braces "~3.0.2" 267 | glob-parent "~5.1.2" 268 | is-binary-path "~2.1.0" 269 | is-glob "~4.0.1" 270 | normalize-path "~3.0.0" 271 | readdirp "~3.6.0" 272 | optionalDependencies: 273 | fsevents "~2.3.2" 274 | 275 | color-name@^1.1.4: 276 | version "1.1.4" 277 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 278 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 279 | 280 | concat-map@0.0.1: 281 | version "0.0.1" 282 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 283 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 284 | 285 | cssesc@^3.0.0: 286 | version "3.0.0" 287 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 288 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 289 | 290 | debug@^4.3.4: 291 | version "4.3.4" 292 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 293 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 294 | dependencies: 295 | ms "2.1.2" 296 | 297 | deepmerge@^4.2.2: 298 | version "4.2.2" 299 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 300 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 301 | 302 | defined@^1.0.0: 303 | version "1.0.0" 304 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 305 | integrity sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ== 306 | 307 | detect-indent@^6.0.0: 308 | version "6.1.0" 309 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" 310 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== 311 | 312 | detective@^5.2.1: 313 | version "5.2.1" 314 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" 315 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 316 | dependencies: 317 | acorn-node "^1.8.2" 318 | defined "^1.0.0" 319 | minimist "^1.2.6" 320 | 321 | didyoumean@^1.2.2: 322 | version "1.2.2" 323 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 324 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 325 | 326 | dlv@^1.1.3: 327 | version "1.1.3" 328 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 329 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 330 | 331 | electron-to-chromium@^1.4.251: 332 | version "1.4.268" 333 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.268.tgz#5a902075f0209a628837e508a66d40ace04d54ab" 334 | integrity sha512-PO90Bv++vEzdln+eA9qLg1IRnh0rKETus6QkTzcFm5P3Wg3EQBZud5dcnzkpYXuIKWBjKe5CO8zjz02cicvn1g== 335 | 336 | es6-promise@^3.1.2: 337 | version "3.3.1" 338 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 339 | integrity sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg== 340 | 341 | esbuild-android-64@0.15.9: 342 | version "0.15.9" 343 | resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.9.tgz#4a7eb320ca8d3a305f14792061fd9614ccebb7c0" 344 | integrity sha512-HQCX7FJn9T4kxZQkhPjNZC7tBWZqJvhlLHPU2SFzrQB/7nDXjmTIFpFTjt7Bd1uFpeXmuwf5h5fZm+x/hLnhbw== 345 | 346 | esbuild-android-arm64@0.15.9: 347 | version "0.15.9" 348 | resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.9.tgz#c948e5686df20857ad361ec67e070d40d7cab985" 349 | integrity sha512-E6zbLfqbFVCNEKircSHnPiSTsm3fCRxeIMPfrkS33tFjIAoXtwegQfVZqMGR0FlsvVxp2NEDOUz+WW48COCjSg== 350 | 351 | esbuild-darwin-64@0.15.9: 352 | version "0.15.9" 353 | resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.9.tgz#25f564fa4b39c1cec84dc46bce5634fdbce1d5e4" 354 | integrity sha512-gI7dClcDN/HHVacZhTmGjl0/TWZcGuKJ0I7/xDGJwRQQn7aafZGtvagOFNmuOq+OBFPhlPv1T6JElOXb0unkSQ== 355 | 356 | esbuild-darwin-arm64@0.15.9: 357 | version "0.15.9" 358 | resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.9.tgz#60faea3ed95d15239536aa88d06bb82b29278a86" 359 | integrity sha512-VZIMlcRN29yg/sv7DsDwN+OeufCcoTNaTl3Vnav7dL/nvsApD7uvhVRbgyMzv0zU/PP0xRhhIpTyc7lxEzHGSw== 360 | 361 | esbuild-freebsd-64@0.15.9: 362 | version "0.15.9" 363 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.9.tgz#0339ef1c90a919175e7816788224517896657a0e" 364 | integrity sha512-uM4z5bTvuAXqPxrI204txhlsPIolQPWRMLenvGuCPZTnnGlCMF2QLs0Plcm26gcskhxewYo9LkkmYSS5Czrb5A== 365 | 366 | esbuild-freebsd-arm64@0.15.9: 367 | version "0.15.9" 368 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.9.tgz#32abfc0be3ae3dd38e5a86a9beadbbcf592f1b57" 369 | integrity sha512-HHDjT3O5gWzicGdgJ5yokZVN9K9KG05SnERwl9nBYZaCjcCgj/sX8Ps1jvoFSfNCO04JSsHSOWo4qvxFuj8FoA== 370 | 371 | esbuild-linux-32@0.15.9: 372 | version "0.15.9" 373 | resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.9.tgz#93581348a4da7ed2b29bc5539f2605ad7fcee77b" 374 | integrity sha512-AQIdE8FugGt1DkcekKi5ycI46QZpGJ/wqcMr7w6YUmOmp2ohQ8eO4sKUsOxNOvYL7hGEVwkndSyszR6HpVHLFg== 375 | 376 | esbuild-linux-64@0.15.9: 377 | version "0.15.9" 378 | resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.9.tgz#0d171e7946c95d0d3ed4826026af2c5632d7dcc4" 379 | integrity sha512-4RXjae7g6Qs7StZyiYyXTZXBlfODhb1aBVAjd+ANuPmMhWthQilWo7rFHwJwL7DQu1Fjej2sODAVwLbcIVsAYQ== 380 | 381 | esbuild-linux-arm64@0.15.9: 382 | version "0.15.9" 383 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.9.tgz#9838795a3720cbe736d3bc20621bd366eac22f24" 384 | integrity sha512-a+bTtxJmYmk9d+s2W4/R1SYKDDAldOKmWjWP0BnrWtDbvUBNOm++du0ysPju4mZVoEFgS1yLNW+VXnG/4FNwdQ== 385 | 386 | esbuild-linux-arm@0.15.9: 387 | version "0.15.9" 388 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.9.tgz#dce96cd817bc7376f6af3967649c4ab1f2f79506" 389 | integrity sha512-3Zf2GVGUOI7XwChH3qrnTOSqfV1V4CAc/7zLVm4lO6JT6wbJrTgEYCCiNSzziSju+J9Jhf9YGWk/26quWPC6yQ== 390 | 391 | esbuild-linux-mips64le@0.15.9: 392 | version "0.15.9" 393 | resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.9.tgz#0335a0739e61aa97cb9b4a018e3facfcca9cdcfd" 394 | integrity sha512-Zn9HSylDp89y+TRREMDoGrc3Z4Hs5u56ozZLQCiZAUx2+HdbbXbWdjmw3FdTJ/i7t5Cew6/Q+6kfO3KCcFGlyw== 395 | 396 | esbuild-linux-ppc64le@0.15.9: 397 | version "0.15.9" 398 | resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.9.tgz#18482afb95b8a705e2da0a59d7131bff221281f9" 399 | integrity sha512-OEiOxNAMH9ENFYqRsWUj3CWyN3V8P3ZXyfNAtX5rlCEC/ERXrCEFCJji/1F6POzsXAzxvUJrTSTCy7G6BhA6Fw== 400 | 401 | esbuild-linux-riscv64@0.15.9: 402 | version "0.15.9" 403 | resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.9.tgz#03b6f9708272c117006b9ce1c9ae8aab91b5a5b6" 404 | integrity sha512-ukm4KsC3QRausEFjzTsOZ/qqazw0YvJsKmfoZZm9QW27OHjk2XKSQGGvx8gIEswft/Sadp03/VZvAaqv5AIwNA== 405 | 406 | esbuild-linux-s390x@0.15.9: 407 | version "0.15.9" 408 | resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.9.tgz#65fb645623d575780f155f0ee52935e62f9cca4f" 409 | integrity sha512-uDOQEH55wQ6ahcIKzQr3VyjGc6Po/xblLGLoUk3fVL1qjlZAibtQr6XRfy5wPJLu/M2o0vQKLq4lyJ2r1tWKcw== 410 | 411 | esbuild-netbsd-64@0.15.9: 412 | version "0.15.9" 413 | resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.9.tgz#7894297bb9e11f3d2f6f31efecd1be4e181f0d54" 414 | integrity sha512-yWgxaYTQz+TqX80wXRq6xAtb7GSBAp6gqLKfOdANg9qEmAI1Bxn04IrQr0Mzm4AhxvGKoHzjHjMgXbCCSSDxcw== 415 | 416 | esbuild-openbsd-64@0.15.9: 417 | version "0.15.9" 418 | resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.9.tgz#0f9d4c6b6772ae50d491d68ad4cc028300dda7c0" 419 | integrity sha512-JmS18acQl4iSAjrEha1MfEmUMN4FcnnrtTaJ7Qg0tDCOcgpPPQRLGsZqhes0vmx8VA6IqRyScqXvaL7+Q0Uf3A== 420 | 421 | esbuild-sunos-64@0.15.9: 422 | version "0.15.9" 423 | resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.9.tgz#c32b7ce574b08f814de810ce7c1e34b843768126" 424 | integrity sha512-UKynGSWpzkPmXW3D2UMOD9BZPIuRaSqphxSCwScfEE05Be3KAmvjsBhht1fLzKpiFVJb0BYMd4jEbWMyJ/z1hQ== 425 | 426 | esbuild-windows-32@0.15.9: 427 | version "0.15.9" 428 | resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.9.tgz#37a8f7cfccdb2177cd46613a1a1e1fcb419d36df" 429 | integrity sha512-aqXvu4/W9XyTVqO/hw3rNxKE1TcZiEYHPsXM9LwYmKSX9/hjvfIJzXwQBlPcJ/QOxedfoMVH0YnhhQ9Ffb0RGA== 430 | 431 | esbuild-windows-64@0.15.9: 432 | version "0.15.9" 433 | resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.9.tgz#5fe1e76fc13dd7f520febecaea110b6f1649c7b2" 434 | integrity sha512-zm7h91WUmlS4idMtjvCrEeNhlH7+TNOmqw5dJPJZrgFaxoFyqYG6CKDpdFCQXdyKpD5yvzaQBOMVTCBVKGZDEg== 435 | 436 | esbuild-windows-arm64@0.15.9: 437 | version "0.15.9" 438 | resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.9.tgz#98504428f7ba7d2cfc11940be68ee1139173fdce" 439 | integrity sha512-yQEVIv27oauAtvtuhJVfSNMztJJX47ismRS6Sv2QMVV9RM+6xjbMWuuwM2nxr5A2/gj/mu2z9YlQxiwoFRCfZA== 440 | 441 | esbuild@^0.15.6: 442 | version "0.15.9" 443 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.9.tgz#33fb18b67b85004b6f7616bec955ca4b3e58935d" 444 | integrity sha512-OnYr1rkMVxtmMHIAKZLMcEUlJmqcbxBz9QoBU8G9v455na0fuzlT/GLu6l+SRghrk0Mm2fSSciMmzV43Q8e0Gg== 445 | optionalDependencies: 446 | "@esbuild/android-arm" "0.15.9" 447 | "@esbuild/linux-loong64" "0.15.9" 448 | esbuild-android-64 "0.15.9" 449 | esbuild-android-arm64 "0.15.9" 450 | esbuild-darwin-64 "0.15.9" 451 | esbuild-darwin-arm64 "0.15.9" 452 | esbuild-freebsd-64 "0.15.9" 453 | esbuild-freebsd-arm64 "0.15.9" 454 | esbuild-linux-32 "0.15.9" 455 | esbuild-linux-64 "0.15.9" 456 | esbuild-linux-arm "0.15.9" 457 | esbuild-linux-arm64 "0.15.9" 458 | esbuild-linux-mips64le "0.15.9" 459 | esbuild-linux-ppc64le "0.15.9" 460 | esbuild-linux-riscv64 "0.15.9" 461 | esbuild-linux-s390x "0.15.9" 462 | esbuild-netbsd-64 "0.15.9" 463 | esbuild-openbsd-64 "0.15.9" 464 | esbuild-sunos-64 "0.15.9" 465 | esbuild-windows-32 "0.15.9" 466 | esbuild-windows-64 "0.15.9" 467 | esbuild-windows-arm64 "0.15.9" 468 | 469 | escalade@^3.1.1: 470 | version "3.1.1" 471 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 472 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 473 | 474 | estree-walker@^2.0.1: 475 | version "2.0.2" 476 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 477 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 478 | 479 | fast-glob@^3.2.11, fast-glob@^3.2.7: 480 | version "3.2.12" 481 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 482 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 483 | dependencies: 484 | "@nodelib/fs.stat" "^2.0.2" 485 | "@nodelib/fs.walk" "^1.2.3" 486 | glob-parent "^5.1.2" 487 | merge2 "^1.3.0" 488 | micromatch "^4.0.4" 489 | 490 | fastq@^1.6.0: 491 | version "1.13.0" 492 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 493 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 494 | dependencies: 495 | reusify "^1.0.4" 496 | 497 | fill-range@^7.0.1: 498 | version "7.0.1" 499 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 500 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 501 | dependencies: 502 | to-regex-range "^5.0.1" 503 | 504 | fraction.js@^4.2.0: 505 | version "4.2.0" 506 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 507 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 508 | 509 | fs.realpath@^1.0.0: 510 | version "1.0.0" 511 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 512 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 513 | 514 | fsevents@~2.3.2: 515 | version "2.3.2" 516 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 517 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 518 | 519 | function-bind@^1.1.1: 520 | version "1.1.1" 521 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 522 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 523 | 524 | glob-parent@^5.1.2, glob-parent@~5.1.2: 525 | version "5.1.2" 526 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 527 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 528 | dependencies: 529 | is-glob "^4.0.1" 530 | 531 | glob-parent@^6.0.2: 532 | version "6.0.2" 533 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 534 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 535 | dependencies: 536 | is-glob "^4.0.3" 537 | 538 | glob@^7.1.3: 539 | version "7.2.3" 540 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 541 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 542 | dependencies: 543 | fs.realpath "^1.0.0" 544 | inflight "^1.0.4" 545 | inherits "2" 546 | minimatch "^3.1.1" 547 | once "^1.3.0" 548 | path-is-absolute "^1.0.0" 549 | 550 | graceful-fs@^4.1.3: 551 | version "4.2.10" 552 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 553 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 554 | 555 | has@^1.0.3: 556 | version "1.0.3" 557 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 558 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 559 | dependencies: 560 | function-bind "^1.1.1" 561 | 562 | import-fresh@^3.2.1: 563 | version "3.3.0" 564 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 565 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 566 | dependencies: 567 | parent-module "^1.0.0" 568 | resolve-from "^4.0.0" 569 | 570 | inflight@^1.0.4: 571 | version "1.0.6" 572 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 573 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 574 | dependencies: 575 | once "^1.3.0" 576 | wrappy "1" 577 | 578 | inherits@2: 579 | version "2.0.4" 580 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 581 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 582 | 583 | is-binary-path@~2.1.0: 584 | version "2.1.0" 585 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 586 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 587 | dependencies: 588 | binary-extensions "^2.0.0" 589 | 590 | is-core-module@^2.9.0: 591 | version "2.10.0" 592 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" 593 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== 594 | dependencies: 595 | has "^1.0.3" 596 | 597 | is-extglob@^2.1.1: 598 | version "2.1.1" 599 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 600 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 601 | 602 | is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 603 | version "4.0.3" 604 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 605 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 606 | dependencies: 607 | is-extglob "^2.1.1" 608 | 609 | is-number@^7.0.0: 610 | version "7.0.0" 611 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 612 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 613 | 614 | kleur@^4.1.5: 615 | version "4.1.5" 616 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" 617 | integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== 618 | 619 | lilconfig@^2.0.5, lilconfig@^2.0.6: 620 | version "2.0.6" 621 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" 622 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== 623 | 624 | magic-string@^0.25.7: 625 | version "0.25.9" 626 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" 627 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== 628 | dependencies: 629 | sourcemap-codec "^1.4.8" 630 | 631 | magic-string@^0.26.3: 632 | version "0.26.4" 633 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.4.tgz#3d057d3d0234c3b179aa3f421b33fe5d8a4044a8" 634 | integrity sha512-e5uXtVJ22aEpK9u1+eQf0fSxHeqwyV19K+uGnlROCxUhzwRip9tBsaMViK/0vC3viyPd5Gtucp3UmEp/Q2cPTQ== 635 | dependencies: 636 | sourcemap-codec "^1.4.8" 637 | 638 | merge2@^1.3.0: 639 | version "1.4.1" 640 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 641 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 642 | 643 | micromatch@^4.0.4: 644 | version "4.0.5" 645 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 646 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 647 | dependencies: 648 | braces "^3.0.2" 649 | picomatch "^2.3.1" 650 | 651 | min-indent@^1.0.0: 652 | version "1.0.1" 653 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 654 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 655 | 656 | minimatch@^3.1.1: 657 | version "3.1.2" 658 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 659 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 660 | dependencies: 661 | brace-expansion "^1.1.7" 662 | 663 | minimist@^1.2.0, minimist@^1.2.6: 664 | version "1.2.6" 665 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 666 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 667 | 668 | mkdirp@^0.5.1: 669 | version "0.5.6" 670 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" 671 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 672 | dependencies: 673 | minimist "^1.2.6" 674 | 675 | mri@^1.1.0: 676 | version "1.2.0" 677 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" 678 | integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== 679 | 680 | ms@2.1.2: 681 | version "2.1.2" 682 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 683 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 684 | 685 | nanoid@^3.3.4: 686 | version "3.3.4" 687 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 688 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 689 | 690 | node-releases@^2.0.6: 691 | version "2.0.6" 692 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" 693 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== 694 | 695 | normalize-path@^3.0.0, normalize-path@~3.0.0: 696 | version "3.0.0" 697 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 698 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 699 | 700 | normalize-range@^0.1.2: 701 | version "0.1.2" 702 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 703 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 704 | 705 | object-hash@^3.0.0: 706 | version "3.0.0" 707 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" 708 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 709 | 710 | once@^1.3.0: 711 | version "1.4.0" 712 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 713 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 714 | dependencies: 715 | wrappy "1" 716 | 717 | parent-module@^1.0.0: 718 | version "1.0.1" 719 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 720 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 721 | dependencies: 722 | callsites "^3.0.0" 723 | 724 | path-is-absolute@^1.0.0: 725 | version "1.0.1" 726 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 727 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 728 | 729 | path-parse@^1.0.7: 730 | version "1.0.7" 731 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 732 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 733 | 734 | picocolors@^1.0.0: 735 | version "1.0.0" 736 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 737 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 738 | 739 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: 740 | version "2.3.1" 741 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 742 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 743 | 744 | pify@^2.3.0: 745 | version "2.3.0" 746 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 747 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 748 | 749 | postcss-import@^14.1.0: 750 | version "14.1.0" 751 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" 752 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 753 | dependencies: 754 | postcss-value-parser "^4.0.0" 755 | read-cache "^1.0.0" 756 | resolve "^1.1.7" 757 | 758 | postcss-js@^4.0.0: 759 | version "4.0.0" 760 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 761 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 762 | dependencies: 763 | camelcase-css "^2.0.1" 764 | 765 | postcss-load-config@^3.1.4: 766 | version "3.1.4" 767 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 768 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 769 | dependencies: 770 | lilconfig "^2.0.5" 771 | yaml "^1.10.2" 772 | 773 | postcss-nested@5.0.6: 774 | version "5.0.6" 775 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" 776 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== 777 | dependencies: 778 | postcss-selector-parser "^6.0.6" 779 | 780 | postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6: 781 | version "6.0.10" 782 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" 783 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== 784 | dependencies: 785 | cssesc "^3.0.0" 786 | util-deprecate "^1.0.2" 787 | 788 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 789 | version "4.2.0" 790 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 791 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 792 | 793 | postcss@^8.4.14, postcss@^8.4.16: 794 | version "8.4.16" 795 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c" 796 | integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ== 797 | dependencies: 798 | nanoid "^3.3.4" 799 | picocolors "^1.0.0" 800 | source-map-js "^1.0.2" 801 | 802 | queue-microtask@^1.2.2: 803 | version "1.2.3" 804 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 805 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 806 | 807 | quick-lru@^5.1.1: 808 | version "5.1.1" 809 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 810 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 811 | 812 | read-cache@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 815 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 816 | dependencies: 817 | pify "^2.3.0" 818 | 819 | readdirp@~3.6.0: 820 | version "3.6.0" 821 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 822 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 823 | dependencies: 824 | picomatch "^2.2.1" 825 | 826 | resolve-from@^4.0.0: 827 | version "4.0.0" 828 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 829 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 830 | 831 | resolve@^1.1.7, resolve@^1.22.1: 832 | version "1.22.1" 833 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 834 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 835 | dependencies: 836 | is-core-module "^2.9.0" 837 | path-parse "^1.0.7" 838 | supports-preserve-symlinks-flag "^1.0.0" 839 | 840 | reusify@^1.0.4: 841 | version "1.0.4" 842 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 843 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 844 | 845 | rimraf@^2.5.2: 846 | version "2.7.1" 847 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 848 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 849 | dependencies: 850 | glob "^7.1.3" 851 | 852 | rollup@~2.78.0: 853 | version "2.78.1" 854 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.78.1.tgz#52fe3934d9c83cb4f7c4cb5fb75d88591be8648f" 855 | integrity sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg== 856 | optionalDependencies: 857 | fsevents "~2.3.2" 858 | 859 | run-parallel@^1.1.9: 860 | version "1.2.0" 861 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 862 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 863 | dependencies: 864 | queue-microtask "^1.2.2" 865 | 866 | sade@^1.7.4: 867 | version "1.8.1" 868 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" 869 | integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== 870 | dependencies: 871 | mri "^1.1.0" 872 | 873 | sander@^0.5.0: 874 | version "0.5.1" 875 | resolved "https://registry.yarnpkg.com/sander/-/sander-0.5.1.tgz#741e245e231f07cafb6fdf0f133adfa216a502ad" 876 | integrity sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA== 877 | dependencies: 878 | es6-promise "^3.1.2" 879 | graceful-fs "^4.1.3" 880 | mkdirp "^0.5.1" 881 | rimraf "^2.5.2" 882 | 883 | sorcery@^0.10.0: 884 | version "0.10.0" 885 | resolved "https://registry.yarnpkg.com/sorcery/-/sorcery-0.10.0.tgz#8ae90ad7d7cb05fc59f1ab0c637845d5c15a52b7" 886 | integrity sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g== 887 | dependencies: 888 | buffer-crc32 "^0.2.5" 889 | minimist "^1.2.0" 890 | sander "^0.5.0" 891 | sourcemap-codec "^1.3.0" 892 | 893 | source-map-js@^1.0.2: 894 | version "1.0.2" 895 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 896 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 897 | 898 | sourcemap-codec@^1.3.0, sourcemap-codec@^1.4.8: 899 | version "1.4.8" 900 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 901 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 902 | 903 | strip-indent@^3.0.0: 904 | version "3.0.0" 905 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 906 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 907 | dependencies: 908 | min-indent "^1.0.0" 909 | 910 | supports-preserve-symlinks-flag@^1.0.0: 911 | version "1.0.0" 912 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 913 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 914 | 915 | svelte-check@^2.8.1: 916 | version "2.9.1" 917 | resolved "https://registry.yarnpkg.com/svelte-check/-/svelte-check-2.9.1.tgz#9fa6998907996a07d3317c6a521d2c6e95c76c60" 918 | integrity sha512-+BFPsj6irZ+t2pVSVo//2Ic1mI3A52xCwbkSTVhTqYZqgawcyZd9pYZoEac3fIWbEeTyCb5X82ORKI/gjn+P7A== 919 | dependencies: 920 | "@jridgewell/trace-mapping" "^0.3.9" 921 | chokidar "^3.4.1" 922 | fast-glob "^3.2.7" 923 | import-fresh "^3.2.1" 924 | picocolors "^1.0.0" 925 | sade "^1.7.4" 926 | svelte-preprocess "^4.0.0" 927 | typescript "*" 928 | 929 | svelte-hmr@^0.15.0: 930 | version "0.15.0" 931 | resolved "https://registry.yarnpkg.com/svelte-hmr/-/svelte-hmr-0.15.0.tgz#c8304b5dd33f006415329d91470761d19417a324" 932 | integrity sha512-Aw21SsyoohyVn4yiKXWPNCSW2DQNH/76kvUnE9kpt4h9hcg9tfyQc6xshx9hzgMfGF0kVx0EGD8oBMWSnATeOg== 933 | 934 | svelte-preprocess@^4.0.0, svelte-preprocess@^4.10.7: 935 | version "4.10.7" 936 | resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-4.10.7.tgz#3626de472f51ffe20c9bc71eff5a3da66797c362" 937 | integrity sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw== 938 | dependencies: 939 | "@types/pug" "^2.0.4" 940 | "@types/sass" "^1.16.0" 941 | detect-indent "^6.0.0" 942 | magic-string "^0.25.7" 943 | sorcery "^0.10.0" 944 | strip-indent "^3.0.0" 945 | 946 | svelte@^3.49.0: 947 | version "3.50.1" 948 | resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.50.1.tgz#b35fbc5e79ddd71e8bb27c3149ee6ff903841239" 949 | integrity sha512-bS4odcsdj5D5jEg6riZuMg5NKelzPtmsCbD9RG+8umU03TeNkdWnP6pqbCm0s8UQNBkqk29w/Bdubn3C+HWSwA== 950 | 951 | tailwindcss@^3.1.8: 952 | version "3.1.8" 953 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.8.tgz#4f8520550d67a835d32f2f4021580f9fddb7b741" 954 | integrity sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g== 955 | dependencies: 956 | arg "^5.0.2" 957 | chokidar "^3.5.3" 958 | color-name "^1.1.4" 959 | detective "^5.2.1" 960 | didyoumean "^1.2.2" 961 | dlv "^1.1.3" 962 | fast-glob "^3.2.11" 963 | glob-parent "^6.0.2" 964 | is-glob "^4.0.3" 965 | lilconfig "^2.0.6" 966 | normalize-path "^3.0.0" 967 | object-hash "^3.0.0" 968 | picocolors "^1.0.0" 969 | postcss "^8.4.14" 970 | postcss-import "^14.1.0" 971 | postcss-js "^4.0.0" 972 | postcss-load-config "^3.1.4" 973 | postcss-nested "5.0.6" 974 | postcss-selector-parser "^6.0.10" 975 | postcss-value-parser "^4.2.0" 976 | quick-lru "^5.1.1" 977 | resolve "^1.22.1" 978 | 979 | to-regex-range@^5.0.1: 980 | version "5.0.1" 981 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 982 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 983 | dependencies: 984 | is-number "^7.0.0" 985 | 986 | tslib@^2.4.0: 987 | version "2.4.0" 988 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 989 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 990 | 991 | typescript@*, typescript@^4.6.4: 992 | version "4.8.4" 993 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" 994 | integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== 995 | 996 | update-browserslist-db@^1.0.9: 997 | version "1.0.9" 998 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz#2924d3927367a38d5c555413a7ce138fc95fcb18" 999 | integrity sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg== 1000 | dependencies: 1001 | escalade "^3.1.1" 1002 | picocolors "^1.0.0" 1003 | 1004 | util-deprecate@^1.0.2: 1005 | version "1.0.2" 1006 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1007 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1008 | 1009 | vite@^3.1.0: 1010 | version "3.1.4" 1011 | resolved "https://registry.yarnpkg.com/vite/-/vite-3.1.4.tgz#b75824b819d8354a6f36e4b988943c7e4947e155" 1012 | integrity sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA== 1013 | dependencies: 1014 | esbuild "^0.15.6" 1015 | postcss "^8.4.16" 1016 | resolve "^1.22.1" 1017 | rollup "~2.78.0" 1018 | optionalDependencies: 1019 | fsevents "~2.3.2" 1020 | 1021 | wrappy@1: 1022 | version "1.0.2" 1023 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1024 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1025 | 1026 | xtend@^4.0.2: 1027 | version "4.0.2" 1028 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1029 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1030 | 1031 | yaml@^1.10.2: 1032 | version "1.10.2" 1033 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 1034 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 1035 | -------------------------------------------------------------------------------- /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.19" 20 | source = "registry+https://github.com/rust-lang/crates.io-index" 21 | checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 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.64" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "b9a8f622bcf6ff3df478e9deba3e03e4e04b300f8e6a139e192c05fa3490afc7" 55 | 56 | [[package]] 57 | name = "atk" 58 | version = "0.15.1" 59 | source = "registry+https://github.com/rust-lang/crates.io-index" 60 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 61 | dependencies = [ 62 | "atk-sys", 63 | "bitflags", 64 | "glib", 65 | "libc", 66 | ] 67 | 68 | [[package]] 69 | name = "atk-sys" 70 | version = "0.15.1" 71 | source = "registry+https://github.com/rust-lang/crates.io-index" 72 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 73 | dependencies = [ 74 | "glib-sys", 75 | "gobject-sys", 76 | "libc", 77 | "system-deps 6.0.2", 78 | ] 79 | 80 | [[package]] 81 | name = "attohttpc" 82 | version = "0.19.1" 83 | source = "registry+https://github.com/rust-lang/crates.io-index" 84 | checksum = "262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e" 85 | dependencies = [ 86 | "flate2", 87 | "http", 88 | "log", 89 | "native-tls", 90 | "openssl", 91 | "serde", 92 | "serde_json", 93 | "serde_urlencoded", 94 | "url", 95 | "wildmatch", 96 | ] 97 | 98 | [[package]] 99 | name = "autocfg" 100 | version = "1.1.0" 101 | source = "registry+https://github.com/rust-lang/crates.io-index" 102 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 103 | 104 | [[package]] 105 | name = "base64" 106 | version = "0.13.0" 107 | source = "registry+https://github.com/rust-lang/crates.io-index" 108 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 109 | 110 | [[package]] 111 | name = "bitflags" 112 | version = "1.3.2" 113 | source = "registry+https://github.com/rust-lang/crates.io-index" 114 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 115 | 116 | [[package]] 117 | name = "block" 118 | version = "0.1.6" 119 | source = "registry+https://github.com/rust-lang/crates.io-index" 120 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 121 | 122 | [[package]] 123 | name = "block-buffer" 124 | version = "0.10.3" 125 | source = "registry+https://github.com/rust-lang/crates.io-index" 126 | checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 127 | dependencies = [ 128 | "generic-array", 129 | ] 130 | 131 | [[package]] 132 | name = "brotli" 133 | version = "3.3.4" 134 | source = "registry+https://github.com/rust-lang/crates.io-index" 135 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 136 | dependencies = [ 137 | "alloc-no-stdlib", 138 | "alloc-stdlib", 139 | "brotli-decompressor", 140 | ] 141 | 142 | [[package]] 143 | name = "brotli-decompressor" 144 | version = "2.3.2" 145 | source = "registry+https://github.com/rust-lang/crates.io-index" 146 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 147 | dependencies = [ 148 | "alloc-no-stdlib", 149 | "alloc-stdlib", 150 | ] 151 | 152 | [[package]] 153 | name = "bstr" 154 | version = "0.2.17" 155 | source = "registry+https://github.com/rust-lang/crates.io-index" 156 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 157 | dependencies = [ 158 | "memchr", 159 | ] 160 | 161 | [[package]] 162 | name = "bumpalo" 163 | version = "3.11.0" 164 | source = "registry+https://github.com/rust-lang/crates.io-index" 165 | checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" 166 | 167 | [[package]] 168 | name = "bytemuck" 169 | version = "1.12.1" 170 | source = "registry+https://github.com/rust-lang/crates.io-index" 171 | checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da" 172 | 173 | [[package]] 174 | name = "byteorder" 175 | version = "1.4.3" 176 | source = "registry+https://github.com/rust-lang/crates.io-index" 177 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 178 | 179 | [[package]] 180 | name = "bytes" 181 | version = "1.2.1" 182 | source = "registry+https://github.com/rust-lang/crates.io-index" 183 | checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 184 | 185 | [[package]] 186 | name = "cairo-rs" 187 | version = "0.15.12" 188 | source = "registry+https://github.com/rust-lang/crates.io-index" 189 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 190 | dependencies = [ 191 | "bitflags", 192 | "cairo-sys-rs", 193 | "glib", 194 | "libc", 195 | "thiserror", 196 | ] 197 | 198 | [[package]] 199 | name = "cairo-sys-rs" 200 | version = "0.15.1" 201 | source = "registry+https://github.com/rust-lang/crates.io-index" 202 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 203 | dependencies = [ 204 | "glib-sys", 205 | "libc", 206 | "system-deps 6.0.2", 207 | ] 208 | 209 | [[package]] 210 | name = "cargo_toml" 211 | version = "0.11.6" 212 | source = "registry+https://github.com/rust-lang/crates.io-index" 213 | checksum = "a4419e9adae9fd7e231b60d50467481bf8181ddeef6ed54683b23ae925c74c9c" 214 | dependencies = [ 215 | "serde", 216 | "serde_derive", 217 | "toml", 218 | ] 219 | 220 | [[package]] 221 | name = "cc" 222 | version = "1.0.73" 223 | source = "registry+https://github.com/rust-lang/crates.io-index" 224 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 225 | 226 | [[package]] 227 | name = "cesu8" 228 | version = "1.1.0" 229 | source = "registry+https://github.com/rust-lang/crates.io-index" 230 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 231 | 232 | [[package]] 233 | name = "cfb" 234 | version = "0.6.1" 235 | source = "registry+https://github.com/rust-lang/crates.io-index" 236 | checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c" 237 | dependencies = [ 238 | "byteorder", 239 | "uuid 0.8.2", 240 | ] 241 | 242 | [[package]] 243 | name = "cfg-expr" 244 | version = "0.9.1" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 247 | dependencies = [ 248 | "smallvec", 249 | ] 250 | 251 | [[package]] 252 | name = "cfg-expr" 253 | version = "0.10.3" 254 | source = "registry+https://github.com/rust-lang/crates.io-index" 255 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" 256 | dependencies = [ 257 | "smallvec", 258 | ] 259 | 260 | [[package]] 261 | name = "cfg-if" 262 | version = "1.0.0" 263 | source = "registry+https://github.com/rust-lang/crates.io-index" 264 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 265 | 266 | [[package]] 267 | name = "cocoa" 268 | version = "0.24.0" 269 | source = "registry+https://github.com/rust-lang/crates.io-index" 270 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832" 271 | dependencies = [ 272 | "bitflags", 273 | "block", 274 | "cocoa-foundation", 275 | "core-foundation", 276 | "core-graphics", 277 | "foreign-types", 278 | "libc", 279 | "objc", 280 | ] 281 | 282 | [[package]] 283 | name = "cocoa-foundation" 284 | version = "0.1.0" 285 | source = "registry+https://github.com/rust-lang/crates.io-index" 286 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 287 | dependencies = [ 288 | "bitflags", 289 | "block", 290 | "core-foundation", 291 | "core-graphics-types", 292 | "foreign-types", 293 | "libc", 294 | "objc", 295 | ] 296 | 297 | [[package]] 298 | name = "color_quant" 299 | version = "1.1.0" 300 | source = "registry+https://github.com/rust-lang/crates.io-index" 301 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 302 | 303 | [[package]] 304 | name = "combine" 305 | version = "4.6.6" 306 | source = "registry+https://github.com/rust-lang/crates.io-index" 307 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 308 | dependencies = [ 309 | "bytes", 310 | "memchr", 311 | ] 312 | 313 | [[package]] 314 | name = "convert_case" 315 | version = "0.4.0" 316 | source = "registry+https://github.com/rust-lang/crates.io-index" 317 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 318 | 319 | [[package]] 320 | name = "core-foundation" 321 | version = "0.9.3" 322 | source = "registry+https://github.com/rust-lang/crates.io-index" 323 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 324 | dependencies = [ 325 | "core-foundation-sys", 326 | "libc", 327 | ] 328 | 329 | [[package]] 330 | name = "core-foundation-sys" 331 | version = "0.8.3" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 334 | 335 | [[package]] 336 | name = "core-graphics" 337 | version = "0.22.3" 338 | source = "registry+https://github.com/rust-lang/crates.io-index" 339 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 340 | dependencies = [ 341 | "bitflags", 342 | "core-foundation", 343 | "core-graphics-types", 344 | "foreign-types", 345 | "libc", 346 | ] 347 | 348 | [[package]] 349 | name = "core-graphics-types" 350 | version = "0.1.1" 351 | source = "registry+https://github.com/rust-lang/crates.io-index" 352 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 353 | dependencies = [ 354 | "bitflags", 355 | "core-foundation", 356 | "foreign-types", 357 | "libc", 358 | ] 359 | 360 | [[package]] 361 | name = "cpufeatures" 362 | version = "0.2.5" 363 | source = "registry+https://github.com/rust-lang/crates.io-index" 364 | checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 365 | dependencies = [ 366 | "libc", 367 | ] 368 | 369 | [[package]] 370 | name = "crc32fast" 371 | version = "1.3.2" 372 | source = "registry+https://github.com/rust-lang/crates.io-index" 373 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 374 | dependencies = [ 375 | "cfg-if", 376 | ] 377 | 378 | [[package]] 379 | name = "crossbeam-channel" 380 | version = "0.5.6" 381 | source = "registry+https://github.com/rust-lang/crates.io-index" 382 | checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 383 | dependencies = [ 384 | "cfg-if", 385 | "crossbeam-utils", 386 | ] 387 | 388 | [[package]] 389 | name = "crossbeam-utils" 390 | version = "0.8.11" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 393 | dependencies = [ 394 | "cfg-if", 395 | "once_cell", 396 | ] 397 | 398 | [[package]] 399 | name = "crypto-common" 400 | version = "0.1.6" 401 | source = "registry+https://github.com/rust-lang/crates.io-index" 402 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 403 | dependencies = [ 404 | "generic-array", 405 | "typenum", 406 | ] 407 | 408 | [[package]] 409 | name = "cssparser" 410 | version = "0.27.2" 411 | source = "registry+https://github.com/rust-lang/crates.io-index" 412 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 413 | dependencies = [ 414 | "cssparser-macros", 415 | "dtoa-short", 416 | "itoa 0.4.8", 417 | "matches", 418 | "phf 0.8.0", 419 | "proc-macro2", 420 | "quote", 421 | "smallvec", 422 | "syn", 423 | ] 424 | 425 | [[package]] 426 | name = "cssparser-macros" 427 | version = "0.6.0" 428 | source = "registry+https://github.com/rust-lang/crates.io-index" 429 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 430 | dependencies = [ 431 | "quote", 432 | "syn", 433 | ] 434 | 435 | [[package]] 436 | name = "ctor" 437 | version = "0.1.23" 438 | source = "registry+https://github.com/rust-lang/crates.io-index" 439 | checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 440 | dependencies = [ 441 | "quote", 442 | "syn", 443 | ] 444 | 445 | [[package]] 446 | name = "cty" 447 | version = "0.2.2" 448 | source = "registry+https://github.com/rust-lang/crates.io-index" 449 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 450 | 451 | [[package]] 452 | name = "darling" 453 | version = "0.13.4" 454 | source = "registry+https://github.com/rust-lang/crates.io-index" 455 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 456 | dependencies = [ 457 | "darling_core", 458 | "darling_macro", 459 | ] 460 | 461 | [[package]] 462 | name = "darling_core" 463 | version = "0.13.4" 464 | source = "registry+https://github.com/rust-lang/crates.io-index" 465 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 466 | dependencies = [ 467 | "fnv", 468 | "ident_case", 469 | "proc-macro2", 470 | "quote", 471 | "strsim", 472 | "syn", 473 | ] 474 | 475 | [[package]] 476 | name = "darling_macro" 477 | version = "0.13.4" 478 | source = "registry+https://github.com/rust-lang/crates.io-index" 479 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 480 | dependencies = [ 481 | "darling_core", 482 | "quote", 483 | "syn", 484 | ] 485 | 486 | [[package]] 487 | name = "dbus" 488 | version = "0.9.6" 489 | source = "registry+https://github.com/rust-lang/crates.io-index" 490 | checksum = "6f8bcdd56d2e5c4ed26a529c5a9029f5db8290d433497506f958eae3be148eb6" 491 | dependencies = [ 492 | "libc", 493 | "libdbus-sys", 494 | "winapi", 495 | ] 496 | 497 | [[package]] 498 | name = "deflate" 499 | version = "0.7.20" 500 | source = "registry+https://github.com/rust-lang/crates.io-index" 501 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4" 502 | dependencies = [ 503 | "adler32", 504 | "byteorder", 505 | ] 506 | 507 | [[package]] 508 | name = "derive_more" 509 | version = "0.99.17" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 512 | dependencies = [ 513 | "convert_case", 514 | "proc-macro2", 515 | "quote", 516 | "rustc_version 0.4.0", 517 | "syn", 518 | ] 519 | 520 | [[package]] 521 | name = "digest" 522 | version = "0.10.3" 523 | source = "registry+https://github.com/rust-lang/crates.io-index" 524 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 525 | dependencies = [ 526 | "block-buffer", 527 | "crypto-common", 528 | ] 529 | 530 | [[package]] 531 | name = "dirs-next" 532 | version = "2.0.0" 533 | source = "registry+https://github.com/rust-lang/crates.io-index" 534 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 535 | dependencies = [ 536 | "cfg-if", 537 | "dirs-sys-next", 538 | ] 539 | 540 | [[package]] 541 | name = "dirs-sys-next" 542 | version = "0.1.2" 543 | source = "registry+https://github.com/rust-lang/crates.io-index" 544 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 545 | dependencies = [ 546 | "libc", 547 | "redox_users", 548 | "winapi", 549 | ] 550 | 551 | [[package]] 552 | name = "dispatch" 553 | version = "0.2.0" 554 | source = "registry+https://github.com/rust-lang/crates.io-index" 555 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 556 | 557 | [[package]] 558 | name = "dtoa" 559 | version = "0.4.8" 560 | source = "registry+https://github.com/rust-lang/crates.io-index" 561 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 562 | 563 | [[package]] 564 | name = "dtoa-short" 565 | version = "0.3.3" 566 | source = "registry+https://github.com/rust-lang/crates.io-index" 567 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 568 | dependencies = [ 569 | "dtoa", 570 | ] 571 | 572 | [[package]] 573 | name = "embed-resource" 574 | version = "1.7.2" 575 | source = "registry+https://github.com/rust-lang/crates.io-index" 576 | checksum = "ecc24ff8d764818e9ab17963b0593c535f077a513f565e75e4352d758bc4d8c0" 577 | dependencies = [ 578 | "cc", 579 | "rustc_version 0.4.0", 580 | "toml", 581 | "vswhom", 582 | "winreg", 583 | ] 584 | 585 | [[package]] 586 | name = "embed_plist" 587 | version = "1.2.2" 588 | source = "registry+https://github.com/rust-lang/crates.io-index" 589 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 590 | 591 | [[package]] 592 | name = "fastrand" 593 | version = "1.8.0" 594 | source = "registry+https://github.com/rust-lang/crates.io-index" 595 | checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 596 | dependencies = [ 597 | "instant", 598 | ] 599 | 600 | [[package]] 601 | name = "field-offset" 602 | version = "0.3.4" 603 | source = "registry+https://github.com/rust-lang/crates.io-index" 604 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 605 | dependencies = [ 606 | "memoffset", 607 | "rustc_version 0.3.3", 608 | ] 609 | 610 | [[package]] 611 | name = "filetime" 612 | version = "0.2.17" 613 | source = "registry+https://github.com/rust-lang/crates.io-index" 614 | checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 615 | dependencies = [ 616 | "cfg-if", 617 | "libc", 618 | "redox_syscall", 619 | "windows-sys", 620 | ] 621 | 622 | [[package]] 623 | name = "flate2" 624 | version = "1.0.24" 625 | source = "registry+https://github.com/rust-lang/crates.io-index" 626 | checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 627 | dependencies = [ 628 | "crc32fast", 629 | "miniz_oxide", 630 | ] 631 | 632 | [[package]] 633 | name = "fnv" 634 | version = "1.0.7" 635 | source = "registry+https://github.com/rust-lang/crates.io-index" 636 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 637 | 638 | [[package]] 639 | name = "foreign-types" 640 | version = "0.3.2" 641 | source = "registry+https://github.com/rust-lang/crates.io-index" 642 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 643 | dependencies = [ 644 | "foreign-types-shared", 645 | ] 646 | 647 | [[package]] 648 | name = "foreign-types-shared" 649 | version = "0.1.1" 650 | source = "registry+https://github.com/rust-lang/crates.io-index" 651 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 652 | 653 | [[package]] 654 | name = "form_urlencoded" 655 | version = "1.1.0" 656 | source = "registry+https://github.com/rust-lang/crates.io-index" 657 | checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 658 | dependencies = [ 659 | "percent-encoding", 660 | ] 661 | 662 | [[package]] 663 | name = "futf" 664 | version = "0.1.5" 665 | source = "registry+https://github.com/rust-lang/crates.io-index" 666 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 667 | dependencies = [ 668 | "mac", 669 | "new_debug_unreachable", 670 | ] 671 | 672 | [[package]] 673 | name = "futures" 674 | version = "0.3.24" 675 | source = "registry+https://github.com/rust-lang/crates.io-index" 676 | checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c" 677 | dependencies = [ 678 | "futures-channel", 679 | "futures-core", 680 | "futures-executor", 681 | "futures-io", 682 | "futures-sink", 683 | "futures-task", 684 | "futures-util", 685 | ] 686 | 687 | [[package]] 688 | name = "futures-channel" 689 | version = "0.3.24" 690 | source = "registry+https://github.com/rust-lang/crates.io-index" 691 | checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050" 692 | dependencies = [ 693 | "futures-core", 694 | "futures-sink", 695 | ] 696 | 697 | [[package]] 698 | name = "futures-core" 699 | version = "0.3.24" 700 | source = "registry+https://github.com/rust-lang/crates.io-index" 701 | checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf" 702 | 703 | [[package]] 704 | name = "futures-executor" 705 | version = "0.3.24" 706 | source = "registry+https://github.com/rust-lang/crates.io-index" 707 | checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab" 708 | dependencies = [ 709 | "futures-core", 710 | "futures-task", 711 | "futures-util", 712 | ] 713 | 714 | [[package]] 715 | name = "futures-io" 716 | version = "0.3.24" 717 | source = "registry+https://github.com/rust-lang/crates.io-index" 718 | checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68" 719 | 720 | [[package]] 721 | name = "futures-lite" 722 | version = "1.12.0" 723 | source = "registry+https://github.com/rust-lang/crates.io-index" 724 | checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 725 | dependencies = [ 726 | "fastrand", 727 | "futures-core", 728 | "futures-io", 729 | "memchr", 730 | "parking", 731 | "pin-project-lite", 732 | "waker-fn", 733 | ] 734 | 735 | [[package]] 736 | name = "futures-macro" 737 | version = "0.3.24" 738 | source = "registry+https://github.com/rust-lang/crates.io-index" 739 | checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" 740 | dependencies = [ 741 | "proc-macro2", 742 | "quote", 743 | "syn", 744 | ] 745 | 746 | [[package]] 747 | name = "futures-sink" 748 | version = "0.3.24" 749 | source = "registry+https://github.com/rust-lang/crates.io-index" 750 | checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56" 751 | 752 | [[package]] 753 | name = "futures-task" 754 | version = "0.3.24" 755 | source = "registry+https://github.com/rust-lang/crates.io-index" 756 | checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1" 757 | 758 | [[package]] 759 | name = "futures-util" 760 | version = "0.3.24" 761 | source = "registry+https://github.com/rust-lang/crates.io-index" 762 | checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90" 763 | dependencies = [ 764 | "futures-channel", 765 | "futures-core", 766 | "futures-io", 767 | "futures-macro", 768 | "futures-sink", 769 | "futures-task", 770 | "memchr", 771 | "pin-project-lite", 772 | "pin-utils", 773 | "slab", 774 | ] 775 | 776 | [[package]] 777 | name = "fxhash" 778 | version = "0.2.1" 779 | source = "registry+https://github.com/rust-lang/crates.io-index" 780 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 781 | dependencies = [ 782 | "byteorder", 783 | ] 784 | 785 | [[package]] 786 | name = "gdk" 787 | version = "0.15.4" 788 | source = "registry+https://github.com/rust-lang/crates.io-index" 789 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 790 | dependencies = [ 791 | "bitflags", 792 | "cairo-rs", 793 | "gdk-pixbuf", 794 | "gdk-sys", 795 | "gio", 796 | "glib", 797 | "libc", 798 | "pango", 799 | ] 800 | 801 | [[package]] 802 | name = "gdk-pixbuf" 803 | version = "0.15.11" 804 | source = "registry+https://github.com/rust-lang/crates.io-index" 805 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 806 | dependencies = [ 807 | "bitflags", 808 | "gdk-pixbuf-sys", 809 | "gio", 810 | "glib", 811 | "libc", 812 | ] 813 | 814 | [[package]] 815 | name = "gdk-pixbuf-sys" 816 | version = "0.15.10" 817 | source = "registry+https://github.com/rust-lang/crates.io-index" 818 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 819 | dependencies = [ 820 | "gio-sys", 821 | "glib-sys", 822 | "gobject-sys", 823 | "libc", 824 | "system-deps 6.0.2", 825 | ] 826 | 827 | [[package]] 828 | name = "gdk-sys" 829 | version = "0.15.1" 830 | source = "registry+https://github.com/rust-lang/crates.io-index" 831 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 832 | dependencies = [ 833 | "cairo-sys-rs", 834 | "gdk-pixbuf-sys", 835 | "gio-sys", 836 | "glib-sys", 837 | "gobject-sys", 838 | "libc", 839 | "pango-sys", 840 | "pkg-config", 841 | "system-deps 6.0.2", 842 | ] 843 | 844 | [[package]] 845 | name = "gdkx11-sys" 846 | version = "0.15.1" 847 | source = "registry+https://github.com/rust-lang/crates.io-index" 848 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 849 | dependencies = [ 850 | "gdk-sys", 851 | "glib-sys", 852 | "libc", 853 | "system-deps 6.0.2", 854 | "x11", 855 | ] 856 | 857 | [[package]] 858 | name = "generator" 859 | version = "0.7.1" 860 | source = "registry+https://github.com/rust-lang/crates.io-index" 861 | checksum = "cc184cace1cea8335047a471cc1da80f18acf8a76f3bab2028d499e328948ec7" 862 | dependencies = [ 863 | "cc", 864 | "libc", 865 | "log", 866 | "rustversion", 867 | "windows 0.32.0", 868 | ] 869 | 870 | [[package]] 871 | name = "generic-array" 872 | version = "0.14.6" 873 | source = "registry+https://github.com/rust-lang/crates.io-index" 874 | checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 875 | dependencies = [ 876 | "typenum", 877 | "version_check", 878 | ] 879 | 880 | [[package]] 881 | name = "getrandom" 882 | version = "0.1.16" 883 | source = "registry+https://github.com/rust-lang/crates.io-index" 884 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 885 | dependencies = [ 886 | "cfg-if", 887 | "libc", 888 | "wasi 0.9.0+wasi-snapshot-preview1", 889 | ] 890 | 891 | [[package]] 892 | name = "getrandom" 893 | version = "0.2.7" 894 | source = "registry+https://github.com/rust-lang/crates.io-index" 895 | checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 896 | dependencies = [ 897 | "cfg-if", 898 | "libc", 899 | "wasi 0.11.0+wasi-snapshot-preview1", 900 | ] 901 | 902 | [[package]] 903 | name = "gio" 904 | version = "0.15.12" 905 | source = "registry+https://github.com/rust-lang/crates.io-index" 906 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 907 | dependencies = [ 908 | "bitflags", 909 | "futures-channel", 910 | "futures-core", 911 | "futures-io", 912 | "gio-sys", 913 | "glib", 914 | "libc", 915 | "once_cell", 916 | "thiserror", 917 | ] 918 | 919 | [[package]] 920 | name = "gio-sys" 921 | version = "0.15.10" 922 | source = "registry+https://github.com/rust-lang/crates.io-index" 923 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 924 | dependencies = [ 925 | "glib-sys", 926 | "gobject-sys", 927 | "libc", 928 | "system-deps 6.0.2", 929 | "winapi", 930 | ] 931 | 932 | [[package]] 933 | name = "glib" 934 | version = "0.15.12" 935 | source = "registry+https://github.com/rust-lang/crates.io-index" 936 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 937 | dependencies = [ 938 | "bitflags", 939 | "futures-channel", 940 | "futures-core", 941 | "futures-executor", 942 | "futures-task", 943 | "glib-macros", 944 | "glib-sys", 945 | "gobject-sys", 946 | "libc", 947 | "once_cell", 948 | "smallvec", 949 | "thiserror", 950 | ] 951 | 952 | [[package]] 953 | name = "glib-macros" 954 | version = "0.15.11" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" 957 | dependencies = [ 958 | "anyhow", 959 | "heck 0.4.0", 960 | "proc-macro-crate", 961 | "proc-macro-error", 962 | "proc-macro2", 963 | "quote", 964 | "syn", 965 | ] 966 | 967 | [[package]] 968 | name = "glib-sys" 969 | version = "0.15.10" 970 | source = "registry+https://github.com/rust-lang/crates.io-index" 971 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 972 | dependencies = [ 973 | "libc", 974 | "system-deps 6.0.2", 975 | ] 976 | 977 | [[package]] 978 | name = "glob" 979 | version = "0.3.0" 980 | source = "registry+https://github.com/rust-lang/crates.io-index" 981 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 982 | 983 | [[package]] 984 | name = "globset" 985 | version = "0.4.9" 986 | source = "registry+https://github.com/rust-lang/crates.io-index" 987 | checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 988 | dependencies = [ 989 | "aho-corasick", 990 | "bstr", 991 | "fnv", 992 | "log", 993 | "regex", 994 | ] 995 | 996 | [[package]] 997 | name = "gobject-sys" 998 | version = "0.15.10" 999 | source = "registry+https://github.com/rust-lang/crates.io-index" 1000 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1001 | dependencies = [ 1002 | "glib-sys", 1003 | "libc", 1004 | "system-deps 6.0.2", 1005 | ] 1006 | 1007 | [[package]] 1008 | name = "gtk" 1009 | version = "0.15.5" 1010 | source = "registry+https://github.com/rust-lang/crates.io-index" 1011 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1012 | dependencies = [ 1013 | "atk", 1014 | "bitflags", 1015 | "cairo-rs", 1016 | "field-offset", 1017 | "futures-channel", 1018 | "gdk", 1019 | "gdk-pixbuf", 1020 | "gio", 1021 | "glib", 1022 | "gtk-sys", 1023 | "gtk3-macros", 1024 | "libc", 1025 | "once_cell", 1026 | "pango", 1027 | "pkg-config", 1028 | ] 1029 | 1030 | [[package]] 1031 | name = "gtk-sys" 1032 | version = "0.15.3" 1033 | source = "registry+https://github.com/rust-lang/crates.io-index" 1034 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1035 | dependencies = [ 1036 | "atk-sys", 1037 | "cairo-sys-rs", 1038 | "gdk-pixbuf-sys", 1039 | "gdk-sys", 1040 | "gio-sys", 1041 | "glib-sys", 1042 | "gobject-sys", 1043 | "libc", 1044 | "pango-sys", 1045 | "system-deps 6.0.2", 1046 | ] 1047 | 1048 | [[package]] 1049 | name = "gtk3-macros" 1050 | version = "0.15.4" 1051 | source = "registry+https://github.com/rust-lang/crates.io-index" 1052 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9" 1053 | dependencies = [ 1054 | "anyhow", 1055 | "proc-macro-crate", 1056 | "proc-macro-error", 1057 | "proc-macro2", 1058 | "quote", 1059 | "syn", 1060 | ] 1061 | 1062 | [[package]] 1063 | name = "hashbrown" 1064 | version = "0.12.3" 1065 | source = "registry+https://github.com/rust-lang/crates.io-index" 1066 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1067 | 1068 | [[package]] 1069 | name = "heck" 1070 | version = "0.3.3" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1073 | dependencies = [ 1074 | "unicode-segmentation", 1075 | ] 1076 | 1077 | [[package]] 1078 | name = "heck" 1079 | version = "0.4.0" 1080 | source = "registry+https://github.com/rust-lang/crates.io-index" 1081 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1082 | 1083 | [[package]] 1084 | name = "hermit-abi" 1085 | version = "0.1.19" 1086 | source = "registry+https://github.com/rust-lang/crates.io-index" 1087 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1088 | dependencies = [ 1089 | "libc", 1090 | ] 1091 | 1092 | [[package]] 1093 | name = "html5ever" 1094 | version = "0.25.2" 1095 | source = "registry+https://github.com/rust-lang/crates.io-index" 1096 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1097 | dependencies = [ 1098 | "log", 1099 | "mac", 1100 | "markup5ever", 1101 | "proc-macro2", 1102 | "quote", 1103 | "syn", 1104 | ] 1105 | 1106 | [[package]] 1107 | name = "http" 1108 | version = "0.2.8" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1111 | dependencies = [ 1112 | "bytes", 1113 | "fnv", 1114 | "itoa 1.0.3", 1115 | ] 1116 | 1117 | [[package]] 1118 | name = "http-range" 1119 | version = "0.1.5" 1120 | source = "registry+https://github.com/rust-lang/crates.io-index" 1121 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1122 | 1123 | [[package]] 1124 | name = "ico" 1125 | version = "0.1.0" 1126 | source = "registry+https://github.com/rust-lang/crates.io-index" 1127 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1128 | dependencies = [ 1129 | "byteorder", 1130 | "png 0.11.0", 1131 | ] 1132 | 1133 | [[package]] 1134 | name = "ident_case" 1135 | version = "1.0.1" 1136 | source = "registry+https://github.com/rust-lang/crates.io-index" 1137 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1138 | 1139 | [[package]] 1140 | name = "idna" 1141 | version = "0.3.0" 1142 | source = "registry+https://github.com/rust-lang/crates.io-index" 1143 | checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1144 | dependencies = [ 1145 | "unicode-bidi", 1146 | "unicode-normalization", 1147 | ] 1148 | 1149 | [[package]] 1150 | name = "ignore" 1151 | version = "0.4.18" 1152 | source = "registry+https://github.com/rust-lang/crates.io-index" 1153 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1154 | dependencies = [ 1155 | "crossbeam-utils", 1156 | "globset", 1157 | "lazy_static", 1158 | "log", 1159 | "memchr", 1160 | "regex", 1161 | "same-file", 1162 | "thread_local", 1163 | "walkdir", 1164 | "winapi-util", 1165 | ] 1166 | 1167 | [[package]] 1168 | name = "image" 1169 | version = "0.24.3" 1170 | source = "registry+https://github.com/rust-lang/crates.io-index" 1171 | checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964" 1172 | dependencies = [ 1173 | "bytemuck", 1174 | "byteorder", 1175 | "color_quant", 1176 | "num-rational", 1177 | "num-traits", 1178 | ] 1179 | 1180 | [[package]] 1181 | name = "indexmap" 1182 | version = "1.9.1" 1183 | source = "registry+https://github.com/rust-lang/crates.io-index" 1184 | checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1185 | dependencies = [ 1186 | "autocfg", 1187 | "hashbrown", 1188 | ] 1189 | 1190 | [[package]] 1191 | name = "infer" 1192 | version = "0.7.0" 1193 | source = "registry+https://github.com/rust-lang/crates.io-index" 1194 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1195 | dependencies = [ 1196 | "cfb", 1197 | ] 1198 | 1199 | [[package]] 1200 | name = "inflate" 1201 | version = "0.3.4" 1202 | source = "registry+https://github.com/rust-lang/crates.io-index" 1203 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1204 | dependencies = [ 1205 | "adler32", 1206 | ] 1207 | 1208 | [[package]] 1209 | name = "instant" 1210 | version = "0.1.12" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1213 | dependencies = [ 1214 | "cfg-if", 1215 | ] 1216 | 1217 | [[package]] 1218 | name = "itoa" 1219 | version = "0.4.8" 1220 | source = "registry+https://github.com/rust-lang/crates.io-index" 1221 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1222 | 1223 | [[package]] 1224 | name = "itoa" 1225 | version = "1.0.3" 1226 | source = "registry+https://github.com/rust-lang/crates.io-index" 1227 | checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 1228 | 1229 | [[package]] 1230 | name = "javascriptcore-rs" 1231 | version = "0.16.0" 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" 1233 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1234 | dependencies = [ 1235 | "bitflags", 1236 | "glib", 1237 | "javascriptcore-rs-sys", 1238 | ] 1239 | 1240 | [[package]] 1241 | name = "javascriptcore-rs-sys" 1242 | version = "0.4.0" 1243 | source = "registry+https://github.com/rust-lang/crates.io-index" 1244 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1245 | dependencies = [ 1246 | "glib-sys", 1247 | "gobject-sys", 1248 | "libc", 1249 | "system-deps 5.0.0", 1250 | ] 1251 | 1252 | [[package]] 1253 | name = "jni" 1254 | version = "0.18.0" 1255 | source = "registry+https://github.com/rust-lang/crates.io-index" 1256 | checksum = "24967112a1e4301ca5342ea339763613a37592b8a6ce6cf2e4494537c7a42faf" 1257 | dependencies = [ 1258 | "cesu8", 1259 | "combine", 1260 | "jni-sys", 1261 | "log", 1262 | "thiserror", 1263 | "walkdir", 1264 | ] 1265 | 1266 | [[package]] 1267 | name = "jni" 1268 | version = "0.19.0" 1269 | source = "registry+https://github.com/rust-lang/crates.io-index" 1270 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1271 | dependencies = [ 1272 | "cesu8", 1273 | "combine", 1274 | "jni-sys", 1275 | "log", 1276 | "thiserror", 1277 | "walkdir", 1278 | ] 1279 | 1280 | [[package]] 1281 | name = "jni-sys" 1282 | version = "0.3.0" 1283 | source = "registry+https://github.com/rust-lang/crates.io-index" 1284 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1285 | 1286 | [[package]] 1287 | name = "js-sys" 1288 | version = "0.3.59" 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" 1290 | checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 1291 | dependencies = [ 1292 | "wasm-bindgen", 1293 | ] 1294 | 1295 | [[package]] 1296 | name = "json-patch" 1297 | version = "0.2.6" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 1300 | dependencies = [ 1301 | "serde", 1302 | "serde_json", 1303 | "treediff", 1304 | ] 1305 | 1306 | [[package]] 1307 | name = "kuchiki" 1308 | version = "0.8.1" 1309 | source = "registry+https://github.com/rust-lang/crates.io-index" 1310 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1311 | dependencies = [ 1312 | "cssparser", 1313 | "html5ever", 1314 | "matches", 1315 | "selectors", 1316 | ] 1317 | 1318 | [[package]] 1319 | name = "launch-shell" 1320 | version = "0.0.0" 1321 | dependencies = [ 1322 | "serde", 1323 | "serde_json", 1324 | "tauri", 1325 | "tauri-build", 1326 | "window-shadows", 1327 | "window-vibrancy", 1328 | ] 1329 | 1330 | [[package]] 1331 | name = "lazy_static" 1332 | version = "1.4.0" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1335 | 1336 | [[package]] 1337 | name = "libappindicator" 1338 | version = "0.7.1" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "db2d3cb96d092b4824cb306c9e544c856a4cb6210c1081945187f7f1924b47e8" 1341 | dependencies = [ 1342 | "glib", 1343 | "gtk", 1344 | "gtk-sys", 1345 | "libappindicator-sys", 1346 | "log", 1347 | ] 1348 | 1349 | [[package]] 1350 | name = "libappindicator-sys" 1351 | version = "0.7.3" 1352 | source = "registry+https://github.com/rust-lang/crates.io-index" 1353 | checksum = "f1b3b6681973cea8cc3bce7391e6d7d5502720b80a581c9a95c9cbaf592826aa" 1354 | dependencies = [ 1355 | "gtk-sys", 1356 | "libloading", 1357 | "once_cell", 1358 | ] 1359 | 1360 | [[package]] 1361 | name = "libc" 1362 | version = "0.2.132" 1363 | source = "registry+https://github.com/rust-lang/crates.io-index" 1364 | checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" 1365 | 1366 | [[package]] 1367 | name = "libdbus-sys" 1368 | version = "0.2.2" 1369 | source = "registry+https://github.com/rust-lang/crates.io-index" 1370 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" 1371 | dependencies = [ 1372 | "pkg-config", 1373 | ] 1374 | 1375 | [[package]] 1376 | name = "libloading" 1377 | version = "0.7.3" 1378 | source = "registry+https://github.com/rust-lang/crates.io-index" 1379 | checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" 1380 | dependencies = [ 1381 | "cfg-if", 1382 | "winapi", 1383 | ] 1384 | 1385 | [[package]] 1386 | name = "line-wrap" 1387 | version = "0.1.1" 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" 1389 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1390 | dependencies = [ 1391 | "safemem", 1392 | ] 1393 | 1394 | [[package]] 1395 | name = "lock_api" 1396 | version = "0.4.8" 1397 | source = "registry+https://github.com/rust-lang/crates.io-index" 1398 | checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390" 1399 | dependencies = [ 1400 | "autocfg", 1401 | "scopeguard", 1402 | ] 1403 | 1404 | [[package]] 1405 | name = "log" 1406 | version = "0.4.17" 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" 1408 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1409 | dependencies = [ 1410 | "cfg-if", 1411 | ] 1412 | 1413 | [[package]] 1414 | name = "loom" 1415 | version = "0.5.6" 1416 | source = "registry+https://github.com/rust-lang/crates.io-index" 1417 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1418 | dependencies = [ 1419 | "cfg-if", 1420 | "generator", 1421 | "scoped-tls", 1422 | "serde", 1423 | "serde_json", 1424 | "tracing", 1425 | "tracing-subscriber", 1426 | ] 1427 | 1428 | [[package]] 1429 | name = "mac" 1430 | version = "0.1.1" 1431 | source = "registry+https://github.com/rust-lang/crates.io-index" 1432 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1433 | 1434 | [[package]] 1435 | name = "mac-notification-sys" 1436 | version = "0.5.6" 1437 | source = "registry+https://github.com/rust-lang/crates.io-index" 1438 | checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" 1439 | dependencies = [ 1440 | "cc", 1441 | "dirs-next", 1442 | "objc-foundation", 1443 | "objc_id", 1444 | "time", 1445 | ] 1446 | 1447 | [[package]] 1448 | name = "malloc_buf" 1449 | version = "0.0.6" 1450 | source = "registry+https://github.com/rust-lang/crates.io-index" 1451 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1452 | dependencies = [ 1453 | "libc", 1454 | ] 1455 | 1456 | [[package]] 1457 | name = "markup5ever" 1458 | version = "0.10.1" 1459 | source = "registry+https://github.com/rust-lang/crates.io-index" 1460 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1461 | dependencies = [ 1462 | "log", 1463 | "phf 0.8.0", 1464 | "phf_codegen", 1465 | "string_cache", 1466 | "string_cache_codegen", 1467 | "tendril", 1468 | ] 1469 | 1470 | [[package]] 1471 | name = "matchers" 1472 | version = "0.1.0" 1473 | source = "registry+https://github.com/rust-lang/crates.io-index" 1474 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1475 | dependencies = [ 1476 | "regex-automata", 1477 | ] 1478 | 1479 | [[package]] 1480 | name = "matches" 1481 | version = "0.1.9" 1482 | source = "registry+https://github.com/rust-lang/crates.io-index" 1483 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1484 | 1485 | [[package]] 1486 | name = "memchr" 1487 | version = "2.5.0" 1488 | source = "registry+https://github.com/rust-lang/crates.io-index" 1489 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1490 | 1491 | [[package]] 1492 | name = "memoffset" 1493 | version = "0.6.5" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1496 | dependencies = [ 1497 | "autocfg", 1498 | ] 1499 | 1500 | [[package]] 1501 | name = "miniz_oxide" 1502 | version = "0.5.4" 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" 1504 | checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 1505 | dependencies = [ 1506 | "adler", 1507 | ] 1508 | 1509 | [[package]] 1510 | name = "native-tls" 1511 | version = "0.2.10" 1512 | source = "registry+https://github.com/rust-lang/crates.io-index" 1513 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1514 | dependencies = [ 1515 | "lazy_static", 1516 | "libc", 1517 | "log", 1518 | "openssl", 1519 | "openssl-probe", 1520 | "openssl-sys", 1521 | "schannel", 1522 | "security-framework", 1523 | "security-framework-sys", 1524 | "tempfile", 1525 | ] 1526 | 1527 | [[package]] 1528 | name = "ndk" 1529 | version = "0.6.0" 1530 | source = "registry+https://github.com/rust-lang/crates.io-index" 1531 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1532 | dependencies = [ 1533 | "bitflags", 1534 | "jni-sys", 1535 | "ndk-sys", 1536 | "num_enum", 1537 | "thiserror", 1538 | ] 1539 | 1540 | [[package]] 1541 | name = "ndk-context" 1542 | version = "0.1.1" 1543 | source = "registry+https://github.com/rust-lang/crates.io-index" 1544 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1545 | 1546 | [[package]] 1547 | name = "ndk-sys" 1548 | version = "0.3.0" 1549 | source = "registry+https://github.com/rust-lang/crates.io-index" 1550 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1551 | dependencies = [ 1552 | "jni-sys", 1553 | ] 1554 | 1555 | [[package]] 1556 | name = "new_debug_unreachable" 1557 | version = "1.0.4" 1558 | source = "registry+https://github.com/rust-lang/crates.io-index" 1559 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1560 | 1561 | [[package]] 1562 | name = "nodrop" 1563 | version = "0.1.14" 1564 | source = "registry+https://github.com/rust-lang/crates.io-index" 1565 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1566 | 1567 | [[package]] 1568 | name = "notify-rust" 1569 | version = "4.5.8" 1570 | source = "registry+https://github.com/rust-lang/crates.io-index" 1571 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4" 1572 | dependencies = [ 1573 | "dbus", 1574 | "mac-notification-sys", 1575 | "winrt-notification", 1576 | ] 1577 | 1578 | [[package]] 1579 | name = "num-integer" 1580 | version = "0.1.45" 1581 | source = "registry+https://github.com/rust-lang/crates.io-index" 1582 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1583 | dependencies = [ 1584 | "autocfg", 1585 | "num-traits", 1586 | ] 1587 | 1588 | [[package]] 1589 | name = "num-iter" 1590 | version = "0.1.43" 1591 | source = "registry+https://github.com/rust-lang/crates.io-index" 1592 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1593 | dependencies = [ 1594 | "autocfg", 1595 | "num-integer", 1596 | "num-traits", 1597 | ] 1598 | 1599 | [[package]] 1600 | name = "num-rational" 1601 | version = "0.4.1" 1602 | source = "registry+https://github.com/rust-lang/crates.io-index" 1603 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1604 | dependencies = [ 1605 | "autocfg", 1606 | "num-integer", 1607 | "num-traits", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "num-traits" 1612 | version = "0.2.15" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1615 | dependencies = [ 1616 | "autocfg", 1617 | ] 1618 | 1619 | [[package]] 1620 | name = "num_cpus" 1621 | version = "1.13.1" 1622 | source = "registry+https://github.com/rust-lang/crates.io-index" 1623 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1624 | dependencies = [ 1625 | "hermit-abi", 1626 | "libc", 1627 | ] 1628 | 1629 | [[package]] 1630 | name = "num_enum" 1631 | version = "0.5.7" 1632 | source = "registry+https://github.com/rust-lang/crates.io-index" 1633 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1634 | dependencies = [ 1635 | "num_enum_derive", 1636 | ] 1637 | 1638 | [[package]] 1639 | name = "num_enum_derive" 1640 | version = "0.5.7" 1641 | source = "registry+https://github.com/rust-lang/crates.io-index" 1642 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1643 | dependencies = [ 1644 | "proc-macro-crate", 1645 | "proc-macro2", 1646 | "quote", 1647 | "syn", 1648 | ] 1649 | 1650 | [[package]] 1651 | name = "num_threads" 1652 | version = "0.1.6" 1653 | source = "registry+https://github.com/rust-lang/crates.io-index" 1654 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1655 | dependencies = [ 1656 | "libc", 1657 | ] 1658 | 1659 | [[package]] 1660 | name = "objc" 1661 | version = "0.2.7" 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" 1663 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1664 | dependencies = [ 1665 | "malloc_buf", 1666 | "objc_exception", 1667 | ] 1668 | 1669 | [[package]] 1670 | name = "objc-foundation" 1671 | version = "0.1.1" 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" 1673 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1674 | dependencies = [ 1675 | "block", 1676 | "objc", 1677 | "objc_id", 1678 | ] 1679 | 1680 | [[package]] 1681 | name = "objc_exception" 1682 | version = "0.1.2" 1683 | source = "registry+https://github.com/rust-lang/crates.io-index" 1684 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1685 | dependencies = [ 1686 | "cc", 1687 | ] 1688 | 1689 | [[package]] 1690 | name = "objc_id" 1691 | version = "0.1.1" 1692 | source = "registry+https://github.com/rust-lang/crates.io-index" 1693 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1694 | dependencies = [ 1695 | "objc", 1696 | ] 1697 | 1698 | [[package]] 1699 | name = "once_cell" 1700 | version = "1.14.0" 1701 | source = "registry+https://github.com/rust-lang/crates.io-index" 1702 | checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" 1703 | 1704 | [[package]] 1705 | name = "open" 1706 | version = "3.0.2" 1707 | source = "registry+https://github.com/rust-lang/crates.io-index" 1708 | checksum = "f23a407004a1033f53e93f9b45580d14de23928faad187384f891507c9b0c045" 1709 | dependencies = [ 1710 | "pathdiff", 1711 | "windows-sys", 1712 | ] 1713 | 1714 | [[package]] 1715 | name = "openssl" 1716 | version = "0.10.41" 1717 | source = "registry+https://github.com/rust-lang/crates.io-index" 1718 | checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 1719 | dependencies = [ 1720 | "bitflags", 1721 | "cfg-if", 1722 | "foreign-types", 1723 | "libc", 1724 | "once_cell", 1725 | "openssl-macros", 1726 | "openssl-sys", 1727 | ] 1728 | 1729 | [[package]] 1730 | name = "openssl-macros" 1731 | version = "0.1.0" 1732 | source = "registry+https://github.com/rust-lang/crates.io-index" 1733 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1734 | dependencies = [ 1735 | "proc-macro2", 1736 | "quote", 1737 | "syn", 1738 | ] 1739 | 1740 | [[package]] 1741 | name = "openssl-probe" 1742 | version = "0.1.5" 1743 | source = "registry+https://github.com/rust-lang/crates.io-index" 1744 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1745 | 1746 | [[package]] 1747 | name = "openssl-sys" 1748 | version = "0.9.75" 1749 | source = "registry+https://github.com/rust-lang/crates.io-index" 1750 | checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 1751 | dependencies = [ 1752 | "autocfg", 1753 | "cc", 1754 | "libc", 1755 | "pkg-config", 1756 | "vcpkg", 1757 | ] 1758 | 1759 | [[package]] 1760 | name = "os_info" 1761 | version = "3.5.0" 1762 | source = "registry+https://github.com/rust-lang/crates.io-index" 1763 | checksum = "5209b2162b2c140df493a93689e04f8deab3a67634f5bc7a553c0a98e5b8d399" 1764 | dependencies = [ 1765 | "log", 1766 | "serde", 1767 | "winapi", 1768 | ] 1769 | 1770 | [[package]] 1771 | name = "os_pipe" 1772 | version = "1.0.1" 1773 | source = "registry+https://github.com/rust-lang/crates.io-index" 1774 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55" 1775 | dependencies = [ 1776 | "libc", 1777 | "winapi", 1778 | ] 1779 | 1780 | [[package]] 1781 | name = "pango" 1782 | version = "0.15.10" 1783 | source = "registry+https://github.com/rust-lang/crates.io-index" 1784 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1785 | dependencies = [ 1786 | "bitflags", 1787 | "glib", 1788 | "libc", 1789 | "once_cell", 1790 | "pango-sys", 1791 | ] 1792 | 1793 | [[package]] 1794 | name = "pango-sys" 1795 | version = "0.15.10" 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" 1797 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1798 | dependencies = [ 1799 | "glib-sys", 1800 | "gobject-sys", 1801 | "libc", 1802 | "system-deps 6.0.2", 1803 | ] 1804 | 1805 | [[package]] 1806 | name = "parking" 1807 | version = "2.0.0" 1808 | source = "registry+https://github.com/rust-lang/crates.io-index" 1809 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1810 | 1811 | [[package]] 1812 | name = "parking_lot" 1813 | version = "0.12.1" 1814 | source = "registry+https://github.com/rust-lang/crates.io-index" 1815 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1816 | dependencies = [ 1817 | "lock_api", 1818 | "parking_lot_core", 1819 | ] 1820 | 1821 | [[package]] 1822 | name = "parking_lot_core" 1823 | version = "0.9.3" 1824 | source = "registry+https://github.com/rust-lang/crates.io-index" 1825 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1826 | dependencies = [ 1827 | "cfg-if", 1828 | "libc", 1829 | "redox_syscall", 1830 | "smallvec", 1831 | "windows-sys", 1832 | ] 1833 | 1834 | [[package]] 1835 | name = "paste" 1836 | version = "1.0.9" 1837 | source = "registry+https://github.com/rust-lang/crates.io-index" 1838 | checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" 1839 | 1840 | [[package]] 1841 | name = "pathdiff" 1842 | version = "0.2.1" 1843 | source = "registry+https://github.com/rust-lang/crates.io-index" 1844 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1845 | 1846 | [[package]] 1847 | name = "percent-encoding" 1848 | version = "2.2.0" 1849 | source = "registry+https://github.com/rust-lang/crates.io-index" 1850 | checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1851 | 1852 | [[package]] 1853 | name = "pest" 1854 | version = "2.3.0" 1855 | source = "registry+https://github.com/rust-lang/crates.io-index" 1856 | checksum = "4b0560d531d1febc25a3c9398a62a71256c0178f2e3443baedd9ad4bb8c9deb4" 1857 | dependencies = [ 1858 | "thiserror", 1859 | "ucd-trie", 1860 | ] 1861 | 1862 | [[package]] 1863 | name = "phf" 1864 | version = "0.8.0" 1865 | source = "registry+https://github.com/rust-lang/crates.io-index" 1866 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1867 | dependencies = [ 1868 | "phf_macros 0.8.0", 1869 | "phf_shared 0.8.0", 1870 | "proc-macro-hack", 1871 | ] 1872 | 1873 | [[package]] 1874 | name = "phf" 1875 | version = "0.10.1" 1876 | source = "registry+https://github.com/rust-lang/crates.io-index" 1877 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1878 | dependencies = [ 1879 | "phf_macros 0.10.0", 1880 | "phf_shared 0.10.0", 1881 | "proc-macro-hack", 1882 | ] 1883 | 1884 | [[package]] 1885 | name = "phf_codegen" 1886 | version = "0.8.0" 1887 | source = "registry+https://github.com/rust-lang/crates.io-index" 1888 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1889 | dependencies = [ 1890 | "phf_generator 0.8.0", 1891 | "phf_shared 0.8.0", 1892 | ] 1893 | 1894 | [[package]] 1895 | name = "phf_generator" 1896 | version = "0.8.0" 1897 | source = "registry+https://github.com/rust-lang/crates.io-index" 1898 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1899 | dependencies = [ 1900 | "phf_shared 0.8.0", 1901 | "rand 0.7.3", 1902 | ] 1903 | 1904 | [[package]] 1905 | name = "phf_generator" 1906 | version = "0.10.0" 1907 | source = "registry+https://github.com/rust-lang/crates.io-index" 1908 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1909 | dependencies = [ 1910 | "phf_shared 0.10.0", 1911 | "rand 0.8.5", 1912 | ] 1913 | 1914 | [[package]] 1915 | name = "phf_macros" 1916 | version = "0.8.0" 1917 | source = "registry+https://github.com/rust-lang/crates.io-index" 1918 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1919 | dependencies = [ 1920 | "phf_generator 0.8.0", 1921 | "phf_shared 0.8.0", 1922 | "proc-macro-hack", 1923 | "proc-macro2", 1924 | "quote", 1925 | "syn", 1926 | ] 1927 | 1928 | [[package]] 1929 | name = "phf_macros" 1930 | version = "0.10.0" 1931 | source = "registry+https://github.com/rust-lang/crates.io-index" 1932 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1933 | dependencies = [ 1934 | "phf_generator 0.10.0", 1935 | "phf_shared 0.10.0", 1936 | "proc-macro-hack", 1937 | "proc-macro2", 1938 | "quote", 1939 | "syn", 1940 | ] 1941 | 1942 | [[package]] 1943 | name = "phf_shared" 1944 | version = "0.8.0" 1945 | source = "registry+https://github.com/rust-lang/crates.io-index" 1946 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1947 | dependencies = [ 1948 | "siphasher", 1949 | ] 1950 | 1951 | [[package]] 1952 | name = "phf_shared" 1953 | version = "0.10.0" 1954 | source = "registry+https://github.com/rust-lang/crates.io-index" 1955 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1956 | dependencies = [ 1957 | "siphasher", 1958 | ] 1959 | 1960 | [[package]] 1961 | name = "pin-project-lite" 1962 | version = "0.2.9" 1963 | source = "registry+https://github.com/rust-lang/crates.io-index" 1964 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1965 | 1966 | [[package]] 1967 | name = "pin-utils" 1968 | version = "0.1.0" 1969 | source = "registry+https://github.com/rust-lang/crates.io-index" 1970 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1971 | 1972 | [[package]] 1973 | name = "pkg-config" 1974 | version = "0.3.25" 1975 | source = "registry+https://github.com/rust-lang/crates.io-index" 1976 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1977 | 1978 | [[package]] 1979 | name = "plist" 1980 | version = "1.3.1" 1981 | source = "registry+https://github.com/rust-lang/crates.io-index" 1982 | checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 1983 | dependencies = [ 1984 | "base64", 1985 | "indexmap", 1986 | "line-wrap", 1987 | "serde", 1988 | "time", 1989 | "xml-rs", 1990 | ] 1991 | 1992 | [[package]] 1993 | name = "png" 1994 | version = "0.11.0" 1995 | source = "registry+https://github.com/rust-lang/crates.io-index" 1996 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1997 | dependencies = [ 1998 | "bitflags", 1999 | "deflate", 2000 | "inflate", 2001 | "num-iter", 2002 | ] 2003 | 2004 | [[package]] 2005 | name = "png" 2006 | version = "0.17.6" 2007 | source = "registry+https://github.com/rust-lang/crates.io-index" 2008 | checksum = "8f0e7f4c94ec26ff209cee506314212639d6c91b80afb82984819fafce9df01c" 2009 | dependencies = [ 2010 | "bitflags", 2011 | "crc32fast", 2012 | "flate2", 2013 | "miniz_oxide", 2014 | ] 2015 | 2016 | [[package]] 2017 | name = "ppv-lite86" 2018 | version = "0.2.16" 2019 | source = "registry+https://github.com/rust-lang/crates.io-index" 2020 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 2021 | 2022 | [[package]] 2023 | name = "precomputed-hash" 2024 | version = "0.1.1" 2025 | source = "registry+https://github.com/rust-lang/crates.io-index" 2026 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2027 | 2028 | [[package]] 2029 | name = "proc-macro-crate" 2030 | version = "1.2.1" 2031 | source = "registry+https://github.com/rust-lang/crates.io-index" 2032 | checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 2033 | dependencies = [ 2034 | "once_cell", 2035 | "thiserror", 2036 | "toml", 2037 | ] 2038 | 2039 | [[package]] 2040 | name = "proc-macro-error" 2041 | version = "1.0.4" 2042 | source = "registry+https://github.com/rust-lang/crates.io-index" 2043 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2044 | dependencies = [ 2045 | "proc-macro-error-attr", 2046 | "proc-macro2", 2047 | "quote", 2048 | "syn", 2049 | "version_check", 2050 | ] 2051 | 2052 | [[package]] 2053 | name = "proc-macro-error-attr" 2054 | version = "1.0.4" 2055 | source = "registry+https://github.com/rust-lang/crates.io-index" 2056 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2057 | dependencies = [ 2058 | "proc-macro2", 2059 | "quote", 2060 | "version_check", 2061 | ] 2062 | 2063 | [[package]] 2064 | name = "proc-macro-hack" 2065 | version = "0.5.19" 2066 | source = "registry+https://github.com/rust-lang/crates.io-index" 2067 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2068 | 2069 | [[package]] 2070 | name = "proc-macro2" 2071 | version = "1.0.43" 2072 | source = "registry+https://github.com/rust-lang/crates.io-index" 2073 | checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 2074 | dependencies = [ 2075 | "unicode-ident", 2076 | ] 2077 | 2078 | [[package]] 2079 | name = "quote" 2080 | version = "1.0.21" 2081 | source = "registry+https://github.com/rust-lang/crates.io-index" 2082 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 2083 | dependencies = [ 2084 | "proc-macro2", 2085 | ] 2086 | 2087 | [[package]] 2088 | name = "rand" 2089 | version = "0.7.3" 2090 | source = "registry+https://github.com/rust-lang/crates.io-index" 2091 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2092 | dependencies = [ 2093 | "getrandom 0.1.16", 2094 | "libc", 2095 | "rand_chacha 0.2.2", 2096 | "rand_core 0.5.1", 2097 | "rand_hc", 2098 | "rand_pcg", 2099 | ] 2100 | 2101 | [[package]] 2102 | name = "rand" 2103 | version = "0.8.5" 2104 | source = "registry+https://github.com/rust-lang/crates.io-index" 2105 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2106 | dependencies = [ 2107 | "libc", 2108 | "rand_chacha 0.3.1", 2109 | "rand_core 0.6.3", 2110 | ] 2111 | 2112 | [[package]] 2113 | name = "rand_chacha" 2114 | version = "0.2.2" 2115 | source = "registry+https://github.com/rust-lang/crates.io-index" 2116 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2117 | dependencies = [ 2118 | "ppv-lite86", 2119 | "rand_core 0.5.1", 2120 | ] 2121 | 2122 | [[package]] 2123 | name = "rand_chacha" 2124 | version = "0.3.1" 2125 | source = "registry+https://github.com/rust-lang/crates.io-index" 2126 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2127 | dependencies = [ 2128 | "ppv-lite86", 2129 | "rand_core 0.6.3", 2130 | ] 2131 | 2132 | [[package]] 2133 | name = "rand_core" 2134 | version = "0.5.1" 2135 | source = "registry+https://github.com/rust-lang/crates.io-index" 2136 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2137 | dependencies = [ 2138 | "getrandom 0.1.16", 2139 | ] 2140 | 2141 | [[package]] 2142 | name = "rand_core" 2143 | version = "0.6.3" 2144 | source = "registry+https://github.com/rust-lang/crates.io-index" 2145 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2146 | dependencies = [ 2147 | "getrandom 0.2.7", 2148 | ] 2149 | 2150 | [[package]] 2151 | name = "rand_hc" 2152 | version = "0.2.0" 2153 | source = "registry+https://github.com/rust-lang/crates.io-index" 2154 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2155 | dependencies = [ 2156 | "rand_core 0.5.1", 2157 | ] 2158 | 2159 | [[package]] 2160 | name = "rand_pcg" 2161 | version = "0.2.1" 2162 | source = "registry+https://github.com/rust-lang/crates.io-index" 2163 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2164 | dependencies = [ 2165 | "rand_core 0.5.1", 2166 | ] 2167 | 2168 | [[package]] 2169 | name = "raw-window-handle" 2170 | version = "0.4.3" 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" 2172 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 2173 | dependencies = [ 2174 | "cty", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "redox_syscall" 2179 | version = "0.2.16" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2182 | dependencies = [ 2183 | "bitflags", 2184 | ] 2185 | 2186 | [[package]] 2187 | name = "redox_users" 2188 | version = "0.4.3" 2189 | source = "registry+https://github.com/rust-lang/crates.io-index" 2190 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2191 | dependencies = [ 2192 | "getrandom 0.2.7", 2193 | "redox_syscall", 2194 | "thiserror", 2195 | ] 2196 | 2197 | [[package]] 2198 | name = "regex" 2199 | version = "1.6.0" 2200 | source = "registry+https://github.com/rust-lang/crates.io-index" 2201 | checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 2202 | dependencies = [ 2203 | "aho-corasick", 2204 | "memchr", 2205 | "regex-syntax", 2206 | ] 2207 | 2208 | [[package]] 2209 | name = "regex-automata" 2210 | version = "0.1.10" 2211 | source = "registry+https://github.com/rust-lang/crates.io-index" 2212 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2213 | dependencies = [ 2214 | "regex-syntax", 2215 | ] 2216 | 2217 | [[package]] 2218 | name = "regex-syntax" 2219 | version = "0.6.27" 2220 | source = "registry+https://github.com/rust-lang/crates.io-index" 2221 | checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 2222 | 2223 | [[package]] 2224 | name = "remove_dir_all" 2225 | version = "0.5.3" 2226 | source = "registry+https://github.com/rust-lang/crates.io-index" 2227 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2228 | dependencies = [ 2229 | "winapi", 2230 | ] 2231 | 2232 | [[package]] 2233 | name = "rfd" 2234 | version = "0.9.1" 2235 | source = "registry+https://github.com/rust-lang/crates.io-index" 2236 | checksum = "f121348fd3b9035ed11be1f028e8944263c30641f8c5deacf57a4320782fb402" 2237 | dependencies = [ 2238 | "block", 2239 | "dispatch", 2240 | "embed-resource", 2241 | "glib-sys", 2242 | "gobject-sys", 2243 | "gtk-sys", 2244 | "js-sys", 2245 | "lazy_static", 2246 | "log", 2247 | "objc", 2248 | "objc-foundation", 2249 | "objc_id", 2250 | "raw-window-handle", 2251 | "wasm-bindgen", 2252 | "wasm-bindgen-futures", 2253 | "web-sys", 2254 | "windows 0.37.0", 2255 | ] 2256 | 2257 | [[package]] 2258 | name = "rustc_version" 2259 | version = "0.3.3" 2260 | source = "registry+https://github.com/rust-lang/crates.io-index" 2261 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2262 | dependencies = [ 2263 | "semver 0.11.0", 2264 | ] 2265 | 2266 | [[package]] 2267 | name = "rustc_version" 2268 | version = "0.4.0" 2269 | source = "registry+https://github.com/rust-lang/crates.io-index" 2270 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2271 | dependencies = [ 2272 | "semver 1.0.13", 2273 | ] 2274 | 2275 | [[package]] 2276 | name = "rustversion" 2277 | version = "1.0.9" 2278 | source = "registry+https://github.com/rust-lang/crates.io-index" 2279 | checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2280 | 2281 | [[package]] 2282 | name = "ryu" 2283 | version = "1.0.11" 2284 | source = "registry+https://github.com/rust-lang/crates.io-index" 2285 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2286 | 2287 | [[package]] 2288 | name = "safemem" 2289 | version = "0.3.3" 2290 | source = "registry+https://github.com/rust-lang/crates.io-index" 2291 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2292 | 2293 | [[package]] 2294 | name = "same-file" 2295 | version = "1.0.6" 2296 | source = "registry+https://github.com/rust-lang/crates.io-index" 2297 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2298 | dependencies = [ 2299 | "winapi-util", 2300 | ] 2301 | 2302 | [[package]] 2303 | name = "schannel" 2304 | version = "0.1.20" 2305 | source = "registry+https://github.com/rust-lang/crates.io-index" 2306 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2307 | dependencies = [ 2308 | "lazy_static", 2309 | "windows-sys", 2310 | ] 2311 | 2312 | [[package]] 2313 | name = "scoped-tls" 2314 | version = "1.0.0" 2315 | source = "registry+https://github.com/rust-lang/crates.io-index" 2316 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2317 | 2318 | [[package]] 2319 | name = "scopeguard" 2320 | version = "1.1.0" 2321 | source = "registry+https://github.com/rust-lang/crates.io-index" 2322 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2323 | 2324 | [[package]] 2325 | name = "security-framework" 2326 | version = "2.7.0" 2327 | source = "registry+https://github.com/rust-lang/crates.io-index" 2328 | checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 2329 | dependencies = [ 2330 | "bitflags", 2331 | "core-foundation", 2332 | "core-foundation-sys", 2333 | "libc", 2334 | "security-framework-sys", 2335 | ] 2336 | 2337 | [[package]] 2338 | name = "security-framework-sys" 2339 | version = "2.6.1" 2340 | source = "registry+https://github.com/rust-lang/crates.io-index" 2341 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2342 | dependencies = [ 2343 | "core-foundation-sys", 2344 | "libc", 2345 | ] 2346 | 2347 | [[package]] 2348 | name = "selectors" 2349 | version = "0.22.0" 2350 | source = "registry+https://github.com/rust-lang/crates.io-index" 2351 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2352 | dependencies = [ 2353 | "bitflags", 2354 | "cssparser", 2355 | "derive_more", 2356 | "fxhash", 2357 | "log", 2358 | "matches", 2359 | "phf 0.8.0", 2360 | "phf_codegen", 2361 | "precomputed-hash", 2362 | "servo_arc", 2363 | "smallvec", 2364 | "thin-slice", 2365 | ] 2366 | 2367 | [[package]] 2368 | name = "semver" 2369 | version = "0.11.0" 2370 | source = "registry+https://github.com/rust-lang/crates.io-index" 2371 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2372 | dependencies = [ 2373 | "semver-parser", 2374 | ] 2375 | 2376 | [[package]] 2377 | name = "semver" 2378 | version = "1.0.13" 2379 | source = "registry+https://github.com/rust-lang/crates.io-index" 2380 | checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" 2381 | dependencies = [ 2382 | "serde", 2383 | ] 2384 | 2385 | [[package]] 2386 | name = "semver-parser" 2387 | version = "0.10.2" 2388 | source = "registry+https://github.com/rust-lang/crates.io-index" 2389 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2390 | dependencies = [ 2391 | "pest", 2392 | ] 2393 | 2394 | [[package]] 2395 | name = "serde" 2396 | version = "1.0.144" 2397 | source = "registry+https://github.com/rust-lang/crates.io-index" 2398 | checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" 2399 | dependencies = [ 2400 | "serde_derive", 2401 | ] 2402 | 2403 | [[package]] 2404 | name = "serde_derive" 2405 | version = "1.0.144" 2406 | source = "registry+https://github.com/rust-lang/crates.io-index" 2407 | checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" 2408 | dependencies = [ 2409 | "proc-macro2", 2410 | "quote", 2411 | "syn", 2412 | ] 2413 | 2414 | [[package]] 2415 | name = "serde_json" 2416 | version = "1.0.85" 2417 | source = "registry+https://github.com/rust-lang/crates.io-index" 2418 | checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 2419 | dependencies = [ 2420 | "itoa 1.0.3", 2421 | "ryu", 2422 | "serde", 2423 | ] 2424 | 2425 | [[package]] 2426 | name = "serde_repr" 2427 | version = "0.1.9" 2428 | source = "registry+https://github.com/rust-lang/crates.io-index" 2429 | checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" 2430 | dependencies = [ 2431 | "proc-macro2", 2432 | "quote", 2433 | "syn", 2434 | ] 2435 | 2436 | [[package]] 2437 | name = "serde_urlencoded" 2438 | version = "0.7.1" 2439 | source = "registry+https://github.com/rust-lang/crates.io-index" 2440 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2441 | dependencies = [ 2442 | "form_urlencoded", 2443 | "itoa 1.0.3", 2444 | "ryu", 2445 | "serde", 2446 | ] 2447 | 2448 | [[package]] 2449 | name = "serde_with" 2450 | version = "1.14.0" 2451 | source = "registry+https://github.com/rust-lang/crates.io-index" 2452 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2453 | dependencies = [ 2454 | "serde", 2455 | "serde_with_macros", 2456 | ] 2457 | 2458 | [[package]] 2459 | name = "serde_with_macros" 2460 | version = "1.5.2" 2461 | source = "registry+https://github.com/rust-lang/crates.io-index" 2462 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2463 | dependencies = [ 2464 | "darling", 2465 | "proc-macro2", 2466 | "quote", 2467 | "syn", 2468 | ] 2469 | 2470 | [[package]] 2471 | name = "serialize-to-javascript" 2472 | version = "0.1.1" 2473 | source = "registry+https://github.com/rust-lang/crates.io-index" 2474 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2475 | dependencies = [ 2476 | "serde", 2477 | "serde_json", 2478 | "serialize-to-javascript-impl", 2479 | ] 2480 | 2481 | [[package]] 2482 | name = "serialize-to-javascript-impl" 2483 | version = "0.1.1" 2484 | source = "registry+https://github.com/rust-lang/crates.io-index" 2485 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2486 | dependencies = [ 2487 | "proc-macro2", 2488 | "quote", 2489 | "syn", 2490 | ] 2491 | 2492 | [[package]] 2493 | name = "servo_arc" 2494 | version = "0.1.1" 2495 | source = "registry+https://github.com/rust-lang/crates.io-index" 2496 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2497 | dependencies = [ 2498 | "nodrop", 2499 | "stable_deref_trait", 2500 | ] 2501 | 2502 | [[package]] 2503 | name = "sha2" 2504 | version = "0.10.5" 2505 | source = "registry+https://github.com/rust-lang/crates.io-index" 2506 | checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5" 2507 | dependencies = [ 2508 | "cfg-if", 2509 | "cpufeatures", 2510 | "digest", 2511 | ] 2512 | 2513 | [[package]] 2514 | name = "sharded-slab" 2515 | version = "0.1.4" 2516 | source = "registry+https://github.com/rust-lang/crates.io-index" 2517 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2518 | dependencies = [ 2519 | "lazy_static", 2520 | ] 2521 | 2522 | [[package]] 2523 | name = "shared_child" 2524 | version = "1.0.0" 2525 | source = "registry+https://github.com/rust-lang/crates.io-index" 2526 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2527 | dependencies = [ 2528 | "libc", 2529 | "winapi", 2530 | ] 2531 | 2532 | [[package]] 2533 | name = "siphasher" 2534 | version = "0.3.10" 2535 | source = "registry+https://github.com/rust-lang/crates.io-index" 2536 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2537 | 2538 | [[package]] 2539 | name = "slab" 2540 | version = "0.4.7" 2541 | source = "registry+https://github.com/rust-lang/crates.io-index" 2542 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2543 | dependencies = [ 2544 | "autocfg", 2545 | ] 2546 | 2547 | [[package]] 2548 | name = "smallvec" 2549 | version = "1.9.0" 2550 | source = "registry+https://github.com/rust-lang/crates.io-index" 2551 | checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 2552 | 2553 | [[package]] 2554 | name = "socket2" 2555 | version = "0.4.7" 2556 | source = "registry+https://github.com/rust-lang/crates.io-index" 2557 | checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 2558 | dependencies = [ 2559 | "libc", 2560 | "winapi", 2561 | ] 2562 | 2563 | [[package]] 2564 | name = "soup2" 2565 | version = "0.2.1" 2566 | source = "registry+https://github.com/rust-lang/crates.io-index" 2567 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2568 | dependencies = [ 2569 | "bitflags", 2570 | "gio", 2571 | "glib", 2572 | "libc", 2573 | "once_cell", 2574 | "soup2-sys", 2575 | ] 2576 | 2577 | [[package]] 2578 | name = "soup2-sys" 2579 | version = "0.2.0" 2580 | source = "registry+https://github.com/rust-lang/crates.io-index" 2581 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2582 | dependencies = [ 2583 | "bitflags", 2584 | "gio-sys", 2585 | "glib-sys", 2586 | "gobject-sys", 2587 | "libc", 2588 | "system-deps 5.0.0", 2589 | ] 2590 | 2591 | [[package]] 2592 | name = "stable_deref_trait" 2593 | version = "1.2.0" 2594 | source = "registry+https://github.com/rust-lang/crates.io-index" 2595 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2596 | 2597 | [[package]] 2598 | name = "state" 2599 | version = "0.5.3" 2600 | source = "registry+https://github.com/rust-lang/crates.io-index" 2601 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2602 | dependencies = [ 2603 | "loom", 2604 | ] 2605 | 2606 | [[package]] 2607 | name = "string_cache" 2608 | version = "0.8.4" 2609 | source = "registry+https://github.com/rust-lang/crates.io-index" 2610 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2611 | dependencies = [ 2612 | "new_debug_unreachable", 2613 | "once_cell", 2614 | "parking_lot", 2615 | "phf_shared 0.10.0", 2616 | "precomputed-hash", 2617 | "serde", 2618 | ] 2619 | 2620 | [[package]] 2621 | name = "string_cache_codegen" 2622 | version = "0.5.2" 2623 | source = "registry+https://github.com/rust-lang/crates.io-index" 2624 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2625 | dependencies = [ 2626 | "phf_generator 0.10.0", 2627 | "phf_shared 0.10.0", 2628 | "proc-macro2", 2629 | "quote", 2630 | ] 2631 | 2632 | [[package]] 2633 | name = "strsim" 2634 | version = "0.10.0" 2635 | source = "registry+https://github.com/rust-lang/crates.io-index" 2636 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2637 | 2638 | [[package]] 2639 | name = "strum" 2640 | version = "0.22.0" 2641 | source = "registry+https://github.com/rust-lang/crates.io-index" 2642 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2643 | dependencies = [ 2644 | "strum_macros", 2645 | ] 2646 | 2647 | [[package]] 2648 | name = "strum_macros" 2649 | version = "0.22.0" 2650 | source = "registry+https://github.com/rust-lang/crates.io-index" 2651 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2652 | dependencies = [ 2653 | "heck 0.3.3", 2654 | "proc-macro2", 2655 | "quote", 2656 | "syn", 2657 | ] 2658 | 2659 | [[package]] 2660 | name = "syn" 2661 | version = "1.0.99" 2662 | source = "registry+https://github.com/rust-lang/crates.io-index" 2663 | checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 2664 | dependencies = [ 2665 | "proc-macro2", 2666 | "quote", 2667 | "unicode-ident", 2668 | ] 2669 | 2670 | [[package]] 2671 | name = "system-deps" 2672 | version = "5.0.0" 2673 | source = "registry+https://github.com/rust-lang/crates.io-index" 2674 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2675 | dependencies = [ 2676 | "cfg-expr 0.9.1", 2677 | "heck 0.3.3", 2678 | "pkg-config", 2679 | "toml", 2680 | "version-compare 0.0.11", 2681 | ] 2682 | 2683 | [[package]] 2684 | name = "system-deps" 2685 | version = "6.0.2" 2686 | source = "registry+https://github.com/rust-lang/crates.io-index" 2687 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" 2688 | dependencies = [ 2689 | "cfg-expr 0.10.3", 2690 | "heck 0.4.0", 2691 | "pkg-config", 2692 | "toml", 2693 | "version-compare 0.1.0", 2694 | ] 2695 | 2696 | [[package]] 2697 | name = "tao" 2698 | version = "0.12.2" 2699 | source = "registry+https://github.com/rust-lang/crates.io-index" 2700 | checksum = "f6fd7725dc1e593e9ecabd9fe49c112a204c8c8694db4182e78b2a5af490b1ae" 2701 | dependencies = [ 2702 | "bitflags", 2703 | "cairo-rs", 2704 | "cc", 2705 | "cocoa", 2706 | "core-foundation", 2707 | "core-graphics", 2708 | "crossbeam-channel", 2709 | "dirs-next", 2710 | "dispatch", 2711 | "gdk", 2712 | "gdk-pixbuf", 2713 | "gdk-sys", 2714 | "gdkx11-sys", 2715 | "gio", 2716 | "glib", 2717 | "glib-sys", 2718 | "gtk", 2719 | "image", 2720 | "instant", 2721 | "jni 0.19.0", 2722 | "lazy_static", 2723 | "libappindicator", 2724 | "libc", 2725 | "log", 2726 | "ndk", 2727 | "ndk-context", 2728 | "ndk-sys", 2729 | "objc", 2730 | "once_cell", 2731 | "parking_lot", 2732 | "paste", 2733 | "png 0.17.6", 2734 | "raw-window-handle", 2735 | "scopeguard", 2736 | "serde", 2737 | "unicode-segmentation", 2738 | "uuid 1.1.2", 2739 | "windows 0.37.0", 2740 | "windows-implement", 2741 | "x11-dl", 2742 | ] 2743 | 2744 | [[package]] 2745 | name = "tar" 2746 | version = "0.4.38" 2747 | source = "registry+https://github.com/rust-lang/crates.io-index" 2748 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2749 | dependencies = [ 2750 | "filetime", 2751 | "libc", 2752 | "xattr", 2753 | ] 2754 | 2755 | [[package]] 2756 | name = "tauri" 2757 | version = "1.0.5" 2758 | source = "registry+https://github.com/rust-lang/crates.io-index" 2759 | checksum = "e1a56a8b125069c2682bd31610109b4436c050c74447bee1078217a0325c1add" 2760 | dependencies = [ 2761 | "anyhow", 2762 | "attohttpc", 2763 | "cocoa", 2764 | "dirs-next", 2765 | "embed_plist", 2766 | "flate2", 2767 | "futures", 2768 | "futures-lite", 2769 | "glib", 2770 | "glob", 2771 | "gtk", 2772 | "heck 0.4.0", 2773 | "http", 2774 | "ignore", 2775 | "notify-rust", 2776 | "objc", 2777 | "once_cell", 2778 | "open", 2779 | "os_info", 2780 | "os_pipe", 2781 | "percent-encoding", 2782 | "rand 0.8.5", 2783 | "raw-window-handle", 2784 | "regex", 2785 | "rfd", 2786 | "semver 1.0.13", 2787 | "serde", 2788 | "serde_json", 2789 | "serde_repr", 2790 | "serialize-to-javascript", 2791 | "shared_child", 2792 | "state", 2793 | "tar", 2794 | "tauri-macros", 2795 | "tauri-runtime", 2796 | "tauri-runtime-wry", 2797 | "tauri-utils", 2798 | "tempfile", 2799 | "thiserror", 2800 | "tokio", 2801 | "url", 2802 | "uuid 1.1.2", 2803 | "webkit2gtk", 2804 | "webview2-com", 2805 | "windows 0.37.0", 2806 | ] 2807 | 2808 | [[package]] 2809 | name = "tauri-build" 2810 | version = "1.0.4" 2811 | source = "registry+https://github.com/rust-lang/crates.io-index" 2812 | checksum = "acafb1c515c5d14234a294461bd43c723639a84891a45f6a250fd3441ad2e8ed" 2813 | dependencies = [ 2814 | "anyhow", 2815 | "cargo_toml", 2816 | "heck 0.4.0", 2817 | "json-patch", 2818 | "semver 1.0.13", 2819 | "serde_json", 2820 | "tauri-utils", 2821 | "winres", 2822 | ] 2823 | 2824 | [[package]] 2825 | name = "tauri-codegen" 2826 | version = "1.0.4" 2827 | source = "registry+https://github.com/rust-lang/crates.io-index" 2828 | checksum = "16d62a3c8790d6cba686cea6e3f7f569d12c662c3274c2d165a4fd33e3871b72" 2829 | dependencies = [ 2830 | "base64", 2831 | "brotli", 2832 | "ico", 2833 | "json-patch", 2834 | "plist", 2835 | "png 0.17.6", 2836 | "proc-macro2", 2837 | "quote", 2838 | "regex", 2839 | "semver 1.0.13", 2840 | "serde", 2841 | "serde_json", 2842 | "sha2", 2843 | "tauri-utils", 2844 | "thiserror", 2845 | "time", 2846 | "uuid 1.1.2", 2847 | "walkdir", 2848 | ] 2849 | 2850 | [[package]] 2851 | name = "tauri-macros" 2852 | version = "1.0.4" 2853 | source = "registry+https://github.com/rust-lang/crates.io-index" 2854 | checksum = "7296fa17996629f43081e1c66d554703900187ed900c5bf46f97f0bcfb069278" 2855 | dependencies = [ 2856 | "heck 0.4.0", 2857 | "proc-macro2", 2858 | "quote", 2859 | "syn", 2860 | "tauri-codegen", 2861 | "tauri-utils", 2862 | ] 2863 | 2864 | [[package]] 2865 | name = "tauri-runtime" 2866 | version = "0.10.2" 2867 | source = "registry+https://github.com/rust-lang/crates.io-index" 2868 | checksum = "4e4cff3b4d9469727fa2107c4b3d2eda110df1ba45103fb420178e536362fae4" 2869 | dependencies = [ 2870 | "gtk", 2871 | "http", 2872 | "http-range", 2873 | "infer", 2874 | "raw-window-handle", 2875 | "serde", 2876 | "serde_json", 2877 | "tauri-utils", 2878 | "thiserror", 2879 | "uuid 1.1.2", 2880 | "webview2-com", 2881 | "windows 0.37.0", 2882 | ] 2883 | 2884 | [[package]] 2885 | name = "tauri-runtime-wry" 2886 | version = "0.10.2" 2887 | source = "registry+https://github.com/rust-lang/crates.io-index" 2888 | checksum = "3fa8c4edaf01d8b556e7172c844b1b4dd3399adcd1a606bd520fc3e65f698546" 2889 | dependencies = [ 2890 | "cocoa", 2891 | "gtk", 2892 | "percent-encoding", 2893 | "rand 0.8.5", 2894 | "raw-window-handle", 2895 | "tauri-runtime", 2896 | "tauri-utils", 2897 | "uuid 1.1.2", 2898 | "webkit2gtk", 2899 | "webview2-com", 2900 | "windows 0.37.0", 2901 | "wry", 2902 | ] 2903 | 2904 | [[package]] 2905 | name = "tauri-utils" 2906 | version = "1.0.3" 2907 | source = "registry+https://github.com/rust-lang/crates.io-index" 2908 | checksum = "12ff4b68d9faeb57c9c727bf58c9c9768d2b67d8e84e62ce6146e7859a2e9c6b" 2909 | dependencies = [ 2910 | "brotli", 2911 | "ctor", 2912 | "glob", 2913 | "heck 0.4.0", 2914 | "html5ever", 2915 | "json-patch", 2916 | "kuchiki", 2917 | "memchr", 2918 | "phf 0.10.1", 2919 | "proc-macro2", 2920 | "quote", 2921 | "semver 1.0.13", 2922 | "serde", 2923 | "serde_json", 2924 | "serde_with", 2925 | "thiserror", 2926 | "url", 2927 | "walkdir", 2928 | "windows 0.37.0", 2929 | ] 2930 | 2931 | [[package]] 2932 | name = "tempfile" 2933 | version = "3.3.0" 2934 | source = "registry+https://github.com/rust-lang/crates.io-index" 2935 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2936 | dependencies = [ 2937 | "cfg-if", 2938 | "fastrand", 2939 | "libc", 2940 | "redox_syscall", 2941 | "remove_dir_all", 2942 | "winapi", 2943 | ] 2944 | 2945 | [[package]] 2946 | name = "tendril" 2947 | version = "0.4.3" 2948 | source = "registry+https://github.com/rust-lang/crates.io-index" 2949 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2950 | dependencies = [ 2951 | "futf", 2952 | "mac", 2953 | "utf-8", 2954 | ] 2955 | 2956 | [[package]] 2957 | name = "thin-slice" 2958 | version = "0.1.1" 2959 | source = "registry+https://github.com/rust-lang/crates.io-index" 2960 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2961 | 2962 | [[package]] 2963 | name = "thiserror" 2964 | version = "1.0.34" 2965 | source = "registry+https://github.com/rust-lang/crates.io-index" 2966 | checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" 2967 | dependencies = [ 2968 | "thiserror-impl", 2969 | ] 2970 | 2971 | [[package]] 2972 | name = "thiserror-impl" 2973 | version = "1.0.34" 2974 | source = "registry+https://github.com/rust-lang/crates.io-index" 2975 | checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" 2976 | dependencies = [ 2977 | "proc-macro2", 2978 | "quote", 2979 | "syn", 2980 | ] 2981 | 2982 | [[package]] 2983 | name = "thread_local" 2984 | version = "1.1.4" 2985 | source = "registry+https://github.com/rust-lang/crates.io-index" 2986 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2987 | dependencies = [ 2988 | "once_cell", 2989 | ] 2990 | 2991 | [[package]] 2992 | name = "time" 2993 | version = "0.3.14" 2994 | source = "registry+https://github.com/rust-lang/crates.io-index" 2995 | checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" 2996 | dependencies = [ 2997 | "itoa 1.0.3", 2998 | "libc", 2999 | "num_threads", 3000 | ] 3001 | 3002 | [[package]] 3003 | name = "tinyvec" 3004 | version = "1.6.0" 3005 | source = "registry+https://github.com/rust-lang/crates.io-index" 3006 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3007 | dependencies = [ 3008 | "tinyvec_macros", 3009 | ] 3010 | 3011 | [[package]] 3012 | name = "tinyvec_macros" 3013 | version = "0.1.0" 3014 | source = "registry+https://github.com/rust-lang/crates.io-index" 3015 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3016 | 3017 | [[package]] 3018 | name = "tokio" 3019 | version = "1.21.0" 3020 | source = "registry+https://github.com/rust-lang/crates.io-index" 3021 | checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" 3022 | dependencies = [ 3023 | "autocfg", 3024 | "bytes", 3025 | "memchr", 3026 | "num_cpus", 3027 | "once_cell", 3028 | "pin-project-lite", 3029 | "socket2", 3030 | ] 3031 | 3032 | [[package]] 3033 | name = "toml" 3034 | version = "0.5.9" 3035 | source = "registry+https://github.com/rust-lang/crates.io-index" 3036 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 3037 | dependencies = [ 3038 | "serde", 3039 | ] 3040 | 3041 | [[package]] 3042 | name = "tracing" 3043 | version = "0.1.36" 3044 | source = "registry+https://github.com/rust-lang/crates.io-index" 3045 | checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 3046 | dependencies = [ 3047 | "cfg-if", 3048 | "pin-project-lite", 3049 | "tracing-attributes", 3050 | "tracing-core", 3051 | ] 3052 | 3053 | [[package]] 3054 | name = "tracing-attributes" 3055 | version = "0.1.22" 3056 | source = "registry+https://github.com/rust-lang/crates.io-index" 3057 | checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" 3058 | dependencies = [ 3059 | "proc-macro2", 3060 | "quote", 3061 | "syn", 3062 | ] 3063 | 3064 | [[package]] 3065 | name = "tracing-core" 3066 | version = "0.1.29" 3067 | source = "registry+https://github.com/rust-lang/crates.io-index" 3068 | checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 3069 | dependencies = [ 3070 | "once_cell", 3071 | "valuable", 3072 | ] 3073 | 3074 | [[package]] 3075 | name = "tracing-log" 3076 | version = "0.1.3" 3077 | source = "registry+https://github.com/rust-lang/crates.io-index" 3078 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3079 | dependencies = [ 3080 | "lazy_static", 3081 | "log", 3082 | "tracing-core", 3083 | ] 3084 | 3085 | [[package]] 3086 | name = "tracing-subscriber" 3087 | version = "0.3.15" 3088 | source = "registry+https://github.com/rust-lang/crates.io-index" 3089 | checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b" 3090 | dependencies = [ 3091 | "ansi_term", 3092 | "matchers", 3093 | "once_cell", 3094 | "regex", 3095 | "sharded-slab", 3096 | "smallvec", 3097 | "thread_local", 3098 | "tracing", 3099 | "tracing-core", 3100 | "tracing-log", 3101 | ] 3102 | 3103 | [[package]] 3104 | name = "treediff" 3105 | version = "3.0.2" 3106 | source = "registry+https://github.com/rust-lang/crates.io-index" 3107 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3108 | dependencies = [ 3109 | "serde_json", 3110 | ] 3111 | 3112 | [[package]] 3113 | name = "typenum" 3114 | version = "1.15.0" 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" 3116 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3117 | 3118 | [[package]] 3119 | name = "ucd-trie" 3120 | version = "0.1.5" 3121 | source = "registry+https://github.com/rust-lang/crates.io-index" 3122 | checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 3123 | 3124 | [[package]] 3125 | name = "unicode-bidi" 3126 | version = "0.3.8" 3127 | source = "registry+https://github.com/rust-lang/crates.io-index" 3128 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3129 | 3130 | [[package]] 3131 | name = "unicode-ident" 3132 | version = "1.0.3" 3133 | source = "registry+https://github.com/rust-lang/crates.io-index" 3134 | checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 3135 | 3136 | [[package]] 3137 | name = "unicode-normalization" 3138 | version = "0.1.21" 3139 | source = "registry+https://github.com/rust-lang/crates.io-index" 3140 | checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 3141 | dependencies = [ 3142 | "tinyvec", 3143 | ] 3144 | 3145 | [[package]] 3146 | name = "unicode-segmentation" 3147 | version = "1.9.0" 3148 | source = "registry+https://github.com/rust-lang/crates.io-index" 3149 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 3150 | 3151 | [[package]] 3152 | name = "url" 3153 | version = "2.3.1" 3154 | source = "registry+https://github.com/rust-lang/crates.io-index" 3155 | checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3156 | dependencies = [ 3157 | "form_urlencoded", 3158 | "idna", 3159 | "percent-encoding", 3160 | "serde", 3161 | ] 3162 | 3163 | [[package]] 3164 | name = "utf-8" 3165 | version = "0.7.6" 3166 | source = "registry+https://github.com/rust-lang/crates.io-index" 3167 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3168 | 3169 | [[package]] 3170 | name = "uuid" 3171 | version = "0.8.2" 3172 | source = "registry+https://github.com/rust-lang/crates.io-index" 3173 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3174 | 3175 | [[package]] 3176 | name = "uuid" 3177 | version = "1.1.2" 3178 | source = "registry+https://github.com/rust-lang/crates.io-index" 3179 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3180 | dependencies = [ 3181 | "getrandom 0.2.7", 3182 | ] 3183 | 3184 | [[package]] 3185 | name = "valuable" 3186 | version = "0.1.0" 3187 | source = "registry+https://github.com/rust-lang/crates.io-index" 3188 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3189 | 3190 | [[package]] 3191 | name = "vcpkg" 3192 | version = "0.2.15" 3193 | source = "registry+https://github.com/rust-lang/crates.io-index" 3194 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3195 | 3196 | [[package]] 3197 | name = "version-compare" 3198 | version = "0.0.11" 3199 | source = "registry+https://github.com/rust-lang/crates.io-index" 3200 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3201 | 3202 | [[package]] 3203 | name = "version-compare" 3204 | version = "0.1.0" 3205 | source = "registry+https://github.com/rust-lang/crates.io-index" 3206 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" 3207 | 3208 | [[package]] 3209 | name = "version_check" 3210 | version = "0.9.4" 3211 | source = "registry+https://github.com/rust-lang/crates.io-index" 3212 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3213 | 3214 | [[package]] 3215 | name = "vswhom" 3216 | version = "0.1.0" 3217 | source = "registry+https://github.com/rust-lang/crates.io-index" 3218 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 3219 | dependencies = [ 3220 | "libc", 3221 | "vswhom-sys", 3222 | ] 3223 | 3224 | [[package]] 3225 | name = "vswhom-sys" 3226 | version = "0.1.1" 3227 | source = "registry+https://github.com/rust-lang/crates.io-index" 3228 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39" 3229 | dependencies = [ 3230 | "cc", 3231 | "libc", 3232 | ] 3233 | 3234 | [[package]] 3235 | name = "waker-fn" 3236 | version = "1.1.0" 3237 | source = "registry+https://github.com/rust-lang/crates.io-index" 3238 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3239 | 3240 | [[package]] 3241 | name = "walkdir" 3242 | version = "2.3.2" 3243 | source = "registry+https://github.com/rust-lang/crates.io-index" 3244 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3245 | dependencies = [ 3246 | "same-file", 3247 | "winapi", 3248 | "winapi-util", 3249 | ] 3250 | 3251 | [[package]] 3252 | name = "wasi" 3253 | version = "0.9.0+wasi-snapshot-preview1" 3254 | source = "registry+https://github.com/rust-lang/crates.io-index" 3255 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3256 | 3257 | [[package]] 3258 | name = "wasi" 3259 | version = "0.11.0+wasi-snapshot-preview1" 3260 | source = "registry+https://github.com/rust-lang/crates.io-index" 3261 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3262 | 3263 | [[package]] 3264 | name = "wasm-bindgen" 3265 | version = "0.2.82" 3266 | source = "registry+https://github.com/rust-lang/crates.io-index" 3267 | checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 3268 | dependencies = [ 3269 | "cfg-if", 3270 | "wasm-bindgen-macro", 3271 | ] 3272 | 3273 | [[package]] 3274 | name = "wasm-bindgen-backend" 3275 | version = "0.2.82" 3276 | source = "registry+https://github.com/rust-lang/crates.io-index" 3277 | checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 3278 | dependencies = [ 3279 | "bumpalo", 3280 | "log", 3281 | "once_cell", 3282 | "proc-macro2", 3283 | "quote", 3284 | "syn", 3285 | "wasm-bindgen-shared", 3286 | ] 3287 | 3288 | [[package]] 3289 | name = "wasm-bindgen-futures" 3290 | version = "0.4.32" 3291 | source = "registry+https://github.com/rust-lang/crates.io-index" 3292 | checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad" 3293 | dependencies = [ 3294 | "cfg-if", 3295 | "js-sys", 3296 | "wasm-bindgen", 3297 | "web-sys", 3298 | ] 3299 | 3300 | [[package]] 3301 | name = "wasm-bindgen-macro" 3302 | version = "0.2.82" 3303 | source = "registry+https://github.com/rust-lang/crates.io-index" 3304 | checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 3305 | dependencies = [ 3306 | "quote", 3307 | "wasm-bindgen-macro-support", 3308 | ] 3309 | 3310 | [[package]] 3311 | name = "wasm-bindgen-macro-support" 3312 | version = "0.2.82" 3313 | source = "registry+https://github.com/rust-lang/crates.io-index" 3314 | checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 3315 | dependencies = [ 3316 | "proc-macro2", 3317 | "quote", 3318 | "syn", 3319 | "wasm-bindgen-backend", 3320 | "wasm-bindgen-shared", 3321 | ] 3322 | 3323 | [[package]] 3324 | name = "wasm-bindgen-shared" 3325 | version = "0.2.82" 3326 | source = "registry+https://github.com/rust-lang/crates.io-index" 3327 | checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 3328 | 3329 | [[package]] 3330 | name = "web-sys" 3331 | version = "0.3.59" 3332 | source = "registry+https://github.com/rust-lang/crates.io-index" 3333 | checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" 3334 | dependencies = [ 3335 | "js-sys", 3336 | "wasm-bindgen", 3337 | ] 3338 | 3339 | [[package]] 3340 | name = "webkit2gtk" 3341 | version = "0.18.0" 3342 | source = "registry+https://github.com/rust-lang/crates.io-index" 3343 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc" 3344 | dependencies = [ 3345 | "bitflags", 3346 | "cairo-rs", 3347 | "gdk", 3348 | "gdk-sys", 3349 | "gio", 3350 | "gio-sys", 3351 | "glib", 3352 | "glib-sys", 3353 | "gobject-sys", 3354 | "gtk", 3355 | "gtk-sys", 3356 | "javascriptcore-rs", 3357 | "libc", 3358 | "once_cell", 3359 | "soup2", 3360 | "webkit2gtk-sys", 3361 | ] 3362 | 3363 | [[package]] 3364 | name = "webkit2gtk-sys" 3365 | version = "0.18.0" 3366 | source = "registry+https://github.com/rust-lang/crates.io-index" 3367 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3368 | dependencies = [ 3369 | "atk-sys", 3370 | "bitflags", 3371 | "cairo-sys-rs", 3372 | "gdk-pixbuf-sys", 3373 | "gdk-sys", 3374 | "gio-sys", 3375 | "glib-sys", 3376 | "gobject-sys", 3377 | "gtk-sys", 3378 | "javascriptcore-rs-sys", 3379 | "libc", 3380 | "pango-sys", 3381 | "pkg-config", 3382 | "soup2-sys", 3383 | "system-deps 6.0.2", 3384 | ] 3385 | 3386 | [[package]] 3387 | name = "webview2-com" 3388 | version = "0.16.0" 3389 | source = "registry+https://github.com/rust-lang/crates.io-index" 3390 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f" 3391 | dependencies = [ 3392 | "webview2-com-macros", 3393 | "webview2-com-sys", 3394 | "windows 0.37.0", 3395 | "windows-implement", 3396 | ] 3397 | 3398 | [[package]] 3399 | name = "webview2-com-macros" 3400 | version = "0.6.0" 3401 | source = "registry+https://github.com/rust-lang/crates.io-index" 3402 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3403 | dependencies = [ 3404 | "proc-macro2", 3405 | "quote", 3406 | "syn", 3407 | ] 3408 | 3409 | [[package]] 3410 | name = "webview2-com-sys" 3411 | version = "0.16.0" 3412 | source = "registry+https://github.com/rust-lang/crates.io-index" 3413 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1" 3414 | dependencies = [ 3415 | "regex", 3416 | "serde", 3417 | "serde_json", 3418 | "thiserror", 3419 | "windows 0.37.0", 3420 | "windows-bindgen", 3421 | ] 3422 | 3423 | [[package]] 3424 | name = "wildmatch" 3425 | version = "2.1.1" 3426 | source = "registry+https://github.com/rust-lang/crates.io-index" 3427 | checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86" 3428 | 3429 | [[package]] 3430 | name = "winapi" 3431 | version = "0.3.9" 3432 | source = "registry+https://github.com/rust-lang/crates.io-index" 3433 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3434 | dependencies = [ 3435 | "winapi-i686-pc-windows-gnu", 3436 | "winapi-x86_64-pc-windows-gnu", 3437 | ] 3438 | 3439 | [[package]] 3440 | name = "winapi-i686-pc-windows-gnu" 3441 | version = "0.4.0" 3442 | source = "registry+https://github.com/rust-lang/crates.io-index" 3443 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3444 | 3445 | [[package]] 3446 | name = "winapi-util" 3447 | version = "0.1.5" 3448 | source = "registry+https://github.com/rust-lang/crates.io-index" 3449 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3450 | dependencies = [ 3451 | "winapi", 3452 | ] 3453 | 3454 | [[package]] 3455 | name = "winapi-x86_64-pc-windows-gnu" 3456 | version = "0.4.0" 3457 | source = "registry+https://github.com/rust-lang/crates.io-index" 3458 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3459 | 3460 | [[package]] 3461 | name = "window-shadows" 3462 | version = "0.1.3" 3463 | source = "registry+https://github.com/rust-lang/crates.io-index" 3464 | checksum = "796156ad1a67853e927727809bb6138ddc1f19ebced0dc976c0d109d5e2576f7" 3465 | dependencies = [ 3466 | "cocoa", 3467 | "objc", 3468 | "raw-window-handle", 3469 | "windows-sys", 3470 | ] 3471 | 3472 | [[package]] 3473 | name = "window-vibrancy" 3474 | version = "0.1.3" 3475 | source = "registry+https://github.com/rust-lang/crates.io-index" 3476 | checksum = "0b66a7f578d164c3f53425ecb73241246ed56a7c3383a15e741684c949a88c86" 3477 | dependencies = [ 3478 | "cocoa", 3479 | "objc", 3480 | "raw-window-handle", 3481 | "windows-sys", 3482 | ] 3483 | 3484 | [[package]] 3485 | name = "windows" 3486 | version = "0.24.0" 3487 | source = "registry+https://github.com/rust-lang/crates.io-index" 3488 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944" 3489 | dependencies = [ 3490 | "windows_i686_gnu 0.24.0", 3491 | "windows_i686_msvc 0.24.0", 3492 | "windows_x86_64_gnu 0.24.0", 3493 | "windows_x86_64_msvc 0.24.0", 3494 | ] 3495 | 3496 | [[package]] 3497 | name = "windows" 3498 | version = "0.32.0" 3499 | source = "registry+https://github.com/rust-lang/crates.io-index" 3500 | checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec" 3501 | dependencies = [ 3502 | "windows_aarch64_msvc 0.32.0", 3503 | "windows_i686_gnu 0.32.0", 3504 | "windows_i686_msvc 0.32.0", 3505 | "windows_x86_64_gnu 0.32.0", 3506 | "windows_x86_64_msvc 0.32.0", 3507 | ] 3508 | 3509 | [[package]] 3510 | name = "windows" 3511 | version = "0.37.0" 3512 | source = "registry+https://github.com/rust-lang/crates.io-index" 3513 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3514 | dependencies = [ 3515 | "windows-implement", 3516 | "windows_aarch64_msvc 0.37.0", 3517 | "windows_i686_gnu 0.37.0", 3518 | "windows_i686_msvc 0.37.0", 3519 | "windows_x86_64_gnu 0.37.0", 3520 | "windows_x86_64_msvc 0.37.0", 3521 | ] 3522 | 3523 | [[package]] 3524 | name = "windows-bindgen" 3525 | version = "0.37.0" 3526 | source = "registry+https://github.com/rust-lang/crates.io-index" 3527 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8" 3528 | dependencies = [ 3529 | "windows-metadata", 3530 | "windows-tokens", 3531 | ] 3532 | 3533 | [[package]] 3534 | name = "windows-implement" 3535 | version = "0.37.0" 3536 | source = "registry+https://github.com/rust-lang/crates.io-index" 3537 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14" 3538 | dependencies = [ 3539 | "syn", 3540 | "windows-tokens", 3541 | ] 3542 | 3543 | [[package]] 3544 | name = "windows-metadata" 3545 | version = "0.37.0" 3546 | source = "registry+https://github.com/rust-lang/crates.io-index" 3547 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463" 3548 | 3549 | [[package]] 3550 | name = "windows-sys" 3551 | version = "0.36.1" 3552 | source = "registry+https://github.com/rust-lang/crates.io-index" 3553 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3554 | dependencies = [ 3555 | "windows_aarch64_msvc 0.36.1", 3556 | "windows_i686_gnu 0.36.1", 3557 | "windows_i686_msvc 0.36.1", 3558 | "windows_x86_64_gnu 0.36.1", 3559 | "windows_x86_64_msvc 0.36.1", 3560 | ] 3561 | 3562 | [[package]] 3563 | name = "windows-tokens" 3564 | version = "0.37.0" 3565 | source = "registry+https://github.com/rust-lang/crates.io-index" 3566 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169" 3567 | 3568 | [[package]] 3569 | name = "windows_aarch64_msvc" 3570 | version = "0.32.0" 3571 | source = "registry+https://github.com/rust-lang/crates.io-index" 3572 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" 3573 | 3574 | [[package]] 3575 | name = "windows_aarch64_msvc" 3576 | version = "0.36.1" 3577 | source = "registry+https://github.com/rust-lang/crates.io-index" 3578 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3579 | 3580 | [[package]] 3581 | name = "windows_aarch64_msvc" 3582 | version = "0.37.0" 3583 | source = "registry+https://github.com/rust-lang/crates.io-index" 3584 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3585 | 3586 | [[package]] 3587 | name = "windows_i686_gnu" 3588 | version = "0.24.0" 3589 | source = "registry+https://github.com/rust-lang/crates.io-index" 3590 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd" 3591 | 3592 | [[package]] 3593 | name = "windows_i686_gnu" 3594 | version = "0.32.0" 3595 | source = "registry+https://github.com/rust-lang/crates.io-index" 3596 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" 3597 | 3598 | [[package]] 3599 | name = "windows_i686_gnu" 3600 | version = "0.36.1" 3601 | source = "registry+https://github.com/rust-lang/crates.io-index" 3602 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3603 | 3604 | [[package]] 3605 | name = "windows_i686_gnu" 3606 | version = "0.37.0" 3607 | source = "registry+https://github.com/rust-lang/crates.io-index" 3608 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3609 | 3610 | [[package]] 3611 | name = "windows_i686_msvc" 3612 | version = "0.24.0" 3613 | source = "registry+https://github.com/rust-lang/crates.io-index" 3614 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6" 3615 | 3616 | [[package]] 3617 | name = "windows_i686_msvc" 3618 | version = "0.32.0" 3619 | source = "registry+https://github.com/rust-lang/crates.io-index" 3620 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" 3621 | 3622 | [[package]] 3623 | name = "windows_i686_msvc" 3624 | version = "0.36.1" 3625 | source = "registry+https://github.com/rust-lang/crates.io-index" 3626 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3627 | 3628 | [[package]] 3629 | name = "windows_i686_msvc" 3630 | version = "0.37.0" 3631 | source = "registry+https://github.com/rust-lang/crates.io-index" 3632 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3633 | 3634 | [[package]] 3635 | name = "windows_x86_64_gnu" 3636 | version = "0.24.0" 3637 | source = "registry+https://github.com/rust-lang/crates.io-index" 3638 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4" 3639 | 3640 | [[package]] 3641 | name = "windows_x86_64_gnu" 3642 | version = "0.32.0" 3643 | source = "registry+https://github.com/rust-lang/crates.io-index" 3644 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" 3645 | 3646 | [[package]] 3647 | name = "windows_x86_64_gnu" 3648 | version = "0.36.1" 3649 | source = "registry+https://github.com/rust-lang/crates.io-index" 3650 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3651 | 3652 | [[package]] 3653 | name = "windows_x86_64_gnu" 3654 | version = "0.37.0" 3655 | source = "registry+https://github.com/rust-lang/crates.io-index" 3656 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3657 | 3658 | [[package]] 3659 | name = "windows_x86_64_msvc" 3660 | version = "0.24.0" 3661 | source = "registry+https://github.com/rust-lang/crates.io-index" 3662 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399" 3663 | 3664 | [[package]] 3665 | name = "windows_x86_64_msvc" 3666 | version = "0.32.0" 3667 | source = "registry+https://github.com/rust-lang/crates.io-index" 3668 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" 3669 | 3670 | [[package]] 3671 | name = "windows_x86_64_msvc" 3672 | version = "0.36.1" 3673 | source = "registry+https://github.com/rust-lang/crates.io-index" 3674 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3675 | 3676 | [[package]] 3677 | name = "windows_x86_64_msvc" 3678 | version = "0.37.0" 3679 | source = "registry+https://github.com/rust-lang/crates.io-index" 3680 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3681 | 3682 | [[package]] 3683 | name = "winreg" 3684 | version = "0.10.1" 3685 | source = "registry+https://github.com/rust-lang/crates.io-index" 3686 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3687 | dependencies = [ 3688 | "winapi", 3689 | ] 3690 | 3691 | [[package]] 3692 | name = "winres" 3693 | version = "0.1.12" 3694 | source = "registry+https://github.com/rust-lang/crates.io-index" 3695 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3696 | dependencies = [ 3697 | "toml", 3698 | ] 3699 | 3700 | [[package]] 3701 | name = "winrt-notification" 3702 | version = "0.5.1" 3703 | source = "registry+https://github.com/rust-lang/crates.io-index" 3704 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4" 3705 | dependencies = [ 3706 | "strum", 3707 | "windows 0.24.0", 3708 | "xml-rs", 3709 | ] 3710 | 3711 | [[package]] 3712 | name = "wry" 3713 | version = "0.19.0" 3714 | source = "registry+https://github.com/rust-lang/crates.io-index" 3715 | checksum = "ce19dddbd3ce01dc8f14eb6d4c8f914123bf8379aaa838f6da4f981ff7104a3f" 3716 | dependencies = [ 3717 | "block", 3718 | "cocoa", 3719 | "core-graphics", 3720 | "gdk", 3721 | "gio", 3722 | "glib", 3723 | "gtk", 3724 | "http", 3725 | "jni 0.18.0", 3726 | "libc", 3727 | "log", 3728 | "objc", 3729 | "objc_id", 3730 | "once_cell", 3731 | "serde", 3732 | "serde_json", 3733 | "tao", 3734 | "thiserror", 3735 | "url", 3736 | "webkit2gtk", 3737 | "webkit2gtk-sys", 3738 | "webview2-com", 3739 | "windows 0.37.0", 3740 | "windows-implement", 3741 | ] 3742 | 3743 | [[package]] 3744 | name = "x11" 3745 | version = "2.20.0" 3746 | source = "registry+https://github.com/rust-lang/crates.io-index" 3747 | checksum = "f7ae97874a928d821b061fce3d1fc52f08071dd53c89a6102bc06efcac3b2908" 3748 | dependencies = [ 3749 | "libc", 3750 | "pkg-config", 3751 | ] 3752 | 3753 | [[package]] 3754 | name = "x11-dl" 3755 | version = "2.20.0" 3756 | source = "registry+https://github.com/rust-lang/crates.io-index" 3757 | checksum = "0c83627bc137605acc00bb399c7b908ef460b621fc37c953db2b09f88c449ea6" 3758 | dependencies = [ 3759 | "lazy_static", 3760 | "libc", 3761 | "pkg-config", 3762 | ] 3763 | 3764 | [[package]] 3765 | name = "xattr" 3766 | version = "0.2.3" 3767 | source = "registry+https://github.com/rust-lang/crates.io-index" 3768 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3769 | dependencies = [ 3770 | "libc", 3771 | ] 3772 | 3773 | [[package]] 3774 | name = "xml-rs" 3775 | version = "0.8.4" 3776 | source = "registry+https://github.com/rust-lang/crates.io-index" 3777 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3778 | --------------------------------------------------------------------------------