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