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