├── src ├── declarations.d.ts ├── logo.png ├── main.tsx ├── index.css ├── App.css └── App.tsx ├── src-tauri ├── build.rs ├── .gitignore ├── 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 ├── src │ └── main.rs ├── Cargo.toml ├── tauri.conf.json └── Cargo.lock ├── .vscode └── extensions.json ├── index.html ├── .editorconfig ├── .gitignore ├── tsconfig.json ├── README.md └── package.json /src/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["tauri-apps.tauri-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src/logo.png -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrhie/tauri-react-parcel-template/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My Parcel App 5 | 6 | 7 |
8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import App from './App'; 4 | import './index.css'; 5 | 6 | ReactDOM.createRoot(document.getElementById('app')!).render( 7 | 8 | 9 | 10 | ); 11 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | fn main() { 7 | tauri::Builder::default() 8 | .run(tauri::generate_context!()) 9 | .expect("error while running tauri application"); 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #parcel 2 | .parcel-cache 3 | dist 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | pnpm-debug.log* 12 | lerna-debug.log* 13 | 14 | node_modules 15 | dist 16 | dist-ssr 17 | *.local 18 | 19 | # Editor directories and files 20 | .vscode/* 21 | !.vscode/extensions.json 22 | .idea 23 | .DS_Store 24 | *.suo 25 | *.ntvs* 26 | *.njsproj 27 | *.sln 28 | *.sw? -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "useDefineForClassFields": true, 5 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 6 | "allowJs": false, 7 | "skipLibCheck": true, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react-jsx" 18 | }, 19 | "include": ["src"] 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tauri-react-parcel-template 2 | 3 | Tauri starter pack using parcel as bundler 4 | 5 | ## Requirements: 6 | 7 | [here](https://tauri.app/v1/guides/getting-started/prerequisites) 8 | 9 | ## Instructions 10 | 11 | 1- install dependencies 12 | 13 | ```sh 14 | #npm 15 | npm install 16 | 17 | #yarn 18 | yarn 19 | ``` 20 | 21 | 2- Run the App in development mode: 22 | 23 | ```sh 24 | #npm 25 | npm run tauri:dev 26 | 27 | #yarn 28 | yarn tauri:dev 29 | ``` 30 | 31 | note that the first run will take time as tauri download and compile dependencies. 32 | 33 | ## Production 34 | 35 | run: 36 | 37 | ```sh 38 | #npm 39 | npm run tauri:build 40 | 41 | #yarn 42 | yarn tauri:build 43 | ``` 44 | 45 | ## Note: 46 | 47 | tested on: 48 | 49 | - windows 10 50 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | 40 | button { 41 | font-size: calc(10px + 2vmin); 42 | } 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tauri-react-parcel-template", 3 | "version": "0.0.1", 4 | "description": "build tauri apps with parcel bundler ⚡", 5 | "main": "index.js", 6 | "scripts": { 7 | "tauri": "tauri", 8 | "tauri:dev": "tauri dev", 9 | "tauri:build": "tauri build", 10 | "dev": "parcel index.html", 11 | "build": "parcel build" 12 | }, 13 | "keywords": [ 14 | "tauri", 15 | "desktop", 16 | "react", 17 | "parcel", 18 | "rust", 19 | "windows", 20 | "macos", 21 | "linux" 22 | ], 23 | "author": "Henry Ansah", 24 | "license": "ISC", 25 | "devDependencies": { 26 | "@tauri-apps/cli": "^1.1.1", 27 | "parcel": "^2.7.0", 28 | "process": "^0.11.10" 29 | }, 30 | "dependencies": { 31 | "@types/react": "^18.0.21", 32 | "@types/react-dom": "^18.0.6", 33 | "react": "^18.2.0", 34 | "react-dom": "^18.2.0" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "app" 3 | version = "0.1.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | default-run = "app" 9 | edition = "2021" 10 | rust-version = "1.57" 11 | 12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 | 14 | [build-dependencies] 15 | tauri-build = { version = "1.1.1", features = [] } 16 | 17 | [dependencies] 18 | serde_json = "1.0" 19 | serde = { version = "1.0", features = ["derive"] } 20 | tauri = { version = "1.1.1", features = ["api-all"] } 21 | 22 | [features] 23 | # by default Tauri runs in production mode 24 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL 25 | default = [ "custom-protocol" ] 26 | # this feature is used for production builds where `devPath` points to the filesystem 27 | # DO NOT remove this 28 | custom-protocol = [ "tauri/custom-protocol" ] 29 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { useState } from 'react'; 3 | import './App.css'; 4 | import Logo from './logo.png'; 5 | 6 | function App() { 7 | const [count, setCount] = useState(0); 8 | 9 | return ( 10 |
11 |
12 | logo 13 |

Hello Parcel + React!

14 |

15 | 18 |

19 |

20 | Edit App.tsx and save to test HMR updates. 21 |

22 |

23 | 28 | Learn React 29 | 30 | {' | '} 31 | 36 | Parcel Docs 37 | 38 |

39 |
40 |
41 | ); 42 | } 43 | 44 | export default App; 45 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "../node_modules/@tauri-apps/cli/schema.json", 3 | "build": { 4 | "beforeBuildCommand": "npm run build", 5 | "beforeDevCommand": "npm run dev", 6 | "devPath": "http://localhost:1234", 7 | "distDir": "../src" 8 | }, 9 | "package": { 10 | "productName": "tauri-react-parcel-template", 11 | "version": "0.1.0" 12 | }, 13 | "tauri": { 14 | "allowlist": { 15 | "all": true 16 | }, 17 | "bundle": { 18 | "active": true, 19 | "category": "DeveloperTool", 20 | "copyright": "", 21 | "deb": { 22 | "depends": [] 23 | }, 24 | "externalBin": [], 25 | "icon": [ 26 | "icons/32x32.png", 27 | "icons/128x128.png", 28 | "icons/128x128@2x.png", 29 | "icons/icon.icns", 30 | "icons/icon.ico" 31 | ], 32 | "identifier": "com.tauri.dev", 33 | "longDescription": "", 34 | "macOS": { 35 | "entitlements": null, 36 | "exceptionDomain": "", 37 | "frameworks": [], 38 | "providerShortName": null, 39 | "signingIdentity": null 40 | }, 41 | "resources": [], 42 | "shortDescription": "", 43 | "targets": "all", 44 | "windows": { 45 | "certificateThumbprint": null, 46 | "digestAlgorithm": "sha256", 47 | "timestampUrl": "" 48 | } 49 | }, 50 | "security": { 51 | "csp": null 52 | }, 53 | "updater": { 54 | "active": false 55 | }, 56 | "windows": [ 57 | { 58 | "fullscreen": false, 59 | "height": 600, 60 | "resizable": true, 61 | "title": "tauri-react-parcel-template", 62 | "width": 800 63 | } 64 | ] 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /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.4" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 31 | 32 | [[package]] 33 | name = "alloc-stdlib" 34 | version = "0.2.2" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 37 | dependencies = [ 38 | "alloc-no-stdlib", 39 | ] 40 | 41 | [[package]] 42 | name = "anyhow" 43 | version = "1.0.65" 44 | source = "registry+https://github.com/rust-lang/crates.io-index" 45 | checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" 46 | 47 | [[package]] 48 | name = "app" 49 | version = "0.1.0" 50 | dependencies = [ 51 | "serde", 52 | "serde_json", 53 | "tauri", 54 | "tauri-build", 55 | ] 56 | 57 | [[package]] 58 | name = "atk" 59 | version = "0.15.1" 60 | source = "registry+https://github.com/rust-lang/crates.io-index" 61 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 62 | dependencies = [ 63 | "atk-sys", 64 | "bitflags", 65 | "glib", 66 | "libc", 67 | ] 68 | 69 | [[package]] 70 | name = "atk-sys" 71 | version = "0.15.1" 72 | source = "registry+https://github.com/rust-lang/crates.io-index" 73 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 74 | dependencies = [ 75 | "glib-sys", 76 | "gobject-sys", 77 | "libc", 78 | "system-deps 6.0.2", 79 | ] 80 | 81 | [[package]] 82 | name = "attohttpc" 83 | version = "0.22.0" 84 | source = "registry+https://github.com/rust-lang/crates.io-index" 85 | checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7" 86 | dependencies = [ 87 | "flate2", 88 | "http", 89 | "log", 90 | "native-tls", 91 | "serde", 92 | "serde_json", 93 | "serde_urlencoded", 94 | "url", 95 | ] 96 | 97 | [[package]] 98 | name = "autocfg" 99 | version = "1.1.0" 100 | source = "registry+https://github.com/rust-lang/crates.io-index" 101 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 102 | 103 | [[package]] 104 | name = "base64" 105 | version = "0.13.0" 106 | source = "registry+https://github.com/rust-lang/crates.io-index" 107 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 108 | 109 | [[package]] 110 | name = "bitflags" 111 | version = "1.3.2" 112 | source = "registry+https://github.com/rust-lang/crates.io-index" 113 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 114 | 115 | [[package]] 116 | name = "block" 117 | version = "0.1.6" 118 | source = "registry+https://github.com/rust-lang/crates.io-index" 119 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 120 | 121 | [[package]] 122 | name = "block-buffer" 123 | version = "0.10.3" 124 | source = "registry+https://github.com/rust-lang/crates.io-index" 125 | checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 126 | dependencies = [ 127 | "generic-array", 128 | ] 129 | 130 | [[package]] 131 | name = "brotli" 132 | version = "3.3.4" 133 | source = "registry+https://github.com/rust-lang/crates.io-index" 134 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 135 | dependencies = [ 136 | "alloc-no-stdlib", 137 | "alloc-stdlib", 138 | "brotli-decompressor", 139 | ] 140 | 141 | [[package]] 142 | name = "brotli-decompressor" 143 | version = "2.3.2" 144 | source = "registry+https://github.com/rust-lang/crates.io-index" 145 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 146 | dependencies = [ 147 | "alloc-no-stdlib", 148 | "alloc-stdlib", 149 | ] 150 | 151 | [[package]] 152 | name = "bstr" 153 | version = "0.2.17" 154 | source = "registry+https://github.com/rust-lang/crates.io-index" 155 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 156 | dependencies = [ 157 | "memchr", 158 | ] 159 | 160 | [[package]] 161 | name = "bumpalo" 162 | version = "3.11.0" 163 | source = "registry+https://github.com/rust-lang/crates.io-index" 164 | checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" 165 | 166 | [[package]] 167 | name = "bytemuck" 168 | version = "1.12.1" 169 | source = "registry+https://github.com/rust-lang/crates.io-index" 170 | checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da" 171 | 172 | [[package]] 173 | name = "byteorder" 174 | version = "1.4.3" 175 | source = "registry+https://github.com/rust-lang/crates.io-index" 176 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 177 | 178 | [[package]] 179 | name = "bytes" 180 | version = "1.2.1" 181 | source = "registry+https://github.com/rust-lang/crates.io-index" 182 | checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 183 | 184 | [[package]] 185 | name = "cairo-rs" 186 | version = "0.15.12" 187 | source = "registry+https://github.com/rust-lang/crates.io-index" 188 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 189 | dependencies = [ 190 | "bitflags", 191 | "cairo-sys-rs", 192 | "glib", 193 | "libc", 194 | "thiserror", 195 | ] 196 | 197 | [[package]] 198 | name = "cairo-sys-rs" 199 | version = "0.15.1" 200 | source = "registry+https://github.com/rust-lang/crates.io-index" 201 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 202 | dependencies = [ 203 | "glib-sys", 204 | "libc", 205 | "system-deps 6.0.2", 206 | ] 207 | 208 | [[package]] 209 | name = "cargo_toml" 210 | version = "0.11.8" 211 | source = "registry+https://github.com/rust-lang/crates.io-index" 212 | checksum = "e72c3ff59e3b7d24630206bb63a73af65da4ed5df1f76ee84dfafb9fee2ba60e" 213 | dependencies = [ 214 | "serde", 215 | "serde_derive", 216 | "toml", 217 | ] 218 | 219 | [[package]] 220 | name = "cc" 221 | version = "1.0.73" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 224 | 225 | [[package]] 226 | name = "cesu8" 227 | version = "1.1.0" 228 | source = "registry+https://github.com/rust-lang/crates.io-index" 229 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 230 | 231 | [[package]] 232 | name = "cfb" 233 | version = "0.6.1" 234 | source = "registry+https://github.com/rust-lang/crates.io-index" 235 | checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c" 236 | dependencies = [ 237 | "byteorder", 238 | "uuid 0.8.2", 239 | ] 240 | 241 | [[package]] 242 | name = "cfg-expr" 243 | version = "0.9.1" 244 | source = "registry+https://github.com/rust-lang/crates.io-index" 245 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 246 | dependencies = [ 247 | "smallvec", 248 | ] 249 | 250 | [[package]] 251 | name = "cfg-expr" 252 | version = "0.10.3" 253 | source = "registry+https://github.com/rust-lang/crates.io-index" 254 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" 255 | dependencies = [ 256 | "smallvec", 257 | ] 258 | 259 | [[package]] 260 | name = "cfg-if" 261 | version = "1.0.0" 262 | source = "registry+https://github.com/rust-lang/crates.io-index" 263 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 264 | 265 | [[package]] 266 | name = "cocoa" 267 | version = "0.24.0" 268 | source = "registry+https://github.com/rust-lang/crates.io-index" 269 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832" 270 | dependencies = [ 271 | "bitflags", 272 | "block", 273 | "cocoa-foundation", 274 | "core-foundation", 275 | "core-graphics", 276 | "foreign-types", 277 | "libc", 278 | "objc", 279 | ] 280 | 281 | [[package]] 282 | name = "cocoa-foundation" 283 | version = "0.1.0" 284 | source = "registry+https://github.com/rust-lang/crates.io-index" 285 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 286 | dependencies = [ 287 | "bitflags", 288 | "block", 289 | "core-foundation", 290 | "core-graphics-types", 291 | "foreign-types", 292 | "libc", 293 | "objc", 294 | ] 295 | 296 | [[package]] 297 | name = "color_quant" 298 | version = "1.1.0" 299 | source = "registry+https://github.com/rust-lang/crates.io-index" 300 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 301 | 302 | [[package]] 303 | name = "combine" 304 | version = "4.6.6" 305 | source = "registry+https://github.com/rust-lang/crates.io-index" 306 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 307 | dependencies = [ 308 | "bytes", 309 | "memchr", 310 | ] 311 | 312 | [[package]] 313 | name = "convert_case" 314 | version = "0.4.0" 315 | source = "registry+https://github.com/rust-lang/crates.io-index" 316 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 317 | 318 | [[package]] 319 | name = "core-foundation" 320 | version = "0.9.3" 321 | source = "registry+https://github.com/rust-lang/crates.io-index" 322 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 323 | dependencies = [ 324 | "core-foundation-sys", 325 | "libc", 326 | ] 327 | 328 | [[package]] 329 | name = "core-foundation-sys" 330 | version = "0.8.3" 331 | source = "registry+https://github.com/rust-lang/crates.io-index" 332 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 333 | 334 | [[package]] 335 | name = "core-graphics" 336 | version = "0.22.3" 337 | source = "registry+https://github.com/rust-lang/crates.io-index" 338 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 339 | dependencies = [ 340 | "bitflags", 341 | "core-foundation", 342 | "core-graphics-types", 343 | "foreign-types", 344 | "libc", 345 | ] 346 | 347 | [[package]] 348 | name = "core-graphics-types" 349 | version = "0.1.1" 350 | source = "registry+https://github.com/rust-lang/crates.io-index" 351 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 352 | dependencies = [ 353 | "bitflags", 354 | "core-foundation", 355 | "foreign-types", 356 | "libc", 357 | ] 358 | 359 | [[package]] 360 | name = "cpufeatures" 361 | version = "0.2.5" 362 | source = "registry+https://github.com/rust-lang/crates.io-index" 363 | checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 364 | dependencies = [ 365 | "libc", 366 | ] 367 | 368 | [[package]] 369 | name = "crc32fast" 370 | version = "1.3.2" 371 | source = "registry+https://github.com/rust-lang/crates.io-index" 372 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 373 | dependencies = [ 374 | "cfg-if", 375 | ] 376 | 377 | [[package]] 378 | name = "crossbeam-channel" 379 | version = "0.5.6" 380 | source = "registry+https://github.com/rust-lang/crates.io-index" 381 | checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 382 | dependencies = [ 383 | "cfg-if", 384 | "crossbeam-utils", 385 | ] 386 | 387 | [[package]] 388 | name = "crossbeam-utils" 389 | version = "0.8.12" 390 | source = "registry+https://github.com/rust-lang/crates.io-index" 391 | checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" 392 | dependencies = [ 393 | "cfg-if", 394 | ] 395 | 396 | [[package]] 397 | name = "crypto-common" 398 | version = "0.1.6" 399 | source = "registry+https://github.com/rust-lang/crates.io-index" 400 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 401 | dependencies = [ 402 | "generic-array", 403 | "typenum", 404 | ] 405 | 406 | [[package]] 407 | name = "cssparser" 408 | version = "0.27.2" 409 | source = "registry+https://github.com/rust-lang/crates.io-index" 410 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 411 | dependencies = [ 412 | "cssparser-macros", 413 | "dtoa-short", 414 | "itoa 0.4.8", 415 | "matches", 416 | "phf 0.8.0", 417 | "proc-macro2", 418 | "quote", 419 | "smallvec", 420 | "syn", 421 | ] 422 | 423 | [[package]] 424 | name = "cssparser-macros" 425 | version = "0.6.0" 426 | source = "registry+https://github.com/rust-lang/crates.io-index" 427 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 428 | dependencies = [ 429 | "quote", 430 | "syn", 431 | ] 432 | 433 | [[package]] 434 | name = "ctor" 435 | version = "0.1.23" 436 | source = "registry+https://github.com/rust-lang/crates.io-index" 437 | checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 438 | dependencies = [ 439 | "quote", 440 | "syn", 441 | ] 442 | 443 | [[package]] 444 | name = "cty" 445 | version = "0.2.2" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 448 | 449 | [[package]] 450 | name = "darling" 451 | version = "0.13.4" 452 | source = "registry+https://github.com/rust-lang/crates.io-index" 453 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 454 | dependencies = [ 455 | "darling_core", 456 | "darling_macro", 457 | ] 458 | 459 | [[package]] 460 | name = "darling_core" 461 | version = "0.13.4" 462 | source = "registry+https://github.com/rust-lang/crates.io-index" 463 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 464 | dependencies = [ 465 | "fnv", 466 | "ident_case", 467 | "proc-macro2", 468 | "quote", 469 | "strsim", 470 | "syn", 471 | ] 472 | 473 | [[package]] 474 | name = "darling_macro" 475 | version = "0.13.4" 476 | source = "registry+https://github.com/rust-lang/crates.io-index" 477 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 478 | dependencies = [ 479 | "darling_core", 480 | "quote", 481 | "syn", 482 | ] 483 | 484 | [[package]] 485 | name = "dbus" 486 | version = "0.9.6" 487 | source = "registry+https://github.com/rust-lang/crates.io-index" 488 | checksum = "6f8bcdd56d2e5c4ed26a529c5a9029f5db8290d433497506f958eae3be148eb6" 489 | dependencies = [ 490 | "libc", 491 | "libdbus-sys", 492 | "winapi", 493 | ] 494 | 495 | [[package]] 496 | name = "deflate" 497 | version = "0.7.20" 498 | source = "registry+https://github.com/rust-lang/crates.io-index" 499 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4" 500 | dependencies = [ 501 | "adler32", 502 | "byteorder", 503 | ] 504 | 505 | [[package]] 506 | name = "derive_more" 507 | version = "0.99.17" 508 | source = "registry+https://github.com/rust-lang/crates.io-index" 509 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 510 | dependencies = [ 511 | "convert_case", 512 | "proc-macro2", 513 | "quote", 514 | "rustc_version 0.4.0", 515 | "syn", 516 | ] 517 | 518 | [[package]] 519 | name = "digest" 520 | version = "0.10.5" 521 | source = "registry+https://github.com/rust-lang/crates.io-index" 522 | checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" 523 | dependencies = [ 524 | "block-buffer", 525 | "crypto-common", 526 | ] 527 | 528 | [[package]] 529 | name = "dirs-next" 530 | version = "2.0.0" 531 | source = "registry+https://github.com/rust-lang/crates.io-index" 532 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 533 | dependencies = [ 534 | "cfg-if", 535 | "dirs-sys-next", 536 | ] 537 | 538 | [[package]] 539 | name = "dirs-sys-next" 540 | version = "0.1.2" 541 | source = "registry+https://github.com/rust-lang/crates.io-index" 542 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 543 | dependencies = [ 544 | "libc", 545 | "redox_users", 546 | "winapi", 547 | ] 548 | 549 | [[package]] 550 | name = "dispatch" 551 | version = "0.2.0" 552 | source = "registry+https://github.com/rust-lang/crates.io-index" 553 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 554 | 555 | [[package]] 556 | name = "dtoa" 557 | version = "0.4.8" 558 | source = "registry+https://github.com/rust-lang/crates.io-index" 559 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 560 | 561 | [[package]] 562 | name = "dtoa-short" 563 | version = "0.3.3" 564 | source = "registry+https://github.com/rust-lang/crates.io-index" 565 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 566 | dependencies = [ 567 | "dtoa", 568 | ] 569 | 570 | [[package]] 571 | name = "embed_plist" 572 | version = "1.2.2" 573 | source = "registry+https://github.com/rust-lang/crates.io-index" 574 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 575 | 576 | [[package]] 577 | name = "encoding_rs" 578 | version = "0.8.31" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 581 | dependencies = [ 582 | "cfg-if", 583 | ] 584 | 585 | [[package]] 586 | name = "fastrand" 587 | version = "1.8.0" 588 | source = "registry+https://github.com/rust-lang/crates.io-index" 589 | checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 590 | dependencies = [ 591 | "instant", 592 | ] 593 | 594 | [[package]] 595 | name = "field-offset" 596 | version = "0.3.4" 597 | source = "registry+https://github.com/rust-lang/crates.io-index" 598 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 599 | dependencies = [ 600 | "memoffset", 601 | "rustc_version 0.3.3", 602 | ] 603 | 604 | [[package]] 605 | name = "filetime" 606 | version = "0.2.17" 607 | source = "registry+https://github.com/rust-lang/crates.io-index" 608 | checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 609 | dependencies = [ 610 | "cfg-if", 611 | "libc", 612 | "redox_syscall", 613 | "windows-sys", 614 | ] 615 | 616 | [[package]] 617 | name = "flate2" 618 | version = "1.0.24" 619 | source = "registry+https://github.com/rust-lang/crates.io-index" 620 | checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 621 | dependencies = [ 622 | "crc32fast", 623 | "miniz_oxide", 624 | ] 625 | 626 | [[package]] 627 | name = "fnv" 628 | version = "1.0.7" 629 | source = "registry+https://github.com/rust-lang/crates.io-index" 630 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 631 | 632 | [[package]] 633 | name = "foreign-types" 634 | version = "0.3.2" 635 | source = "registry+https://github.com/rust-lang/crates.io-index" 636 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 637 | dependencies = [ 638 | "foreign-types-shared", 639 | ] 640 | 641 | [[package]] 642 | name = "foreign-types-shared" 643 | version = "0.1.1" 644 | source = "registry+https://github.com/rust-lang/crates.io-index" 645 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 646 | 647 | [[package]] 648 | name = "form_urlencoded" 649 | version = "1.1.0" 650 | source = "registry+https://github.com/rust-lang/crates.io-index" 651 | checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 652 | dependencies = [ 653 | "percent-encoding", 654 | ] 655 | 656 | [[package]] 657 | name = "futf" 658 | version = "0.1.5" 659 | source = "registry+https://github.com/rust-lang/crates.io-index" 660 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 661 | dependencies = [ 662 | "mac", 663 | "new_debug_unreachable", 664 | ] 665 | 666 | [[package]] 667 | name = "futures-channel" 668 | version = "0.3.24" 669 | source = "registry+https://github.com/rust-lang/crates.io-index" 670 | checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050" 671 | dependencies = [ 672 | "futures-core", 673 | ] 674 | 675 | [[package]] 676 | name = "futures-core" 677 | version = "0.3.24" 678 | source = "registry+https://github.com/rust-lang/crates.io-index" 679 | checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf" 680 | 681 | [[package]] 682 | name = "futures-executor" 683 | version = "0.3.24" 684 | source = "registry+https://github.com/rust-lang/crates.io-index" 685 | checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab" 686 | dependencies = [ 687 | "futures-core", 688 | "futures-task", 689 | "futures-util", 690 | ] 691 | 692 | [[package]] 693 | name = "futures-io" 694 | version = "0.3.24" 695 | source = "registry+https://github.com/rust-lang/crates.io-index" 696 | checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68" 697 | 698 | [[package]] 699 | name = "futures-macro" 700 | version = "0.3.24" 701 | source = "registry+https://github.com/rust-lang/crates.io-index" 702 | checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" 703 | dependencies = [ 704 | "proc-macro2", 705 | "quote", 706 | "syn", 707 | ] 708 | 709 | [[package]] 710 | name = "futures-task" 711 | version = "0.3.24" 712 | source = "registry+https://github.com/rust-lang/crates.io-index" 713 | checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1" 714 | 715 | [[package]] 716 | name = "futures-util" 717 | version = "0.3.24" 718 | source = "registry+https://github.com/rust-lang/crates.io-index" 719 | checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90" 720 | dependencies = [ 721 | "futures-core", 722 | "futures-macro", 723 | "futures-task", 724 | "pin-project-lite", 725 | "pin-utils", 726 | "slab", 727 | ] 728 | 729 | [[package]] 730 | name = "fxhash" 731 | version = "0.2.1" 732 | source = "registry+https://github.com/rust-lang/crates.io-index" 733 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 734 | dependencies = [ 735 | "byteorder", 736 | ] 737 | 738 | [[package]] 739 | name = "gdk" 740 | version = "0.15.4" 741 | source = "registry+https://github.com/rust-lang/crates.io-index" 742 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 743 | dependencies = [ 744 | "bitflags", 745 | "cairo-rs", 746 | "gdk-pixbuf", 747 | "gdk-sys", 748 | "gio", 749 | "glib", 750 | "libc", 751 | "pango", 752 | ] 753 | 754 | [[package]] 755 | name = "gdk-pixbuf" 756 | version = "0.15.11" 757 | source = "registry+https://github.com/rust-lang/crates.io-index" 758 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 759 | dependencies = [ 760 | "bitflags", 761 | "gdk-pixbuf-sys", 762 | "gio", 763 | "glib", 764 | "libc", 765 | ] 766 | 767 | [[package]] 768 | name = "gdk-pixbuf-sys" 769 | version = "0.15.10" 770 | source = "registry+https://github.com/rust-lang/crates.io-index" 771 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 772 | dependencies = [ 773 | "gio-sys", 774 | "glib-sys", 775 | "gobject-sys", 776 | "libc", 777 | "system-deps 6.0.2", 778 | ] 779 | 780 | [[package]] 781 | name = "gdk-sys" 782 | version = "0.15.1" 783 | source = "registry+https://github.com/rust-lang/crates.io-index" 784 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 785 | dependencies = [ 786 | "cairo-sys-rs", 787 | "gdk-pixbuf-sys", 788 | "gio-sys", 789 | "glib-sys", 790 | "gobject-sys", 791 | "libc", 792 | "pango-sys", 793 | "pkg-config", 794 | "system-deps 6.0.2", 795 | ] 796 | 797 | [[package]] 798 | name = "gdkx11-sys" 799 | version = "0.15.1" 800 | source = "registry+https://github.com/rust-lang/crates.io-index" 801 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 802 | dependencies = [ 803 | "gdk-sys", 804 | "glib-sys", 805 | "libc", 806 | "system-deps 6.0.2", 807 | "x11", 808 | ] 809 | 810 | [[package]] 811 | name = "generator" 812 | version = "0.7.1" 813 | source = "registry+https://github.com/rust-lang/crates.io-index" 814 | checksum = "cc184cace1cea8335047a471cc1da80f18acf8a76f3bab2028d499e328948ec7" 815 | dependencies = [ 816 | "cc", 817 | "libc", 818 | "log", 819 | "rustversion", 820 | "windows 0.32.0", 821 | ] 822 | 823 | [[package]] 824 | name = "generic-array" 825 | version = "0.14.6" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 828 | dependencies = [ 829 | "typenum", 830 | "version_check", 831 | ] 832 | 833 | [[package]] 834 | name = "getrandom" 835 | version = "0.1.16" 836 | source = "registry+https://github.com/rust-lang/crates.io-index" 837 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 838 | dependencies = [ 839 | "cfg-if", 840 | "libc", 841 | "wasi 0.9.0+wasi-snapshot-preview1", 842 | ] 843 | 844 | [[package]] 845 | name = "getrandom" 846 | version = "0.2.7" 847 | source = "registry+https://github.com/rust-lang/crates.io-index" 848 | checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 849 | dependencies = [ 850 | "cfg-if", 851 | "libc", 852 | "wasi 0.11.0+wasi-snapshot-preview1", 853 | ] 854 | 855 | [[package]] 856 | name = "gio" 857 | version = "0.15.12" 858 | source = "registry+https://github.com/rust-lang/crates.io-index" 859 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 860 | dependencies = [ 861 | "bitflags", 862 | "futures-channel", 863 | "futures-core", 864 | "futures-io", 865 | "gio-sys", 866 | "glib", 867 | "libc", 868 | "once_cell", 869 | "thiserror", 870 | ] 871 | 872 | [[package]] 873 | name = "gio-sys" 874 | version = "0.15.10" 875 | source = "registry+https://github.com/rust-lang/crates.io-index" 876 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 877 | dependencies = [ 878 | "glib-sys", 879 | "gobject-sys", 880 | "libc", 881 | "system-deps 6.0.2", 882 | "winapi", 883 | ] 884 | 885 | [[package]] 886 | name = "glib" 887 | version = "0.15.12" 888 | source = "registry+https://github.com/rust-lang/crates.io-index" 889 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 890 | dependencies = [ 891 | "bitflags", 892 | "futures-channel", 893 | "futures-core", 894 | "futures-executor", 895 | "futures-task", 896 | "glib-macros", 897 | "glib-sys", 898 | "gobject-sys", 899 | "libc", 900 | "once_cell", 901 | "smallvec", 902 | "thiserror", 903 | ] 904 | 905 | [[package]] 906 | name = "glib-macros" 907 | version = "0.15.11" 908 | source = "registry+https://github.com/rust-lang/crates.io-index" 909 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" 910 | dependencies = [ 911 | "anyhow", 912 | "heck 0.4.0", 913 | "proc-macro-crate", 914 | "proc-macro-error", 915 | "proc-macro2", 916 | "quote", 917 | "syn", 918 | ] 919 | 920 | [[package]] 921 | name = "glib-sys" 922 | version = "0.15.10" 923 | source = "registry+https://github.com/rust-lang/crates.io-index" 924 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 925 | dependencies = [ 926 | "libc", 927 | "system-deps 6.0.2", 928 | ] 929 | 930 | [[package]] 931 | name = "glob" 932 | version = "0.3.0" 933 | source = "registry+https://github.com/rust-lang/crates.io-index" 934 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 935 | 936 | [[package]] 937 | name = "globset" 938 | version = "0.4.9" 939 | source = "registry+https://github.com/rust-lang/crates.io-index" 940 | checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 941 | dependencies = [ 942 | "aho-corasick", 943 | "bstr", 944 | "fnv", 945 | "log", 946 | "regex", 947 | ] 948 | 949 | [[package]] 950 | name = "gobject-sys" 951 | version = "0.15.10" 952 | source = "registry+https://github.com/rust-lang/crates.io-index" 953 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 954 | dependencies = [ 955 | "glib-sys", 956 | "libc", 957 | "system-deps 6.0.2", 958 | ] 959 | 960 | [[package]] 961 | name = "gtk" 962 | version = "0.15.5" 963 | source = "registry+https://github.com/rust-lang/crates.io-index" 964 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 965 | dependencies = [ 966 | "atk", 967 | "bitflags", 968 | "cairo-rs", 969 | "field-offset", 970 | "futures-channel", 971 | "gdk", 972 | "gdk-pixbuf", 973 | "gio", 974 | "glib", 975 | "gtk-sys", 976 | "gtk3-macros", 977 | "libc", 978 | "once_cell", 979 | "pango", 980 | "pkg-config", 981 | ] 982 | 983 | [[package]] 984 | name = "gtk-sys" 985 | version = "0.15.3" 986 | source = "registry+https://github.com/rust-lang/crates.io-index" 987 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 988 | dependencies = [ 989 | "atk-sys", 990 | "cairo-sys-rs", 991 | "gdk-pixbuf-sys", 992 | "gdk-sys", 993 | "gio-sys", 994 | "glib-sys", 995 | "gobject-sys", 996 | "libc", 997 | "pango-sys", 998 | "system-deps 6.0.2", 999 | ] 1000 | 1001 | [[package]] 1002 | name = "gtk3-macros" 1003 | version = "0.15.4" 1004 | source = "registry+https://github.com/rust-lang/crates.io-index" 1005 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9" 1006 | dependencies = [ 1007 | "anyhow", 1008 | "proc-macro-crate", 1009 | "proc-macro-error", 1010 | "proc-macro2", 1011 | "quote", 1012 | "syn", 1013 | ] 1014 | 1015 | [[package]] 1016 | name = "hashbrown" 1017 | version = "0.12.3" 1018 | source = "registry+https://github.com/rust-lang/crates.io-index" 1019 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1020 | 1021 | [[package]] 1022 | name = "heck" 1023 | version = "0.3.3" 1024 | source = "registry+https://github.com/rust-lang/crates.io-index" 1025 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1026 | dependencies = [ 1027 | "unicode-segmentation", 1028 | ] 1029 | 1030 | [[package]] 1031 | name = "heck" 1032 | version = "0.4.0" 1033 | source = "registry+https://github.com/rust-lang/crates.io-index" 1034 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1035 | 1036 | [[package]] 1037 | name = "hermit-abi" 1038 | version = "0.1.19" 1039 | source = "registry+https://github.com/rust-lang/crates.io-index" 1040 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1041 | dependencies = [ 1042 | "libc", 1043 | ] 1044 | 1045 | [[package]] 1046 | name = "html5ever" 1047 | version = "0.25.2" 1048 | source = "registry+https://github.com/rust-lang/crates.io-index" 1049 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1050 | dependencies = [ 1051 | "log", 1052 | "mac", 1053 | "markup5ever", 1054 | "proc-macro2", 1055 | "quote", 1056 | "syn", 1057 | ] 1058 | 1059 | [[package]] 1060 | name = "http" 1061 | version = "0.2.8" 1062 | source = "registry+https://github.com/rust-lang/crates.io-index" 1063 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1064 | dependencies = [ 1065 | "bytes", 1066 | "fnv", 1067 | "itoa 1.0.4", 1068 | ] 1069 | 1070 | [[package]] 1071 | name = "http-range" 1072 | version = "0.1.5" 1073 | source = "registry+https://github.com/rust-lang/crates.io-index" 1074 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1075 | 1076 | [[package]] 1077 | name = "ico" 1078 | version = "0.1.0" 1079 | source = "registry+https://github.com/rust-lang/crates.io-index" 1080 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1081 | dependencies = [ 1082 | "byteorder", 1083 | "png 0.11.0", 1084 | ] 1085 | 1086 | [[package]] 1087 | name = "ident_case" 1088 | version = "1.0.1" 1089 | source = "registry+https://github.com/rust-lang/crates.io-index" 1090 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1091 | 1092 | [[package]] 1093 | name = "idna" 1094 | version = "0.3.0" 1095 | source = "registry+https://github.com/rust-lang/crates.io-index" 1096 | checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1097 | dependencies = [ 1098 | "unicode-bidi", 1099 | "unicode-normalization", 1100 | ] 1101 | 1102 | [[package]] 1103 | name = "ignore" 1104 | version = "0.4.18" 1105 | source = "registry+https://github.com/rust-lang/crates.io-index" 1106 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1107 | dependencies = [ 1108 | "crossbeam-utils", 1109 | "globset", 1110 | "lazy_static", 1111 | "log", 1112 | "memchr", 1113 | "regex", 1114 | "same-file", 1115 | "thread_local", 1116 | "walkdir", 1117 | "winapi-util", 1118 | ] 1119 | 1120 | [[package]] 1121 | name = "image" 1122 | version = "0.24.4" 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" 1124 | checksum = "bd8e4fb07cf672b1642304e731ef8a6a4c7891d67bb4fd4f5ce58cd6ed86803c" 1125 | dependencies = [ 1126 | "bytemuck", 1127 | "byteorder", 1128 | "color_quant", 1129 | "num-rational", 1130 | "num-traits", 1131 | ] 1132 | 1133 | [[package]] 1134 | name = "indexmap" 1135 | version = "1.9.1" 1136 | source = "registry+https://github.com/rust-lang/crates.io-index" 1137 | checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1138 | dependencies = [ 1139 | "autocfg", 1140 | "hashbrown", 1141 | ] 1142 | 1143 | [[package]] 1144 | name = "infer" 1145 | version = "0.7.0" 1146 | source = "registry+https://github.com/rust-lang/crates.io-index" 1147 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1148 | dependencies = [ 1149 | "cfb", 1150 | ] 1151 | 1152 | [[package]] 1153 | name = "inflate" 1154 | version = "0.3.4" 1155 | source = "registry+https://github.com/rust-lang/crates.io-index" 1156 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1157 | dependencies = [ 1158 | "adler32", 1159 | ] 1160 | 1161 | [[package]] 1162 | name = "instant" 1163 | version = "0.1.12" 1164 | source = "registry+https://github.com/rust-lang/crates.io-index" 1165 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1166 | dependencies = [ 1167 | "cfg-if", 1168 | ] 1169 | 1170 | [[package]] 1171 | name = "itoa" 1172 | version = "0.4.8" 1173 | source = "registry+https://github.com/rust-lang/crates.io-index" 1174 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1175 | 1176 | [[package]] 1177 | name = "itoa" 1178 | version = "1.0.4" 1179 | source = "registry+https://github.com/rust-lang/crates.io-index" 1180 | checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 1181 | 1182 | [[package]] 1183 | name = "javascriptcore-rs" 1184 | version = "0.16.0" 1185 | source = "registry+https://github.com/rust-lang/crates.io-index" 1186 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1187 | dependencies = [ 1188 | "bitflags", 1189 | "glib", 1190 | "javascriptcore-rs-sys", 1191 | ] 1192 | 1193 | [[package]] 1194 | name = "javascriptcore-rs-sys" 1195 | version = "0.4.0" 1196 | source = "registry+https://github.com/rust-lang/crates.io-index" 1197 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1198 | dependencies = [ 1199 | "glib-sys", 1200 | "gobject-sys", 1201 | "libc", 1202 | "system-deps 5.0.0", 1203 | ] 1204 | 1205 | [[package]] 1206 | name = "jni" 1207 | version = "0.19.0" 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" 1209 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1210 | dependencies = [ 1211 | "cesu8", 1212 | "combine", 1213 | "jni-sys", 1214 | "log", 1215 | "thiserror", 1216 | "walkdir", 1217 | ] 1218 | 1219 | [[package]] 1220 | name = "jni-sys" 1221 | version = "0.3.0" 1222 | source = "registry+https://github.com/rust-lang/crates.io-index" 1223 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1224 | 1225 | [[package]] 1226 | name = "js-sys" 1227 | version = "0.3.60" 1228 | source = "registry+https://github.com/rust-lang/crates.io-index" 1229 | checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1230 | dependencies = [ 1231 | "wasm-bindgen", 1232 | ] 1233 | 1234 | [[package]] 1235 | name = "json-patch" 1236 | version = "0.2.6" 1237 | source = "registry+https://github.com/rust-lang/crates.io-index" 1238 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 1239 | dependencies = [ 1240 | "serde", 1241 | "serde_json", 1242 | "treediff", 1243 | ] 1244 | 1245 | [[package]] 1246 | name = "kuchiki" 1247 | version = "0.8.1" 1248 | source = "registry+https://github.com/rust-lang/crates.io-index" 1249 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1250 | dependencies = [ 1251 | "cssparser", 1252 | "html5ever", 1253 | "matches", 1254 | "selectors", 1255 | ] 1256 | 1257 | [[package]] 1258 | name = "lazy_static" 1259 | version = "1.4.0" 1260 | source = "registry+https://github.com/rust-lang/crates.io-index" 1261 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1262 | 1263 | [[package]] 1264 | name = "libc" 1265 | version = "0.2.134" 1266 | source = "registry+https://github.com/rust-lang/crates.io-index" 1267 | checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" 1268 | 1269 | [[package]] 1270 | name = "libdbus-sys" 1271 | version = "0.2.2" 1272 | source = "registry+https://github.com/rust-lang/crates.io-index" 1273 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" 1274 | dependencies = [ 1275 | "pkg-config", 1276 | ] 1277 | 1278 | [[package]] 1279 | name = "line-wrap" 1280 | version = "0.1.1" 1281 | source = "registry+https://github.com/rust-lang/crates.io-index" 1282 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1283 | dependencies = [ 1284 | "safemem", 1285 | ] 1286 | 1287 | [[package]] 1288 | name = "lock_api" 1289 | version = "0.4.9" 1290 | source = "registry+https://github.com/rust-lang/crates.io-index" 1291 | checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1292 | dependencies = [ 1293 | "autocfg", 1294 | "scopeguard", 1295 | ] 1296 | 1297 | [[package]] 1298 | name = "log" 1299 | version = "0.4.17" 1300 | source = "registry+https://github.com/rust-lang/crates.io-index" 1301 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1302 | dependencies = [ 1303 | "cfg-if", 1304 | ] 1305 | 1306 | [[package]] 1307 | name = "loom" 1308 | version = "0.5.6" 1309 | source = "registry+https://github.com/rust-lang/crates.io-index" 1310 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1311 | dependencies = [ 1312 | "cfg-if", 1313 | "generator", 1314 | "scoped-tls", 1315 | "serde", 1316 | "serde_json", 1317 | "tracing", 1318 | "tracing-subscriber", 1319 | ] 1320 | 1321 | [[package]] 1322 | name = "mac" 1323 | version = "0.1.1" 1324 | source = "registry+https://github.com/rust-lang/crates.io-index" 1325 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1326 | 1327 | [[package]] 1328 | name = "mac-notification-sys" 1329 | version = "0.5.6" 1330 | source = "registry+https://github.com/rust-lang/crates.io-index" 1331 | checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" 1332 | dependencies = [ 1333 | "cc", 1334 | "dirs-next", 1335 | "objc-foundation", 1336 | "objc_id", 1337 | "time", 1338 | ] 1339 | 1340 | [[package]] 1341 | name = "malloc_buf" 1342 | version = "0.0.6" 1343 | source = "registry+https://github.com/rust-lang/crates.io-index" 1344 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1345 | dependencies = [ 1346 | "libc", 1347 | ] 1348 | 1349 | [[package]] 1350 | name = "markup5ever" 1351 | version = "0.10.1" 1352 | source = "registry+https://github.com/rust-lang/crates.io-index" 1353 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1354 | dependencies = [ 1355 | "log", 1356 | "phf 0.8.0", 1357 | "phf_codegen", 1358 | "string_cache", 1359 | "string_cache_codegen", 1360 | "tendril", 1361 | ] 1362 | 1363 | [[package]] 1364 | name = "matchers" 1365 | version = "0.1.0" 1366 | source = "registry+https://github.com/rust-lang/crates.io-index" 1367 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1368 | dependencies = [ 1369 | "regex-automata", 1370 | ] 1371 | 1372 | [[package]] 1373 | name = "matches" 1374 | version = "0.1.9" 1375 | source = "registry+https://github.com/rust-lang/crates.io-index" 1376 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1377 | 1378 | [[package]] 1379 | name = "memchr" 1380 | version = "2.5.0" 1381 | source = "registry+https://github.com/rust-lang/crates.io-index" 1382 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1383 | 1384 | [[package]] 1385 | name = "memoffset" 1386 | version = "0.6.5" 1387 | source = "registry+https://github.com/rust-lang/crates.io-index" 1388 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1389 | dependencies = [ 1390 | "autocfg", 1391 | ] 1392 | 1393 | [[package]] 1394 | name = "miniz_oxide" 1395 | version = "0.5.4" 1396 | source = "registry+https://github.com/rust-lang/crates.io-index" 1397 | checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 1398 | dependencies = [ 1399 | "adler", 1400 | ] 1401 | 1402 | [[package]] 1403 | name = "native-tls" 1404 | version = "0.2.10" 1405 | source = "registry+https://github.com/rust-lang/crates.io-index" 1406 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1407 | dependencies = [ 1408 | "lazy_static", 1409 | "libc", 1410 | "log", 1411 | "openssl", 1412 | "openssl-probe", 1413 | "openssl-sys", 1414 | "schannel", 1415 | "security-framework", 1416 | "security-framework-sys", 1417 | "tempfile", 1418 | ] 1419 | 1420 | [[package]] 1421 | name = "ndk" 1422 | version = "0.6.0" 1423 | source = "registry+https://github.com/rust-lang/crates.io-index" 1424 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1425 | dependencies = [ 1426 | "bitflags", 1427 | "jni-sys", 1428 | "ndk-sys", 1429 | "num_enum", 1430 | "thiserror", 1431 | ] 1432 | 1433 | [[package]] 1434 | name = "ndk-context" 1435 | version = "0.1.1" 1436 | source = "registry+https://github.com/rust-lang/crates.io-index" 1437 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1438 | 1439 | [[package]] 1440 | name = "ndk-sys" 1441 | version = "0.3.0" 1442 | source = "registry+https://github.com/rust-lang/crates.io-index" 1443 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1444 | dependencies = [ 1445 | "jni-sys", 1446 | ] 1447 | 1448 | [[package]] 1449 | name = "new_debug_unreachable" 1450 | version = "1.0.4" 1451 | source = "registry+https://github.com/rust-lang/crates.io-index" 1452 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1453 | 1454 | [[package]] 1455 | name = "nodrop" 1456 | version = "0.1.14" 1457 | source = "registry+https://github.com/rust-lang/crates.io-index" 1458 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1459 | 1460 | [[package]] 1461 | name = "notify-rust" 1462 | version = "4.5.10" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "368e89ea58df747ce88be669ae44e79783c1d30bfd540ad0fc520b3f41f0b3b0" 1465 | dependencies = [ 1466 | "dbus", 1467 | "mac-notification-sys", 1468 | "tauri-winrt-notification", 1469 | ] 1470 | 1471 | [[package]] 1472 | name = "nu-ansi-term" 1473 | version = "0.46.0" 1474 | source = "registry+https://github.com/rust-lang/crates.io-index" 1475 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1476 | dependencies = [ 1477 | "overload", 1478 | "winapi", 1479 | ] 1480 | 1481 | [[package]] 1482 | name = "num-integer" 1483 | version = "0.1.45" 1484 | source = "registry+https://github.com/rust-lang/crates.io-index" 1485 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1486 | dependencies = [ 1487 | "autocfg", 1488 | "num-traits", 1489 | ] 1490 | 1491 | [[package]] 1492 | name = "num-iter" 1493 | version = "0.1.43" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1496 | dependencies = [ 1497 | "autocfg", 1498 | "num-integer", 1499 | "num-traits", 1500 | ] 1501 | 1502 | [[package]] 1503 | name = "num-rational" 1504 | version = "0.4.1" 1505 | source = "registry+https://github.com/rust-lang/crates.io-index" 1506 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1507 | dependencies = [ 1508 | "autocfg", 1509 | "num-integer", 1510 | "num-traits", 1511 | ] 1512 | 1513 | [[package]] 1514 | name = "num-traits" 1515 | version = "0.2.15" 1516 | source = "registry+https://github.com/rust-lang/crates.io-index" 1517 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1518 | dependencies = [ 1519 | "autocfg", 1520 | ] 1521 | 1522 | [[package]] 1523 | name = "num_cpus" 1524 | version = "1.13.1" 1525 | source = "registry+https://github.com/rust-lang/crates.io-index" 1526 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1527 | dependencies = [ 1528 | "hermit-abi", 1529 | "libc", 1530 | ] 1531 | 1532 | [[package]] 1533 | name = "num_enum" 1534 | version = "0.5.7" 1535 | source = "registry+https://github.com/rust-lang/crates.io-index" 1536 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1537 | dependencies = [ 1538 | "num_enum_derive", 1539 | ] 1540 | 1541 | [[package]] 1542 | name = "num_enum_derive" 1543 | version = "0.5.7" 1544 | source = "registry+https://github.com/rust-lang/crates.io-index" 1545 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1546 | dependencies = [ 1547 | "proc-macro-crate", 1548 | "proc-macro2", 1549 | "quote", 1550 | "syn", 1551 | ] 1552 | 1553 | [[package]] 1554 | name = "num_threads" 1555 | version = "0.1.6" 1556 | source = "registry+https://github.com/rust-lang/crates.io-index" 1557 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1558 | dependencies = [ 1559 | "libc", 1560 | ] 1561 | 1562 | [[package]] 1563 | name = "objc" 1564 | version = "0.2.7" 1565 | source = "registry+https://github.com/rust-lang/crates.io-index" 1566 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1567 | dependencies = [ 1568 | "malloc_buf", 1569 | "objc_exception", 1570 | ] 1571 | 1572 | [[package]] 1573 | name = "objc-foundation" 1574 | version = "0.1.1" 1575 | source = "registry+https://github.com/rust-lang/crates.io-index" 1576 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1577 | dependencies = [ 1578 | "block", 1579 | "objc", 1580 | "objc_id", 1581 | ] 1582 | 1583 | [[package]] 1584 | name = "objc_exception" 1585 | version = "0.1.2" 1586 | source = "registry+https://github.com/rust-lang/crates.io-index" 1587 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1588 | dependencies = [ 1589 | "cc", 1590 | ] 1591 | 1592 | [[package]] 1593 | name = "objc_id" 1594 | version = "0.1.1" 1595 | source = "registry+https://github.com/rust-lang/crates.io-index" 1596 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1597 | dependencies = [ 1598 | "objc", 1599 | ] 1600 | 1601 | [[package]] 1602 | name = "once_cell" 1603 | version = "1.15.0" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" 1606 | 1607 | [[package]] 1608 | name = "open" 1609 | version = "3.0.3" 1610 | source = "registry+https://github.com/rust-lang/crates.io-index" 1611 | checksum = "b4a3100141f1733ea40b53381b0ae3117330735ef22309a190ac57b9576ea716" 1612 | dependencies = [ 1613 | "pathdiff", 1614 | "windows-sys", 1615 | ] 1616 | 1617 | [[package]] 1618 | name = "openssl" 1619 | version = "0.10.42" 1620 | source = "registry+https://github.com/rust-lang/crates.io-index" 1621 | checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13" 1622 | dependencies = [ 1623 | "bitflags", 1624 | "cfg-if", 1625 | "foreign-types", 1626 | "libc", 1627 | "once_cell", 1628 | "openssl-macros", 1629 | "openssl-sys", 1630 | ] 1631 | 1632 | [[package]] 1633 | name = "openssl-macros" 1634 | version = "0.1.0" 1635 | source = "registry+https://github.com/rust-lang/crates.io-index" 1636 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1637 | dependencies = [ 1638 | "proc-macro2", 1639 | "quote", 1640 | "syn", 1641 | ] 1642 | 1643 | [[package]] 1644 | name = "openssl-probe" 1645 | version = "0.1.5" 1646 | source = "registry+https://github.com/rust-lang/crates.io-index" 1647 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1648 | 1649 | [[package]] 1650 | name = "openssl-sys" 1651 | version = "0.9.76" 1652 | source = "registry+https://github.com/rust-lang/crates.io-index" 1653 | checksum = "5230151e44c0f05157effb743e8d517472843121cf9243e8b81393edb5acd9ce" 1654 | dependencies = [ 1655 | "autocfg", 1656 | "cc", 1657 | "libc", 1658 | "pkg-config", 1659 | "vcpkg", 1660 | ] 1661 | 1662 | [[package]] 1663 | name = "os_info" 1664 | version = "3.5.1" 1665 | source = "registry+https://github.com/rust-lang/crates.io-index" 1666 | checksum = "c4750134fb6a5d49afc80777394ad5d95b04bc12068c6abb92fae8f43817270f" 1667 | dependencies = [ 1668 | "log", 1669 | "serde", 1670 | "winapi", 1671 | ] 1672 | 1673 | [[package]] 1674 | name = "os_pipe" 1675 | version = "1.1.1" 1676 | source = "registry+https://github.com/rust-lang/crates.io-index" 1677 | checksum = "0dceb7e43f59c35ee1548045b2c72945a5a3bb6ce6d6f07cdc13dc8f6bc4930a" 1678 | dependencies = [ 1679 | "libc", 1680 | "winapi", 1681 | ] 1682 | 1683 | [[package]] 1684 | name = "overload" 1685 | version = "0.1.1" 1686 | source = "registry+https://github.com/rust-lang/crates.io-index" 1687 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1688 | 1689 | [[package]] 1690 | name = "pango" 1691 | version = "0.15.10" 1692 | source = "registry+https://github.com/rust-lang/crates.io-index" 1693 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1694 | dependencies = [ 1695 | "bitflags", 1696 | "glib", 1697 | "libc", 1698 | "once_cell", 1699 | "pango-sys", 1700 | ] 1701 | 1702 | [[package]] 1703 | name = "pango-sys" 1704 | version = "0.15.10" 1705 | source = "registry+https://github.com/rust-lang/crates.io-index" 1706 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1707 | dependencies = [ 1708 | "glib-sys", 1709 | "gobject-sys", 1710 | "libc", 1711 | "system-deps 6.0.2", 1712 | ] 1713 | 1714 | [[package]] 1715 | name = "parking_lot" 1716 | version = "0.12.1" 1717 | source = "registry+https://github.com/rust-lang/crates.io-index" 1718 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1719 | dependencies = [ 1720 | "lock_api", 1721 | "parking_lot_core", 1722 | ] 1723 | 1724 | [[package]] 1725 | name = "parking_lot_core" 1726 | version = "0.9.3" 1727 | source = "registry+https://github.com/rust-lang/crates.io-index" 1728 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1729 | dependencies = [ 1730 | "cfg-if", 1731 | "libc", 1732 | "redox_syscall", 1733 | "smallvec", 1734 | "windows-sys", 1735 | ] 1736 | 1737 | [[package]] 1738 | name = "paste" 1739 | version = "1.0.9" 1740 | source = "registry+https://github.com/rust-lang/crates.io-index" 1741 | checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" 1742 | 1743 | [[package]] 1744 | name = "pathdiff" 1745 | version = "0.2.1" 1746 | source = "registry+https://github.com/rust-lang/crates.io-index" 1747 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1748 | 1749 | [[package]] 1750 | name = "percent-encoding" 1751 | version = "2.2.0" 1752 | source = "registry+https://github.com/rust-lang/crates.io-index" 1753 | checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1754 | 1755 | [[package]] 1756 | name = "pest" 1757 | version = "2.4.0" 1758 | source = "registry+https://github.com/rust-lang/crates.io-index" 1759 | checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a" 1760 | dependencies = [ 1761 | "thiserror", 1762 | "ucd-trie", 1763 | ] 1764 | 1765 | [[package]] 1766 | name = "phf" 1767 | version = "0.8.0" 1768 | source = "registry+https://github.com/rust-lang/crates.io-index" 1769 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1770 | dependencies = [ 1771 | "phf_macros 0.8.0", 1772 | "phf_shared 0.8.0", 1773 | "proc-macro-hack", 1774 | ] 1775 | 1776 | [[package]] 1777 | name = "phf" 1778 | version = "0.10.1" 1779 | source = "registry+https://github.com/rust-lang/crates.io-index" 1780 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1781 | dependencies = [ 1782 | "phf_macros 0.10.0", 1783 | "phf_shared 0.10.0", 1784 | "proc-macro-hack", 1785 | ] 1786 | 1787 | [[package]] 1788 | name = "phf_codegen" 1789 | version = "0.8.0" 1790 | source = "registry+https://github.com/rust-lang/crates.io-index" 1791 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1792 | dependencies = [ 1793 | "phf_generator 0.8.0", 1794 | "phf_shared 0.8.0", 1795 | ] 1796 | 1797 | [[package]] 1798 | name = "phf_generator" 1799 | version = "0.8.0" 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" 1801 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1802 | dependencies = [ 1803 | "phf_shared 0.8.0", 1804 | "rand 0.7.3", 1805 | ] 1806 | 1807 | [[package]] 1808 | name = "phf_generator" 1809 | version = "0.10.0" 1810 | source = "registry+https://github.com/rust-lang/crates.io-index" 1811 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1812 | dependencies = [ 1813 | "phf_shared 0.10.0", 1814 | "rand 0.8.5", 1815 | ] 1816 | 1817 | [[package]] 1818 | name = "phf_macros" 1819 | version = "0.8.0" 1820 | source = "registry+https://github.com/rust-lang/crates.io-index" 1821 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1822 | dependencies = [ 1823 | "phf_generator 0.8.0", 1824 | "phf_shared 0.8.0", 1825 | "proc-macro-hack", 1826 | "proc-macro2", 1827 | "quote", 1828 | "syn", 1829 | ] 1830 | 1831 | [[package]] 1832 | name = "phf_macros" 1833 | version = "0.10.0" 1834 | source = "registry+https://github.com/rust-lang/crates.io-index" 1835 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1836 | dependencies = [ 1837 | "phf_generator 0.10.0", 1838 | "phf_shared 0.10.0", 1839 | "proc-macro-hack", 1840 | "proc-macro2", 1841 | "quote", 1842 | "syn", 1843 | ] 1844 | 1845 | [[package]] 1846 | name = "phf_shared" 1847 | version = "0.8.0" 1848 | source = "registry+https://github.com/rust-lang/crates.io-index" 1849 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1850 | dependencies = [ 1851 | "siphasher", 1852 | ] 1853 | 1854 | [[package]] 1855 | name = "phf_shared" 1856 | version = "0.10.0" 1857 | source = "registry+https://github.com/rust-lang/crates.io-index" 1858 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1859 | dependencies = [ 1860 | "siphasher", 1861 | ] 1862 | 1863 | [[package]] 1864 | name = "pin-project-lite" 1865 | version = "0.2.9" 1866 | source = "registry+https://github.com/rust-lang/crates.io-index" 1867 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1868 | 1869 | [[package]] 1870 | name = "pin-utils" 1871 | version = "0.1.0" 1872 | source = "registry+https://github.com/rust-lang/crates.io-index" 1873 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1874 | 1875 | [[package]] 1876 | name = "pkg-config" 1877 | version = "0.3.25" 1878 | source = "registry+https://github.com/rust-lang/crates.io-index" 1879 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1880 | 1881 | [[package]] 1882 | name = "plist" 1883 | version = "1.3.1" 1884 | source = "registry+https://github.com/rust-lang/crates.io-index" 1885 | checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 1886 | dependencies = [ 1887 | "base64", 1888 | "indexmap", 1889 | "line-wrap", 1890 | "serde", 1891 | "time", 1892 | "xml-rs", 1893 | ] 1894 | 1895 | [[package]] 1896 | name = "png" 1897 | version = "0.11.0" 1898 | source = "registry+https://github.com/rust-lang/crates.io-index" 1899 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1900 | dependencies = [ 1901 | "bitflags", 1902 | "deflate", 1903 | "inflate", 1904 | "num-iter", 1905 | ] 1906 | 1907 | [[package]] 1908 | name = "png" 1909 | version = "0.17.6" 1910 | source = "registry+https://github.com/rust-lang/crates.io-index" 1911 | checksum = "8f0e7f4c94ec26ff209cee506314212639d6c91b80afb82984819fafce9df01c" 1912 | dependencies = [ 1913 | "bitflags", 1914 | "crc32fast", 1915 | "flate2", 1916 | "miniz_oxide", 1917 | ] 1918 | 1919 | [[package]] 1920 | name = "ppv-lite86" 1921 | version = "0.2.16" 1922 | source = "registry+https://github.com/rust-lang/crates.io-index" 1923 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1924 | 1925 | [[package]] 1926 | name = "precomputed-hash" 1927 | version = "0.1.1" 1928 | source = "registry+https://github.com/rust-lang/crates.io-index" 1929 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1930 | 1931 | [[package]] 1932 | name = "proc-macro-crate" 1933 | version = "1.2.1" 1934 | source = "registry+https://github.com/rust-lang/crates.io-index" 1935 | checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 1936 | dependencies = [ 1937 | "once_cell", 1938 | "thiserror", 1939 | "toml", 1940 | ] 1941 | 1942 | [[package]] 1943 | name = "proc-macro-error" 1944 | version = "1.0.4" 1945 | source = "registry+https://github.com/rust-lang/crates.io-index" 1946 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1947 | dependencies = [ 1948 | "proc-macro-error-attr", 1949 | "proc-macro2", 1950 | "quote", 1951 | "syn", 1952 | "version_check", 1953 | ] 1954 | 1955 | [[package]] 1956 | name = "proc-macro-error-attr" 1957 | version = "1.0.4" 1958 | source = "registry+https://github.com/rust-lang/crates.io-index" 1959 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1960 | dependencies = [ 1961 | "proc-macro2", 1962 | "quote", 1963 | "version_check", 1964 | ] 1965 | 1966 | [[package]] 1967 | name = "proc-macro-hack" 1968 | version = "0.5.19" 1969 | source = "registry+https://github.com/rust-lang/crates.io-index" 1970 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 1971 | 1972 | [[package]] 1973 | name = "proc-macro2" 1974 | version = "1.0.46" 1975 | source = "registry+https://github.com/rust-lang/crates.io-index" 1976 | checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b" 1977 | dependencies = [ 1978 | "unicode-ident", 1979 | ] 1980 | 1981 | [[package]] 1982 | name = "quick-xml" 1983 | version = "0.23.1" 1984 | source = "registry+https://github.com/rust-lang/crates.io-index" 1985 | checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea" 1986 | dependencies = [ 1987 | "memchr", 1988 | ] 1989 | 1990 | [[package]] 1991 | name = "quote" 1992 | version = "1.0.21" 1993 | source = "registry+https://github.com/rust-lang/crates.io-index" 1994 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 1995 | dependencies = [ 1996 | "proc-macro2", 1997 | ] 1998 | 1999 | [[package]] 2000 | name = "rand" 2001 | version = "0.7.3" 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" 2003 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2004 | dependencies = [ 2005 | "getrandom 0.1.16", 2006 | "libc", 2007 | "rand_chacha 0.2.2", 2008 | "rand_core 0.5.1", 2009 | "rand_hc", 2010 | "rand_pcg", 2011 | ] 2012 | 2013 | [[package]] 2014 | name = "rand" 2015 | version = "0.8.5" 2016 | source = "registry+https://github.com/rust-lang/crates.io-index" 2017 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2018 | dependencies = [ 2019 | "libc", 2020 | "rand_chacha 0.3.1", 2021 | "rand_core 0.6.4", 2022 | ] 2023 | 2024 | [[package]] 2025 | name = "rand_chacha" 2026 | version = "0.2.2" 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" 2028 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2029 | dependencies = [ 2030 | "ppv-lite86", 2031 | "rand_core 0.5.1", 2032 | ] 2033 | 2034 | [[package]] 2035 | name = "rand_chacha" 2036 | version = "0.3.1" 2037 | source = "registry+https://github.com/rust-lang/crates.io-index" 2038 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2039 | dependencies = [ 2040 | "ppv-lite86", 2041 | "rand_core 0.6.4", 2042 | ] 2043 | 2044 | [[package]] 2045 | name = "rand_core" 2046 | version = "0.5.1" 2047 | source = "registry+https://github.com/rust-lang/crates.io-index" 2048 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2049 | dependencies = [ 2050 | "getrandom 0.1.16", 2051 | ] 2052 | 2053 | [[package]] 2054 | name = "rand_core" 2055 | version = "0.6.4" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2058 | dependencies = [ 2059 | "getrandom 0.2.7", 2060 | ] 2061 | 2062 | [[package]] 2063 | name = "rand_hc" 2064 | version = "0.2.0" 2065 | source = "registry+https://github.com/rust-lang/crates.io-index" 2066 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2067 | dependencies = [ 2068 | "rand_core 0.5.1", 2069 | ] 2070 | 2071 | [[package]] 2072 | name = "rand_pcg" 2073 | version = "0.2.1" 2074 | source = "registry+https://github.com/rust-lang/crates.io-index" 2075 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2076 | dependencies = [ 2077 | "rand_core 0.5.1", 2078 | ] 2079 | 2080 | [[package]] 2081 | name = "raw-window-handle" 2082 | version = "0.5.0" 2083 | source = "registry+https://github.com/rust-lang/crates.io-index" 2084 | checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a" 2085 | dependencies = [ 2086 | "cty", 2087 | ] 2088 | 2089 | [[package]] 2090 | name = "redox_syscall" 2091 | version = "0.2.16" 2092 | source = "registry+https://github.com/rust-lang/crates.io-index" 2093 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2094 | dependencies = [ 2095 | "bitflags", 2096 | ] 2097 | 2098 | [[package]] 2099 | name = "redox_users" 2100 | version = "0.4.3" 2101 | source = "registry+https://github.com/rust-lang/crates.io-index" 2102 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2103 | dependencies = [ 2104 | "getrandom 0.2.7", 2105 | "redox_syscall", 2106 | "thiserror", 2107 | ] 2108 | 2109 | [[package]] 2110 | name = "regex" 2111 | version = "1.6.0" 2112 | source = "registry+https://github.com/rust-lang/crates.io-index" 2113 | checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 2114 | dependencies = [ 2115 | "aho-corasick", 2116 | "memchr", 2117 | "regex-syntax", 2118 | ] 2119 | 2120 | [[package]] 2121 | name = "regex-automata" 2122 | version = "0.1.10" 2123 | source = "registry+https://github.com/rust-lang/crates.io-index" 2124 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2125 | dependencies = [ 2126 | "regex-syntax", 2127 | ] 2128 | 2129 | [[package]] 2130 | name = "regex-syntax" 2131 | version = "0.6.27" 2132 | source = "registry+https://github.com/rust-lang/crates.io-index" 2133 | checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 2134 | 2135 | [[package]] 2136 | name = "remove_dir_all" 2137 | version = "0.5.3" 2138 | source = "registry+https://github.com/rust-lang/crates.io-index" 2139 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2140 | dependencies = [ 2141 | "winapi", 2142 | ] 2143 | 2144 | [[package]] 2145 | name = "rfd" 2146 | version = "0.10.0" 2147 | source = "registry+https://github.com/rust-lang/crates.io-index" 2148 | checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea" 2149 | dependencies = [ 2150 | "block", 2151 | "dispatch", 2152 | "glib-sys", 2153 | "gobject-sys", 2154 | "gtk-sys", 2155 | "js-sys", 2156 | "lazy_static", 2157 | "log", 2158 | "objc", 2159 | "objc-foundation", 2160 | "objc_id", 2161 | "raw-window-handle", 2162 | "wasm-bindgen", 2163 | "wasm-bindgen-futures", 2164 | "web-sys", 2165 | "windows 0.37.0", 2166 | ] 2167 | 2168 | [[package]] 2169 | name = "rustc_version" 2170 | version = "0.3.3" 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" 2172 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2173 | dependencies = [ 2174 | "semver 0.11.0", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "rustc_version" 2179 | version = "0.4.0" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2182 | dependencies = [ 2183 | "semver 1.0.14", 2184 | ] 2185 | 2186 | [[package]] 2187 | name = "rustversion" 2188 | version = "1.0.9" 2189 | source = "registry+https://github.com/rust-lang/crates.io-index" 2190 | checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2191 | 2192 | [[package]] 2193 | name = "ryu" 2194 | version = "1.0.11" 2195 | source = "registry+https://github.com/rust-lang/crates.io-index" 2196 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2197 | 2198 | [[package]] 2199 | name = "safemem" 2200 | version = "0.3.3" 2201 | source = "registry+https://github.com/rust-lang/crates.io-index" 2202 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2203 | 2204 | [[package]] 2205 | name = "same-file" 2206 | version = "1.0.6" 2207 | source = "registry+https://github.com/rust-lang/crates.io-index" 2208 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2209 | dependencies = [ 2210 | "winapi-util", 2211 | ] 2212 | 2213 | [[package]] 2214 | name = "schannel" 2215 | version = "0.1.20" 2216 | source = "registry+https://github.com/rust-lang/crates.io-index" 2217 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2218 | dependencies = [ 2219 | "lazy_static", 2220 | "windows-sys", 2221 | ] 2222 | 2223 | [[package]] 2224 | name = "scoped-tls" 2225 | version = "1.0.0" 2226 | source = "registry+https://github.com/rust-lang/crates.io-index" 2227 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2228 | 2229 | [[package]] 2230 | name = "scopeguard" 2231 | version = "1.1.0" 2232 | source = "registry+https://github.com/rust-lang/crates.io-index" 2233 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2234 | 2235 | [[package]] 2236 | name = "security-framework" 2237 | version = "2.7.0" 2238 | source = "registry+https://github.com/rust-lang/crates.io-index" 2239 | checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 2240 | dependencies = [ 2241 | "bitflags", 2242 | "core-foundation", 2243 | "core-foundation-sys", 2244 | "libc", 2245 | "security-framework-sys", 2246 | ] 2247 | 2248 | [[package]] 2249 | name = "security-framework-sys" 2250 | version = "2.6.1" 2251 | source = "registry+https://github.com/rust-lang/crates.io-index" 2252 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2253 | dependencies = [ 2254 | "core-foundation-sys", 2255 | "libc", 2256 | ] 2257 | 2258 | [[package]] 2259 | name = "selectors" 2260 | version = "0.22.0" 2261 | source = "registry+https://github.com/rust-lang/crates.io-index" 2262 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2263 | dependencies = [ 2264 | "bitflags", 2265 | "cssparser", 2266 | "derive_more", 2267 | "fxhash", 2268 | "log", 2269 | "matches", 2270 | "phf 0.8.0", 2271 | "phf_codegen", 2272 | "precomputed-hash", 2273 | "servo_arc", 2274 | "smallvec", 2275 | "thin-slice", 2276 | ] 2277 | 2278 | [[package]] 2279 | name = "semver" 2280 | version = "0.11.0" 2281 | source = "registry+https://github.com/rust-lang/crates.io-index" 2282 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2283 | dependencies = [ 2284 | "semver-parser", 2285 | ] 2286 | 2287 | [[package]] 2288 | name = "semver" 2289 | version = "1.0.14" 2290 | source = "registry+https://github.com/rust-lang/crates.io-index" 2291 | checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" 2292 | dependencies = [ 2293 | "serde", 2294 | ] 2295 | 2296 | [[package]] 2297 | name = "semver-parser" 2298 | version = "0.10.2" 2299 | source = "registry+https://github.com/rust-lang/crates.io-index" 2300 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2301 | dependencies = [ 2302 | "pest", 2303 | ] 2304 | 2305 | [[package]] 2306 | name = "serde" 2307 | version = "1.0.145" 2308 | source = "registry+https://github.com/rust-lang/crates.io-index" 2309 | checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b" 2310 | dependencies = [ 2311 | "serde_derive", 2312 | ] 2313 | 2314 | [[package]] 2315 | name = "serde_derive" 2316 | version = "1.0.145" 2317 | source = "registry+https://github.com/rust-lang/crates.io-index" 2318 | checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c" 2319 | dependencies = [ 2320 | "proc-macro2", 2321 | "quote", 2322 | "syn", 2323 | ] 2324 | 2325 | [[package]] 2326 | name = "serde_json" 2327 | version = "1.0.85" 2328 | source = "registry+https://github.com/rust-lang/crates.io-index" 2329 | checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 2330 | dependencies = [ 2331 | "itoa 1.0.4", 2332 | "ryu", 2333 | "serde", 2334 | ] 2335 | 2336 | [[package]] 2337 | name = "serde_repr" 2338 | version = "0.1.9" 2339 | source = "registry+https://github.com/rust-lang/crates.io-index" 2340 | checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" 2341 | dependencies = [ 2342 | "proc-macro2", 2343 | "quote", 2344 | "syn", 2345 | ] 2346 | 2347 | [[package]] 2348 | name = "serde_urlencoded" 2349 | version = "0.7.1" 2350 | source = "registry+https://github.com/rust-lang/crates.io-index" 2351 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2352 | dependencies = [ 2353 | "form_urlencoded", 2354 | "itoa 1.0.4", 2355 | "ryu", 2356 | "serde", 2357 | ] 2358 | 2359 | [[package]] 2360 | name = "serde_with" 2361 | version = "1.14.0" 2362 | source = "registry+https://github.com/rust-lang/crates.io-index" 2363 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2364 | dependencies = [ 2365 | "serde", 2366 | "serde_with_macros", 2367 | ] 2368 | 2369 | [[package]] 2370 | name = "serde_with_macros" 2371 | version = "1.5.2" 2372 | source = "registry+https://github.com/rust-lang/crates.io-index" 2373 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2374 | dependencies = [ 2375 | "darling", 2376 | "proc-macro2", 2377 | "quote", 2378 | "syn", 2379 | ] 2380 | 2381 | [[package]] 2382 | name = "serialize-to-javascript" 2383 | version = "0.1.1" 2384 | source = "registry+https://github.com/rust-lang/crates.io-index" 2385 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2386 | dependencies = [ 2387 | "serde", 2388 | "serde_json", 2389 | "serialize-to-javascript-impl", 2390 | ] 2391 | 2392 | [[package]] 2393 | name = "serialize-to-javascript-impl" 2394 | version = "0.1.1" 2395 | source = "registry+https://github.com/rust-lang/crates.io-index" 2396 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2397 | dependencies = [ 2398 | "proc-macro2", 2399 | "quote", 2400 | "syn", 2401 | ] 2402 | 2403 | [[package]] 2404 | name = "servo_arc" 2405 | version = "0.1.1" 2406 | source = "registry+https://github.com/rust-lang/crates.io-index" 2407 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2408 | dependencies = [ 2409 | "nodrop", 2410 | "stable_deref_trait", 2411 | ] 2412 | 2413 | [[package]] 2414 | name = "sha2" 2415 | version = "0.10.6" 2416 | source = "registry+https://github.com/rust-lang/crates.io-index" 2417 | checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2418 | dependencies = [ 2419 | "cfg-if", 2420 | "cpufeatures", 2421 | "digest", 2422 | ] 2423 | 2424 | [[package]] 2425 | name = "sharded-slab" 2426 | version = "0.1.4" 2427 | source = "registry+https://github.com/rust-lang/crates.io-index" 2428 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2429 | dependencies = [ 2430 | "lazy_static", 2431 | ] 2432 | 2433 | [[package]] 2434 | name = "shared_child" 2435 | version = "1.0.0" 2436 | source = "registry+https://github.com/rust-lang/crates.io-index" 2437 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2438 | dependencies = [ 2439 | "libc", 2440 | "winapi", 2441 | ] 2442 | 2443 | [[package]] 2444 | name = "siphasher" 2445 | version = "0.3.10" 2446 | source = "registry+https://github.com/rust-lang/crates.io-index" 2447 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2448 | 2449 | [[package]] 2450 | name = "slab" 2451 | version = "0.4.7" 2452 | source = "registry+https://github.com/rust-lang/crates.io-index" 2453 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2454 | dependencies = [ 2455 | "autocfg", 2456 | ] 2457 | 2458 | [[package]] 2459 | name = "smallvec" 2460 | version = "1.10.0" 2461 | source = "registry+https://github.com/rust-lang/crates.io-index" 2462 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2463 | 2464 | [[package]] 2465 | name = "soup2" 2466 | version = "0.2.1" 2467 | source = "registry+https://github.com/rust-lang/crates.io-index" 2468 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2469 | dependencies = [ 2470 | "bitflags", 2471 | "gio", 2472 | "glib", 2473 | "libc", 2474 | "once_cell", 2475 | "soup2-sys", 2476 | ] 2477 | 2478 | [[package]] 2479 | name = "soup2-sys" 2480 | version = "0.2.0" 2481 | source = "registry+https://github.com/rust-lang/crates.io-index" 2482 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2483 | dependencies = [ 2484 | "bitflags", 2485 | "gio-sys", 2486 | "glib-sys", 2487 | "gobject-sys", 2488 | "libc", 2489 | "system-deps 5.0.0", 2490 | ] 2491 | 2492 | [[package]] 2493 | name = "stable_deref_trait" 2494 | version = "1.2.0" 2495 | source = "registry+https://github.com/rust-lang/crates.io-index" 2496 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2497 | 2498 | [[package]] 2499 | name = "state" 2500 | version = "0.5.3" 2501 | source = "registry+https://github.com/rust-lang/crates.io-index" 2502 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2503 | dependencies = [ 2504 | "loom", 2505 | ] 2506 | 2507 | [[package]] 2508 | name = "string_cache" 2509 | version = "0.8.4" 2510 | source = "registry+https://github.com/rust-lang/crates.io-index" 2511 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2512 | dependencies = [ 2513 | "new_debug_unreachable", 2514 | "once_cell", 2515 | "parking_lot", 2516 | "phf_shared 0.10.0", 2517 | "precomputed-hash", 2518 | "serde", 2519 | ] 2520 | 2521 | [[package]] 2522 | name = "string_cache_codegen" 2523 | version = "0.5.2" 2524 | source = "registry+https://github.com/rust-lang/crates.io-index" 2525 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2526 | dependencies = [ 2527 | "phf_generator 0.10.0", 2528 | "phf_shared 0.10.0", 2529 | "proc-macro2", 2530 | "quote", 2531 | ] 2532 | 2533 | [[package]] 2534 | name = "strsim" 2535 | version = "0.10.0" 2536 | source = "registry+https://github.com/rust-lang/crates.io-index" 2537 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2538 | 2539 | [[package]] 2540 | name = "strum" 2541 | version = "0.22.0" 2542 | source = "registry+https://github.com/rust-lang/crates.io-index" 2543 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2544 | dependencies = [ 2545 | "strum_macros", 2546 | ] 2547 | 2548 | [[package]] 2549 | name = "strum_macros" 2550 | version = "0.22.0" 2551 | source = "registry+https://github.com/rust-lang/crates.io-index" 2552 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2553 | dependencies = [ 2554 | "heck 0.3.3", 2555 | "proc-macro2", 2556 | "quote", 2557 | "syn", 2558 | ] 2559 | 2560 | [[package]] 2561 | name = "syn" 2562 | version = "1.0.102" 2563 | source = "registry+https://github.com/rust-lang/crates.io-index" 2564 | checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1" 2565 | dependencies = [ 2566 | "proc-macro2", 2567 | "quote", 2568 | "unicode-ident", 2569 | ] 2570 | 2571 | [[package]] 2572 | name = "system-deps" 2573 | version = "5.0.0" 2574 | source = "registry+https://github.com/rust-lang/crates.io-index" 2575 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2576 | dependencies = [ 2577 | "cfg-expr 0.9.1", 2578 | "heck 0.3.3", 2579 | "pkg-config", 2580 | "toml", 2581 | "version-compare 0.0.11", 2582 | ] 2583 | 2584 | [[package]] 2585 | name = "system-deps" 2586 | version = "6.0.2" 2587 | source = "registry+https://github.com/rust-lang/crates.io-index" 2588 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" 2589 | dependencies = [ 2590 | "cfg-expr 0.10.3", 2591 | "heck 0.4.0", 2592 | "pkg-config", 2593 | "toml", 2594 | "version-compare 0.1.0", 2595 | ] 2596 | 2597 | [[package]] 2598 | name = "tao" 2599 | version = "0.14.0" 2600 | source = "registry+https://github.com/rust-lang/crates.io-index" 2601 | checksum = "43336f5d1793543ba96e2a1e75f3a5c7dcd592743be06a0ab3a190f4fcb4b934" 2602 | dependencies = [ 2603 | "bitflags", 2604 | "cairo-rs", 2605 | "cc", 2606 | "cocoa", 2607 | "core-foundation", 2608 | "core-graphics", 2609 | "crossbeam-channel", 2610 | "dispatch", 2611 | "gdk", 2612 | "gdk-pixbuf", 2613 | "gdk-sys", 2614 | "gdkx11-sys", 2615 | "gio", 2616 | "glib", 2617 | "glib-sys", 2618 | "gtk", 2619 | "image", 2620 | "instant", 2621 | "jni", 2622 | "lazy_static", 2623 | "libc", 2624 | "log", 2625 | "ndk", 2626 | "ndk-context", 2627 | "ndk-sys", 2628 | "objc", 2629 | "once_cell", 2630 | "parking_lot", 2631 | "paste", 2632 | "png 0.17.6", 2633 | "raw-window-handle", 2634 | "scopeguard", 2635 | "serde", 2636 | "unicode-segmentation", 2637 | "uuid 1.1.2", 2638 | "windows 0.39.0", 2639 | "windows-implement", 2640 | "x11-dl", 2641 | ] 2642 | 2643 | [[package]] 2644 | name = "tar" 2645 | version = "0.4.38" 2646 | source = "registry+https://github.com/rust-lang/crates.io-index" 2647 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2648 | dependencies = [ 2649 | "filetime", 2650 | "libc", 2651 | "xattr", 2652 | ] 2653 | 2654 | [[package]] 2655 | name = "tauri" 2656 | version = "1.1.1" 2657 | source = "registry+https://github.com/rust-lang/crates.io-index" 2658 | checksum = "efbf22abd61d95ca9b2becd77f9db4c093892f73e8a07d21d8b0b2bf71a7bcea" 2659 | dependencies = [ 2660 | "anyhow", 2661 | "attohttpc", 2662 | "cocoa", 2663 | "dirs-next", 2664 | "embed_plist", 2665 | "encoding_rs", 2666 | "flate2", 2667 | "futures-util", 2668 | "glib", 2669 | "glob", 2670 | "gtk", 2671 | "heck 0.4.0", 2672 | "http", 2673 | "ignore", 2674 | "notify-rust", 2675 | "objc", 2676 | "once_cell", 2677 | "open", 2678 | "os_info", 2679 | "os_pipe", 2680 | "percent-encoding", 2681 | "rand 0.8.5", 2682 | "raw-window-handle", 2683 | "regex", 2684 | "rfd", 2685 | "semver 1.0.14", 2686 | "serde", 2687 | "serde_json", 2688 | "serde_repr", 2689 | "serialize-to-javascript", 2690 | "shared_child", 2691 | "state", 2692 | "tar", 2693 | "tauri-macros", 2694 | "tauri-runtime", 2695 | "tauri-runtime-wry", 2696 | "tauri-utils", 2697 | "tempfile", 2698 | "thiserror", 2699 | "tokio", 2700 | "url", 2701 | "uuid 1.1.2", 2702 | "webkit2gtk", 2703 | "webview2-com", 2704 | "windows 0.39.0", 2705 | ] 2706 | 2707 | [[package]] 2708 | name = "tauri-build" 2709 | version = "1.1.1" 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" 2711 | checksum = "0991fb306849897439dbd4a72e4cbed2413e2eb26cb4b3ba220b94edba8b4b88" 2712 | dependencies = [ 2713 | "anyhow", 2714 | "cargo_toml", 2715 | "heck 0.4.0", 2716 | "json-patch", 2717 | "semver 1.0.14", 2718 | "serde_json", 2719 | "tauri-utils", 2720 | "winres", 2721 | ] 2722 | 2723 | [[package]] 2724 | name = "tauri-codegen" 2725 | version = "1.1.1" 2726 | source = "registry+https://github.com/rust-lang/crates.io-index" 2727 | checksum = "356fa253e40ae4d6ff02075011f2f2bb4066f5c9d8c1e16ca6912d7b75903ba6" 2728 | dependencies = [ 2729 | "base64", 2730 | "brotli", 2731 | "ico", 2732 | "json-patch", 2733 | "plist", 2734 | "png 0.17.6", 2735 | "proc-macro2", 2736 | "quote", 2737 | "regex", 2738 | "semver 1.0.14", 2739 | "serde", 2740 | "serde_json", 2741 | "sha2", 2742 | "tauri-utils", 2743 | "thiserror", 2744 | "time", 2745 | "uuid 1.1.2", 2746 | "walkdir", 2747 | ] 2748 | 2749 | [[package]] 2750 | name = "tauri-macros" 2751 | version = "1.1.1" 2752 | source = "registry+https://github.com/rust-lang/crates.io-index" 2753 | checksum = "d6051fd6940ddb22af452340d03c66a3e2f5d72e0788d4081d91e31528ccdc4d" 2754 | dependencies = [ 2755 | "heck 0.4.0", 2756 | "proc-macro2", 2757 | "quote", 2758 | "syn", 2759 | "tauri-codegen", 2760 | "tauri-utils", 2761 | ] 2762 | 2763 | [[package]] 2764 | name = "tauri-runtime" 2765 | version = "0.11.1" 2766 | source = "registry+https://github.com/rust-lang/crates.io-index" 2767 | checksum = "d49439a5ea47f474572b854972f42eda2e02a470be5ca9609cc83bb66945abe2" 2768 | dependencies = [ 2769 | "gtk", 2770 | "http", 2771 | "http-range", 2772 | "infer", 2773 | "rand 0.8.5", 2774 | "raw-window-handle", 2775 | "serde", 2776 | "serde_json", 2777 | "tauri-utils", 2778 | "thiserror", 2779 | "uuid 1.1.2", 2780 | "webview2-com", 2781 | "windows 0.39.0", 2782 | ] 2783 | 2784 | [[package]] 2785 | name = "tauri-runtime-wry" 2786 | version = "0.11.1" 2787 | source = "registry+https://github.com/rust-lang/crates.io-index" 2788 | checksum = "28dce920995fd49907aa9bea7249ed1771454f11f7611924c920a1f75fb614d4" 2789 | dependencies = [ 2790 | "cocoa", 2791 | "gtk", 2792 | "percent-encoding", 2793 | "rand 0.8.5", 2794 | "raw-window-handle", 2795 | "tauri-runtime", 2796 | "tauri-utils", 2797 | "uuid 1.1.2", 2798 | "webkit2gtk", 2799 | "webview2-com", 2800 | "windows 0.39.0", 2801 | "wry", 2802 | ] 2803 | 2804 | [[package]] 2805 | name = "tauri-utils" 2806 | version = "1.1.1" 2807 | source = "registry+https://github.com/rust-lang/crates.io-index" 2808 | checksum = "1e8fdae6f29cef959809a3c3afef510c5b715a446a597ab8b791497585363f39" 2809 | dependencies = [ 2810 | "brotli", 2811 | "ctor", 2812 | "glob", 2813 | "heck 0.4.0", 2814 | "html5ever", 2815 | "json-patch", 2816 | "kuchiki", 2817 | "memchr", 2818 | "phf 0.10.1", 2819 | "proc-macro2", 2820 | "quote", 2821 | "semver 1.0.14", 2822 | "serde", 2823 | "serde_json", 2824 | "serde_with", 2825 | "thiserror", 2826 | "url", 2827 | "walkdir", 2828 | "windows 0.39.0", 2829 | ] 2830 | 2831 | [[package]] 2832 | name = "tauri-winrt-notification" 2833 | version = "0.1.0" 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" 2835 | checksum = "c58de036c4d2e20717024de2a3c4bf56c301f07b21bc8ef9b57189fce06f1f3b" 2836 | dependencies = [ 2837 | "quick-xml", 2838 | "strum", 2839 | "windows 0.39.0", 2840 | ] 2841 | 2842 | [[package]] 2843 | name = "tempfile" 2844 | version = "3.3.0" 2845 | source = "registry+https://github.com/rust-lang/crates.io-index" 2846 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2847 | dependencies = [ 2848 | "cfg-if", 2849 | "fastrand", 2850 | "libc", 2851 | "redox_syscall", 2852 | "remove_dir_all", 2853 | "winapi", 2854 | ] 2855 | 2856 | [[package]] 2857 | name = "tendril" 2858 | version = "0.4.3" 2859 | source = "registry+https://github.com/rust-lang/crates.io-index" 2860 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2861 | dependencies = [ 2862 | "futf", 2863 | "mac", 2864 | "utf-8", 2865 | ] 2866 | 2867 | [[package]] 2868 | name = "thin-slice" 2869 | version = "0.1.1" 2870 | source = "registry+https://github.com/rust-lang/crates.io-index" 2871 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2872 | 2873 | [[package]] 2874 | name = "thiserror" 2875 | version = "1.0.37" 2876 | source = "registry+https://github.com/rust-lang/crates.io-index" 2877 | checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 2878 | dependencies = [ 2879 | "thiserror-impl", 2880 | ] 2881 | 2882 | [[package]] 2883 | name = "thiserror-impl" 2884 | version = "1.0.37" 2885 | source = "registry+https://github.com/rust-lang/crates.io-index" 2886 | checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 2887 | dependencies = [ 2888 | "proc-macro2", 2889 | "quote", 2890 | "syn", 2891 | ] 2892 | 2893 | [[package]] 2894 | name = "thread_local" 2895 | version = "1.1.4" 2896 | source = "registry+https://github.com/rust-lang/crates.io-index" 2897 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2898 | dependencies = [ 2899 | "once_cell", 2900 | ] 2901 | 2902 | [[package]] 2903 | name = "time" 2904 | version = "0.3.15" 2905 | source = "registry+https://github.com/rust-lang/crates.io-index" 2906 | checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c" 2907 | dependencies = [ 2908 | "itoa 1.0.4", 2909 | "libc", 2910 | "num_threads", 2911 | ] 2912 | 2913 | [[package]] 2914 | name = "tinyvec" 2915 | version = "1.6.0" 2916 | source = "registry+https://github.com/rust-lang/crates.io-index" 2917 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2918 | dependencies = [ 2919 | "tinyvec_macros", 2920 | ] 2921 | 2922 | [[package]] 2923 | name = "tinyvec_macros" 2924 | version = "0.1.0" 2925 | source = "registry+https://github.com/rust-lang/crates.io-index" 2926 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2927 | 2928 | [[package]] 2929 | name = "tokio" 2930 | version = "1.21.2" 2931 | source = "registry+https://github.com/rust-lang/crates.io-index" 2932 | checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" 2933 | dependencies = [ 2934 | "autocfg", 2935 | "bytes", 2936 | "memchr", 2937 | "num_cpus", 2938 | "pin-project-lite", 2939 | ] 2940 | 2941 | [[package]] 2942 | name = "toml" 2943 | version = "0.5.9" 2944 | source = "registry+https://github.com/rust-lang/crates.io-index" 2945 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2946 | dependencies = [ 2947 | "serde", 2948 | ] 2949 | 2950 | [[package]] 2951 | name = "tracing" 2952 | version = "0.1.37" 2953 | source = "registry+https://github.com/rust-lang/crates.io-index" 2954 | checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2955 | dependencies = [ 2956 | "cfg-if", 2957 | "pin-project-lite", 2958 | "tracing-attributes", 2959 | "tracing-core", 2960 | ] 2961 | 2962 | [[package]] 2963 | name = "tracing-attributes" 2964 | version = "0.1.23" 2965 | source = "registry+https://github.com/rust-lang/crates.io-index" 2966 | checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 2967 | dependencies = [ 2968 | "proc-macro2", 2969 | "quote", 2970 | "syn", 2971 | ] 2972 | 2973 | [[package]] 2974 | name = "tracing-core" 2975 | version = "0.1.30" 2976 | source = "registry+https://github.com/rust-lang/crates.io-index" 2977 | checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2978 | dependencies = [ 2979 | "once_cell", 2980 | "valuable", 2981 | ] 2982 | 2983 | [[package]] 2984 | name = "tracing-log" 2985 | version = "0.1.3" 2986 | source = "registry+https://github.com/rust-lang/crates.io-index" 2987 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 2988 | dependencies = [ 2989 | "lazy_static", 2990 | "log", 2991 | "tracing-core", 2992 | ] 2993 | 2994 | [[package]] 2995 | name = "tracing-subscriber" 2996 | version = "0.3.16" 2997 | source = "registry+https://github.com/rust-lang/crates.io-index" 2998 | checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 2999 | dependencies = [ 3000 | "matchers", 3001 | "nu-ansi-term", 3002 | "once_cell", 3003 | "regex", 3004 | "sharded-slab", 3005 | "smallvec", 3006 | "thread_local", 3007 | "tracing", 3008 | "tracing-core", 3009 | "tracing-log", 3010 | ] 3011 | 3012 | [[package]] 3013 | name = "treediff" 3014 | version = "3.0.2" 3015 | source = "registry+https://github.com/rust-lang/crates.io-index" 3016 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3017 | dependencies = [ 3018 | "serde_json", 3019 | ] 3020 | 3021 | [[package]] 3022 | name = "typenum" 3023 | version = "1.15.0" 3024 | source = "registry+https://github.com/rust-lang/crates.io-index" 3025 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3026 | 3027 | [[package]] 3028 | name = "ucd-trie" 3029 | version = "0.1.5" 3030 | source = "registry+https://github.com/rust-lang/crates.io-index" 3031 | checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 3032 | 3033 | [[package]] 3034 | name = "unicode-bidi" 3035 | version = "0.3.8" 3036 | source = "registry+https://github.com/rust-lang/crates.io-index" 3037 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3038 | 3039 | [[package]] 3040 | name = "unicode-ident" 3041 | version = "1.0.4" 3042 | source = "registry+https://github.com/rust-lang/crates.io-index" 3043 | checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd" 3044 | 3045 | [[package]] 3046 | name = "unicode-normalization" 3047 | version = "0.1.22" 3048 | source = "registry+https://github.com/rust-lang/crates.io-index" 3049 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3050 | dependencies = [ 3051 | "tinyvec", 3052 | ] 3053 | 3054 | [[package]] 3055 | name = "unicode-segmentation" 3056 | version = "1.10.0" 3057 | source = "registry+https://github.com/rust-lang/crates.io-index" 3058 | checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 3059 | 3060 | [[package]] 3061 | name = "url" 3062 | version = "2.3.1" 3063 | source = "registry+https://github.com/rust-lang/crates.io-index" 3064 | checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3065 | dependencies = [ 3066 | "form_urlencoded", 3067 | "idna", 3068 | "percent-encoding", 3069 | "serde", 3070 | ] 3071 | 3072 | [[package]] 3073 | name = "utf-8" 3074 | version = "0.7.6" 3075 | source = "registry+https://github.com/rust-lang/crates.io-index" 3076 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3077 | 3078 | [[package]] 3079 | name = "uuid" 3080 | version = "0.8.2" 3081 | source = "registry+https://github.com/rust-lang/crates.io-index" 3082 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3083 | 3084 | [[package]] 3085 | name = "uuid" 3086 | version = "1.1.2" 3087 | source = "registry+https://github.com/rust-lang/crates.io-index" 3088 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3089 | dependencies = [ 3090 | "getrandom 0.2.7", 3091 | ] 3092 | 3093 | [[package]] 3094 | name = "valuable" 3095 | version = "0.1.0" 3096 | source = "registry+https://github.com/rust-lang/crates.io-index" 3097 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3098 | 3099 | [[package]] 3100 | name = "vcpkg" 3101 | version = "0.2.15" 3102 | source = "registry+https://github.com/rust-lang/crates.io-index" 3103 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3104 | 3105 | [[package]] 3106 | name = "version-compare" 3107 | version = "0.0.11" 3108 | source = "registry+https://github.com/rust-lang/crates.io-index" 3109 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3110 | 3111 | [[package]] 3112 | name = "version-compare" 3113 | version = "0.1.0" 3114 | source = "registry+https://github.com/rust-lang/crates.io-index" 3115 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" 3116 | 3117 | [[package]] 3118 | name = "version_check" 3119 | version = "0.9.4" 3120 | source = "registry+https://github.com/rust-lang/crates.io-index" 3121 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3122 | 3123 | [[package]] 3124 | name = "walkdir" 3125 | version = "2.3.2" 3126 | source = "registry+https://github.com/rust-lang/crates.io-index" 3127 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3128 | dependencies = [ 3129 | "same-file", 3130 | "winapi", 3131 | "winapi-util", 3132 | ] 3133 | 3134 | [[package]] 3135 | name = "wasi" 3136 | version = "0.9.0+wasi-snapshot-preview1" 3137 | source = "registry+https://github.com/rust-lang/crates.io-index" 3138 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3139 | 3140 | [[package]] 3141 | name = "wasi" 3142 | version = "0.11.0+wasi-snapshot-preview1" 3143 | source = "registry+https://github.com/rust-lang/crates.io-index" 3144 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3145 | 3146 | [[package]] 3147 | name = "wasm-bindgen" 3148 | version = "0.2.83" 3149 | source = "registry+https://github.com/rust-lang/crates.io-index" 3150 | checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 3151 | dependencies = [ 3152 | "cfg-if", 3153 | "wasm-bindgen-macro", 3154 | ] 3155 | 3156 | [[package]] 3157 | name = "wasm-bindgen-backend" 3158 | version = "0.2.83" 3159 | source = "registry+https://github.com/rust-lang/crates.io-index" 3160 | checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 3161 | dependencies = [ 3162 | "bumpalo", 3163 | "log", 3164 | "once_cell", 3165 | "proc-macro2", 3166 | "quote", 3167 | "syn", 3168 | "wasm-bindgen-shared", 3169 | ] 3170 | 3171 | [[package]] 3172 | name = "wasm-bindgen-futures" 3173 | version = "0.4.33" 3174 | source = "registry+https://github.com/rust-lang/crates.io-index" 3175 | checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 3176 | dependencies = [ 3177 | "cfg-if", 3178 | "js-sys", 3179 | "wasm-bindgen", 3180 | "web-sys", 3181 | ] 3182 | 3183 | [[package]] 3184 | name = "wasm-bindgen-macro" 3185 | version = "0.2.83" 3186 | source = "registry+https://github.com/rust-lang/crates.io-index" 3187 | checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 3188 | dependencies = [ 3189 | "quote", 3190 | "wasm-bindgen-macro-support", 3191 | ] 3192 | 3193 | [[package]] 3194 | name = "wasm-bindgen-macro-support" 3195 | version = "0.2.83" 3196 | source = "registry+https://github.com/rust-lang/crates.io-index" 3197 | checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 3198 | dependencies = [ 3199 | "proc-macro2", 3200 | "quote", 3201 | "syn", 3202 | "wasm-bindgen-backend", 3203 | "wasm-bindgen-shared", 3204 | ] 3205 | 3206 | [[package]] 3207 | name = "wasm-bindgen-shared" 3208 | version = "0.2.83" 3209 | source = "registry+https://github.com/rust-lang/crates.io-index" 3210 | checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 3211 | 3212 | [[package]] 3213 | name = "web-sys" 3214 | version = "0.3.60" 3215 | source = "registry+https://github.com/rust-lang/crates.io-index" 3216 | checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 3217 | dependencies = [ 3218 | "js-sys", 3219 | "wasm-bindgen", 3220 | ] 3221 | 3222 | [[package]] 3223 | name = "webkit2gtk" 3224 | version = "0.18.0" 3225 | source = "registry+https://github.com/rust-lang/crates.io-index" 3226 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc" 3227 | dependencies = [ 3228 | "bitflags", 3229 | "cairo-rs", 3230 | "gdk", 3231 | "gdk-sys", 3232 | "gio", 3233 | "gio-sys", 3234 | "glib", 3235 | "glib-sys", 3236 | "gobject-sys", 3237 | "gtk", 3238 | "gtk-sys", 3239 | "javascriptcore-rs", 3240 | "libc", 3241 | "once_cell", 3242 | "soup2", 3243 | "webkit2gtk-sys", 3244 | ] 3245 | 3246 | [[package]] 3247 | name = "webkit2gtk-sys" 3248 | version = "0.18.0" 3249 | source = "registry+https://github.com/rust-lang/crates.io-index" 3250 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3251 | dependencies = [ 3252 | "atk-sys", 3253 | "bitflags", 3254 | "cairo-sys-rs", 3255 | "gdk-pixbuf-sys", 3256 | "gdk-sys", 3257 | "gio-sys", 3258 | "glib-sys", 3259 | "gobject-sys", 3260 | "gtk-sys", 3261 | "javascriptcore-rs-sys", 3262 | "libc", 3263 | "pango-sys", 3264 | "pkg-config", 3265 | "soup2-sys", 3266 | "system-deps 6.0.2", 3267 | ] 3268 | 3269 | [[package]] 3270 | name = "webview2-com" 3271 | version = "0.19.1" 3272 | source = "registry+https://github.com/rust-lang/crates.io-index" 3273 | checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178" 3274 | dependencies = [ 3275 | "webview2-com-macros", 3276 | "webview2-com-sys", 3277 | "windows 0.39.0", 3278 | "windows-implement", 3279 | ] 3280 | 3281 | [[package]] 3282 | name = "webview2-com-macros" 3283 | version = "0.6.0" 3284 | source = "registry+https://github.com/rust-lang/crates.io-index" 3285 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3286 | dependencies = [ 3287 | "proc-macro2", 3288 | "quote", 3289 | "syn", 3290 | ] 3291 | 3292 | [[package]] 3293 | name = "webview2-com-sys" 3294 | version = "0.19.0" 3295 | source = "registry+https://github.com/rust-lang/crates.io-index" 3296 | checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7" 3297 | dependencies = [ 3298 | "regex", 3299 | "serde", 3300 | "serde_json", 3301 | "thiserror", 3302 | "windows 0.39.0", 3303 | "windows-bindgen", 3304 | "windows-metadata", 3305 | ] 3306 | 3307 | [[package]] 3308 | name = "winapi" 3309 | version = "0.3.9" 3310 | source = "registry+https://github.com/rust-lang/crates.io-index" 3311 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3312 | dependencies = [ 3313 | "winapi-i686-pc-windows-gnu", 3314 | "winapi-x86_64-pc-windows-gnu", 3315 | ] 3316 | 3317 | [[package]] 3318 | name = "winapi-i686-pc-windows-gnu" 3319 | version = "0.4.0" 3320 | source = "registry+https://github.com/rust-lang/crates.io-index" 3321 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3322 | 3323 | [[package]] 3324 | name = "winapi-util" 3325 | version = "0.1.5" 3326 | source = "registry+https://github.com/rust-lang/crates.io-index" 3327 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3328 | dependencies = [ 3329 | "winapi", 3330 | ] 3331 | 3332 | [[package]] 3333 | name = "winapi-x86_64-pc-windows-gnu" 3334 | version = "0.4.0" 3335 | source = "registry+https://github.com/rust-lang/crates.io-index" 3336 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3337 | 3338 | [[package]] 3339 | name = "windows" 3340 | version = "0.32.0" 3341 | source = "registry+https://github.com/rust-lang/crates.io-index" 3342 | checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec" 3343 | dependencies = [ 3344 | "windows_aarch64_msvc 0.32.0", 3345 | "windows_i686_gnu 0.32.0", 3346 | "windows_i686_msvc 0.32.0", 3347 | "windows_x86_64_gnu 0.32.0", 3348 | "windows_x86_64_msvc 0.32.0", 3349 | ] 3350 | 3351 | [[package]] 3352 | name = "windows" 3353 | version = "0.37.0" 3354 | source = "registry+https://github.com/rust-lang/crates.io-index" 3355 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3356 | dependencies = [ 3357 | "windows_aarch64_msvc 0.37.0", 3358 | "windows_i686_gnu 0.37.0", 3359 | "windows_i686_msvc 0.37.0", 3360 | "windows_x86_64_gnu 0.37.0", 3361 | "windows_x86_64_msvc 0.37.0", 3362 | ] 3363 | 3364 | [[package]] 3365 | name = "windows" 3366 | version = "0.39.0" 3367 | source = "registry+https://github.com/rust-lang/crates.io-index" 3368 | checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3369 | dependencies = [ 3370 | "windows-implement", 3371 | "windows_aarch64_msvc 0.39.0", 3372 | "windows_i686_gnu 0.39.0", 3373 | "windows_i686_msvc 0.39.0", 3374 | "windows_x86_64_gnu 0.39.0", 3375 | "windows_x86_64_msvc 0.39.0", 3376 | ] 3377 | 3378 | [[package]] 3379 | name = "windows-bindgen" 3380 | version = "0.39.0" 3381 | source = "registry+https://github.com/rust-lang/crates.io-index" 3382 | checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41" 3383 | dependencies = [ 3384 | "windows-metadata", 3385 | "windows-tokens", 3386 | ] 3387 | 3388 | [[package]] 3389 | name = "windows-implement" 3390 | version = "0.39.0" 3391 | source = "registry+https://github.com/rust-lang/crates.io-index" 3392 | checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7" 3393 | dependencies = [ 3394 | "syn", 3395 | "windows-tokens", 3396 | ] 3397 | 3398 | [[package]] 3399 | name = "windows-metadata" 3400 | version = "0.39.0" 3401 | source = "registry+https://github.com/rust-lang/crates.io-index" 3402 | checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 3403 | 3404 | [[package]] 3405 | name = "windows-sys" 3406 | version = "0.36.1" 3407 | source = "registry+https://github.com/rust-lang/crates.io-index" 3408 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3409 | dependencies = [ 3410 | "windows_aarch64_msvc 0.36.1", 3411 | "windows_i686_gnu 0.36.1", 3412 | "windows_i686_msvc 0.36.1", 3413 | "windows_x86_64_gnu 0.36.1", 3414 | "windows_x86_64_msvc 0.36.1", 3415 | ] 3416 | 3417 | [[package]] 3418 | name = "windows-tokens" 3419 | version = "0.39.0" 3420 | source = "registry+https://github.com/rust-lang/crates.io-index" 3421 | checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 3422 | 3423 | [[package]] 3424 | name = "windows_aarch64_msvc" 3425 | version = "0.32.0" 3426 | source = "registry+https://github.com/rust-lang/crates.io-index" 3427 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" 3428 | 3429 | [[package]] 3430 | name = "windows_aarch64_msvc" 3431 | version = "0.36.1" 3432 | source = "registry+https://github.com/rust-lang/crates.io-index" 3433 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3434 | 3435 | [[package]] 3436 | name = "windows_aarch64_msvc" 3437 | version = "0.37.0" 3438 | source = "registry+https://github.com/rust-lang/crates.io-index" 3439 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3440 | 3441 | [[package]] 3442 | name = "windows_aarch64_msvc" 3443 | version = "0.39.0" 3444 | source = "registry+https://github.com/rust-lang/crates.io-index" 3445 | checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3446 | 3447 | [[package]] 3448 | name = "windows_i686_gnu" 3449 | version = "0.32.0" 3450 | source = "registry+https://github.com/rust-lang/crates.io-index" 3451 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" 3452 | 3453 | [[package]] 3454 | name = "windows_i686_gnu" 3455 | version = "0.36.1" 3456 | source = "registry+https://github.com/rust-lang/crates.io-index" 3457 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3458 | 3459 | [[package]] 3460 | name = "windows_i686_gnu" 3461 | version = "0.37.0" 3462 | source = "registry+https://github.com/rust-lang/crates.io-index" 3463 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3464 | 3465 | [[package]] 3466 | name = "windows_i686_gnu" 3467 | version = "0.39.0" 3468 | source = "registry+https://github.com/rust-lang/crates.io-index" 3469 | checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3470 | 3471 | [[package]] 3472 | name = "windows_i686_msvc" 3473 | version = "0.32.0" 3474 | source = "registry+https://github.com/rust-lang/crates.io-index" 3475 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" 3476 | 3477 | [[package]] 3478 | name = "windows_i686_msvc" 3479 | version = "0.36.1" 3480 | source = "registry+https://github.com/rust-lang/crates.io-index" 3481 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3482 | 3483 | [[package]] 3484 | name = "windows_i686_msvc" 3485 | version = "0.37.0" 3486 | source = "registry+https://github.com/rust-lang/crates.io-index" 3487 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3488 | 3489 | [[package]] 3490 | name = "windows_i686_msvc" 3491 | version = "0.39.0" 3492 | source = "registry+https://github.com/rust-lang/crates.io-index" 3493 | checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3494 | 3495 | [[package]] 3496 | name = "windows_x86_64_gnu" 3497 | version = "0.32.0" 3498 | source = "registry+https://github.com/rust-lang/crates.io-index" 3499 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" 3500 | 3501 | [[package]] 3502 | name = "windows_x86_64_gnu" 3503 | version = "0.36.1" 3504 | source = "registry+https://github.com/rust-lang/crates.io-index" 3505 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3506 | 3507 | [[package]] 3508 | name = "windows_x86_64_gnu" 3509 | version = "0.37.0" 3510 | source = "registry+https://github.com/rust-lang/crates.io-index" 3511 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3512 | 3513 | [[package]] 3514 | name = "windows_x86_64_gnu" 3515 | version = "0.39.0" 3516 | source = "registry+https://github.com/rust-lang/crates.io-index" 3517 | checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3518 | 3519 | [[package]] 3520 | name = "windows_x86_64_msvc" 3521 | version = "0.32.0" 3522 | source = "registry+https://github.com/rust-lang/crates.io-index" 3523 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" 3524 | 3525 | [[package]] 3526 | name = "windows_x86_64_msvc" 3527 | version = "0.36.1" 3528 | source = "registry+https://github.com/rust-lang/crates.io-index" 3529 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3530 | 3531 | [[package]] 3532 | name = "windows_x86_64_msvc" 3533 | version = "0.37.0" 3534 | source = "registry+https://github.com/rust-lang/crates.io-index" 3535 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3536 | 3537 | [[package]] 3538 | name = "windows_x86_64_msvc" 3539 | version = "0.39.0" 3540 | source = "registry+https://github.com/rust-lang/crates.io-index" 3541 | checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3542 | 3543 | [[package]] 3544 | name = "winres" 3545 | version = "0.1.12" 3546 | source = "registry+https://github.com/rust-lang/crates.io-index" 3547 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3548 | dependencies = [ 3549 | "toml", 3550 | ] 3551 | 3552 | [[package]] 3553 | name = "wry" 3554 | version = "0.21.1" 3555 | source = "registry+https://github.com/rust-lang/crates.io-index" 3556 | checksum = "ff5c1352b4266fdf92c63479d2f58ab4cd29dc4e78fbc1b62011ed1227926945" 3557 | dependencies = [ 3558 | "base64", 3559 | "block", 3560 | "cocoa", 3561 | "core-graphics", 3562 | "crossbeam-channel", 3563 | "gdk", 3564 | "gio", 3565 | "glib", 3566 | "gtk", 3567 | "html5ever", 3568 | "http", 3569 | "kuchiki", 3570 | "libc", 3571 | "log", 3572 | "objc", 3573 | "objc_id", 3574 | "once_cell", 3575 | "serde", 3576 | "serde_json", 3577 | "sha2", 3578 | "tao", 3579 | "thiserror", 3580 | "url", 3581 | "webkit2gtk", 3582 | "webkit2gtk-sys", 3583 | "webview2-com", 3584 | "windows 0.39.0", 3585 | "windows-implement", 3586 | ] 3587 | 3588 | [[package]] 3589 | name = "x11" 3590 | version = "2.20.0" 3591 | source = "registry+https://github.com/rust-lang/crates.io-index" 3592 | checksum = "f7ae97874a928d821b061fce3d1fc52f08071dd53c89a6102bc06efcac3b2908" 3593 | dependencies = [ 3594 | "libc", 3595 | "pkg-config", 3596 | ] 3597 | 3598 | [[package]] 3599 | name = "x11-dl" 3600 | version = "2.20.0" 3601 | source = "registry+https://github.com/rust-lang/crates.io-index" 3602 | checksum = "0c83627bc137605acc00bb399c7b908ef460b621fc37c953db2b09f88c449ea6" 3603 | dependencies = [ 3604 | "lazy_static", 3605 | "libc", 3606 | "pkg-config", 3607 | ] 3608 | 3609 | [[package]] 3610 | name = "xattr" 3611 | version = "0.2.3" 3612 | source = "registry+https://github.com/rust-lang/crates.io-index" 3613 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3614 | dependencies = [ 3615 | "libc", 3616 | ] 3617 | 3618 | [[package]] 3619 | name = "xml-rs" 3620 | version = "0.8.4" 3621 | source = "registry+https://github.com/rust-lang/crates.io-index" 3622 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3623 | --------------------------------------------------------------------------------