├── src
├── env.d.ts
└── pages
│ └── index.astro
├── src-tauri
├── build.rs
├── icons
│ ├── 32x32.png
│ ├── icon.icns
│ ├── icon.ico
│ ├── icon.png
│ ├── 128x128.png
│ ├── 128x128@2x.png
│ ├── StoreLogo.png
│ ├── Square30x30Logo.png
│ ├── Square44x44Logo.png
│ ├── Square71x71Logo.png
│ ├── Square89x89Logo.png
│ ├── Square107x107Logo.png
│ ├── Square142x142Logo.png
│ ├── Square150x150Logo.png
│ ├── Square284x284Logo.png
│ └── Square310x310Logo.png
├── .gitignore
├── src
│ ├── main.rs
│ └── lib.rs
├── capabilities
│ └── default.json
├── Cargo.toml
├── tauri.conf.json
└── Cargo.lock
├── tsconfig.json
├── astro.config.mjs
├── .gitignore
├── package.json
├── README.md
└── public
└── favicon.svg
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "astro/tsconfigs/strict",
3 | "exclude": ["src-tauri"]
4 | }
--------------------------------------------------------------------------------
/src-tauri/icons/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/32x32.png
--------------------------------------------------------------------------------
/src-tauri/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/icon.icns
--------------------------------------------------------------------------------
/src-tauri/icons/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/icon.ico
--------------------------------------------------------------------------------
/src-tauri/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/icon.png
--------------------------------------------------------------------------------
/src-tauri/.gitignore:
--------------------------------------------------------------------------------
1 | # Generated by Cargo
2 | # will have compiled files and executables
3 | /target/
4 | /gen/schemas
5 |
--------------------------------------------------------------------------------
/src-tauri/icons/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/128x128.png
--------------------------------------------------------------------------------
/src-tauri/icons/128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/128x128@2x.png
--------------------------------------------------------------------------------
/src-tauri/icons/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/StoreLogo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square30x30Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square30x30Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square44x44Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square71x71Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square89x89Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square89x89Logo.png
--------------------------------------------------------------------------------
/astro.config.mjs:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'astro/config';
2 |
3 | // https://astro.build/config
4 | export default defineConfig({});
5 |
--------------------------------------------------------------------------------
/src-tauri/icons/Square107x107Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square107x107Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square142x142Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square142x142Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square150x150Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square284x284Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square284x284Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HuakunShen/tauri-astro-template/HEAD/src-tauri/icons/Square310x310Logo.png
--------------------------------------------------------------------------------
/src-tauri/src/main.rs:
--------------------------------------------------------------------------------
1 | // Prevents additional console window on Windows in release, DO NOT REMOVE!!
2 | #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
3 |
4 | fn main() {
5 | app_lib::run();
6 | }
7 |
--------------------------------------------------------------------------------
/src-tauri/src/lib.rs:
--------------------------------------------------------------------------------
1 | #[cfg_attr(mobile, tauri::mobile_entry_point)]
2 | pub fn run() {
3 | tauri::Builder::default()
4 | .run(tauri::generate_context!())
5 | .expect("error while running tauri application");
6 | }
7 |
--------------------------------------------------------------------------------
/src/pages/index.astro:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | ---
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | Astro
12 |
13 |
14 | Astro
15 |
16 |
17 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # build output
2 | dist/
3 | # generated types
4 | .astro/
5 |
6 | # dependencies
7 | node_modules/
8 |
9 | # logs
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 | pnpm-debug.log*
14 |
15 |
16 | # environment variables
17 | .env
18 | .env.production
19 |
20 | # macOS-specific files
21 | .DS_Store
22 |
23 | # jetbrains setting folder
24 | .idea/
25 | .vscode/
26 | target/
--------------------------------------------------------------------------------
/src-tauri/capabilities/default.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "../gen/schemas/desktop-schema.json",
3 | "identifier": "default",
4 | "description": "enables the default permissions",
5 | "windows": ["main"],
6 | "permissions": [
7 | "path:default",
8 | "event:default",
9 | "window:default",
10 | "webview:default",
11 | "app:default",
12 | "resources:default",
13 | "image:default",
14 | "menu:default",
15 | "tray:default"
16 | ]
17 | }
18 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tauri-astro-template",
3 | "type": "module",
4 | "version": "0.0.1",
5 | "scripts": {
6 | "dev": "astro dev",
7 | "start": "astro dev",
8 | "build": "astro check && astro build",
9 | "preview": "astro preview",
10 | "astro": "astro",
11 | "tauri": "tauri"
12 | },
13 | "dependencies": {
14 | "@astrojs/check": "^0.6.0",
15 | "@tauri-apps/api": "2.0.0-beta.11",
16 | "astro": "^4.8.2",
17 | "typescript": "^5.4.5"
18 | },
19 | "devDependencies": {
20 | "@tauri-apps/cli": "2.0.0-beta.17"
21 | }
22 | }
--------------------------------------------------------------------------------
/src-tauri/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "app"
3 | version = "0.1.0"
4 | description = "A Tauri App"
5 | authors = ["you"]
6 | license = ""
7 | repository = ""
8 | edition = "2021"
9 | rust-version = "1.70"
10 |
11 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12 |
13 | [lib]
14 | name = "app_lib"
15 | crate-type = ["staticlib", "cdylib", "rlib"]
16 |
17 | [build-dependencies]
18 | tauri-build = { version = "2.0.0-beta.15", features = [] }
19 |
20 | [dependencies]
21 | serde_json = "1.0"
22 | serde = { version = "1.0", features = ["derive"] }
23 | tauri = { version = "2.0.0-beta.19", features = [] }
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # tauri-astro-template
2 |
3 | This is a template for a Tauri application that uses the [astro](https://astro.build) static site generator.
4 |
5 | ## Branches
6 |
7 | - `main`: the main branch contains a completely empty Astro project + Tauri v1 with zero setup
8 | - `v2`: you can find the the tauri-astro template with Tauri v2 (currently in beta)
9 | - `shadcn-vue`: you can find the the tauri-astro template with TailwindCSS + Vue.js + shadcn-vue
10 | - `v2-shadcn-vue`: Tauri v2 (beta) + astro + TailwindCSS + Vue.js + shadcn-vue
11 |
12 | If you want to use react with shadcn, you can add react and shadcn for react. I didn't make another branch for that.
13 |
--------------------------------------------------------------------------------
/public/favicon.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/src-tauri/tauri.conf.json:
--------------------------------------------------------------------------------
1 | {
2 | "productName": "tauri-astro-template",
3 | "version": "0.1.0",
4 | "identifier": "astro.tauri.dev",
5 | "build": {
6 | "frontendDist": "../dist",
7 | "devUrl": "http://localhost:4321",
8 | "beforeDevCommand": "npm run dev",
9 | "beforeBuildCommand": "npm run build"
10 | },
11 | "app": {
12 | "windows": [
13 | {
14 | "title": "tauri-astro-template",
15 | "width": 800,
16 | "height": 600,
17 | "resizable": true,
18 | "fullscreen": false
19 | }
20 | ],
21 | "security": {
22 | "csp": null
23 | }
24 | },
25 | "bundle": {
26 | "active": true,
27 | "targets": "all",
28 | "icon": [
29 | "icons/32x32.png",
30 | "icons/128x128.png",
31 | "icons/128x128@2x.png",
32 | "icons/icon.icns",
33 | "icons/icon.ico"
34 | ]
35 | },
36 | "$schema": "../node_modules/@tauri-apps/cli/schema.json"
37 | }
38 |
--------------------------------------------------------------------------------
/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 = "addr2line"
7 | version = "0.21.0"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10 | dependencies = [
11 | "gimli",
12 | ]
13 |
14 | [[package]]
15 | name = "adler"
16 | version = "1.0.2"
17 | source = "registry+https://github.com/rust-lang/crates.io-index"
18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19 |
20 | [[package]]
21 | name = "aho-corasick"
22 | version = "1.1.3"
23 | source = "registry+https://github.com/rust-lang/crates.io-index"
24 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25 | dependencies = [
26 | "memchr",
27 | ]
28 |
29 | [[package]]
30 | name = "alloc-no-stdlib"
31 | version = "2.0.4"
32 | source = "registry+https://github.com/rust-lang/crates.io-index"
33 | checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
34 |
35 | [[package]]
36 | name = "alloc-stdlib"
37 | version = "0.2.2"
38 | source = "registry+https://github.com/rust-lang/crates.io-index"
39 | checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
40 | dependencies = [
41 | "alloc-no-stdlib",
42 | ]
43 |
44 | [[package]]
45 | name = "android-tzdata"
46 | version = "0.1.1"
47 | source = "registry+https://github.com/rust-lang/crates.io-index"
48 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
49 |
50 | [[package]]
51 | name = "android_system_properties"
52 | version = "0.1.5"
53 | source = "registry+https://github.com/rust-lang/crates.io-index"
54 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
55 | dependencies = [
56 | "libc",
57 | ]
58 |
59 | [[package]]
60 | name = "anyhow"
61 | version = "1.0.83"
62 | source = "registry+https://github.com/rust-lang/crates.io-index"
63 | checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
64 |
65 | [[package]]
66 | name = "app"
67 | version = "0.1.0"
68 | dependencies = [
69 | "serde",
70 | "serde_json",
71 | "tauri",
72 | "tauri-build",
73 | ]
74 |
75 | [[package]]
76 | name = "atk"
77 | version = "0.18.0"
78 | source = "registry+https://github.com/rust-lang/crates.io-index"
79 | checksum = "b4af014b17dd80e8af9fa689b2d4a211ddba6eb583c1622f35d0cb543f6b17e4"
80 | dependencies = [
81 | "atk-sys",
82 | "glib",
83 | "libc",
84 | ]
85 |
86 | [[package]]
87 | name = "atk-sys"
88 | version = "0.18.0"
89 | source = "registry+https://github.com/rust-lang/crates.io-index"
90 | checksum = "251e0b7d90e33e0ba930891a505a9a35ece37b2dd37a14f3ffc306c13b980009"
91 | dependencies = [
92 | "glib-sys",
93 | "gobject-sys",
94 | "libc",
95 | "system-deps",
96 | ]
97 |
98 | [[package]]
99 | name = "autocfg"
100 | version = "1.3.0"
101 | source = "registry+https://github.com/rust-lang/crates.io-index"
102 | checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
103 |
104 | [[package]]
105 | name = "backtrace"
106 | version = "0.3.71"
107 | source = "registry+https://github.com/rust-lang/crates.io-index"
108 | checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
109 | dependencies = [
110 | "addr2line",
111 | "cc",
112 | "cfg-if",
113 | "libc",
114 | "miniz_oxide",
115 | "object",
116 | "rustc-demangle",
117 | ]
118 |
119 | [[package]]
120 | name = "base64"
121 | version = "0.21.7"
122 | source = "registry+https://github.com/rust-lang/crates.io-index"
123 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
124 |
125 | [[package]]
126 | name = "base64"
127 | version = "0.22.1"
128 | source = "registry+https://github.com/rust-lang/crates.io-index"
129 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
130 |
131 | [[package]]
132 | name = "bitflags"
133 | version = "1.3.2"
134 | source = "registry+https://github.com/rust-lang/crates.io-index"
135 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
136 |
137 | [[package]]
138 | name = "bitflags"
139 | version = "2.5.0"
140 | source = "registry+https://github.com/rust-lang/crates.io-index"
141 | checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
142 | dependencies = [
143 | "serde",
144 | ]
145 |
146 | [[package]]
147 | name = "block"
148 | version = "0.1.6"
149 | source = "registry+https://github.com/rust-lang/crates.io-index"
150 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
151 |
152 | [[package]]
153 | name = "block-buffer"
154 | version = "0.10.4"
155 | source = "registry+https://github.com/rust-lang/crates.io-index"
156 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
157 | dependencies = [
158 | "generic-array",
159 | ]
160 |
161 | [[package]]
162 | name = "brotli"
163 | version = "3.5.0"
164 | source = "registry+https://github.com/rust-lang/crates.io-index"
165 | checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
166 | dependencies = [
167 | "alloc-no-stdlib",
168 | "alloc-stdlib",
169 | "brotli-decompressor",
170 | ]
171 |
172 | [[package]]
173 | name = "brotli-decompressor"
174 | version = "2.5.1"
175 | source = "registry+https://github.com/rust-lang/crates.io-index"
176 | checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
177 | dependencies = [
178 | "alloc-no-stdlib",
179 | "alloc-stdlib",
180 | ]
181 |
182 | [[package]]
183 | name = "bumpalo"
184 | version = "3.16.0"
185 | source = "registry+https://github.com/rust-lang/crates.io-index"
186 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
187 |
188 | [[package]]
189 | name = "bytemuck"
190 | version = "1.16.0"
191 | source = "registry+https://github.com/rust-lang/crates.io-index"
192 | checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
193 |
194 | [[package]]
195 | name = "byteorder"
196 | version = "1.5.0"
197 | source = "registry+https://github.com/rust-lang/crates.io-index"
198 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
199 |
200 | [[package]]
201 | name = "bytes"
202 | version = "1.6.0"
203 | source = "registry+https://github.com/rust-lang/crates.io-index"
204 | checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
205 | dependencies = [
206 | "serde",
207 | ]
208 |
209 | [[package]]
210 | name = "cairo-rs"
211 | version = "0.18.5"
212 | source = "registry+https://github.com/rust-lang/crates.io-index"
213 | checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
214 | dependencies = [
215 | "bitflags 2.5.0",
216 | "cairo-sys-rs",
217 | "glib",
218 | "libc",
219 | "once_cell",
220 | "thiserror",
221 | ]
222 |
223 | [[package]]
224 | name = "cairo-sys-rs"
225 | version = "0.18.2"
226 | source = "registry+https://github.com/rust-lang/crates.io-index"
227 | checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
228 | dependencies = [
229 | "glib-sys",
230 | "libc",
231 | "system-deps",
232 | ]
233 |
234 | [[package]]
235 | name = "camino"
236 | version = "1.1.6"
237 | source = "registry+https://github.com/rust-lang/crates.io-index"
238 | checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
239 | dependencies = [
240 | "serde",
241 | ]
242 |
243 | [[package]]
244 | name = "cargo-platform"
245 | version = "0.1.8"
246 | source = "registry+https://github.com/rust-lang/crates.io-index"
247 | checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"
248 | dependencies = [
249 | "serde",
250 | ]
251 |
252 | [[package]]
253 | name = "cargo_metadata"
254 | version = "0.18.1"
255 | source = "registry+https://github.com/rust-lang/crates.io-index"
256 | checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
257 | dependencies = [
258 | "camino",
259 | "cargo-platform",
260 | "semver",
261 | "serde",
262 | "serde_json",
263 | "thiserror",
264 | ]
265 |
266 | [[package]]
267 | name = "cargo_toml"
268 | version = "0.17.2"
269 | source = "registry+https://github.com/rust-lang/crates.io-index"
270 | checksum = "8a969e13a7589e9e3e4207e153bae624ade2b5622fb4684a4923b23ec3d57719"
271 | dependencies = [
272 | "serde",
273 | "toml 0.8.2",
274 | ]
275 |
276 | [[package]]
277 | name = "cc"
278 | version = "1.0.97"
279 | source = "registry+https://github.com/rust-lang/crates.io-index"
280 | checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
281 |
282 | [[package]]
283 | name = "cesu8"
284 | version = "1.1.0"
285 | source = "registry+https://github.com/rust-lang/crates.io-index"
286 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
287 |
288 | [[package]]
289 | name = "cfb"
290 | version = "0.7.3"
291 | source = "registry+https://github.com/rust-lang/crates.io-index"
292 | checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
293 | dependencies = [
294 | "byteorder",
295 | "fnv",
296 | "uuid",
297 | ]
298 |
299 | [[package]]
300 | name = "cfg-expr"
301 | version = "0.15.8"
302 | source = "registry+https://github.com/rust-lang/crates.io-index"
303 | checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
304 | dependencies = [
305 | "smallvec",
306 | "target-lexicon",
307 | ]
308 |
309 | [[package]]
310 | name = "cfg-if"
311 | version = "1.0.0"
312 | source = "registry+https://github.com/rust-lang/crates.io-index"
313 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
314 |
315 | [[package]]
316 | name = "cfg_aliases"
317 | version = "0.2.1"
318 | source = "registry+https://github.com/rust-lang/crates.io-index"
319 | checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
320 |
321 | [[package]]
322 | name = "chrono"
323 | version = "0.4.38"
324 | source = "registry+https://github.com/rust-lang/crates.io-index"
325 | checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
326 | dependencies = [
327 | "android-tzdata",
328 | "iana-time-zone",
329 | "num-traits",
330 | "serde",
331 | "windows-targets 0.52.5",
332 | ]
333 |
334 | [[package]]
335 | name = "cocoa"
336 | version = "0.25.0"
337 | source = "registry+https://github.com/rust-lang/crates.io-index"
338 | checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c"
339 | dependencies = [
340 | "bitflags 1.3.2",
341 | "block",
342 | "cocoa-foundation",
343 | "core-foundation",
344 | "core-graphics",
345 | "foreign-types",
346 | "libc",
347 | "objc",
348 | ]
349 |
350 | [[package]]
351 | name = "cocoa-foundation"
352 | version = "0.1.2"
353 | source = "registry+https://github.com/rust-lang/crates.io-index"
354 | checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7"
355 | dependencies = [
356 | "bitflags 1.3.2",
357 | "block",
358 | "core-foundation",
359 | "core-graphics-types",
360 | "libc",
361 | "objc",
362 | ]
363 |
364 | [[package]]
365 | name = "combine"
366 | version = "4.6.7"
367 | source = "registry+https://github.com/rust-lang/crates.io-index"
368 | checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
369 | dependencies = [
370 | "bytes",
371 | "memchr",
372 | ]
373 |
374 | [[package]]
375 | name = "convert_case"
376 | version = "0.4.0"
377 | source = "registry+https://github.com/rust-lang/crates.io-index"
378 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
379 |
380 | [[package]]
381 | name = "core-foundation"
382 | version = "0.9.4"
383 | source = "registry+https://github.com/rust-lang/crates.io-index"
384 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
385 | dependencies = [
386 | "core-foundation-sys",
387 | "libc",
388 | ]
389 |
390 | [[package]]
391 | name = "core-foundation-sys"
392 | version = "0.8.6"
393 | source = "registry+https://github.com/rust-lang/crates.io-index"
394 | checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
395 |
396 | [[package]]
397 | name = "core-graphics"
398 | version = "0.23.2"
399 | source = "registry+https://github.com/rust-lang/crates.io-index"
400 | checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
401 | dependencies = [
402 | "bitflags 1.3.2",
403 | "core-foundation",
404 | "core-graphics-types",
405 | "foreign-types",
406 | "libc",
407 | ]
408 |
409 | [[package]]
410 | name = "core-graphics-types"
411 | version = "0.1.3"
412 | source = "registry+https://github.com/rust-lang/crates.io-index"
413 | checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
414 | dependencies = [
415 | "bitflags 1.3.2",
416 | "core-foundation",
417 | "libc",
418 | ]
419 |
420 | [[package]]
421 | name = "cpufeatures"
422 | version = "0.2.12"
423 | source = "registry+https://github.com/rust-lang/crates.io-index"
424 | checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
425 | dependencies = [
426 | "libc",
427 | ]
428 |
429 | [[package]]
430 | name = "crc32fast"
431 | version = "1.4.0"
432 | source = "registry+https://github.com/rust-lang/crates.io-index"
433 | checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
434 | dependencies = [
435 | "cfg-if",
436 | ]
437 |
438 | [[package]]
439 | name = "crossbeam-channel"
440 | version = "0.5.12"
441 | source = "registry+https://github.com/rust-lang/crates.io-index"
442 | checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
443 | dependencies = [
444 | "crossbeam-utils",
445 | ]
446 |
447 | [[package]]
448 | name = "crossbeam-utils"
449 | version = "0.8.19"
450 | source = "registry+https://github.com/rust-lang/crates.io-index"
451 | checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
452 |
453 | [[package]]
454 | name = "crypto-common"
455 | version = "0.1.6"
456 | source = "registry+https://github.com/rust-lang/crates.io-index"
457 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
458 | dependencies = [
459 | "generic-array",
460 | "typenum",
461 | ]
462 |
463 | [[package]]
464 | name = "cssparser"
465 | version = "0.27.2"
466 | source = "registry+https://github.com/rust-lang/crates.io-index"
467 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
468 | dependencies = [
469 | "cssparser-macros",
470 | "dtoa-short",
471 | "itoa 0.4.8",
472 | "matches",
473 | "phf 0.8.0",
474 | "proc-macro2",
475 | "quote",
476 | "smallvec",
477 | "syn 1.0.109",
478 | ]
479 |
480 | [[package]]
481 | name = "cssparser-macros"
482 | version = "0.6.1"
483 | source = "registry+https://github.com/rust-lang/crates.io-index"
484 | checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
485 | dependencies = [
486 | "quote",
487 | "syn 2.0.63",
488 | ]
489 |
490 | [[package]]
491 | name = "ctor"
492 | version = "0.2.8"
493 | source = "registry+https://github.com/rust-lang/crates.io-index"
494 | checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
495 | dependencies = [
496 | "quote",
497 | "syn 2.0.63",
498 | ]
499 |
500 | [[package]]
501 | name = "darling"
502 | version = "0.20.8"
503 | source = "registry+https://github.com/rust-lang/crates.io-index"
504 | checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
505 | dependencies = [
506 | "darling_core",
507 | "darling_macro",
508 | ]
509 |
510 | [[package]]
511 | name = "darling_core"
512 | version = "0.20.8"
513 | source = "registry+https://github.com/rust-lang/crates.io-index"
514 | checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
515 | dependencies = [
516 | "fnv",
517 | "ident_case",
518 | "proc-macro2",
519 | "quote",
520 | "strsim",
521 | "syn 2.0.63",
522 | ]
523 |
524 | [[package]]
525 | name = "darling_macro"
526 | version = "0.20.8"
527 | source = "registry+https://github.com/rust-lang/crates.io-index"
528 | checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
529 | dependencies = [
530 | "darling_core",
531 | "quote",
532 | "syn 2.0.63",
533 | ]
534 |
535 | [[package]]
536 | name = "deranged"
537 | version = "0.3.11"
538 | source = "registry+https://github.com/rust-lang/crates.io-index"
539 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
540 | dependencies = [
541 | "powerfmt",
542 | "serde",
543 | ]
544 |
545 | [[package]]
546 | name = "derive_more"
547 | version = "0.99.17"
548 | source = "registry+https://github.com/rust-lang/crates.io-index"
549 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
550 | dependencies = [
551 | "convert_case",
552 | "proc-macro2",
553 | "quote",
554 | "rustc_version",
555 | "syn 1.0.109",
556 | ]
557 |
558 | [[package]]
559 | name = "digest"
560 | version = "0.10.7"
561 | source = "registry+https://github.com/rust-lang/crates.io-index"
562 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
563 | dependencies = [
564 | "block-buffer",
565 | "crypto-common",
566 | ]
567 |
568 | [[package]]
569 | name = "dirs-next"
570 | version = "2.0.0"
571 | source = "registry+https://github.com/rust-lang/crates.io-index"
572 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
573 | dependencies = [
574 | "cfg-if",
575 | "dirs-sys-next",
576 | ]
577 |
578 | [[package]]
579 | name = "dirs-sys-next"
580 | version = "0.1.2"
581 | source = "registry+https://github.com/rust-lang/crates.io-index"
582 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
583 | dependencies = [
584 | "libc",
585 | "redox_users",
586 | "winapi",
587 | ]
588 |
589 | [[package]]
590 | name = "dispatch"
591 | version = "0.2.0"
592 | source = "registry+https://github.com/rust-lang/crates.io-index"
593 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
594 |
595 | [[package]]
596 | name = "dlib"
597 | version = "0.5.2"
598 | source = "registry+https://github.com/rust-lang/crates.io-index"
599 | checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
600 | dependencies = [
601 | "libloading 0.8.3",
602 | ]
603 |
604 | [[package]]
605 | name = "dlopen2"
606 | version = "0.7.0"
607 | source = "registry+https://github.com/rust-lang/crates.io-index"
608 | checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6"
609 | dependencies = [
610 | "dlopen2_derive",
611 | "libc",
612 | "once_cell",
613 | "winapi",
614 | ]
615 |
616 | [[package]]
617 | name = "dlopen2_derive"
618 | version = "0.4.0"
619 | source = "registry+https://github.com/rust-lang/crates.io-index"
620 | checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54"
621 | dependencies = [
622 | "proc-macro2",
623 | "quote",
624 | "syn 2.0.63",
625 | ]
626 |
627 | [[package]]
628 | name = "dpi"
629 | version = "0.1.1"
630 | source = "registry+https://github.com/rust-lang/crates.io-index"
631 | checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
632 | dependencies = [
633 | "serde",
634 | ]
635 |
636 | [[package]]
637 | name = "dtoa"
638 | version = "1.0.9"
639 | source = "registry+https://github.com/rust-lang/crates.io-index"
640 | checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
641 |
642 | [[package]]
643 | name = "dtoa-short"
644 | version = "0.3.4"
645 | source = "registry+https://github.com/rust-lang/crates.io-index"
646 | checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
647 | dependencies = [
648 | "dtoa",
649 | ]
650 |
651 | [[package]]
652 | name = "dunce"
653 | version = "1.0.4"
654 | source = "registry+https://github.com/rust-lang/crates.io-index"
655 | checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
656 |
657 | [[package]]
658 | name = "dyn-clone"
659 | version = "1.0.17"
660 | source = "registry+https://github.com/rust-lang/crates.io-index"
661 | checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
662 |
663 | [[package]]
664 | name = "embed-resource"
665 | version = "2.4.2"
666 | source = "registry+https://github.com/rust-lang/crates.io-index"
667 | checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d"
668 | dependencies = [
669 | "cc",
670 | "memchr",
671 | "rustc_version",
672 | "toml 0.8.2",
673 | "vswhom",
674 | "winreg",
675 | ]
676 |
677 | [[package]]
678 | name = "embed_plist"
679 | version = "1.2.2"
680 | source = "registry+https://github.com/rust-lang/crates.io-index"
681 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
682 |
683 | [[package]]
684 | name = "equivalent"
685 | version = "1.0.1"
686 | source = "registry+https://github.com/rust-lang/crates.io-index"
687 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
688 |
689 | [[package]]
690 | name = "fdeflate"
691 | version = "0.3.4"
692 | source = "registry+https://github.com/rust-lang/crates.io-index"
693 | checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
694 | dependencies = [
695 | "simd-adler32",
696 | ]
697 |
698 | [[package]]
699 | name = "field-offset"
700 | version = "0.3.6"
701 | source = "registry+https://github.com/rust-lang/crates.io-index"
702 | checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
703 | dependencies = [
704 | "memoffset",
705 | "rustc_version",
706 | ]
707 |
708 | [[package]]
709 | name = "flate2"
710 | version = "1.0.30"
711 | source = "registry+https://github.com/rust-lang/crates.io-index"
712 | checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
713 | dependencies = [
714 | "crc32fast",
715 | "miniz_oxide",
716 | ]
717 |
718 | [[package]]
719 | name = "fnv"
720 | version = "1.0.7"
721 | source = "registry+https://github.com/rust-lang/crates.io-index"
722 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
723 |
724 | [[package]]
725 | name = "foreign-types"
726 | version = "0.5.0"
727 | source = "registry+https://github.com/rust-lang/crates.io-index"
728 | checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
729 | dependencies = [
730 | "foreign-types-macros",
731 | "foreign-types-shared",
732 | ]
733 |
734 | [[package]]
735 | name = "foreign-types-macros"
736 | version = "0.2.3"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
739 | dependencies = [
740 | "proc-macro2",
741 | "quote",
742 | "syn 2.0.63",
743 | ]
744 |
745 | [[package]]
746 | name = "foreign-types-shared"
747 | version = "0.3.1"
748 | source = "registry+https://github.com/rust-lang/crates.io-index"
749 | checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
750 |
751 | [[package]]
752 | name = "form_urlencoded"
753 | version = "1.2.1"
754 | source = "registry+https://github.com/rust-lang/crates.io-index"
755 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
756 | dependencies = [
757 | "percent-encoding",
758 | ]
759 |
760 | [[package]]
761 | name = "futf"
762 | version = "0.1.5"
763 | source = "registry+https://github.com/rust-lang/crates.io-index"
764 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
765 | dependencies = [
766 | "mac",
767 | "new_debug_unreachable",
768 | ]
769 |
770 | [[package]]
771 | name = "futures-channel"
772 | version = "0.3.30"
773 | source = "registry+https://github.com/rust-lang/crates.io-index"
774 | checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
775 | dependencies = [
776 | "futures-core",
777 | ]
778 |
779 | [[package]]
780 | name = "futures-core"
781 | version = "0.3.30"
782 | source = "registry+https://github.com/rust-lang/crates.io-index"
783 | checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
784 |
785 | [[package]]
786 | name = "futures-executor"
787 | version = "0.3.30"
788 | source = "registry+https://github.com/rust-lang/crates.io-index"
789 | checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
790 | dependencies = [
791 | "futures-core",
792 | "futures-task",
793 | "futures-util",
794 | ]
795 |
796 | [[package]]
797 | name = "futures-io"
798 | version = "0.3.30"
799 | source = "registry+https://github.com/rust-lang/crates.io-index"
800 | checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
801 |
802 | [[package]]
803 | name = "futures-macro"
804 | version = "0.3.30"
805 | source = "registry+https://github.com/rust-lang/crates.io-index"
806 | checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
807 | dependencies = [
808 | "proc-macro2",
809 | "quote",
810 | "syn 2.0.63",
811 | ]
812 |
813 | [[package]]
814 | name = "futures-sink"
815 | version = "0.3.30"
816 | source = "registry+https://github.com/rust-lang/crates.io-index"
817 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
818 |
819 | [[package]]
820 | name = "futures-task"
821 | version = "0.3.30"
822 | source = "registry+https://github.com/rust-lang/crates.io-index"
823 | checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
824 |
825 | [[package]]
826 | name = "futures-util"
827 | version = "0.3.30"
828 | source = "registry+https://github.com/rust-lang/crates.io-index"
829 | checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
830 | dependencies = [
831 | "futures-core",
832 | "futures-io",
833 | "futures-macro",
834 | "futures-sink",
835 | "futures-task",
836 | "memchr",
837 | "pin-project-lite",
838 | "pin-utils",
839 | "slab",
840 | ]
841 |
842 | [[package]]
843 | name = "fxhash"
844 | version = "0.2.1"
845 | source = "registry+https://github.com/rust-lang/crates.io-index"
846 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
847 | dependencies = [
848 | "byteorder",
849 | ]
850 |
851 | [[package]]
852 | name = "gdk"
853 | version = "0.18.0"
854 | source = "registry+https://github.com/rust-lang/crates.io-index"
855 | checksum = "f5ba081bdef3b75ebcdbfc953699ed2d7417d6bd853347a42a37d76406a33646"
856 | dependencies = [
857 | "cairo-rs",
858 | "gdk-pixbuf",
859 | "gdk-sys",
860 | "gio",
861 | "glib",
862 | "libc",
863 | "pango",
864 | ]
865 |
866 | [[package]]
867 | name = "gdk-pixbuf"
868 | version = "0.18.5"
869 | source = "registry+https://github.com/rust-lang/crates.io-index"
870 | checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
871 | dependencies = [
872 | "gdk-pixbuf-sys",
873 | "gio",
874 | "glib",
875 | "libc",
876 | "once_cell",
877 | ]
878 |
879 | [[package]]
880 | name = "gdk-pixbuf-sys"
881 | version = "0.18.0"
882 | source = "registry+https://github.com/rust-lang/crates.io-index"
883 | checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
884 | dependencies = [
885 | "gio-sys",
886 | "glib-sys",
887 | "gobject-sys",
888 | "libc",
889 | "system-deps",
890 | ]
891 |
892 | [[package]]
893 | name = "gdk-sys"
894 | version = "0.18.0"
895 | source = "registry+https://github.com/rust-lang/crates.io-index"
896 | checksum = "31ff856cb3386dae1703a920f803abafcc580e9b5f711ca62ed1620c25b51ff2"
897 | dependencies = [
898 | "cairo-sys-rs",
899 | "gdk-pixbuf-sys",
900 | "gio-sys",
901 | "glib-sys",
902 | "gobject-sys",
903 | "libc",
904 | "pango-sys",
905 | "pkg-config",
906 | "system-deps",
907 | ]
908 |
909 | [[package]]
910 | name = "gdkwayland-sys"
911 | version = "0.18.0"
912 | source = "registry+https://github.com/rust-lang/crates.io-index"
913 | checksum = "a90fbf5c033c65d93792192a49a8efb5bb1e640c419682a58bb96f5ae77f3d4a"
914 | dependencies = [
915 | "gdk-sys",
916 | "glib-sys",
917 | "gobject-sys",
918 | "libc",
919 | "pkg-config",
920 | "system-deps",
921 | ]
922 |
923 | [[package]]
924 | name = "gdkx11"
925 | version = "0.18.0"
926 | source = "registry+https://github.com/rust-lang/crates.io-index"
927 | checksum = "db2ea8a4909d530f79921290389cbd7c34cb9d623bfe970eaae65ca5f9cd9cce"
928 | dependencies = [
929 | "gdk",
930 | "gdkx11-sys",
931 | "gio",
932 | "glib",
933 | "libc",
934 | "x11",
935 | ]
936 |
937 | [[package]]
938 | name = "gdkx11-sys"
939 | version = "0.18.0"
940 | source = "registry+https://github.com/rust-lang/crates.io-index"
941 | checksum = "fee8f00f4ee46cad2939b8990f5c70c94ff882c3028f3cc5abf950fa4ab53043"
942 | dependencies = [
943 | "gdk-sys",
944 | "glib-sys",
945 | "libc",
946 | "system-deps",
947 | "x11",
948 | ]
949 |
950 | [[package]]
951 | name = "generator"
952 | version = "0.7.5"
953 | source = "registry+https://github.com/rust-lang/crates.io-index"
954 | checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
955 | dependencies = [
956 | "cc",
957 | "libc",
958 | "log",
959 | "rustversion",
960 | "windows 0.48.0",
961 | ]
962 |
963 | [[package]]
964 | name = "generic-array"
965 | version = "0.14.7"
966 | source = "registry+https://github.com/rust-lang/crates.io-index"
967 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
968 | dependencies = [
969 | "typenum",
970 | "version_check",
971 | ]
972 |
973 | [[package]]
974 | name = "getrandom"
975 | version = "0.1.16"
976 | source = "registry+https://github.com/rust-lang/crates.io-index"
977 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
978 | dependencies = [
979 | "cfg-if",
980 | "libc",
981 | "wasi 0.9.0+wasi-snapshot-preview1",
982 | ]
983 |
984 | [[package]]
985 | name = "getrandom"
986 | version = "0.2.15"
987 | source = "registry+https://github.com/rust-lang/crates.io-index"
988 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
989 | dependencies = [
990 | "cfg-if",
991 | "libc",
992 | "wasi 0.11.0+wasi-snapshot-preview1",
993 | ]
994 |
995 | [[package]]
996 | name = "gimli"
997 | version = "0.28.1"
998 | source = "registry+https://github.com/rust-lang/crates.io-index"
999 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
1000 |
1001 | [[package]]
1002 | name = "gio"
1003 | version = "0.18.4"
1004 | source = "registry+https://github.com/rust-lang/crates.io-index"
1005 | checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
1006 | dependencies = [
1007 | "futures-channel",
1008 | "futures-core",
1009 | "futures-io",
1010 | "futures-util",
1011 | "gio-sys",
1012 | "glib",
1013 | "libc",
1014 | "once_cell",
1015 | "pin-project-lite",
1016 | "smallvec",
1017 | "thiserror",
1018 | ]
1019 |
1020 | [[package]]
1021 | name = "gio-sys"
1022 | version = "0.18.1"
1023 | source = "registry+https://github.com/rust-lang/crates.io-index"
1024 | checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
1025 | dependencies = [
1026 | "glib-sys",
1027 | "gobject-sys",
1028 | "libc",
1029 | "system-deps",
1030 | "winapi",
1031 | ]
1032 |
1033 | [[package]]
1034 | name = "glib"
1035 | version = "0.18.5"
1036 | source = "registry+https://github.com/rust-lang/crates.io-index"
1037 | checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
1038 | dependencies = [
1039 | "bitflags 2.5.0",
1040 | "futures-channel",
1041 | "futures-core",
1042 | "futures-executor",
1043 | "futures-task",
1044 | "futures-util",
1045 | "gio-sys",
1046 | "glib-macros",
1047 | "glib-sys",
1048 | "gobject-sys",
1049 | "libc",
1050 | "memchr",
1051 | "once_cell",
1052 | "smallvec",
1053 | "thiserror",
1054 | ]
1055 |
1056 | [[package]]
1057 | name = "glib-macros"
1058 | version = "0.18.5"
1059 | source = "registry+https://github.com/rust-lang/crates.io-index"
1060 | checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
1061 | dependencies = [
1062 | "heck 0.4.1",
1063 | "proc-macro-crate 2.0.2",
1064 | "proc-macro-error",
1065 | "proc-macro2",
1066 | "quote",
1067 | "syn 2.0.63",
1068 | ]
1069 |
1070 | [[package]]
1071 | name = "glib-sys"
1072 | version = "0.18.1"
1073 | source = "registry+https://github.com/rust-lang/crates.io-index"
1074 | checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
1075 | dependencies = [
1076 | "libc",
1077 | "system-deps",
1078 | ]
1079 |
1080 | [[package]]
1081 | name = "glob"
1082 | version = "0.3.1"
1083 | source = "registry+https://github.com/rust-lang/crates.io-index"
1084 | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1085 |
1086 | [[package]]
1087 | name = "gobject-sys"
1088 | version = "0.18.0"
1089 | source = "registry+https://github.com/rust-lang/crates.io-index"
1090 | checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
1091 | dependencies = [
1092 | "glib-sys",
1093 | "libc",
1094 | "system-deps",
1095 | ]
1096 |
1097 | [[package]]
1098 | name = "gtk"
1099 | version = "0.18.1"
1100 | source = "registry+https://github.com/rust-lang/crates.io-index"
1101 | checksum = "93c4f5e0e20b60e10631a5f06da7fe3dda744b05ad0ea71fee2f47adf865890c"
1102 | dependencies = [
1103 | "atk",
1104 | "cairo-rs",
1105 | "field-offset",
1106 | "futures-channel",
1107 | "gdk",
1108 | "gdk-pixbuf",
1109 | "gio",
1110 | "glib",
1111 | "gtk-sys",
1112 | "gtk3-macros",
1113 | "libc",
1114 | "pango",
1115 | "pkg-config",
1116 | ]
1117 |
1118 | [[package]]
1119 | name = "gtk-sys"
1120 | version = "0.18.0"
1121 | source = "registry+https://github.com/rust-lang/crates.io-index"
1122 | checksum = "771437bf1de2c1c0b496c11505bdf748e26066bbe942dfc8f614c9460f6d7722"
1123 | dependencies = [
1124 | "atk-sys",
1125 | "cairo-sys-rs",
1126 | "gdk-pixbuf-sys",
1127 | "gdk-sys",
1128 | "gio-sys",
1129 | "glib-sys",
1130 | "gobject-sys",
1131 | "libc",
1132 | "pango-sys",
1133 | "system-deps",
1134 | ]
1135 |
1136 | [[package]]
1137 | name = "gtk3-macros"
1138 | version = "0.18.0"
1139 | source = "registry+https://github.com/rust-lang/crates.io-index"
1140 | checksum = "c6063efb63db582968fb7df72e1ae68aa6360dcfb0a75143f34fc7d616bad75e"
1141 | dependencies = [
1142 | "proc-macro-crate 1.3.1",
1143 | "proc-macro-error",
1144 | "proc-macro2",
1145 | "quote",
1146 | "syn 2.0.63",
1147 | ]
1148 |
1149 | [[package]]
1150 | name = "hashbrown"
1151 | version = "0.12.3"
1152 | source = "registry+https://github.com/rust-lang/crates.io-index"
1153 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1154 |
1155 | [[package]]
1156 | name = "hashbrown"
1157 | version = "0.14.5"
1158 | source = "registry+https://github.com/rust-lang/crates.io-index"
1159 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1160 |
1161 | [[package]]
1162 | name = "heck"
1163 | version = "0.4.1"
1164 | source = "registry+https://github.com/rust-lang/crates.io-index"
1165 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1166 |
1167 | [[package]]
1168 | name = "heck"
1169 | version = "0.5.0"
1170 | source = "registry+https://github.com/rust-lang/crates.io-index"
1171 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1172 |
1173 | [[package]]
1174 | name = "hermit-abi"
1175 | version = "0.3.9"
1176 | source = "registry+https://github.com/rust-lang/crates.io-index"
1177 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1178 |
1179 | [[package]]
1180 | name = "hex"
1181 | version = "0.4.3"
1182 | source = "registry+https://github.com/rust-lang/crates.io-index"
1183 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1184 |
1185 | [[package]]
1186 | name = "html5ever"
1187 | version = "0.26.0"
1188 | source = "registry+https://github.com/rust-lang/crates.io-index"
1189 | checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
1190 | dependencies = [
1191 | "log",
1192 | "mac",
1193 | "markup5ever",
1194 | "proc-macro2",
1195 | "quote",
1196 | "syn 1.0.109",
1197 | ]
1198 |
1199 | [[package]]
1200 | name = "http"
1201 | version = "1.1.0"
1202 | source = "registry+https://github.com/rust-lang/crates.io-index"
1203 | checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1204 | dependencies = [
1205 | "bytes",
1206 | "fnv",
1207 | "itoa 1.0.11",
1208 | ]
1209 |
1210 | [[package]]
1211 | name = "http-body"
1212 | version = "1.0.0"
1213 | source = "registry+https://github.com/rust-lang/crates.io-index"
1214 | checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1215 | dependencies = [
1216 | "bytes",
1217 | "http",
1218 | ]
1219 |
1220 | [[package]]
1221 | name = "http-body-util"
1222 | version = "0.1.1"
1223 | source = "registry+https://github.com/rust-lang/crates.io-index"
1224 | checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1225 | dependencies = [
1226 | "bytes",
1227 | "futures-core",
1228 | "http",
1229 | "http-body",
1230 | "pin-project-lite",
1231 | ]
1232 |
1233 | [[package]]
1234 | name = "httparse"
1235 | version = "1.8.0"
1236 | source = "registry+https://github.com/rust-lang/crates.io-index"
1237 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1238 |
1239 | [[package]]
1240 | name = "hyper"
1241 | version = "1.3.1"
1242 | source = "registry+https://github.com/rust-lang/crates.io-index"
1243 | checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1244 | dependencies = [
1245 | "bytes",
1246 | "futures-channel",
1247 | "futures-util",
1248 | "http",
1249 | "http-body",
1250 | "httparse",
1251 | "itoa 1.0.11",
1252 | "pin-project-lite",
1253 | "smallvec",
1254 | "tokio",
1255 | "want",
1256 | ]
1257 |
1258 | [[package]]
1259 | name = "hyper-util"
1260 | version = "0.1.3"
1261 | source = "registry+https://github.com/rust-lang/crates.io-index"
1262 | checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
1263 | dependencies = [
1264 | "bytes",
1265 | "futures-channel",
1266 | "futures-util",
1267 | "http",
1268 | "http-body",
1269 | "hyper",
1270 | "pin-project-lite",
1271 | "socket2",
1272 | "tokio",
1273 | "tower",
1274 | "tower-service",
1275 | "tracing",
1276 | ]
1277 |
1278 | [[package]]
1279 | name = "iana-time-zone"
1280 | version = "0.1.60"
1281 | source = "registry+https://github.com/rust-lang/crates.io-index"
1282 | checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1283 | dependencies = [
1284 | "android_system_properties",
1285 | "core-foundation-sys",
1286 | "iana-time-zone-haiku",
1287 | "js-sys",
1288 | "wasm-bindgen",
1289 | "windows-core 0.52.0",
1290 | ]
1291 |
1292 | [[package]]
1293 | name = "iana-time-zone-haiku"
1294 | version = "0.1.2"
1295 | source = "registry+https://github.com/rust-lang/crates.io-index"
1296 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1297 | dependencies = [
1298 | "cc",
1299 | ]
1300 |
1301 | [[package]]
1302 | name = "ico"
1303 | version = "0.3.0"
1304 | source = "registry+https://github.com/rust-lang/crates.io-index"
1305 | checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
1306 | dependencies = [
1307 | "byteorder",
1308 | "png",
1309 | ]
1310 |
1311 | [[package]]
1312 | name = "ident_case"
1313 | version = "1.0.1"
1314 | source = "registry+https://github.com/rust-lang/crates.io-index"
1315 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1316 |
1317 | [[package]]
1318 | name = "idna"
1319 | version = "0.5.0"
1320 | source = "registry+https://github.com/rust-lang/crates.io-index"
1321 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1322 | dependencies = [
1323 | "unicode-bidi",
1324 | "unicode-normalization",
1325 | ]
1326 |
1327 | [[package]]
1328 | name = "indexmap"
1329 | version = "1.9.3"
1330 | source = "registry+https://github.com/rust-lang/crates.io-index"
1331 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1332 | dependencies = [
1333 | "autocfg",
1334 | "hashbrown 0.12.3",
1335 | "serde",
1336 | ]
1337 |
1338 | [[package]]
1339 | name = "indexmap"
1340 | version = "2.2.6"
1341 | source = "registry+https://github.com/rust-lang/crates.io-index"
1342 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1343 | dependencies = [
1344 | "equivalent",
1345 | "hashbrown 0.14.5",
1346 | "serde",
1347 | ]
1348 |
1349 | [[package]]
1350 | name = "infer"
1351 | version = "0.15.0"
1352 | source = "registry+https://github.com/rust-lang/crates.io-index"
1353 | checksum = "cb33622da908807a06f9513c19b3c1ad50fab3e4137d82a78107d502075aa199"
1354 | dependencies = [
1355 | "cfb",
1356 | ]
1357 |
1358 | [[package]]
1359 | name = "instant"
1360 | version = "0.1.12"
1361 | source = "registry+https://github.com/rust-lang/crates.io-index"
1362 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1363 | dependencies = [
1364 | "cfg-if",
1365 | ]
1366 |
1367 | [[package]]
1368 | name = "ipnet"
1369 | version = "2.9.0"
1370 | source = "registry+https://github.com/rust-lang/crates.io-index"
1371 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1372 |
1373 | [[package]]
1374 | name = "itoa"
1375 | version = "0.4.8"
1376 | source = "registry+https://github.com/rust-lang/crates.io-index"
1377 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1378 |
1379 | [[package]]
1380 | name = "itoa"
1381 | version = "1.0.11"
1382 | source = "registry+https://github.com/rust-lang/crates.io-index"
1383 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1384 |
1385 | [[package]]
1386 | name = "javascriptcore-rs"
1387 | version = "1.1.2"
1388 | source = "registry+https://github.com/rust-lang/crates.io-index"
1389 | checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
1390 | dependencies = [
1391 | "bitflags 1.3.2",
1392 | "glib",
1393 | "javascriptcore-rs-sys",
1394 | ]
1395 |
1396 | [[package]]
1397 | name = "javascriptcore-rs-sys"
1398 | version = "1.1.1"
1399 | source = "registry+https://github.com/rust-lang/crates.io-index"
1400 | checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
1401 | dependencies = [
1402 | "glib-sys",
1403 | "gobject-sys",
1404 | "libc",
1405 | "system-deps",
1406 | ]
1407 |
1408 | [[package]]
1409 | name = "jni"
1410 | version = "0.21.1"
1411 | source = "registry+https://github.com/rust-lang/crates.io-index"
1412 | checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1413 | dependencies = [
1414 | "cesu8",
1415 | "cfg-if",
1416 | "combine",
1417 | "jni-sys",
1418 | "log",
1419 | "thiserror",
1420 | "walkdir",
1421 | "windows-sys 0.45.0",
1422 | ]
1423 |
1424 | [[package]]
1425 | name = "jni-sys"
1426 | version = "0.3.0"
1427 | source = "registry+https://github.com/rust-lang/crates.io-index"
1428 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1429 |
1430 | [[package]]
1431 | name = "js-sys"
1432 | version = "0.3.69"
1433 | source = "registry+https://github.com/rust-lang/crates.io-index"
1434 | checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1435 | dependencies = [
1436 | "wasm-bindgen",
1437 | ]
1438 |
1439 | [[package]]
1440 | name = "json-patch"
1441 | version = "1.4.0"
1442 | source = "registry+https://github.com/rust-lang/crates.io-index"
1443 | checksum = "ec9ad60d674508f3ca8f380a928cfe7b096bc729c4e2dbfe3852bc45da3ab30b"
1444 | dependencies = [
1445 | "serde",
1446 | "serde_json",
1447 | "thiserror",
1448 | ]
1449 |
1450 | [[package]]
1451 | name = "keyboard-types"
1452 | version = "0.7.0"
1453 | source = "registry+https://github.com/rust-lang/crates.io-index"
1454 | checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
1455 | dependencies = [
1456 | "bitflags 2.5.0",
1457 | "serde",
1458 | "unicode-segmentation",
1459 | ]
1460 |
1461 | [[package]]
1462 | name = "kuchikiki"
1463 | version = "0.8.2"
1464 | source = "registry+https://github.com/rust-lang/crates.io-index"
1465 | checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
1466 | dependencies = [
1467 | "cssparser",
1468 | "html5ever",
1469 | "indexmap 1.9.3",
1470 | "matches",
1471 | "selectors",
1472 | ]
1473 |
1474 | [[package]]
1475 | name = "lazy_static"
1476 | version = "1.4.0"
1477 | source = "registry+https://github.com/rust-lang/crates.io-index"
1478 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1479 |
1480 | [[package]]
1481 | name = "libappindicator"
1482 | version = "0.9.0"
1483 | source = "registry+https://github.com/rust-lang/crates.io-index"
1484 | checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
1485 | dependencies = [
1486 | "glib",
1487 | "gtk",
1488 | "gtk-sys",
1489 | "libappindicator-sys",
1490 | "log",
1491 | ]
1492 |
1493 | [[package]]
1494 | name = "libappindicator-sys"
1495 | version = "0.9.0"
1496 | source = "registry+https://github.com/rust-lang/crates.io-index"
1497 | checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
1498 | dependencies = [
1499 | "gtk-sys",
1500 | "libloading 0.7.4",
1501 | "once_cell",
1502 | ]
1503 |
1504 | [[package]]
1505 | name = "libc"
1506 | version = "0.2.154"
1507 | source = "registry+https://github.com/rust-lang/crates.io-index"
1508 | checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
1509 |
1510 | [[package]]
1511 | name = "libloading"
1512 | version = "0.7.4"
1513 | source = "registry+https://github.com/rust-lang/crates.io-index"
1514 | checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
1515 | dependencies = [
1516 | "cfg-if",
1517 | "winapi",
1518 | ]
1519 |
1520 | [[package]]
1521 | name = "libloading"
1522 | version = "0.8.3"
1523 | source = "registry+https://github.com/rust-lang/crates.io-index"
1524 | checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
1525 | dependencies = [
1526 | "cfg-if",
1527 | "windows-targets 0.52.5",
1528 | ]
1529 |
1530 | [[package]]
1531 | name = "libredox"
1532 | version = "0.1.3"
1533 | source = "registry+https://github.com/rust-lang/crates.io-index"
1534 | checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1535 | dependencies = [
1536 | "bitflags 2.5.0",
1537 | "libc",
1538 | ]
1539 |
1540 | [[package]]
1541 | name = "line-wrap"
1542 | version = "0.2.0"
1543 | source = "registry+https://github.com/rust-lang/crates.io-index"
1544 | checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
1545 |
1546 | [[package]]
1547 | name = "lock_api"
1548 | version = "0.4.12"
1549 | source = "registry+https://github.com/rust-lang/crates.io-index"
1550 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1551 | dependencies = [
1552 | "autocfg",
1553 | "scopeguard",
1554 | ]
1555 |
1556 | [[package]]
1557 | name = "log"
1558 | version = "0.4.21"
1559 | source = "registry+https://github.com/rust-lang/crates.io-index"
1560 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1561 |
1562 | [[package]]
1563 | name = "loom"
1564 | version = "0.5.6"
1565 | source = "registry+https://github.com/rust-lang/crates.io-index"
1566 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1567 | dependencies = [
1568 | "cfg-if",
1569 | "generator",
1570 | "scoped-tls",
1571 | "serde",
1572 | "serde_json",
1573 | "tracing",
1574 | "tracing-subscriber",
1575 | ]
1576 |
1577 | [[package]]
1578 | name = "mac"
1579 | version = "0.1.1"
1580 | source = "registry+https://github.com/rust-lang/crates.io-index"
1581 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1582 |
1583 | [[package]]
1584 | name = "malloc_buf"
1585 | version = "0.0.6"
1586 | source = "registry+https://github.com/rust-lang/crates.io-index"
1587 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1588 | dependencies = [
1589 | "libc",
1590 | ]
1591 |
1592 | [[package]]
1593 | name = "markup5ever"
1594 | version = "0.11.0"
1595 | source = "registry+https://github.com/rust-lang/crates.io-index"
1596 | checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
1597 | dependencies = [
1598 | "log",
1599 | "phf 0.10.1",
1600 | "phf_codegen 0.10.0",
1601 | "string_cache",
1602 | "string_cache_codegen",
1603 | "tendril",
1604 | ]
1605 |
1606 | [[package]]
1607 | name = "matchers"
1608 | version = "0.1.0"
1609 | source = "registry+https://github.com/rust-lang/crates.io-index"
1610 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1611 | dependencies = [
1612 | "regex-automata 0.1.10",
1613 | ]
1614 |
1615 | [[package]]
1616 | name = "matches"
1617 | version = "0.1.10"
1618 | source = "registry+https://github.com/rust-lang/crates.io-index"
1619 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1620 |
1621 | [[package]]
1622 | name = "memchr"
1623 | version = "2.7.2"
1624 | source = "registry+https://github.com/rust-lang/crates.io-index"
1625 | checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1626 |
1627 | [[package]]
1628 | name = "memoffset"
1629 | version = "0.9.1"
1630 | source = "registry+https://github.com/rust-lang/crates.io-index"
1631 | checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1632 | dependencies = [
1633 | "autocfg",
1634 | ]
1635 |
1636 | [[package]]
1637 | name = "mime"
1638 | version = "0.3.17"
1639 | source = "registry+https://github.com/rust-lang/crates.io-index"
1640 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1641 |
1642 | [[package]]
1643 | name = "miniz_oxide"
1644 | version = "0.7.2"
1645 | source = "registry+https://github.com/rust-lang/crates.io-index"
1646 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1647 | dependencies = [
1648 | "adler",
1649 | "simd-adler32",
1650 | ]
1651 |
1652 | [[package]]
1653 | name = "mio"
1654 | version = "0.8.11"
1655 | source = "registry+https://github.com/rust-lang/crates.io-index"
1656 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1657 | dependencies = [
1658 | "libc",
1659 | "wasi 0.11.0+wasi-snapshot-preview1",
1660 | "windows-sys 0.48.0",
1661 | ]
1662 |
1663 | [[package]]
1664 | name = "muda"
1665 | version = "0.13.2"
1666 | source = "registry+https://github.com/rust-lang/crates.io-index"
1667 | checksum = "c6fde56ead0971b4caae4aa0f19502e49d1fac2af9d0c60068e2d235e26ce709"
1668 | dependencies = [
1669 | "cocoa",
1670 | "crossbeam-channel",
1671 | "dpi",
1672 | "gtk",
1673 | "keyboard-types",
1674 | "objc",
1675 | "once_cell",
1676 | "png",
1677 | "serde",
1678 | "thiserror",
1679 | "windows-sys 0.52.0",
1680 | ]
1681 |
1682 | [[package]]
1683 | name = "ndk"
1684 | version = "0.7.0"
1685 | source = "registry+https://github.com/rust-lang/crates.io-index"
1686 | checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0"
1687 | dependencies = [
1688 | "bitflags 1.3.2",
1689 | "jni-sys",
1690 | "ndk-sys",
1691 | "num_enum",
1692 | "raw-window-handle 0.5.2",
1693 | "thiserror",
1694 | ]
1695 |
1696 | [[package]]
1697 | name = "ndk-context"
1698 | version = "0.1.1"
1699 | source = "registry+https://github.com/rust-lang/crates.io-index"
1700 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1701 |
1702 | [[package]]
1703 | name = "ndk-sys"
1704 | version = "0.4.1+23.1.7779620"
1705 | source = "registry+https://github.com/rust-lang/crates.io-index"
1706 | checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3"
1707 | dependencies = [
1708 | "jni-sys",
1709 | ]
1710 |
1711 | [[package]]
1712 | name = "new_debug_unreachable"
1713 | version = "1.0.6"
1714 | source = "registry+https://github.com/rust-lang/crates.io-index"
1715 | checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1716 |
1717 | [[package]]
1718 | name = "nodrop"
1719 | version = "0.1.14"
1720 | source = "registry+https://github.com/rust-lang/crates.io-index"
1721 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1722 |
1723 | [[package]]
1724 | name = "nu-ansi-term"
1725 | version = "0.46.0"
1726 | source = "registry+https://github.com/rust-lang/crates.io-index"
1727 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1728 | dependencies = [
1729 | "overload",
1730 | "winapi",
1731 | ]
1732 |
1733 | [[package]]
1734 | name = "num-conv"
1735 | version = "0.1.0"
1736 | source = "registry+https://github.com/rust-lang/crates.io-index"
1737 | checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1738 |
1739 | [[package]]
1740 | name = "num-traits"
1741 | version = "0.2.19"
1742 | source = "registry+https://github.com/rust-lang/crates.io-index"
1743 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1744 | dependencies = [
1745 | "autocfg",
1746 | ]
1747 |
1748 | [[package]]
1749 | name = "num_cpus"
1750 | version = "1.16.0"
1751 | source = "registry+https://github.com/rust-lang/crates.io-index"
1752 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1753 | dependencies = [
1754 | "hermit-abi",
1755 | "libc",
1756 | ]
1757 |
1758 | [[package]]
1759 | name = "num_enum"
1760 | version = "0.5.11"
1761 | source = "registry+https://github.com/rust-lang/crates.io-index"
1762 | checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
1763 | dependencies = [
1764 | "num_enum_derive",
1765 | ]
1766 |
1767 | [[package]]
1768 | name = "num_enum_derive"
1769 | version = "0.5.11"
1770 | source = "registry+https://github.com/rust-lang/crates.io-index"
1771 | checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
1772 | dependencies = [
1773 | "proc-macro-crate 1.3.1",
1774 | "proc-macro2",
1775 | "quote",
1776 | "syn 1.0.109",
1777 | ]
1778 |
1779 | [[package]]
1780 | name = "objc"
1781 | version = "0.2.7"
1782 | source = "registry+https://github.com/rust-lang/crates.io-index"
1783 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1784 | dependencies = [
1785 | "malloc_buf",
1786 | "objc_exception",
1787 | ]
1788 |
1789 | [[package]]
1790 | name = "objc_exception"
1791 | version = "0.1.2"
1792 | source = "registry+https://github.com/rust-lang/crates.io-index"
1793 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
1794 | dependencies = [
1795 | "cc",
1796 | ]
1797 |
1798 | [[package]]
1799 | name = "objc_id"
1800 | version = "0.1.1"
1801 | source = "registry+https://github.com/rust-lang/crates.io-index"
1802 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
1803 | dependencies = [
1804 | "objc",
1805 | ]
1806 |
1807 | [[package]]
1808 | name = "object"
1809 | version = "0.32.2"
1810 | source = "registry+https://github.com/rust-lang/crates.io-index"
1811 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1812 | dependencies = [
1813 | "memchr",
1814 | ]
1815 |
1816 | [[package]]
1817 | name = "once_cell"
1818 | version = "1.19.0"
1819 | source = "registry+https://github.com/rust-lang/crates.io-index"
1820 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1821 |
1822 | [[package]]
1823 | name = "overload"
1824 | version = "0.1.1"
1825 | source = "registry+https://github.com/rust-lang/crates.io-index"
1826 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1827 |
1828 | [[package]]
1829 | name = "pango"
1830 | version = "0.18.3"
1831 | source = "registry+https://github.com/rust-lang/crates.io-index"
1832 | checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
1833 | dependencies = [
1834 | "gio",
1835 | "glib",
1836 | "libc",
1837 | "once_cell",
1838 | "pango-sys",
1839 | ]
1840 |
1841 | [[package]]
1842 | name = "pango-sys"
1843 | version = "0.18.0"
1844 | source = "registry+https://github.com/rust-lang/crates.io-index"
1845 | checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
1846 | dependencies = [
1847 | "glib-sys",
1848 | "gobject-sys",
1849 | "libc",
1850 | "system-deps",
1851 | ]
1852 |
1853 | [[package]]
1854 | name = "parking_lot"
1855 | version = "0.12.2"
1856 | source = "registry+https://github.com/rust-lang/crates.io-index"
1857 | checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
1858 | dependencies = [
1859 | "lock_api",
1860 | "parking_lot_core",
1861 | ]
1862 |
1863 | [[package]]
1864 | name = "parking_lot_core"
1865 | version = "0.9.10"
1866 | source = "registry+https://github.com/rust-lang/crates.io-index"
1867 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1868 | dependencies = [
1869 | "cfg-if",
1870 | "libc",
1871 | "redox_syscall",
1872 | "smallvec",
1873 | "windows-targets 0.52.5",
1874 | ]
1875 |
1876 | [[package]]
1877 | name = "percent-encoding"
1878 | version = "2.3.1"
1879 | source = "registry+https://github.com/rust-lang/crates.io-index"
1880 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1881 |
1882 | [[package]]
1883 | name = "phf"
1884 | version = "0.8.0"
1885 | source = "registry+https://github.com/rust-lang/crates.io-index"
1886 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
1887 | dependencies = [
1888 | "phf_macros 0.8.0",
1889 | "phf_shared 0.8.0",
1890 | "proc-macro-hack",
1891 | ]
1892 |
1893 | [[package]]
1894 | name = "phf"
1895 | version = "0.10.1"
1896 | source = "registry+https://github.com/rust-lang/crates.io-index"
1897 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
1898 | dependencies = [
1899 | "phf_shared 0.10.0",
1900 | ]
1901 |
1902 | [[package]]
1903 | name = "phf"
1904 | version = "0.11.2"
1905 | source = "registry+https://github.com/rust-lang/crates.io-index"
1906 | checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
1907 | dependencies = [
1908 | "phf_macros 0.11.2",
1909 | "phf_shared 0.11.2",
1910 | ]
1911 |
1912 | [[package]]
1913 | name = "phf_codegen"
1914 | version = "0.8.0"
1915 | source = "registry+https://github.com/rust-lang/crates.io-index"
1916 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
1917 | dependencies = [
1918 | "phf_generator 0.8.0",
1919 | "phf_shared 0.8.0",
1920 | ]
1921 |
1922 | [[package]]
1923 | name = "phf_codegen"
1924 | version = "0.10.0"
1925 | source = "registry+https://github.com/rust-lang/crates.io-index"
1926 | checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
1927 | dependencies = [
1928 | "phf_generator 0.10.0",
1929 | "phf_shared 0.10.0",
1930 | ]
1931 |
1932 | [[package]]
1933 | name = "phf_generator"
1934 | version = "0.8.0"
1935 | source = "registry+https://github.com/rust-lang/crates.io-index"
1936 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
1937 | dependencies = [
1938 | "phf_shared 0.8.0",
1939 | "rand 0.7.3",
1940 | ]
1941 |
1942 | [[package]]
1943 | name = "phf_generator"
1944 | version = "0.10.0"
1945 | source = "registry+https://github.com/rust-lang/crates.io-index"
1946 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
1947 | dependencies = [
1948 | "phf_shared 0.10.0",
1949 | "rand 0.8.5",
1950 | ]
1951 |
1952 | [[package]]
1953 | name = "phf_generator"
1954 | version = "0.11.2"
1955 | source = "registry+https://github.com/rust-lang/crates.io-index"
1956 | checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
1957 | dependencies = [
1958 | "phf_shared 0.11.2",
1959 | "rand 0.8.5",
1960 | ]
1961 |
1962 | [[package]]
1963 | name = "phf_macros"
1964 | version = "0.8.0"
1965 | source = "registry+https://github.com/rust-lang/crates.io-index"
1966 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
1967 | dependencies = [
1968 | "phf_generator 0.8.0",
1969 | "phf_shared 0.8.0",
1970 | "proc-macro-hack",
1971 | "proc-macro2",
1972 | "quote",
1973 | "syn 1.0.109",
1974 | ]
1975 |
1976 | [[package]]
1977 | name = "phf_macros"
1978 | version = "0.11.2"
1979 | source = "registry+https://github.com/rust-lang/crates.io-index"
1980 | checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
1981 | dependencies = [
1982 | "phf_generator 0.11.2",
1983 | "phf_shared 0.11.2",
1984 | "proc-macro2",
1985 | "quote",
1986 | "syn 2.0.63",
1987 | ]
1988 |
1989 | [[package]]
1990 | name = "phf_shared"
1991 | version = "0.8.0"
1992 | source = "registry+https://github.com/rust-lang/crates.io-index"
1993 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
1994 | dependencies = [
1995 | "siphasher",
1996 | ]
1997 |
1998 | [[package]]
1999 | name = "phf_shared"
2000 | version = "0.10.0"
2001 | source = "registry+https://github.com/rust-lang/crates.io-index"
2002 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2003 | dependencies = [
2004 | "siphasher",
2005 | ]
2006 |
2007 | [[package]]
2008 | name = "phf_shared"
2009 | version = "0.11.2"
2010 | source = "registry+https://github.com/rust-lang/crates.io-index"
2011 | checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2012 | dependencies = [
2013 | "siphasher",
2014 | ]
2015 |
2016 | [[package]]
2017 | name = "pin-project"
2018 | version = "1.1.5"
2019 | source = "registry+https://github.com/rust-lang/crates.io-index"
2020 | checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
2021 | dependencies = [
2022 | "pin-project-internal",
2023 | ]
2024 |
2025 | [[package]]
2026 | name = "pin-project-internal"
2027 | version = "1.1.5"
2028 | source = "registry+https://github.com/rust-lang/crates.io-index"
2029 | checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2030 | dependencies = [
2031 | "proc-macro2",
2032 | "quote",
2033 | "syn 2.0.63",
2034 | ]
2035 |
2036 | [[package]]
2037 | name = "pin-project-lite"
2038 | version = "0.2.14"
2039 | source = "registry+https://github.com/rust-lang/crates.io-index"
2040 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2041 |
2042 | [[package]]
2043 | name = "pin-utils"
2044 | version = "0.1.0"
2045 | source = "registry+https://github.com/rust-lang/crates.io-index"
2046 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2047 |
2048 | [[package]]
2049 | name = "pkg-config"
2050 | version = "0.3.30"
2051 | source = "registry+https://github.com/rust-lang/crates.io-index"
2052 | checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2053 |
2054 | [[package]]
2055 | name = "plist"
2056 | version = "1.6.1"
2057 | source = "registry+https://github.com/rust-lang/crates.io-index"
2058 | checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9"
2059 | dependencies = [
2060 | "base64 0.21.7",
2061 | "indexmap 2.2.6",
2062 | "line-wrap",
2063 | "quick-xml",
2064 | "serde",
2065 | "time",
2066 | ]
2067 |
2068 | [[package]]
2069 | name = "png"
2070 | version = "0.17.13"
2071 | source = "registry+https://github.com/rust-lang/crates.io-index"
2072 | checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
2073 | dependencies = [
2074 | "bitflags 1.3.2",
2075 | "crc32fast",
2076 | "fdeflate",
2077 | "flate2",
2078 | "miniz_oxide",
2079 | ]
2080 |
2081 | [[package]]
2082 | name = "powerfmt"
2083 | version = "0.2.0"
2084 | source = "registry+https://github.com/rust-lang/crates.io-index"
2085 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2086 |
2087 | [[package]]
2088 | name = "ppv-lite86"
2089 | version = "0.2.17"
2090 | source = "registry+https://github.com/rust-lang/crates.io-index"
2091 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2092 |
2093 | [[package]]
2094 | name = "precomputed-hash"
2095 | version = "0.1.1"
2096 | source = "registry+https://github.com/rust-lang/crates.io-index"
2097 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2098 |
2099 | [[package]]
2100 | name = "proc-macro-crate"
2101 | version = "1.3.1"
2102 | source = "registry+https://github.com/rust-lang/crates.io-index"
2103 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2104 | dependencies = [
2105 | "once_cell",
2106 | "toml_edit 0.19.15",
2107 | ]
2108 |
2109 | [[package]]
2110 | name = "proc-macro-crate"
2111 | version = "2.0.2"
2112 | source = "registry+https://github.com/rust-lang/crates.io-index"
2113 | checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
2114 | dependencies = [
2115 | "toml_datetime",
2116 | "toml_edit 0.20.2",
2117 | ]
2118 |
2119 | [[package]]
2120 | name = "proc-macro-error"
2121 | version = "1.0.4"
2122 | source = "registry+https://github.com/rust-lang/crates.io-index"
2123 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2124 | dependencies = [
2125 | "proc-macro-error-attr",
2126 | "proc-macro2",
2127 | "quote",
2128 | "syn 1.0.109",
2129 | "version_check",
2130 | ]
2131 |
2132 | [[package]]
2133 | name = "proc-macro-error-attr"
2134 | version = "1.0.4"
2135 | source = "registry+https://github.com/rust-lang/crates.io-index"
2136 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2137 | dependencies = [
2138 | "proc-macro2",
2139 | "quote",
2140 | "version_check",
2141 | ]
2142 |
2143 | [[package]]
2144 | name = "proc-macro-hack"
2145 | version = "0.5.20+deprecated"
2146 | source = "registry+https://github.com/rust-lang/crates.io-index"
2147 | checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2148 |
2149 | [[package]]
2150 | name = "proc-macro2"
2151 | version = "1.0.82"
2152 | source = "registry+https://github.com/rust-lang/crates.io-index"
2153 | checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
2154 | dependencies = [
2155 | "unicode-ident",
2156 | ]
2157 |
2158 | [[package]]
2159 | name = "quick-xml"
2160 | version = "0.31.0"
2161 | source = "registry+https://github.com/rust-lang/crates.io-index"
2162 | checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
2163 | dependencies = [
2164 | "memchr",
2165 | ]
2166 |
2167 | [[package]]
2168 | name = "quote"
2169 | version = "1.0.36"
2170 | source = "registry+https://github.com/rust-lang/crates.io-index"
2171 | checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2172 | dependencies = [
2173 | "proc-macro2",
2174 | ]
2175 |
2176 | [[package]]
2177 | name = "rand"
2178 | version = "0.7.3"
2179 | source = "registry+https://github.com/rust-lang/crates.io-index"
2180 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2181 | dependencies = [
2182 | "getrandom 0.1.16",
2183 | "libc",
2184 | "rand_chacha 0.2.2",
2185 | "rand_core 0.5.1",
2186 | "rand_hc",
2187 | "rand_pcg",
2188 | ]
2189 |
2190 | [[package]]
2191 | name = "rand"
2192 | version = "0.8.5"
2193 | source = "registry+https://github.com/rust-lang/crates.io-index"
2194 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2195 | dependencies = [
2196 | "libc",
2197 | "rand_chacha 0.3.1",
2198 | "rand_core 0.6.4",
2199 | ]
2200 |
2201 | [[package]]
2202 | name = "rand_chacha"
2203 | version = "0.2.2"
2204 | source = "registry+https://github.com/rust-lang/crates.io-index"
2205 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2206 | dependencies = [
2207 | "ppv-lite86",
2208 | "rand_core 0.5.1",
2209 | ]
2210 |
2211 | [[package]]
2212 | name = "rand_chacha"
2213 | version = "0.3.1"
2214 | source = "registry+https://github.com/rust-lang/crates.io-index"
2215 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2216 | dependencies = [
2217 | "ppv-lite86",
2218 | "rand_core 0.6.4",
2219 | ]
2220 |
2221 | [[package]]
2222 | name = "rand_core"
2223 | version = "0.5.1"
2224 | source = "registry+https://github.com/rust-lang/crates.io-index"
2225 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2226 | dependencies = [
2227 | "getrandom 0.1.16",
2228 | ]
2229 |
2230 | [[package]]
2231 | name = "rand_core"
2232 | version = "0.6.4"
2233 | source = "registry+https://github.com/rust-lang/crates.io-index"
2234 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2235 | dependencies = [
2236 | "getrandom 0.2.15",
2237 | ]
2238 |
2239 | [[package]]
2240 | name = "rand_hc"
2241 | version = "0.2.0"
2242 | source = "registry+https://github.com/rust-lang/crates.io-index"
2243 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2244 | dependencies = [
2245 | "rand_core 0.5.1",
2246 | ]
2247 |
2248 | [[package]]
2249 | name = "rand_pcg"
2250 | version = "0.2.1"
2251 | source = "registry+https://github.com/rust-lang/crates.io-index"
2252 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2253 | dependencies = [
2254 | "rand_core 0.5.1",
2255 | ]
2256 |
2257 | [[package]]
2258 | name = "raw-window-handle"
2259 | version = "0.5.2"
2260 | source = "registry+https://github.com/rust-lang/crates.io-index"
2261 | checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
2262 |
2263 | [[package]]
2264 | name = "raw-window-handle"
2265 | version = "0.6.1"
2266 | source = "registry+https://github.com/rust-lang/crates.io-index"
2267 | checksum = "8cc3bcbdb1ddfc11e700e62968e6b4cc9c75bb466464ad28fb61c5b2c964418b"
2268 |
2269 | [[package]]
2270 | name = "redox_syscall"
2271 | version = "0.5.1"
2272 | source = "registry+https://github.com/rust-lang/crates.io-index"
2273 | checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
2274 | dependencies = [
2275 | "bitflags 2.5.0",
2276 | ]
2277 |
2278 | [[package]]
2279 | name = "redox_users"
2280 | version = "0.4.5"
2281 | source = "registry+https://github.com/rust-lang/crates.io-index"
2282 | checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
2283 | dependencies = [
2284 | "getrandom 0.2.15",
2285 | "libredox",
2286 | "thiserror",
2287 | ]
2288 |
2289 | [[package]]
2290 | name = "regex"
2291 | version = "1.10.4"
2292 | source = "registry+https://github.com/rust-lang/crates.io-index"
2293 | checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2294 | dependencies = [
2295 | "aho-corasick",
2296 | "memchr",
2297 | "regex-automata 0.4.6",
2298 | "regex-syntax 0.8.3",
2299 | ]
2300 |
2301 | [[package]]
2302 | name = "regex-automata"
2303 | version = "0.1.10"
2304 | source = "registry+https://github.com/rust-lang/crates.io-index"
2305 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2306 | dependencies = [
2307 | "regex-syntax 0.6.29",
2308 | ]
2309 |
2310 | [[package]]
2311 | name = "regex-automata"
2312 | version = "0.4.6"
2313 | source = "registry+https://github.com/rust-lang/crates.io-index"
2314 | checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2315 | dependencies = [
2316 | "aho-corasick",
2317 | "memchr",
2318 | "regex-syntax 0.8.3",
2319 | ]
2320 |
2321 | [[package]]
2322 | name = "regex-syntax"
2323 | version = "0.6.29"
2324 | source = "registry+https://github.com/rust-lang/crates.io-index"
2325 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2326 |
2327 | [[package]]
2328 | name = "regex-syntax"
2329 | version = "0.8.3"
2330 | source = "registry+https://github.com/rust-lang/crates.io-index"
2331 | checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2332 |
2333 | [[package]]
2334 | name = "reqwest"
2335 | version = "0.12.4"
2336 | source = "registry+https://github.com/rust-lang/crates.io-index"
2337 | checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2338 | dependencies = [
2339 | "base64 0.22.1",
2340 | "bytes",
2341 | "futures-core",
2342 | "futures-util",
2343 | "http",
2344 | "http-body",
2345 | "http-body-util",
2346 | "hyper",
2347 | "hyper-util",
2348 | "ipnet",
2349 | "js-sys",
2350 | "log",
2351 | "mime",
2352 | "once_cell",
2353 | "percent-encoding",
2354 | "pin-project-lite",
2355 | "serde",
2356 | "serde_json",
2357 | "serde_urlencoded",
2358 | "sync_wrapper",
2359 | "tokio",
2360 | "tokio-util",
2361 | "tower-service",
2362 | "url",
2363 | "wasm-bindgen",
2364 | "wasm-bindgen-futures",
2365 | "wasm-streams",
2366 | "web-sys",
2367 | "winreg",
2368 | ]
2369 |
2370 | [[package]]
2371 | name = "rustc-demangle"
2372 | version = "0.1.24"
2373 | source = "registry+https://github.com/rust-lang/crates.io-index"
2374 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2375 |
2376 | [[package]]
2377 | name = "rustc_version"
2378 | version = "0.4.0"
2379 | source = "registry+https://github.com/rust-lang/crates.io-index"
2380 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2381 | dependencies = [
2382 | "semver",
2383 | ]
2384 |
2385 | [[package]]
2386 | name = "rustversion"
2387 | version = "1.0.16"
2388 | source = "registry+https://github.com/rust-lang/crates.io-index"
2389 | checksum = "092474d1a01ea8278f69e6a358998405fae5b8b963ddaeb2b0b04a128bf1dfb0"
2390 |
2391 | [[package]]
2392 | name = "ryu"
2393 | version = "1.0.18"
2394 | source = "registry+https://github.com/rust-lang/crates.io-index"
2395 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2396 |
2397 | [[package]]
2398 | name = "same-file"
2399 | version = "1.0.6"
2400 | source = "registry+https://github.com/rust-lang/crates.io-index"
2401 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2402 | dependencies = [
2403 | "winapi-util",
2404 | ]
2405 |
2406 | [[package]]
2407 | name = "schemars"
2408 | version = "0.8.19"
2409 | source = "registry+https://github.com/rust-lang/crates.io-index"
2410 | checksum = "fc6e7ed6919cb46507fb01ff1654309219f62b4d603822501b0b80d42f6f21ef"
2411 | dependencies = [
2412 | "dyn-clone",
2413 | "indexmap 1.9.3",
2414 | "schemars_derive",
2415 | "serde",
2416 | "serde_json",
2417 | "url",
2418 | ]
2419 |
2420 | [[package]]
2421 | name = "schemars_derive"
2422 | version = "0.8.19"
2423 | source = "registry+https://github.com/rust-lang/crates.io-index"
2424 | checksum = "185f2b7aa7e02d418e453790dde16890256bbd2bcd04b7dc5348811052b53f49"
2425 | dependencies = [
2426 | "proc-macro2",
2427 | "quote",
2428 | "serde_derive_internals",
2429 | "syn 2.0.63",
2430 | ]
2431 |
2432 | [[package]]
2433 | name = "scoped-tls"
2434 | version = "1.0.1"
2435 | source = "registry+https://github.com/rust-lang/crates.io-index"
2436 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2437 |
2438 | [[package]]
2439 | name = "scopeguard"
2440 | version = "1.2.0"
2441 | source = "registry+https://github.com/rust-lang/crates.io-index"
2442 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2443 |
2444 | [[package]]
2445 | name = "selectors"
2446 | version = "0.22.0"
2447 | source = "registry+https://github.com/rust-lang/crates.io-index"
2448 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2449 | dependencies = [
2450 | "bitflags 1.3.2",
2451 | "cssparser",
2452 | "derive_more",
2453 | "fxhash",
2454 | "log",
2455 | "matches",
2456 | "phf 0.8.0",
2457 | "phf_codegen 0.8.0",
2458 | "precomputed-hash",
2459 | "servo_arc",
2460 | "smallvec",
2461 | "thin-slice",
2462 | ]
2463 |
2464 | [[package]]
2465 | name = "semver"
2466 | version = "1.0.23"
2467 | source = "registry+https://github.com/rust-lang/crates.io-index"
2468 | checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2469 | dependencies = [
2470 | "serde",
2471 | ]
2472 |
2473 | [[package]]
2474 | name = "serde"
2475 | version = "1.0.201"
2476 | source = "registry+https://github.com/rust-lang/crates.io-index"
2477 | checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c"
2478 | dependencies = [
2479 | "serde_derive",
2480 | ]
2481 |
2482 | [[package]]
2483 | name = "serde_derive"
2484 | version = "1.0.201"
2485 | source = "registry+https://github.com/rust-lang/crates.io-index"
2486 | checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865"
2487 | dependencies = [
2488 | "proc-macro2",
2489 | "quote",
2490 | "syn 2.0.63",
2491 | ]
2492 |
2493 | [[package]]
2494 | name = "serde_derive_internals"
2495 | version = "0.29.0"
2496 | source = "registry+https://github.com/rust-lang/crates.io-index"
2497 | checksum = "330f01ce65a3a5fe59a60c82f3c9a024b573b8a6e875bd233fe5f934e71d54e3"
2498 | dependencies = [
2499 | "proc-macro2",
2500 | "quote",
2501 | "syn 2.0.63",
2502 | ]
2503 |
2504 | [[package]]
2505 | name = "serde_json"
2506 | version = "1.0.117"
2507 | source = "registry+https://github.com/rust-lang/crates.io-index"
2508 | checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
2509 | dependencies = [
2510 | "itoa 1.0.11",
2511 | "ryu",
2512 | "serde",
2513 | ]
2514 |
2515 | [[package]]
2516 | name = "serde_repr"
2517 | version = "0.1.19"
2518 | source = "registry+https://github.com/rust-lang/crates.io-index"
2519 | checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2520 | dependencies = [
2521 | "proc-macro2",
2522 | "quote",
2523 | "syn 2.0.63",
2524 | ]
2525 |
2526 | [[package]]
2527 | name = "serde_spanned"
2528 | version = "0.6.5"
2529 | source = "registry+https://github.com/rust-lang/crates.io-index"
2530 | checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2531 | dependencies = [
2532 | "serde",
2533 | ]
2534 |
2535 | [[package]]
2536 | name = "serde_urlencoded"
2537 | version = "0.7.1"
2538 | source = "registry+https://github.com/rust-lang/crates.io-index"
2539 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2540 | dependencies = [
2541 | "form_urlencoded",
2542 | "itoa 1.0.11",
2543 | "ryu",
2544 | "serde",
2545 | ]
2546 |
2547 | [[package]]
2548 | name = "serde_with"
2549 | version = "3.8.1"
2550 | source = "registry+https://github.com/rust-lang/crates.io-index"
2551 | checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20"
2552 | dependencies = [
2553 | "base64 0.22.1",
2554 | "chrono",
2555 | "hex",
2556 | "indexmap 1.9.3",
2557 | "indexmap 2.2.6",
2558 | "serde",
2559 | "serde_derive",
2560 | "serde_json",
2561 | "serde_with_macros",
2562 | "time",
2563 | ]
2564 |
2565 | [[package]]
2566 | name = "serde_with_macros"
2567 | version = "3.8.1"
2568 | source = "registry+https://github.com/rust-lang/crates.io-index"
2569 | checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2"
2570 | dependencies = [
2571 | "darling",
2572 | "proc-macro2",
2573 | "quote",
2574 | "syn 2.0.63",
2575 | ]
2576 |
2577 | [[package]]
2578 | name = "serialize-to-javascript"
2579 | version = "0.1.1"
2580 | source = "registry+https://github.com/rust-lang/crates.io-index"
2581 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
2582 | dependencies = [
2583 | "serde",
2584 | "serde_json",
2585 | "serialize-to-javascript-impl",
2586 | ]
2587 |
2588 | [[package]]
2589 | name = "serialize-to-javascript-impl"
2590 | version = "0.1.1"
2591 | source = "registry+https://github.com/rust-lang/crates.io-index"
2592 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
2593 | dependencies = [
2594 | "proc-macro2",
2595 | "quote",
2596 | "syn 1.0.109",
2597 | ]
2598 |
2599 | [[package]]
2600 | name = "servo_arc"
2601 | version = "0.1.1"
2602 | source = "registry+https://github.com/rust-lang/crates.io-index"
2603 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2604 | dependencies = [
2605 | "nodrop",
2606 | "stable_deref_trait",
2607 | ]
2608 |
2609 | [[package]]
2610 | name = "sha2"
2611 | version = "0.10.8"
2612 | source = "registry+https://github.com/rust-lang/crates.io-index"
2613 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2614 | dependencies = [
2615 | "cfg-if",
2616 | "cpufeatures",
2617 | "digest",
2618 | ]
2619 |
2620 | [[package]]
2621 | name = "sharded-slab"
2622 | version = "0.1.7"
2623 | source = "registry+https://github.com/rust-lang/crates.io-index"
2624 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2625 | dependencies = [
2626 | "lazy_static",
2627 | ]
2628 |
2629 | [[package]]
2630 | name = "simd-adler32"
2631 | version = "0.3.7"
2632 | source = "registry+https://github.com/rust-lang/crates.io-index"
2633 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2634 |
2635 | [[package]]
2636 | name = "siphasher"
2637 | version = "0.3.11"
2638 | source = "registry+https://github.com/rust-lang/crates.io-index"
2639 | checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2640 |
2641 | [[package]]
2642 | name = "slab"
2643 | version = "0.4.9"
2644 | source = "registry+https://github.com/rust-lang/crates.io-index"
2645 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2646 | dependencies = [
2647 | "autocfg",
2648 | ]
2649 |
2650 | [[package]]
2651 | name = "smallvec"
2652 | version = "1.13.2"
2653 | source = "registry+https://github.com/rust-lang/crates.io-index"
2654 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2655 |
2656 | [[package]]
2657 | name = "socket2"
2658 | version = "0.5.7"
2659 | source = "registry+https://github.com/rust-lang/crates.io-index"
2660 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2661 | dependencies = [
2662 | "libc",
2663 | "windows-sys 0.52.0",
2664 | ]
2665 |
2666 | [[package]]
2667 | name = "softbuffer"
2668 | version = "0.4.2"
2669 | source = "registry+https://github.com/rust-lang/crates.io-index"
2670 | checksum = "61d5d17f23326fe0d9b0af282f73f3af666699420fd5f42629efd9c6e7dc166f"
2671 | dependencies = [
2672 | "bytemuck",
2673 | "cfg_aliases",
2674 | "cocoa",
2675 | "core-graphics",
2676 | "foreign-types",
2677 | "js-sys",
2678 | "log",
2679 | "objc",
2680 | "raw-window-handle 0.6.1",
2681 | "redox_syscall",
2682 | "wasm-bindgen",
2683 | "wayland-sys",
2684 | "web-sys",
2685 | "windows-sys 0.52.0",
2686 | ]
2687 |
2688 | [[package]]
2689 | name = "soup3"
2690 | version = "0.5.0"
2691 | source = "registry+https://github.com/rust-lang/crates.io-index"
2692 | checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
2693 | dependencies = [
2694 | "futures-channel",
2695 | "gio",
2696 | "glib",
2697 | "libc",
2698 | "soup3-sys",
2699 | ]
2700 |
2701 | [[package]]
2702 | name = "soup3-sys"
2703 | version = "0.5.0"
2704 | source = "registry+https://github.com/rust-lang/crates.io-index"
2705 | checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
2706 | dependencies = [
2707 | "gio-sys",
2708 | "glib-sys",
2709 | "gobject-sys",
2710 | "libc",
2711 | "system-deps",
2712 | ]
2713 |
2714 | [[package]]
2715 | name = "stable_deref_trait"
2716 | version = "1.2.0"
2717 | source = "registry+https://github.com/rust-lang/crates.io-index"
2718 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2719 |
2720 | [[package]]
2721 | name = "state"
2722 | version = "0.6.0"
2723 | source = "registry+https://github.com/rust-lang/crates.io-index"
2724 | checksum = "2b8c4a4445d81357df8b1a650d0d0d6fbbbfe99d064aa5e02f3e4022061476d8"
2725 | dependencies = [
2726 | "loom",
2727 | ]
2728 |
2729 | [[package]]
2730 | name = "string_cache"
2731 | version = "0.8.7"
2732 | source = "registry+https://github.com/rust-lang/crates.io-index"
2733 | checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2734 | dependencies = [
2735 | "new_debug_unreachable",
2736 | "once_cell",
2737 | "parking_lot",
2738 | "phf_shared 0.10.0",
2739 | "precomputed-hash",
2740 | "serde",
2741 | ]
2742 |
2743 | [[package]]
2744 | name = "string_cache_codegen"
2745 | version = "0.5.2"
2746 | source = "registry+https://github.com/rust-lang/crates.io-index"
2747 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2748 | dependencies = [
2749 | "phf_generator 0.10.0",
2750 | "phf_shared 0.10.0",
2751 | "proc-macro2",
2752 | "quote",
2753 | ]
2754 |
2755 | [[package]]
2756 | name = "strsim"
2757 | version = "0.10.0"
2758 | source = "registry+https://github.com/rust-lang/crates.io-index"
2759 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2760 |
2761 | [[package]]
2762 | name = "swift-rs"
2763 | version = "1.0.6"
2764 | source = "registry+https://github.com/rust-lang/crates.io-index"
2765 | checksum = "1bbdb58577b6301f8d17ae2561f32002a5bae056d444e0f69e611e504a276204"
2766 | dependencies = [
2767 | "base64 0.21.7",
2768 | "serde",
2769 | "serde_json",
2770 | ]
2771 |
2772 | [[package]]
2773 | name = "syn"
2774 | version = "1.0.109"
2775 | source = "registry+https://github.com/rust-lang/crates.io-index"
2776 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2777 | dependencies = [
2778 | "proc-macro2",
2779 | "quote",
2780 | "unicode-ident",
2781 | ]
2782 |
2783 | [[package]]
2784 | name = "syn"
2785 | version = "2.0.63"
2786 | source = "registry+https://github.com/rust-lang/crates.io-index"
2787 | checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
2788 | dependencies = [
2789 | "proc-macro2",
2790 | "quote",
2791 | "unicode-ident",
2792 | ]
2793 |
2794 | [[package]]
2795 | name = "sync_wrapper"
2796 | version = "0.1.2"
2797 | source = "registry+https://github.com/rust-lang/crates.io-index"
2798 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2799 |
2800 | [[package]]
2801 | name = "system-deps"
2802 | version = "6.2.2"
2803 | source = "registry+https://github.com/rust-lang/crates.io-index"
2804 | checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
2805 | dependencies = [
2806 | "cfg-expr",
2807 | "heck 0.5.0",
2808 | "pkg-config",
2809 | "toml 0.8.2",
2810 | "version-compare",
2811 | ]
2812 |
2813 | [[package]]
2814 | name = "tao"
2815 | version = "0.28.0"
2816 | source = "registry+https://github.com/rust-lang/crates.io-index"
2817 | checksum = "12a8121bd5721ebbbe0889f8286d5824673beeb04071519b68916fbed04f3093"
2818 | dependencies = [
2819 | "bitflags 2.5.0",
2820 | "cocoa",
2821 | "core-foundation",
2822 | "core-graphics",
2823 | "crossbeam-channel",
2824 | "dispatch",
2825 | "dlopen2",
2826 | "dpi",
2827 | "gdkwayland-sys",
2828 | "gdkx11-sys",
2829 | "gtk",
2830 | "instant",
2831 | "jni",
2832 | "lazy_static",
2833 | "libc",
2834 | "log",
2835 | "ndk",
2836 | "ndk-context",
2837 | "ndk-sys",
2838 | "objc",
2839 | "once_cell",
2840 | "parking_lot",
2841 | "raw-window-handle 0.6.1",
2842 | "scopeguard",
2843 | "tao-macros",
2844 | "unicode-segmentation",
2845 | "url",
2846 | "windows 0.56.0",
2847 | "windows-core 0.56.0",
2848 | "windows-version",
2849 | "x11-dl",
2850 | ]
2851 |
2852 | [[package]]
2853 | name = "tao-macros"
2854 | version = "0.1.2"
2855 | source = "registry+https://github.com/rust-lang/crates.io-index"
2856 | checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
2857 | dependencies = [
2858 | "proc-macro2",
2859 | "quote",
2860 | "syn 1.0.109",
2861 | ]
2862 |
2863 | [[package]]
2864 | name = "target-lexicon"
2865 | version = "0.12.14"
2866 | source = "registry+https://github.com/rust-lang/crates.io-index"
2867 | checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
2868 |
2869 | [[package]]
2870 | name = "tauri"
2871 | version = "2.0.0-beta.19"
2872 | source = "registry+https://github.com/rust-lang/crates.io-index"
2873 | checksum = "6f8e5bc2e4f5eb7496d1a3e5f4d272f69f1333db5f8efed28d79d7f93334fe95"
2874 | dependencies = [
2875 | "anyhow",
2876 | "bytes",
2877 | "cocoa",
2878 | "dirs-next",
2879 | "dunce",
2880 | "embed_plist",
2881 | "futures-util",
2882 | "getrandom 0.2.15",
2883 | "glob",
2884 | "gtk",
2885 | "heck 0.5.0",
2886 | "http",
2887 | "jni",
2888 | "libc",
2889 | "log",
2890 | "mime",
2891 | "muda",
2892 | "objc",
2893 | "percent-encoding",
2894 | "raw-window-handle 0.6.1",
2895 | "reqwest",
2896 | "serde",
2897 | "serde_json",
2898 | "serde_repr",
2899 | "serialize-to-javascript",
2900 | "state",
2901 | "swift-rs",
2902 | "tauri-build",
2903 | "tauri-macros",
2904 | "tauri-runtime",
2905 | "tauri-runtime-wry",
2906 | "tauri-utils",
2907 | "thiserror",
2908 | "tokio",
2909 | "tray-icon",
2910 | "url",
2911 | "urlpattern",
2912 | "webkit2gtk",
2913 | "webview2-com",
2914 | "window-vibrancy",
2915 | "windows 0.56.0",
2916 | ]
2917 |
2918 | [[package]]
2919 | name = "tauri-build"
2920 | version = "2.0.0-beta.15"
2921 | source = "registry+https://github.com/rust-lang/crates.io-index"
2922 | checksum = "8aa28eebafcda490fa7097a6e3a4d07f65967614d35dd88b2aaa19dbb49241cd"
2923 | dependencies = [
2924 | "anyhow",
2925 | "cargo_toml",
2926 | "dirs-next",
2927 | "glob",
2928 | "heck 0.5.0",
2929 | "json-patch",
2930 | "schemars",
2931 | "semver",
2932 | "serde",
2933 | "serde_json",
2934 | "tauri-utils",
2935 | "tauri-winres",
2936 | "toml 0.8.2",
2937 | "walkdir",
2938 | ]
2939 |
2940 | [[package]]
2941 | name = "tauri-codegen"
2942 | version = "2.0.0-beta.15"
2943 | source = "registry+https://github.com/rust-lang/crates.io-index"
2944 | checksum = "727d13a28e9ec895f537d90a09acb0aa3593f703a715fe8a77f87269d3245b52"
2945 | dependencies = [
2946 | "base64 0.22.1",
2947 | "brotli",
2948 | "ico",
2949 | "json-patch",
2950 | "plist",
2951 | "png",
2952 | "proc-macro2",
2953 | "quote",
2954 | "semver",
2955 | "serde",
2956 | "serde_json",
2957 | "sha2",
2958 | "syn 2.0.63",
2959 | "tauri-utils",
2960 | "thiserror",
2961 | "time",
2962 | "url",
2963 | "uuid",
2964 | "walkdir",
2965 | ]
2966 |
2967 | [[package]]
2968 | name = "tauri-macros"
2969 | version = "2.0.0-beta.15"
2970 | source = "registry+https://github.com/rust-lang/crates.io-index"
2971 | checksum = "258667612ad901d256e04ace71ac54d4b3dd8fb1e5baa24403b50991cade4365"
2972 | dependencies = [
2973 | "heck 0.5.0",
2974 | "proc-macro2",
2975 | "quote",
2976 | "syn 2.0.63",
2977 | "tauri-codegen",
2978 | "tauri-utils",
2979 | ]
2980 |
2981 | [[package]]
2982 | name = "tauri-runtime"
2983 | version = "2.0.0-beta.16"
2984 | source = "registry+https://github.com/rust-lang/crates.io-index"
2985 | checksum = "574f3d59cbe6c76b6d849bc35aa3a9e8061ff8f75f557dc33f38c0e43cf55a41"
2986 | dependencies = [
2987 | "dpi",
2988 | "gtk",
2989 | "http",
2990 | "jni",
2991 | "raw-window-handle 0.6.1",
2992 | "serde",
2993 | "serde_json",
2994 | "tauri-utils",
2995 | "thiserror",
2996 | "url",
2997 | "windows 0.56.0",
2998 | ]
2999 |
3000 | [[package]]
3001 | name = "tauri-runtime-wry"
3002 | version = "2.0.0-beta.16"
3003 | source = "registry+https://github.com/rust-lang/crates.io-index"
3004 | checksum = "d6d1f223de1d674aaa561c900ac650b3160f11520e9b191a3574f6c493fc77fa"
3005 | dependencies = [
3006 | "cocoa",
3007 | "gtk",
3008 | "http",
3009 | "jni",
3010 | "log",
3011 | "percent-encoding",
3012 | "raw-window-handle 0.6.1",
3013 | "softbuffer",
3014 | "tao",
3015 | "tauri-runtime",
3016 | "tauri-utils",
3017 | "url",
3018 | "webkit2gtk",
3019 | "webview2-com",
3020 | "windows 0.56.0",
3021 | "wry",
3022 | ]
3023 |
3024 | [[package]]
3025 | name = "tauri-utils"
3026 | version = "2.0.0-beta.15"
3027 | source = "registry+https://github.com/rust-lang/crates.io-index"
3028 | checksum = "2b4251529d92b5c611ccaa611f8a31cb41b1aa00db8bcc0a49efe5d966bfa911"
3029 | dependencies = [
3030 | "brotli",
3031 | "cargo_metadata",
3032 | "ctor",
3033 | "dunce",
3034 | "glob",
3035 | "heck 0.5.0",
3036 | "html5ever",
3037 | "infer",
3038 | "json-patch",
3039 | "kuchikiki",
3040 | "log",
3041 | "memchr",
3042 | "phf 0.11.2",
3043 | "proc-macro2",
3044 | "quote",
3045 | "regex",
3046 | "schemars",
3047 | "semver",
3048 | "serde",
3049 | "serde_json",
3050 | "serde_with",
3051 | "swift-rs",
3052 | "thiserror",
3053 | "toml 0.8.2",
3054 | "url",
3055 | "urlpattern",
3056 | "walkdir",
3057 | ]
3058 |
3059 | [[package]]
3060 | name = "tauri-winres"
3061 | version = "0.1.1"
3062 | source = "registry+https://github.com/rust-lang/crates.io-index"
3063 | checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
3064 | dependencies = [
3065 | "embed-resource",
3066 | "toml 0.7.8",
3067 | ]
3068 |
3069 | [[package]]
3070 | name = "tendril"
3071 | version = "0.4.3"
3072 | source = "registry+https://github.com/rust-lang/crates.io-index"
3073 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3074 | dependencies = [
3075 | "futf",
3076 | "mac",
3077 | "utf-8",
3078 | ]
3079 |
3080 | [[package]]
3081 | name = "thin-slice"
3082 | version = "0.1.1"
3083 | source = "registry+https://github.com/rust-lang/crates.io-index"
3084 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
3085 |
3086 | [[package]]
3087 | name = "thiserror"
3088 | version = "1.0.60"
3089 | source = "registry+https://github.com/rust-lang/crates.io-index"
3090 | checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
3091 | dependencies = [
3092 | "thiserror-impl",
3093 | ]
3094 |
3095 | [[package]]
3096 | name = "thiserror-impl"
3097 | version = "1.0.60"
3098 | source = "registry+https://github.com/rust-lang/crates.io-index"
3099 | checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
3100 | dependencies = [
3101 | "proc-macro2",
3102 | "quote",
3103 | "syn 2.0.63",
3104 | ]
3105 |
3106 | [[package]]
3107 | name = "thread_local"
3108 | version = "1.1.8"
3109 | source = "registry+https://github.com/rust-lang/crates.io-index"
3110 | checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3111 | dependencies = [
3112 | "cfg-if",
3113 | "once_cell",
3114 | ]
3115 |
3116 | [[package]]
3117 | name = "time"
3118 | version = "0.3.36"
3119 | source = "registry+https://github.com/rust-lang/crates.io-index"
3120 | checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3121 | dependencies = [
3122 | "deranged",
3123 | "itoa 1.0.11",
3124 | "num-conv",
3125 | "powerfmt",
3126 | "serde",
3127 | "time-core",
3128 | "time-macros",
3129 | ]
3130 |
3131 | [[package]]
3132 | name = "time-core"
3133 | version = "0.1.2"
3134 | source = "registry+https://github.com/rust-lang/crates.io-index"
3135 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3136 |
3137 | [[package]]
3138 | name = "time-macros"
3139 | version = "0.2.18"
3140 | source = "registry+https://github.com/rust-lang/crates.io-index"
3141 | checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3142 | dependencies = [
3143 | "num-conv",
3144 | "time-core",
3145 | ]
3146 |
3147 | [[package]]
3148 | name = "tinyvec"
3149 | version = "1.6.0"
3150 | source = "registry+https://github.com/rust-lang/crates.io-index"
3151 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3152 | dependencies = [
3153 | "tinyvec_macros",
3154 | ]
3155 |
3156 | [[package]]
3157 | name = "tinyvec_macros"
3158 | version = "0.1.1"
3159 | source = "registry+https://github.com/rust-lang/crates.io-index"
3160 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3161 |
3162 | [[package]]
3163 | name = "tokio"
3164 | version = "1.37.0"
3165 | source = "registry+https://github.com/rust-lang/crates.io-index"
3166 | checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
3167 | dependencies = [
3168 | "backtrace",
3169 | "bytes",
3170 | "libc",
3171 | "mio",
3172 | "num_cpus",
3173 | "pin-project-lite",
3174 | "socket2",
3175 | "windows-sys 0.48.0",
3176 | ]
3177 |
3178 | [[package]]
3179 | name = "tokio-util"
3180 | version = "0.7.11"
3181 | source = "registry+https://github.com/rust-lang/crates.io-index"
3182 | checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
3183 | dependencies = [
3184 | "bytes",
3185 | "futures-core",
3186 | "futures-sink",
3187 | "pin-project-lite",
3188 | "tokio",
3189 | ]
3190 |
3191 | [[package]]
3192 | name = "toml"
3193 | version = "0.7.8"
3194 | source = "registry+https://github.com/rust-lang/crates.io-index"
3195 | checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
3196 | dependencies = [
3197 | "serde",
3198 | "serde_spanned",
3199 | "toml_datetime",
3200 | "toml_edit 0.19.15",
3201 | ]
3202 |
3203 | [[package]]
3204 | name = "toml"
3205 | version = "0.8.2"
3206 | source = "registry+https://github.com/rust-lang/crates.io-index"
3207 | checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
3208 | dependencies = [
3209 | "serde",
3210 | "serde_spanned",
3211 | "toml_datetime",
3212 | "toml_edit 0.20.2",
3213 | ]
3214 |
3215 | [[package]]
3216 | name = "toml_datetime"
3217 | version = "0.6.3"
3218 | source = "registry+https://github.com/rust-lang/crates.io-index"
3219 | checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
3220 | dependencies = [
3221 | "serde",
3222 | ]
3223 |
3224 | [[package]]
3225 | name = "toml_edit"
3226 | version = "0.19.15"
3227 | source = "registry+https://github.com/rust-lang/crates.io-index"
3228 | checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
3229 | dependencies = [
3230 | "indexmap 2.2.6",
3231 | "serde",
3232 | "serde_spanned",
3233 | "toml_datetime",
3234 | "winnow",
3235 | ]
3236 |
3237 | [[package]]
3238 | name = "toml_edit"
3239 | version = "0.20.2"
3240 | source = "registry+https://github.com/rust-lang/crates.io-index"
3241 | checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
3242 | dependencies = [
3243 | "indexmap 2.2.6",
3244 | "serde",
3245 | "serde_spanned",
3246 | "toml_datetime",
3247 | "winnow",
3248 | ]
3249 |
3250 | [[package]]
3251 | name = "tower"
3252 | version = "0.4.13"
3253 | source = "registry+https://github.com/rust-lang/crates.io-index"
3254 | checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3255 | dependencies = [
3256 | "futures-core",
3257 | "futures-util",
3258 | "pin-project",
3259 | "pin-project-lite",
3260 | "tokio",
3261 | "tower-layer",
3262 | "tower-service",
3263 | "tracing",
3264 | ]
3265 |
3266 | [[package]]
3267 | name = "tower-layer"
3268 | version = "0.3.2"
3269 | source = "registry+https://github.com/rust-lang/crates.io-index"
3270 | checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
3271 |
3272 | [[package]]
3273 | name = "tower-service"
3274 | version = "0.3.2"
3275 | source = "registry+https://github.com/rust-lang/crates.io-index"
3276 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3277 |
3278 | [[package]]
3279 | name = "tracing"
3280 | version = "0.1.40"
3281 | source = "registry+https://github.com/rust-lang/crates.io-index"
3282 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
3283 | dependencies = [
3284 | "log",
3285 | "pin-project-lite",
3286 | "tracing-attributes",
3287 | "tracing-core",
3288 | ]
3289 |
3290 | [[package]]
3291 | name = "tracing-attributes"
3292 | version = "0.1.27"
3293 | source = "registry+https://github.com/rust-lang/crates.io-index"
3294 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3295 | dependencies = [
3296 | "proc-macro2",
3297 | "quote",
3298 | "syn 2.0.63",
3299 | ]
3300 |
3301 | [[package]]
3302 | name = "tracing-core"
3303 | version = "0.1.32"
3304 | source = "registry+https://github.com/rust-lang/crates.io-index"
3305 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
3306 | dependencies = [
3307 | "once_cell",
3308 | "valuable",
3309 | ]
3310 |
3311 | [[package]]
3312 | name = "tracing-log"
3313 | version = "0.2.0"
3314 | source = "registry+https://github.com/rust-lang/crates.io-index"
3315 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3316 | dependencies = [
3317 | "log",
3318 | "once_cell",
3319 | "tracing-core",
3320 | ]
3321 |
3322 | [[package]]
3323 | name = "tracing-subscriber"
3324 | version = "0.3.18"
3325 | source = "registry+https://github.com/rust-lang/crates.io-index"
3326 | checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
3327 | dependencies = [
3328 | "matchers",
3329 | "nu-ansi-term",
3330 | "once_cell",
3331 | "regex",
3332 | "sharded-slab",
3333 | "smallvec",
3334 | "thread_local",
3335 | "tracing",
3336 | "tracing-core",
3337 | "tracing-log",
3338 | ]
3339 |
3340 | [[package]]
3341 | name = "tray-icon"
3342 | version = "0.13.5"
3343 | source = "registry+https://github.com/rust-lang/crates.io-index"
3344 | checksum = "39240037d755a1832e752d64f99078c3b0b21c09a71c12405070c75ef4e7cd3c"
3345 | dependencies = [
3346 | "cocoa",
3347 | "core-graphics",
3348 | "crossbeam-channel",
3349 | "dirs-next",
3350 | "libappindicator",
3351 | "muda",
3352 | "objc",
3353 | "once_cell",
3354 | "png",
3355 | "serde",
3356 | "thiserror",
3357 | "windows-sys 0.52.0",
3358 | ]
3359 |
3360 | [[package]]
3361 | name = "try-lock"
3362 | version = "0.2.5"
3363 | source = "registry+https://github.com/rust-lang/crates.io-index"
3364 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3365 |
3366 | [[package]]
3367 | name = "typenum"
3368 | version = "1.17.0"
3369 | source = "registry+https://github.com/rust-lang/crates.io-index"
3370 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3371 |
3372 | [[package]]
3373 | name = "unic-char-property"
3374 | version = "0.9.0"
3375 | source = "registry+https://github.com/rust-lang/crates.io-index"
3376 | checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
3377 | dependencies = [
3378 | "unic-char-range",
3379 | ]
3380 |
3381 | [[package]]
3382 | name = "unic-char-range"
3383 | version = "0.9.0"
3384 | source = "registry+https://github.com/rust-lang/crates.io-index"
3385 | checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3386 |
3387 | [[package]]
3388 | name = "unic-common"
3389 | version = "0.9.0"
3390 | source = "registry+https://github.com/rust-lang/crates.io-index"
3391 | checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
3392 |
3393 | [[package]]
3394 | name = "unic-ucd-ident"
3395 | version = "0.9.0"
3396 | source = "registry+https://github.com/rust-lang/crates.io-index"
3397 | checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
3398 | dependencies = [
3399 | "unic-char-property",
3400 | "unic-char-range",
3401 | "unic-ucd-version",
3402 | ]
3403 |
3404 | [[package]]
3405 | name = "unic-ucd-version"
3406 | version = "0.9.0"
3407 | source = "registry+https://github.com/rust-lang/crates.io-index"
3408 | checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
3409 | dependencies = [
3410 | "unic-common",
3411 | ]
3412 |
3413 | [[package]]
3414 | name = "unicode-bidi"
3415 | version = "0.3.15"
3416 | source = "registry+https://github.com/rust-lang/crates.io-index"
3417 | checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
3418 |
3419 | [[package]]
3420 | name = "unicode-ident"
3421 | version = "1.0.12"
3422 | source = "registry+https://github.com/rust-lang/crates.io-index"
3423 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
3424 |
3425 | [[package]]
3426 | name = "unicode-normalization"
3427 | version = "0.1.23"
3428 | source = "registry+https://github.com/rust-lang/crates.io-index"
3429 | checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
3430 | dependencies = [
3431 | "tinyvec",
3432 | ]
3433 |
3434 | [[package]]
3435 | name = "unicode-segmentation"
3436 | version = "1.11.0"
3437 | source = "registry+https://github.com/rust-lang/crates.io-index"
3438 | checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
3439 |
3440 | [[package]]
3441 | name = "url"
3442 | version = "2.5.0"
3443 | source = "registry+https://github.com/rust-lang/crates.io-index"
3444 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
3445 | dependencies = [
3446 | "form_urlencoded",
3447 | "idna",
3448 | "percent-encoding",
3449 | "serde",
3450 | ]
3451 |
3452 | [[package]]
3453 | name = "urlpattern"
3454 | version = "0.2.0"
3455 | source = "registry+https://github.com/rust-lang/crates.io-index"
3456 | checksum = "f9bd5ff03aea02fa45b13a7980151fe45009af1980ba69f651ec367121a31609"
3457 | dependencies = [
3458 | "derive_more",
3459 | "regex",
3460 | "serde",
3461 | "unic-ucd-ident",
3462 | "url",
3463 | ]
3464 |
3465 | [[package]]
3466 | name = "utf-8"
3467 | version = "0.7.6"
3468 | source = "registry+https://github.com/rust-lang/crates.io-index"
3469 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3470 |
3471 | [[package]]
3472 | name = "uuid"
3473 | version = "1.8.0"
3474 | source = "registry+https://github.com/rust-lang/crates.io-index"
3475 | checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
3476 | dependencies = [
3477 | "getrandom 0.2.15",
3478 | ]
3479 |
3480 | [[package]]
3481 | name = "valuable"
3482 | version = "0.1.0"
3483 | source = "registry+https://github.com/rust-lang/crates.io-index"
3484 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3485 |
3486 | [[package]]
3487 | name = "version-compare"
3488 | version = "0.2.0"
3489 | source = "registry+https://github.com/rust-lang/crates.io-index"
3490 | checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
3491 |
3492 | [[package]]
3493 | name = "version_check"
3494 | version = "0.9.4"
3495 | source = "registry+https://github.com/rust-lang/crates.io-index"
3496 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3497 |
3498 | [[package]]
3499 | name = "vswhom"
3500 | version = "0.1.0"
3501 | source = "registry+https://github.com/rust-lang/crates.io-index"
3502 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3503 | dependencies = [
3504 | "libc",
3505 | "vswhom-sys",
3506 | ]
3507 |
3508 | [[package]]
3509 | name = "vswhom-sys"
3510 | version = "0.1.2"
3511 | source = "registry+https://github.com/rust-lang/crates.io-index"
3512 | checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
3513 | dependencies = [
3514 | "cc",
3515 | "libc",
3516 | ]
3517 |
3518 | [[package]]
3519 | name = "walkdir"
3520 | version = "2.5.0"
3521 | source = "registry+https://github.com/rust-lang/crates.io-index"
3522 | checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3523 | dependencies = [
3524 | "same-file",
3525 | "winapi-util",
3526 | ]
3527 |
3528 | [[package]]
3529 | name = "want"
3530 | version = "0.3.1"
3531 | source = "registry+https://github.com/rust-lang/crates.io-index"
3532 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3533 | dependencies = [
3534 | "try-lock",
3535 | ]
3536 |
3537 | [[package]]
3538 | name = "wasi"
3539 | version = "0.9.0+wasi-snapshot-preview1"
3540 | source = "registry+https://github.com/rust-lang/crates.io-index"
3541 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3542 |
3543 | [[package]]
3544 | name = "wasi"
3545 | version = "0.11.0+wasi-snapshot-preview1"
3546 | source = "registry+https://github.com/rust-lang/crates.io-index"
3547 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3548 |
3549 | [[package]]
3550 | name = "wasm-bindgen"
3551 | version = "0.2.92"
3552 | source = "registry+https://github.com/rust-lang/crates.io-index"
3553 | checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3554 | dependencies = [
3555 | "cfg-if",
3556 | "wasm-bindgen-macro",
3557 | ]
3558 |
3559 | [[package]]
3560 | name = "wasm-bindgen-backend"
3561 | version = "0.2.92"
3562 | source = "registry+https://github.com/rust-lang/crates.io-index"
3563 | checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3564 | dependencies = [
3565 | "bumpalo",
3566 | "log",
3567 | "once_cell",
3568 | "proc-macro2",
3569 | "quote",
3570 | "syn 2.0.63",
3571 | "wasm-bindgen-shared",
3572 | ]
3573 |
3574 | [[package]]
3575 | name = "wasm-bindgen-futures"
3576 | version = "0.4.42"
3577 | source = "registry+https://github.com/rust-lang/crates.io-index"
3578 | checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
3579 | dependencies = [
3580 | "cfg-if",
3581 | "js-sys",
3582 | "wasm-bindgen",
3583 | "web-sys",
3584 | ]
3585 |
3586 | [[package]]
3587 | name = "wasm-bindgen-macro"
3588 | version = "0.2.92"
3589 | source = "registry+https://github.com/rust-lang/crates.io-index"
3590 | checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3591 | dependencies = [
3592 | "quote",
3593 | "wasm-bindgen-macro-support",
3594 | ]
3595 |
3596 | [[package]]
3597 | name = "wasm-bindgen-macro-support"
3598 | version = "0.2.92"
3599 | source = "registry+https://github.com/rust-lang/crates.io-index"
3600 | checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3601 | dependencies = [
3602 | "proc-macro2",
3603 | "quote",
3604 | "syn 2.0.63",
3605 | "wasm-bindgen-backend",
3606 | "wasm-bindgen-shared",
3607 | ]
3608 |
3609 | [[package]]
3610 | name = "wasm-bindgen-shared"
3611 | version = "0.2.92"
3612 | source = "registry+https://github.com/rust-lang/crates.io-index"
3613 | checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3614 |
3615 | [[package]]
3616 | name = "wasm-streams"
3617 | version = "0.4.0"
3618 | source = "registry+https://github.com/rust-lang/crates.io-index"
3619 | checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
3620 | dependencies = [
3621 | "futures-util",
3622 | "js-sys",
3623 | "wasm-bindgen",
3624 | "wasm-bindgen-futures",
3625 | "web-sys",
3626 | ]
3627 |
3628 | [[package]]
3629 | name = "wayland-sys"
3630 | version = "0.31.1"
3631 | source = "registry+https://github.com/rust-lang/crates.io-index"
3632 | checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af"
3633 | dependencies = [
3634 | "dlib",
3635 | "log",
3636 | "pkg-config",
3637 | ]
3638 |
3639 | [[package]]
3640 | name = "web-sys"
3641 | version = "0.3.69"
3642 | source = "registry+https://github.com/rust-lang/crates.io-index"
3643 | checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
3644 | dependencies = [
3645 | "js-sys",
3646 | "wasm-bindgen",
3647 | ]
3648 |
3649 | [[package]]
3650 | name = "webkit2gtk"
3651 | version = "2.0.1"
3652 | source = "registry+https://github.com/rust-lang/crates.io-index"
3653 | checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a"
3654 | dependencies = [
3655 | "bitflags 1.3.2",
3656 | "cairo-rs",
3657 | "gdk",
3658 | "gdk-sys",
3659 | "gio",
3660 | "gio-sys",
3661 | "glib",
3662 | "glib-sys",
3663 | "gobject-sys",
3664 | "gtk",
3665 | "gtk-sys",
3666 | "javascriptcore-rs",
3667 | "libc",
3668 | "once_cell",
3669 | "soup3",
3670 | "webkit2gtk-sys",
3671 | ]
3672 |
3673 | [[package]]
3674 | name = "webkit2gtk-sys"
3675 | version = "2.0.1"
3676 | source = "registry+https://github.com/rust-lang/crates.io-index"
3677 | checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c"
3678 | dependencies = [
3679 | "bitflags 1.3.2",
3680 | "cairo-sys-rs",
3681 | "gdk-sys",
3682 | "gio-sys",
3683 | "glib-sys",
3684 | "gobject-sys",
3685 | "gtk-sys",
3686 | "javascriptcore-rs-sys",
3687 | "libc",
3688 | "pkg-config",
3689 | "soup3-sys",
3690 | "system-deps",
3691 | ]
3692 |
3693 | [[package]]
3694 | name = "webview2-com"
3695 | version = "0.30.0"
3696 | source = "registry+https://github.com/rust-lang/crates.io-index"
3697 | checksum = "5c914dd492a52f0377bef56fd1b6e74a79090f9ee631d625d5b505a00e4538b6"
3698 | dependencies = [
3699 | "webview2-com-macros",
3700 | "webview2-com-sys",
3701 | "windows 0.56.0",
3702 | "windows-core 0.56.0",
3703 | "windows-implement",
3704 | "windows-interface",
3705 | ]
3706 |
3707 | [[package]]
3708 | name = "webview2-com-macros"
3709 | version = "0.7.0"
3710 | source = "registry+https://github.com/rust-lang/crates.io-index"
3711 | checksum = "ac1345798ecd8122468840bcdf1b95e5dc6d2206c5e4b0eafa078d061f59c9bc"
3712 | dependencies = [
3713 | "proc-macro2",
3714 | "quote",
3715 | "syn 2.0.63",
3716 | ]
3717 |
3718 | [[package]]
3719 | name = "webview2-com-sys"
3720 | version = "0.30.0"
3721 | source = "registry+https://github.com/rust-lang/crates.io-index"
3722 | checksum = "2a46bcf03482ec28eeb764ca788f67998cde4213adfbbfa90462622058530f5e"
3723 | dependencies = [
3724 | "thiserror",
3725 | "windows 0.56.0",
3726 | "windows-core 0.56.0",
3727 | ]
3728 |
3729 | [[package]]
3730 | name = "winapi"
3731 | version = "0.3.9"
3732 | source = "registry+https://github.com/rust-lang/crates.io-index"
3733 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3734 | dependencies = [
3735 | "winapi-i686-pc-windows-gnu",
3736 | "winapi-x86_64-pc-windows-gnu",
3737 | ]
3738 |
3739 | [[package]]
3740 | name = "winapi-i686-pc-windows-gnu"
3741 | version = "0.4.0"
3742 | source = "registry+https://github.com/rust-lang/crates.io-index"
3743 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3744 |
3745 | [[package]]
3746 | name = "winapi-util"
3747 | version = "0.1.8"
3748 | source = "registry+https://github.com/rust-lang/crates.io-index"
3749 | checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
3750 | dependencies = [
3751 | "windows-sys 0.52.0",
3752 | ]
3753 |
3754 | [[package]]
3755 | name = "winapi-x86_64-pc-windows-gnu"
3756 | version = "0.4.0"
3757 | source = "registry+https://github.com/rust-lang/crates.io-index"
3758 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3759 |
3760 | [[package]]
3761 | name = "window-vibrancy"
3762 | version = "0.5.0"
3763 | source = "registry+https://github.com/rust-lang/crates.io-index"
3764 | checksum = "33082acd404763b315866e14a0d5193f3422c81086657583937a750cdd3ec340"
3765 | dependencies = [
3766 | "cocoa",
3767 | "objc",
3768 | "raw-window-handle 0.6.1",
3769 | "windows-sys 0.52.0",
3770 | "windows-version",
3771 | ]
3772 |
3773 | [[package]]
3774 | name = "windows"
3775 | version = "0.48.0"
3776 | source = "registry+https://github.com/rust-lang/crates.io-index"
3777 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
3778 | dependencies = [
3779 | "windows-targets 0.48.5",
3780 | ]
3781 |
3782 | [[package]]
3783 | name = "windows"
3784 | version = "0.56.0"
3785 | source = "registry+https://github.com/rust-lang/crates.io-index"
3786 | checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
3787 | dependencies = [
3788 | "windows-core 0.56.0",
3789 | "windows-targets 0.52.5",
3790 | ]
3791 |
3792 | [[package]]
3793 | name = "windows-core"
3794 | version = "0.52.0"
3795 | source = "registry+https://github.com/rust-lang/crates.io-index"
3796 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3797 | dependencies = [
3798 | "windows-targets 0.52.5",
3799 | ]
3800 |
3801 | [[package]]
3802 | name = "windows-core"
3803 | version = "0.56.0"
3804 | source = "registry+https://github.com/rust-lang/crates.io-index"
3805 | checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
3806 | dependencies = [
3807 | "windows-implement",
3808 | "windows-interface",
3809 | "windows-result",
3810 | "windows-targets 0.52.5",
3811 | ]
3812 |
3813 | [[package]]
3814 | name = "windows-implement"
3815 | version = "0.56.0"
3816 | source = "registry+https://github.com/rust-lang/crates.io-index"
3817 | checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
3818 | dependencies = [
3819 | "proc-macro2",
3820 | "quote",
3821 | "syn 2.0.63",
3822 | ]
3823 |
3824 | [[package]]
3825 | name = "windows-interface"
3826 | version = "0.56.0"
3827 | source = "registry+https://github.com/rust-lang/crates.io-index"
3828 | checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
3829 | dependencies = [
3830 | "proc-macro2",
3831 | "quote",
3832 | "syn 2.0.63",
3833 | ]
3834 |
3835 | [[package]]
3836 | name = "windows-result"
3837 | version = "0.1.1"
3838 | source = "registry+https://github.com/rust-lang/crates.io-index"
3839 | checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b"
3840 | dependencies = [
3841 | "windows-targets 0.52.5",
3842 | ]
3843 |
3844 | [[package]]
3845 | name = "windows-sys"
3846 | version = "0.45.0"
3847 | source = "registry+https://github.com/rust-lang/crates.io-index"
3848 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3849 | dependencies = [
3850 | "windows-targets 0.42.2",
3851 | ]
3852 |
3853 | [[package]]
3854 | name = "windows-sys"
3855 | version = "0.48.0"
3856 | source = "registry+https://github.com/rust-lang/crates.io-index"
3857 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3858 | dependencies = [
3859 | "windows-targets 0.48.5",
3860 | ]
3861 |
3862 | [[package]]
3863 | name = "windows-sys"
3864 | version = "0.52.0"
3865 | source = "registry+https://github.com/rust-lang/crates.io-index"
3866 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3867 | dependencies = [
3868 | "windows-targets 0.52.5",
3869 | ]
3870 |
3871 | [[package]]
3872 | name = "windows-targets"
3873 | version = "0.42.2"
3874 | source = "registry+https://github.com/rust-lang/crates.io-index"
3875 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3876 | dependencies = [
3877 | "windows_aarch64_gnullvm 0.42.2",
3878 | "windows_aarch64_msvc 0.42.2",
3879 | "windows_i686_gnu 0.42.2",
3880 | "windows_i686_msvc 0.42.2",
3881 | "windows_x86_64_gnu 0.42.2",
3882 | "windows_x86_64_gnullvm 0.42.2",
3883 | "windows_x86_64_msvc 0.42.2",
3884 | ]
3885 |
3886 | [[package]]
3887 | name = "windows-targets"
3888 | version = "0.48.5"
3889 | source = "registry+https://github.com/rust-lang/crates.io-index"
3890 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3891 | dependencies = [
3892 | "windows_aarch64_gnullvm 0.48.5",
3893 | "windows_aarch64_msvc 0.48.5",
3894 | "windows_i686_gnu 0.48.5",
3895 | "windows_i686_msvc 0.48.5",
3896 | "windows_x86_64_gnu 0.48.5",
3897 | "windows_x86_64_gnullvm 0.48.5",
3898 | "windows_x86_64_msvc 0.48.5",
3899 | ]
3900 |
3901 | [[package]]
3902 | name = "windows-targets"
3903 | version = "0.52.5"
3904 | source = "registry+https://github.com/rust-lang/crates.io-index"
3905 | checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
3906 | dependencies = [
3907 | "windows_aarch64_gnullvm 0.52.5",
3908 | "windows_aarch64_msvc 0.52.5",
3909 | "windows_i686_gnu 0.52.5",
3910 | "windows_i686_gnullvm",
3911 | "windows_i686_msvc 0.52.5",
3912 | "windows_x86_64_gnu 0.52.5",
3913 | "windows_x86_64_gnullvm 0.52.5",
3914 | "windows_x86_64_msvc 0.52.5",
3915 | ]
3916 |
3917 | [[package]]
3918 | name = "windows-version"
3919 | version = "0.1.1"
3920 | source = "registry+https://github.com/rust-lang/crates.io-index"
3921 | checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515"
3922 | dependencies = [
3923 | "windows-targets 0.52.5",
3924 | ]
3925 |
3926 | [[package]]
3927 | name = "windows_aarch64_gnullvm"
3928 | version = "0.42.2"
3929 | source = "registry+https://github.com/rust-lang/crates.io-index"
3930 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3931 |
3932 | [[package]]
3933 | name = "windows_aarch64_gnullvm"
3934 | version = "0.48.5"
3935 | source = "registry+https://github.com/rust-lang/crates.io-index"
3936 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3937 |
3938 | [[package]]
3939 | name = "windows_aarch64_gnullvm"
3940 | version = "0.52.5"
3941 | source = "registry+https://github.com/rust-lang/crates.io-index"
3942 | checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
3943 |
3944 | [[package]]
3945 | name = "windows_aarch64_msvc"
3946 | version = "0.42.2"
3947 | source = "registry+https://github.com/rust-lang/crates.io-index"
3948 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3949 |
3950 | [[package]]
3951 | name = "windows_aarch64_msvc"
3952 | version = "0.48.5"
3953 | source = "registry+https://github.com/rust-lang/crates.io-index"
3954 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3955 |
3956 | [[package]]
3957 | name = "windows_aarch64_msvc"
3958 | version = "0.52.5"
3959 | source = "registry+https://github.com/rust-lang/crates.io-index"
3960 | checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
3961 |
3962 | [[package]]
3963 | name = "windows_i686_gnu"
3964 | version = "0.42.2"
3965 | source = "registry+https://github.com/rust-lang/crates.io-index"
3966 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3967 |
3968 | [[package]]
3969 | name = "windows_i686_gnu"
3970 | version = "0.48.5"
3971 | source = "registry+https://github.com/rust-lang/crates.io-index"
3972 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3973 |
3974 | [[package]]
3975 | name = "windows_i686_gnu"
3976 | version = "0.52.5"
3977 | source = "registry+https://github.com/rust-lang/crates.io-index"
3978 | checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
3979 |
3980 | [[package]]
3981 | name = "windows_i686_gnullvm"
3982 | version = "0.52.5"
3983 | source = "registry+https://github.com/rust-lang/crates.io-index"
3984 | checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
3985 |
3986 | [[package]]
3987 | name = "windows_i686_msvc"
3988 | version = "0.42.2"
3989 | source = "registry+https://github.com/rust-lang/crates.io-index"
3990 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3991 |
3992 | [[package]]
3993 | name = "windows_i686_msvc"
3994 | version = "0.48.5"
3995 | source = "registry+https://github.com/rust-lang/crates.io-index"
3996 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3997 |
3998 | [[package]]
3999 | name = "windows_i686_msvc"
4000 | version = "0.52.5"
4001 | source = "registry+https://github.com/rust-lang/crates.io-index"
4002 | checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
4003 |
4004 | [[package]]
4005 | name = "windows_x86_64_gnu"
4006 | version = "0.42.2"
4007 | source = "registry+https://github.com/rust-lang/crates.io-index"
4008 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4009 |
4010 | [[package]]
4011 | name = "windows_x86_64_gnu"
4012 | version = "0.48.5"
4013 | source = "registry+https://github.com/rust-lang/crates.io-index"
4014 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4015 |
4016 | [[package]]
4017 | name = "windows_x86_64_gnu"
4018 | version = "0.52.5"
4019 | source = "registry+https://github.com/rust-lang/crates.io-index"
4020 | checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
4021 |
4022 | [[package]]
4023 | name = "windows_x86_64_gnullvm"
4024 | version = "0.42.2"
4025 | source = "registry+https://github.com/rust-lang/crates.io-index"
4026 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4027 |
4028 | [[package]]
4029 | name = "windows_x86_64_gnullvm"
4030 | version = "0.48.5"
4031 | source = "registry+https://github.com/rust-lang/crates.io-index"
4032 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4033 |
4034 | [[package]]
4035 | name = "windows_x86_64_gnullvm"
4036 | version = "0.52.5"
4037 | source = "registry+https://github.com/rust-lang/crates.io-index"
4038 | checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
4039 |
4040 | [[package]]
4041 | name = "windows_x86_64_msvc"
4042 | version = "0.42.2"
4043 | source = "registry+https://github.com/rust-lang/crates.io-index"
4044 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4045 |
4046 | [[package]]
4047 | name = "windows_x86_64_msvc"
4048 | version = "0.48.5"
4049 | source = "registry+https://github.com/rust-lang/crates.io-index"
4050 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4051 |
4052 | [[package]]
4053 | name = "windows_x86_64_msvc"
4054 | version = "0.52.5"
4055 | source = "registry+https://github.com/rust-lang/crates.io-index"
4056 | checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
4057 |
4058 | [[package]]
4059 | name = "winnow"
4060 | version = "0.5.40"
4061 | source = "registry+https://github.com/rust-lang/crates.io-index"
4062 | checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
4063 | dependencies = [
4064 | "memchr",
4065 | ]
4066 |
4067 | [[package]]
4068 | name = "winreg"
4069 | version = "0.52.0"
4070 | source = "registry+https://github.com/rust-lang/crates.io-index"
4071 | checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
4072 | dependencies = [
4073 | "cfg-if",
4074 | "windows-sys 0.48.0",
4075 | ]
4076 |
4077 | [[package]]
4078 | name = "wry"
4079 | version = "0.39.5"
4080 | source = "registry+https://github.com/rust-lang/crates.io-index"
4081 | checksum = "c7172fc76376d55d089c627a31a5b604b4ac372793fb5378d1c7ddf008703008"
4082 | dependencies = [
4083 | "base64 0.22.1",
4084 | "block",
4085 | "cocoa",
4086 | "core-graphics",
4087 | "crossbeam-channel",
4088 | "dpi",
4089 | "dunce",
4090 | "gdkx11",
4091 | "gtk",
4092 | "html5ever",
4093 | "http",
4094 | "javascriptcore-rs",
4095 | "jni",
4096 | "kuchikiki",
4097 | "libc",
4098 | "ndk",
4099 | "ndk-context",
4100 | "ndk-sys",
4101 | "objc",
4102 | "objc_id",
4103 | "once_cell",
4104 | "percent-encoding",
4105 | "raw-window-handle 0.6.1",
4106 | "sha2",
4107 | "soup3",
4108 | "tao-macros",
4109 | "thiserror",
4110 | "webkit2gtk",
4111 | "webkit2gtk-sys",
4112 | "webview2-com",
4113 | "windows 0.56.0",
4114 | "windows-core 0.56.0",
4115 | "windows-version",
4116 | "x11-dl",
4117 | ]
4118 |
4119 | [[package]]
4120 | name = "x11"
4121 | version = "2.21.0"
4122 | source = "registry+https://github.com/rust-lang/crates.io-index"
4123 | checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
4124 | dependencies = [
4125 | "libc",
4126 | "pkg-config",
4127 | ]
4128 |
4129 | [[package]]
4130 | name = "x11-dl"
4131 | version = "2.21.0"
4132 | source = "registry+https://github.com/rust-lang/crates.io-index"
4133 | checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
4134 | dependencies = [
4135 | "libc",
4136 | "once_cell",
4137 | "pkg-config",
4138 | ]
4139 |
--------------------------------------------------------------------------------