├── .gitignore
├── 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
├── src
│ └── main.rs
├── Cargo.toml
├── tauri.conf.json
└── Cargo.lock
├── deno.json
├── www
├── index.html
├── index.tsx
└── App.tsx
├── bundle.ts
├── readme.md
└── deno.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | WixTools
3 | dist
4 | .vscode
--------------------------------------------------------------------------------
/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/src-tauri/icons/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/32x32.png
--------------------------------------------------------------------------------
/src-tauri/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/icon.icns
--------------------------------------------------------------------------------
/src-tauri/icons/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/icon.ico
--------------------------------------------------------------------------------
/src-tauri/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/icon.png
--------------------------------------------------------------------------------
/src-tauri/icons/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/128x128.png
--------------------------------------------------------------------------------
/src-tauri/icons/128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/128x128@2x.png
--------------------------------------------------------------------------------
/src-tauri/icons/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/StoreLogo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square30x30Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square30x30Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square44x44Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square71x71Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square89x89Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square89x89Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square107x107Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square107x107Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square142x142Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square142x142Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square150x150Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square284x284Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square284x284Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/marc2332/tauri-deno-starter/HEAD/src-tauri/icons/Square310x310Logo.png
--------------------------------------------------------------------------------
/deno.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": [
4 | "ES2021",
5 | "dom",
6 | "dom.iterable"
7 | ]
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src-tauri/src/main.rs:
--------------------------------------------------------------------------------
1 | #![cfg_attr(
2 | all(not(debug_assertions), target_os = "windows"),
3 | windows_subsystem = "windows"
4 | )]
5 |
6 | fn main() {
7 | tauri::Builder::default()
8 | .run(tauri::generate_context!())
9 | .expect("error while running tauri application");
10 | }
11 |
--------------------------------------------------------------------------------
/src-tauri/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "tauri-deno-starter"
3 | version = "0.1.0"
4 | description = "Deno + Tauri app"
5 | authors = ["Denosaur"]
6 | license = ""
7 | repository = "https://github.com/marc2332/tauri-deno-starter"
8 | edition = "2021"
9 |
10 | [build-dependencies]
11 | tauri-build = { version = "1.5", features = [] }
12 |
13 | [dependencies]
14 | tauri = { version = "1.5", features = ["api-all"] }
15 |
16 | [features]
17 | default = [ "custom-protocol" ]
18 | custom-protocol = [ "tauri/custom-protocol" ]
19 |
--------------------------------------------------------------------------------
/www/index.tsx:
--------------------------------------------------------------------------------
1 | declare const __USE_LIVE_RELOAD: boolean | undefined;
2 |
3 | import React from "https://esm.sh/react@18";
4 | import { createRoot } from "https://esm.sh/react-dom@18/client";
5 | import App from "./App.tsx";
6 |
7 | // __USE_LIVE_RELOAD is defined in `define` and gets replaced by esbuild
8 | const useLiveReload = __USE_LIVE_RELOAD;
9 | if (useLiveReload) {
10 | console.log("Using live reload");
11 | new EventSource("/esbuild").addEventListener(
12 | "change",
13 | () => location.reload(),
14 | );
15 | }
16 |
17 | const root = createRoot(document.getElementById("root") as HTMLElement);
18 |
19 | root.render();
20 |
--------------------------------------------------------------------------------
/bundle.ts:
--------------------------------------------------------------------------------
1 | import * as esbuild from "https://deno.land/x/esbuild@v0.19.11/mod.js";
2 | import { denoPlugin } from "https://deno.land/x/esbuild_deno_loader@0.4.3/mod.ts";
3 |
4 | async function watch() {
5 | const ctx = await esbuild.context({
6 | plugins: [denoPlugin()],
7 | entryPoints: ["./www/index.tsx"],
8 | outfile: "./www/dist/main.js",
9 | bundle: true,
10 | format: "esm",
11 | define: {
12 | "__USE_LIVE_RELOAD": "true",
13 | },
14 | });
15 |
16 | const serve = await ctx.serve({
17 | port: 3000,
18 | servedir: "./www",
19 | });
20 |
21 | console.log(`Serving internally on ${serve.host}:${serve.port}`);
22 | console.log("Watching...");
23 | await ctx.watch();
24 | }
25 |
26 | await watch();
27 |
--------------------------------------------------------------------------------
/www/App.tsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "https://esm.sh/react@18";
2 | import { dialog } from "https://esm.sh/@tauri-apps/api";
3 | import { tw } from "https://cdn.skypack.dev/twind";
4 |
5 | export default function App() {
6 | const [state, setState] = useState("Click the button!");
7 |
8 | function askUser() {
9 | dialog.ask("Are you ok? :)", "Hey!").then((res: boolean) => {
10 | if (res) {
11 | setState("You are good!");
12 | } else {
13 | setState("You are not good D:");
14 | }
15 | });
16 | }
17 |
18 | return (
19 |
20 |
{state}
21 |
27 |
28 | );
29 | }
30 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Deno 🦕 + Tauri
2 |
3 | Starter template for Tauri, bundling the frontend made with React using Deno
4 | with esbuild.
5 |
6 | You can use TypeScript or JavaScript. With React or any other library, or just
7 | vanilla, with no extra steps.
8 |
9 | - `src-tauri`: Rust backend
10 | - `www`: Web frontend
11 | - `build.ts`: Script to build your frontend
12 | - `bundle.ts`: Script to bundle your frontend while developing
13 |
14 | Prerequisites:
15 |
16 | - [Rust](https://www.rust-lang.org/)
17 | - [Deno](https://deno.land/)
18 | - [Tauri](https://tauri.app/v1/api/cli)
19 | - [Tauri os-specific dependencies](https://tauri.studio/v1/guides/getting-started/prerequisites#installing)
20 |
21 | Development:
22 |
23 | ```shell
24 | cargo tauri dev
25 | ```
26 |
27 | Building:
28 |
29 | ```shell
30 | cargo tauri build
31 | ```
32 |
33 | Formatting:
34 |
35 | ```shell
36 | deno fmt www
37 | cargo fmt
38 | ```
39 |
40 | Linting:
41 |
42 | ```shell
43 | deno lint www
44 | cargo clippy
45 | ```
46 |
--------------------------------------------------------------------------------
/src-tauri/tauri.conf.json:
--------------------------------------------------------------------------------
1 | {
2 | "build": {
3 | "beforeBuildCommand": "deno run -A build.ts",
4 | "beforeDevCommand": "deno run -A bundle.ts",
5 | "devPath": "http://localhost:3000",
6 | "distDir": "../www"
7 | },
8 | "package": {
9 | "productName": "tauri-deno-starter",
10 | "version": "0.1.0"
11 | },
12 | "tauri": {
13 | "allowlist": {
14 | "all": true
15 | },
16 | "bundle": {
17 | "active": true,
18 | "category": "DeveloperTool",
19 | "copyright": "",
20 | "deb": {
21 | "depends": []
22 | },
23 | "externalBin": [],
24 | "icon": [
25 | "icons/32x32.png",
26 | "icons/128x128.png",
27 | "icons/128x128@2x.png",
28 | "icons/icon.icns",
29 | "icons/icon.ico"
30 | ],
31 | "identifier": "com.tauri.deno.com",
32 | "longDescription": "",
33 | "macOS": {
34 | "entitlements": null,
35 | "exceptionDomain": "",
36 | "frameworks": [],
37 | "providerShortName": null,
38 | "signingIdentity": null
39 | },
40 | "resources": [],
41 | "shortDescription": "",
42 | "targets": "all",
43 | "windows": {
44 | "certificateThumbprint": null,
45 | "digestAlgorithm": "sha256",
46 | "timestampUrl": ""
47 | }
48 | },
49 | "security": {
50 | "csp": null
51 | },
52 | "updater": {
53 | "active": false
54 | },
55 | "windows": [
56 | {
57 | "fullscreen": false,
58 | "height": 600,
59 | "resizable": true,
60 | "title": "Tauri Deno Starter",
61 | "width": 800
62 | }
63 | ]
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/deno.lock:
--------------------------------------------------------------------------------
1 | {
2 | "version": "3",
3 | "remote": {
4 | "https://deno.land/std@0.139.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
5 | "https://deno.land/std@0.139.0/_util/os.ts": "49b92edea1e82ba295ec946de8ffd956ed123e2948d9bd1d3e901b04e4307617",
6 | "https://deno.land/std@0.139.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3",
7 | "https://deno.land/std@0.139.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09",
8 | "https://deno.land/std@0.139.0/path/_util.ts": "c1e9686d0164e29f7d880b2158971d805b6e0efc3110d0b3e24e4b8af2190d2b",
9 | "https://deno.land/std@0.139.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633",
10 | "https://deno.land/std@0.139.0/path/glob.ts": "cb5255638de1048973c3e69e420c77dc04f75755524cb3b2e160fe9277d939ee",
11 | "https://deno.land/std@0.139.0/path/mod.ts": "d3e68d0abb393fb0bf94a6d07c46ec31dc755b544b13144dee931d8d5f06a52d",
12 | "https://deno.land/std@0.139.0/path/posix.ts": "293cdaec3ecccec0a9cc2b534302dfe308adb6f10861fa183275d6695faace44",
13 | "https://deno.land/std@0.139.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
14 | "https://deno.land/std@0.139.0/path/win32.ts": "31811536855e19ba37a999cd8d1b62078235548d67902ece4aa6b814596dd757",
15 | "https://deno.land/std@0.150.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
16 | "https://deno.land/std@0.150.0/_util/os.ts": "3b4c6e27febd119d36a416d7a97bd3b0251b77c88942c8f16ee5953ea13e2e49",
17 | "https://deno.land/std@0.150.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3",
18 | "https://deno.land/std@0.150.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09",
19 | "https://deno.land/std@0.150.0/path/_util.ts": "c1e9686d0164e29f7d880b2158971d805b6e0efc3110d0b3e24e4b8af2190d2b",
20 | "https://deno.land/std@0.150.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633",
21 | "https://deno.land/std@0.150.0/path/glob.ts": "cb5255638de1048973c3e69e420c77dc04f75755524cb3b2e160fe9277d939ee",
22 | "https://deno.land/std@0.150.0/path/mod.ts": "4945b430b759b0b3d98f2a278542cbcf95e0ad2bd8eaaed3c67322b306b2b346",
23 | "https://deno.land/std@0.150.0/path/posix.ts": "c1f7afe274290ea0b51da07ee205653b2964bd74909a82deb07b69a6cc383aaa",
24 | "https://deno.land/std@0.150.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
25 | "https://deno.land/std@0.150.0/path/win32.ts": "bd7549042e37879c68ff2f8576a25950abbfca1d696d41d82c7bca0b7e6f452c",
26 | "https://deno.land/x/denoflate@1.2.1/mod.ts": "f5628e44b80b3d80ed525afa2ba0f12408e3849db817d47a883b801f9ce69dd6",
27 | "https://deno.land/x/denoflate@1.2.1/pkg/denoflate.js": "b9f9ad9457d3f12f28b1fb35c555f57443427f74decb403113d67364e4f2caf4",
28 | "https://deno.land/x/denoflate@1.2.1/pkg/denoflate_bg.wasm.js": "d581956245407a2115a3d7e8d85a9641c032940a8e810acbd59ca86afd34d44d",
29 | "https://deno.land/x/esbuild@v0.14.39/mod.js": "1647973ebe7c18a72325c782785f8525aec8e303d3a9e656a760493f24b91bbb",
30 | "https://deno.land/x/esbuild@v0.19.11/mod.js": "bd4916647799a0cd046dcf4eafd6ace09d22d5898870bd062206b8b6343d5e6a",
31 | "https://deno.land/x/esbuild_deno_loader@0.4.3/deps.ts": "e56a7fdf5ba7661f775a5708890c82fa8795c0bc9c66443acfb6610331c0c0e2",
32 | "https://deno.land/x/esbuild_deno_loader@0.4.3/mod.ts": "4fb6e08dcd27d5a2a0cf53d9ab78926ecf815c5e6330dc36abbd7e9cdf0dd431",
33 | "https://deno.land/x/esbuild_deno_loader@0.4.3/src/deno.ts": "85afaeccf84c2a57c934a29f823037b6c5d7ea67758658f4e663e5d7dd03b7de",
34 | "https://deno.land/x/esbuild_deno_loader@0.4.3/src/native_loader.ts": "8d648385729b4635d473f019635d1e52f1a6d5a842130b6acf03f1924ae3b0c7",
35 | "https://deno.land/x/esbuild_deno_loader@0.4.3/src/portable_loader.ts": "88b53cf8d6ffcf17f8c7a59724c2f050a33f02db28fe88a89dd2a24886acce78",
36 | "https://deno.land/x/esbuild_deno_loader@0.5.2/deps.ts": "bf83c27b7787b2f245fa0bc0b99f5041aa949c000a81c016cfe828d06b476d37",
37 | "https://deno.land/x/esbuild_deno_loader@0.5.2/mod.ts": "bc111a68f323dbdb6edec68dd558ab732b27866d2ef304708872d763387b65d7",
38 | "https://deno.land/x/esbuild_deno_loader@0.5.2/src/deno.ts": "0e83ccabbe2b004389288e38df2031b79eb347df2d139fce9394d8e88a11f259",
39 | "https://deno.land/x/esbuild_deno_loader@0.5.2/src/native_loader.ts": "343854a566cf510cf25144f7c09fc0c1097780a31830305142a075d12bb697ba",
40 | "https://deno.land/x/esbuild_deno_loader@0.5.2/src/portable_loader.ts": "35b6c526eed8c2c781a3256b23c30aa7cce69c0ef1d583c15528663287ba18a3",
41 | "https://deno.land/x/esbuild_deno_loader@0.5.2/src/shared.ts": "b64749cd8c0f6252a11498bd8758ef1220003e46b2c9b68e16da63fd7e92b13a",
42 | "https://deno.land/x/importmap@0.2.1/_util.ts": "ada9a9618b537e6c0316c048a898352396c882b9f2de38aba18fd3f2950ede89",
43 | "https://deno.land/x/importmap@0.2.1/mod.ts": "ae3d1cd7eabd18c01a4960d57db471126b020f23b37ef14e1359bbb949227ade"
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/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 = "adler32"
22 | version = "1.2.0"
23 | source = "registry+https://github.com/rust-lang/crates.io-index"
24 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
25 |
26 | [[package]]
27 | name = "aho-corasick"
28 | version = "0.7.18"
29 | source = "registry+https://github.com/rust-lang/crates.io-index"
30 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
31 | dependencies = [
32 | "memchr",
33 | ]
34 |
35 | [[package]]
36 | name = "alloc-no-stdlib"
37 | version = "2.0.3"
38 | source = "registry+https://github.com/rust-lang/crates.io-index"
39 | checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
40 |
41 | [[package]]
42 | name = "alloc-stdlib"
43 | version = "0.2.1"
44 | source = "registry+https://github.com/rust-lang/crates.io-index"
45 | checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
46 | dependencies = [
47 | "alloc-no-stdlib",
48 | ]
49 |
50 | [[package]]
51 | name = "android-tzdata"
52 | version = "0.1.1"
53 | source = "registry+https://github.com/rust-lang/crates.io-index"
54 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
55 |
56 | [[package]]
57 | name = "android_system_properties"
58 | version = "0.1.5"
59 | source = "registry+https://github.com/rust-lang/crates.io-index"
60 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
61 | dependencies = [
62 | "libc",
63 | ]
64 |
65 | [[package]]
66 | name = "ansi_term"
67 | version = "0.12.1"
68 | source = "registry+https://github.com/rust-lang/crates.io-index"
69 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
70 | dependencies = [
71 | "winapi",
72 | ]
73 |
74 | [[package]]
75 | name = "anyhow"
76 | version = "1.0.57"
77 | source = "registry+https://github.com/rust-lang/crates.io-index"
78 | checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
79 |
80 | [[package]]
81 | name = "arboard"
82 | version = "3.3.0"
83 | source = "registry+https://github.com/rust-lang/crates.io-index"
84 | checksum = "aafb29b107435aa276664c1db8954ac27a6e105cdad3c88287a199eb0e313c08"
85 | dependencies = [
86 | "clipboard-win",
87 | "core-graphics",
88 | "image",
89 | "log",
90 | "objc",
91 | "objc-foundation",
92 | "objc_id",
93 | "parking_lot 0.12.0",
94 | "thiserror",
95 | "winapi",
96 | "x11rb",
97 | ]
98 |
99 | [[package]]
100 | name = "async-broadcast"
101 | version = "0.4.0"
102 | source = "registry+https://github.com/rust-lang/crates.io-index"
103 | checksum = "1bbd92a9bd0e9c1298118ecf8a2f825e86b12c3ec9e411573e34aaf3a0c03cdd"
104 | dependencies = [
105 | "easy-parallel",
106 | "event-listener",
107 | "futures-core",
108 | "parking_lot 0.11.2",
109 | ]
110 |
111 | [[package]]
112 | name = "async-channel"
113 | version = "1.7.1"
114 | source = "registry+https://github.com/rust-lang/crates.io-index"
115 | checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
116 | dependencies = [
117 | "concurrent-queue",
118 | "event-listener",
119 | "futures-core",
120 | ]
121 |
122 | [[package]]
123 | name = "async-executor"
124 | version = "1.4.1"
125 | source = "registry+https://github.com/rust-lang/crates.io-index"
126 | checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
127 | dependencies = [
128 | "async-task",
129 | "concurrent-queue",
130 | "fastrand",
131 | "futures-lite",
132 | "once_cell",
133 | "slab",
134 | ]
135 |
136 | [[package]]
137 | name = "async-io"
138 | version = "1.10.0"
139 | source = "registry+https://github.com/rust-lang/crates.io-index"
140 | checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7"
141 | dependencies = [
142 | "async-lock",
143 | "autocfg",
144 | "concurrent-queue",
145 | "futures-lite",
146 | "libc",
147 | "log",
148 | "parking",
149 | "polling",
150 | "slab",
151 | "socket2 0.4.10",
152 | "waker-fn",
153 | "winapi",
154 | ]
155 |
156 | [[package]]
157 | name = "async-lock"
158 | version = "2.8.0"
159 | source = "registry+https://github.com/rust-lang/crates.io-index"
160 | checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
161 | dependencies = [
162 | "event-listener",
163 | ]
164 |
165 | [[package]]
166 | name = "async-recursion"
167 | version = "0.3.2"
168 | source = "registry+https://github.com/rust-lang/crates.io-index"
169 | checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
170 | dependencies = [
171 | "proc-macro2",
172 | "quote",
173 | "syn 1.0.95",
174 | ]
175 |
176 | [[package]]
177 | name = "async-task"
178 | version = "4.7.0"
179 | source = "registry+https://github.com/rust-lang/crates.io-index"
180 | checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
181 |
182 | [[package]]
183 | name = "async-trait"
184 | version = "0.1.77"
185 | source = "registry+https://github.com/rust-lang/crates.io-index"
186 | checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
187 | dependencies = [
188 | "proc-macro2",
189 | "quote",
190 | "syn 2.0.48",
191 | ]
192 |
193 | [[package]]
194 | name = "atk"
195 | version = "0.15.1"
196 | source = "registry+https://github.com/rust-lang/crates.io-index"
197 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
198 | dependencies = [
199 | "atk-sys",
200 | "bitflags",
201 | "glib",
202 | "libc",
203 | ]
204 |
205 | [[package]]
206 | name = "atk-sys"
207 | version = "0.15.1"
208 | source = "registry+https://github.com/rust-lang/crates.io-index"
209 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
210 | dependencies = [
211 | "glib-sys",
212 | "gobject-sys",
213 | "libc",
214 | "system-deps 6.0.2",
215 | ]
216 |
217 | [[package]]
218 | name = "autocfg"
219 | version = "1.1.0"
220 | source = "registry+https://github.com/rust-lang/crates.io-index"
221 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
222 |
223 | [[package]]
224 | name = "backtrace"
225 | version = "0.3.69"
226 | source = "registry+https://github.com/rust-lang/crates.io-index"
227 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
228 | dependencies = [
229 | "addr2line",
230 | "cc",
231 | "cfg-if",
232 | "libc",
233 | "miniz_oxide 0.7.1",
234 | "object",
235 | "rustc-demangle",
236 | ]
237 |
238 | [[package]]
239 | name = "base64"
240 | version = "0.13.0"
241 | source = "registry+https://github.com/rust-lang/crates.io-index"
242 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
243 |
244 | [[package]]
245 | name = "base64"
246 | version = "0.21.5"
247 | source = "registry+https://github.com/rust-lang/crates.io-index"
248 | checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
249 |
250 | [[package]]
251 | name = "bitflags"
252 | version = "1.3.2"
253 | source = "registry+https://github.com/rust-lang/crates.io-index"
254 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
255 |
256 | [[package]]
257 | name = "block"
258 | version = "0.1.6"
259 | source = "registry+https://github.com/rust-lang/crates.io-index"
260 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
261 |
262 | [[package]]
263 | name = "block-buffer"
264 | version = "0.10.2"
265 | source = "registry+https://github.com/rust-lang/crates.io-index"
266 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
267 | dependencies = [
268 | "generic-array",
269 | ]
270 |
271 | [[package]]
272 | name = "brotli"
273 | version = "3.3.4"
274 | source = "registry+https://github.com/rust-lang/crates.io-index"
275 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
276 | dependencies = [
277 | "alloc-no-stdlib",
278 | "alloc-stdlib",
279 | "brotli-decompressor",
280 | ]
281 |
282 | [[package]]
283 | name = "brotli-decompressor"
284 | version = "2.3.2"
285 | source = "registry+https://github.com/rust-lang/crates.io-index"
286 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
287 | dependencies = [
288 | "alloc-no-stdlib",
289 | "alloc-stdlib",
290 | ]
291 |
292 | [[package]]
293 | name = "bstr"
294 | version = "0.2.17"
295 | source = "registry+https://github.com/rust-lang/crates.io-index"
296 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
297 | dependencies = [
298 | "memchr",
299 | ]
300 |
301 | [[package]]
302 | name = "bumpalo"
303 | version = "3.9.1"
304 | source = "registry+https://github.com/rust-lang/crates.io-index"
305 | checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
306 |
307 | [[package]]
308 | name = "bytemuck"
309 | version = "1.9.1"
310 | source = "registry+https://github.com/rust-lang/crates.io-index"
311 | checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
312 |
313 | [[package]]
314 | name = "byteorder"
315 | version = "1.4.3"
316 | source = "registry+https://github.com/rust-lang/crates.io-index"
317 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
318 |
319 | [[package]]
320 | name = "bytes"
321 | version = "1.1.0"
322 | source = "registry+https://github.com/rust-lang/crates.io-index"
323 | checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
324 | dependencies = [
325 | "serde",
326 | ]
327 |
328 | [[package]]
329 | name = "cache-padded"
330 | version = "1.3.0"
331 | source = "registry+https://github.com/rust-lang/crates.io-index"
332 | checksum = "981520c98f422fcc584dc1a95c334e6953900b9106bc47a9839b81790009eb21"
333 |
334 | [[package]]
335 | name = "cairo-rs"
336 | version = "0.15.11"
337 | source = "registry+https://github.com/rust-lang/crates.io-index"
338 | checksum = "62be3562254e90c1c6050a72aa638f6315593e98c5cdaba9017cedbabf0a5dee"
339 | dependencies = [
340 | "bitflags",
341 | "cairo-sys-rs",
342 | "glib",
343 | "libc",
344 | "thiserror",
345 | ]
346 |
347 | [[package]]
348 | name = "cairo-sys-rs"
349 | version = "0.15.1"
350 | source = "registry+https://github.com/rust-lang/crates.io-index"
351 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
352 | dependencies = [
353 | "glib-sys",
354 | "libc",
355 | "system-deps 6.0.2",
356 | ]
357 |
358 | [[package]]
359 | name = "cargo_toml"
360 | version = "0.15.3"
361 | source = "registry+https://github.com/rust-lang/crates.io-index"
362 | checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
363 | dependencies = [
364 | "serde",
365 | "toml 0.7.8",
366 | ]
367 |
368 | [[package]]
369 | name = "cc"
370 | version = "1.0.83"
371 | source = "registry+https://github.com/rust-lang/crates.io-index"
372 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
373 | dependencies = [
374 | "libc",
375 | ]
376 |
377 | [[package]]
378 | name = "cesu8"
379 | version = "1.1.0"
380 | source = "registry+https://github.com/rust-lang/crates.io-index"
381 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
382 |
383 | [[package]]
384 | name = "cfb"
385 | version = "0.7.3"
386 | source = "registry+https://github.com/rust-lang/crates.io-index"
387 | checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
388 | dependencies = [
389 | "byteorder",
390 | "fnv",
391 | "uuid",
392 | ]
393 |
394 | [[package]]
395 | name = "cfg-expr"
396 | version = "0.9.1"
397 | source = "registry+https://github.com/rust-lang/crates.io-index"
398 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
399 | dependencies = [
400 | "smallvec",
401 | ]
402 |
403 | [[package]]
404 | name = "cfg-expr"
405 | version = "0.10.3"
406 | source = "registry+https://github.com/rust-lang/crates.io-index"
407 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db"
408 | dependencies = [
409 | "smallvec",
410 | ]
411 |
412 | [[package]]
413 | name = "cfg-if"
414 | version = "1.0.0"
415 | source = "registry+https://github.com/rust-lang/crates.io-index"
416 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
417 |
418 | [[package]]
419 | name = "chrono"
420 | version = "0.4.31"
421 | source = "registry+https://github.com/rust-lang/crates.io-index"
422 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
423 | dependencies = [
424 | "android-tzdata",
425 | "iana-time-zone",
426 | "num-traits",
427 | "serde",
428 | "windows-targets 0.48.5",
429 | ]
430 |
431 | [[package]]
432 | name = "clipboard-win"
433 | version = "4.5.0"
434 | source = "registry+https://github.com/rust-lang/crates.io-index"
435 | checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362"
436 | dependencies = [
437 | "error-code",
438 | "str-buf",
439 | "winapi",
440 | ]
441 |
442 | [[package]]
443 | name = "cocoa"
444 | version = "0.24.0"
445 | source = "registry+https://github.com/rust-lang/crates.io-index"
446 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
447 | dependencies = [
448 | "bitflags",
449 | "block",
450 | "cocoa-foundation",
451 | "core-foundation",
452 | "core-graphics",
453 | "foreign-types",
454 | "libc",
455 | "objc",
456 | ]
457 |
458 | [[package]]
459 | name = "cocoa-foundation"
460 | version = "0.1.0"
461 | source = "registry+https://github.com/rust-lang/crates.io-index"
462 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
463 | dependencies = [
464 | "bitflags",
465 | "block",
466 | "core-foundation",
467 | "core-graphics-types",
468 | "foreign-types",
469 | "libc",
470 | "objc",
471 | ]
472 |
473 | [[package]]
474 | name = "color_quant"
475 | version = "1.1.0"
476 | source = "registry+https://github.com/rust-lang/crates.io-index"
477 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
478 |
479 | [[package]]
480 | name = "combine"
481 | version = "4.6.4"
482 | source = "registry+https://github.com/rust-lang/crates.io-index"
483 | checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948"
484 | dependencies = [
485 | "bytes",
486 | "memchr",
487 | ]
488 |
489 | [[package]]
490 | name = "concurrent-queue"
491 | version = "1.2.4"
492 | source = "registry+https://github.com/rust-lang/crates.io-index"
493 | checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
494 | dependencies = [
495 | "cache-padded",
496 | ]
497 |
498 | [[package]]
499 | name = "convert_case"
500 | version = "0.4.0"
501 | source = "registry+https://github.com/rust-lang/crates.io-index"
502 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
503 |
504 | [[package]]
505 | name = "core-foundation"
506 | version = "0.9.3"
507 | source = "registry+https://github.com/rust-lang/crates.io-index"
508 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
509 | dependencies = [
510 | "core-foundation-sys",
511 | "libc",
512 | ]
513 |
514 | [[package]]
515 | name = "core-foundation-sys"
516 | version = "0.8.3"
517 | source = "registry+https://github.com/rust-lang/crates.io-index"
518 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
519 |
520 | [[package]]
521 | name = "core-graphics"
522 | version = "0.22.3"
523 | source = "registry+https://github.com/rust-lang/crates.io-index"
524 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
525 | dependencies = [
526 | "bitflags",
527 | "core-foundation",
528 | "core-graphics-types",
529 | "foreign-types",
530 | "libc",
531 | ]
532 |
533 | [[package]]
534 | name = "core-graphics-types"
535 | version = "0.1.1"
536 | source = "registry+https://github.com/rust-lang/crates.io-index"
537 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
538 | dependencies = [
539 | "bitflags",
540 | "core-foundation",
541 | "foreign-types",
542 | "libc",
543 | ]
544 |
545 | [[package]]
546 | name = "cpufeatures"
547 | version = "0.2.2"
548 | source = "registry+https://github.com/rust-lang/crates.io-index"
549 | checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
550 | dependencies = [
551 | "libc",
552 | ]
553 |
554 | [[package]]
555 | name = "crc32fast"
556 | version = "1.3.2"
557 | source = "registry+https://github.com/rust-lang/crates.io-index"
558 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
559 | dependencies = [
560 | "cfg-if",
561 | ]
562 |
563 | [[package]]
564 | name = "crossbeam-channel"
565 | version = "0.5.4"
566 | source = "registry+https://github.com/rust-lang/crates.io-index"
567 | checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
568 | dependencies = [
569 | "cfg-if",
570 | "crossbeam-utils",
571 | ]
572 |
573 | [[package]]
574 | name = "crossbeam-utils"
575 | version = "0.8.8"
576 | source = "registry+https://github.com/rust-lang/crates.io-index"
577 | checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
578 | dependencies = [
579 | "cfg-if",
580 | "lazy_static",
581 | ]
582 |
583 | [[package]]
584 | name = "crypto-common"
585 | version = "0.1.3"
586 | source = "registry+https://github.com/rust-lang/crates.io-index"
587 | checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
588 | dependencies = [
589 | "generic-array",
590 | "typenum",
591 | ]
592 |
593 | [[package]]
594 | name = "cssparser"
595 | version = "0.27.2"
596 | source = "registry+https://github.com/rust-lang/crates.io-index"
597 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
598 | dependencies = [
599 | "cssparser-macros",
600 | "dtoa-short",
601 | "itoa 0.4.8",
602 | "matches",
603 | "phf 0.8.0",
604 | "proc-macro2",
605 | "quote",
606 | "smallvec",
607 | "syn 1.0.95",
608 | ]
609 |
610 | [[package]]
611 | name = "cssparser-macros"
612 | version = "0.6.0"
613 | source = "registry+https://github.com/rust-lang/crates.io-index"
614 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
615 | dependencies = [
616 | "quote",
617 | "syn 1.0.95",
618 | ]
619 |
620 | [[package]]
621 | name = "ctor"
622 | version = "0.2.6"
623 | source = "registry+https://github.com/rust-lang/crates.io-index"
624 | checksum = "30d2b3721e861707777e3195b0158f950ae6dc4a27e4d02ff9f67e3eb3de199e"
625 | dependencies = [
626 | "quote",
627 | "syn 2.0.48",
628 | ]
629 |
630 | [[package]]
631 | name = "cty"
632 | version = "0.2.2"
633 | source = "registry+https://github.com/rust-lang/crates.io-index"
634 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
635 |
636 | [[package]]
637 | name = "darling"
638 | version = "0.20.3"
639 | source = "registry+https://github.com/rust-lang/crates.io-index"
640 | checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
641 | dependencies = [
642 | "darling_core",
643 | "darling_macro",
644 | ]
645 |
646 | [[package]]
647 | name = "darling_core"
648 | version = "0.20.3"
649 | source = "registry+https://github.com/rust-lang/crates.io-index"
650 | checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
651 | dependencies = [
652 | "fnv",
653 | "ident_case",
654 | "proc-macro2",
655 | "quote",
656 | "strsim",
657 | "syn 2.0.48",
658 | ]
659 |
660 | [[package]]
661 | name = "darling_macro"
662 | version = "0.20.3"
663 | source = "registry+https://github.com/rust-lang/crates.io-index"
664 | checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
665 | dependencies = [
666 | "darling_core",
667 | "quote",
668 | "syn 2.0.48",
669 | ]
670 |
671 | [[package]]
672 | name = "deflate"
673 | version = "1.0.0"
674 | source = "registry+https://github.com/rust-lang/crates.io-index"
675 | checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
676 | dependencies = [
677 | "adler32",
678 | ]
679 |
680 | [[package]]
681 | name = "deranged"
682 | version = "0.3.11"
683 | source = "registry+https://github.com/rust-lang/crates.io-index"
684 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
685 | dependencies = [
686 | "powerfmt",
687 | "serde",
688 | ]
689 |
690 | [[package]]
691 | name = "derivative"
692 | version = "2.2.0"
693 | source = "registry+https://github.com/rust-lang/crates.io-index"
694 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
695 | dependencies = [
696 | "proc-macro2",
697 | "quote",
698 | "syn 1.0.95",
699 | ]
700 |
701 | [[package]]
702 | name = "derive_more"
703 | version = "0.99.17"
704 | source = "registry+https://github.com/rust-lang/crates.io-index"
705 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
706 | dependencies = [
707 | "convert_case",
708 | "proc-macro2",
709 | "quote",
710 | "rustc_version 0.4.0",
711 | "syn 1.0.95",
712 | ]
713 |
714 | [[package]]
715 | name = "digest"
716 | version = "0.10.3"
717 | source = "registry+https://github.com/rust-lang/crates.io-index"
718 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
719 | dependencies = [
720 | "block-buffer",
721 | "crypto-common",
722 | ]
723 |
724 | [[package]]
725 | name = "dirs"
726 | version = "4.0.0"
727 | source = "registry+https://github.com/rust-lang/crates.io-index"
728 | checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
729 | dependencies = [
730 | "dirs-sys",
731 | ]
732 |
733 | [[package]]
734 | name = "dirs-next"
735 | version = "2.0.0"
736 | source = "registry+https://github.com/rust-lang/crates.io-index"
737 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
738 | dependencies = [
739 | "cfg-if",
740 | "dirs-sys-next",
741 | ]
742 |
743 | [[package]]
744 | name = "dirs-sys"
745 | version = "0.3.7"
746 | source = "registry+https://github.com/rust-lang/crates.io-index"
747 | checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
748 | dependencies = [
749 | "libc",
750 | "redox_users",
751 | "winapi",
752 | ]
753 |
754 | [[package]]
755 | name = "dirs-sys-next"
756 | version = "0.1.2"
757 | source = "registry+https://github.com/rust-lang/crates.io-index"
758 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
759 | dependencies = [
760 | "libc",
761 | "redox_users",
762 | "winapi",
763 | ]
764 |
765 | [[package]]
766 | name = "dispatch"
767 | version = "0.2.0"
768 | source = "registry+https://github.com/rust-lang/crates.io-index"
769 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
770 |
771 | [[package]]
772 | name = "dtoa"
773 | version = "0.4.8"
774 | source = "registry+https://github.com/rust-lang/crates.io-index"
775 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
776 |
777 | [[package]]
778 | name = "dtoa-short"
779 | version = "0.3.3"
780 | source = "registry+https://github.com/rust-lang/crates.io-index"
781 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
782 | dependencies = [
783 | "dtoa",
784 | ]
785 |
786 | [[package]]
787 | name = "dunce"
788 | version = "1.0.4"
789 | source = "registry+https://github.com/rust-lang/crates.io-index"
790 | checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
791 |
792 | [[package]]
793 | name = "easy-parallel"
794 | version = "3.3.1"
795 | source = "registry+https://github.com/rust-lang/crates.io-index"
796 | checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
797 |
798 | [[package]]
799 | name = "embed-resource"
800 | version = "2.4.0"
801 | source = "registry+https://github.com/rust-lang/crates.io-index"
802 | checksum = "f54cc3e827ee1c3812239a9a41dede7b4d7d5d5464faa32d71bd7cba28ce2cb2"
803 | dependencies = [
804 | "cc",
805 | "rustc_version 0.4.0",
806 | "toml 0.8.8",
807 | "vswhom",
808 | "winreg 0.51.0",
809 | ]
810 |
811 | [[package]]
812 | name = "embed_plist"
813 | version = "1.2.2"
814 | source = "registry+https://github.com/rust-lang/crates.io-index"
815 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
816 |
817 | [[package]]
818 | name = "encoding_rs"
819 | version = "0.8.31"
820 | source = "registry+https://github.com/rust-lang/crates.io-index"
821 | checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
822 | dependencies = [
823 | "cfg-if",
824 | ]
825 |
826 | [[package]]
827 | name = "enumflags2"
828 | version = "0.7.8"
829 | source = "registry+https://github.com/rust-lang/crates.io-index"
830 | checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939"
831 | dependencies = [
832 | "enumflags2_derive",
833 | "serde",
834 | ]
835 |
836 | [[package]]
837 | name = "enumflags2_derive"
838 | version = "0.7.8"
839 | source = "registry+https://github.com/rust-lang/crates.io-index"
840 | checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246"
841 | dependencies = [
842 | "proc-macro2",
843 | "quote",
844 | "syn 2.0.48",
845 | ]
846 |
847 | [[package]]
848 | name = "equivalent"
849 | version = "1.0.1"
850 | source = "registry+https://github.com/rust-lang/crates.io-index"
851 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
852 |
853 | [[package]]
854 | name = "error-code"
855 | version = "2.3.1"
856 | source = "registry+https://github.com/rust-lang/crates.io-index"
857 | checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21"
858 | dependencies = [
859 | "libc",
860 | "str-buf",
861 | ]
862 |
863 | [[package]]
864 | name = "event-listener"
865 | version = "2.5.3"
866 | source = "registry+https://github.com/rust-lang/crates.io-index"
867 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
868 |
869 | [[package]]
870 | name = "fastrand"
871 | version = "1.7.0"
872 | source = "registry+https://github.com/rust-lang/crates.io-index"
873 | checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
874 | dependencies = [
875 | "instant",
876 | ]
877 |
878 | [[package]]
879 | name = "field-offset"
880 | version = "0.3.4"
881 | source = "registry+https://github.com/rust-lang/crates.io-index"
882 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
883 | dependencies = [
884 | "memoffset 0.6.5",
885 | "rustc_version 0.3.3",
886 | ]
887 |
888 | [[package]]
889 | name = "filetime"
890 | version = "0.2.16"
891 | source = "registry+https://github.com/rust-lang/crates.io-index"
892 | checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c"
893 | dependencies = [
894 | "cfg-if",
895 | "libc",
896 | "redox_syscall",
897 | "winapi",
898 | ]
899 |
900 | [[package]]
901 | name = "flate2"
902 | version = "1.0.23"
903 | source = "registry+https://github.com/rust-lang/crates.io-index"
904 | checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
905 | dependencies = [
906 | "cfg-if",
907 | "crc32fast",
908 | "libc",
909 | "miniz_oxide 0.5.1",
910 | ]
911 |
912 | [[package]]
913 | name = "fnv"
914 | version = "1.0.7"
915 | source = "registry+https://github.com/rust-lang/crates.io-index"
916 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
917 |
918 | [[package]]
919 | name = "foreign-types"
920 | version = "0.3.2"
921 | source = "registry+https://github.com/rust-lang/crates.io-index"
922 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
923 | dependencies = [
924 | "foreign-types-shared",
925 | ]
926 |
927 | [[package]]
928 | name = "foreign-types-shared"
929 | version = "0.1.1"
930 | source = "registry+https://github.com/rust-lang/crates.io-index"
931 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
932 |
933 | [[package]]
934 | name = "form_urlencoded"
935 | version = "1.0.1"
936 | source = "registry+https://github.com/rust-lang/crates.io-index"
937 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
938 | dependencies = [
939 | "matches",
940 | "percent-encoding",
941 | ]
942 |
943 | [[package]]
944 | name = "futf"
945 | version = "0.1.5"
946 | source = "registry+https://github.com/rust-lang/crates.io-index"
947 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
948 | dependencies = [
949 | "mac",
950 | "new_debug_unreachable",
951 | ]
952 |
953 | [[package]]
954 | name = "futures-channel"
955 | version = "0.3.21"
956 | source = "registry+https://github.com/rust-lang/crates.io-index"
957 | checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
958 | dependencies = [
959 | "futures-core",
960 | ]
961 |
962 | [[package]]
963 | name = "futures-core"
964 | version = "0.3.21"
965 | source = "registry+https://github.com/rust-lang/crates.io-index"
966 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
967 |
968 | [[package]]
969 | name = "futures-executor"
970 | version = "0.3.21"
971 | source = "registry+https://github.com/rust-lang/crates.io-index"
972 | checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
973 | dependencies = [
974 | "futures-core",
975 | "futures-task",
976 | "futures-util",
977 | ]
978 |
979 | [[package]]
980 | name = "futures-io"
981 | version = "0.3.21"
982 | source = "registry+https://github.com/rust-lang/crates.io-index"
983 | checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
984 |
985 | [[package]]
986 | name = "futures-lite"
987 | version = "1.13.0"
988 | source = "registry+https://github.com/rust-lang/crates.io-index"
989 | checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
990 | dependencies = [
991 | "fastrand",
992 | "futures-core",
993 | "futures-io",
994 | "memchr",
995 | "parking",
996 | "pin-project-lite",
997 | "waker-fn",
998 | ]
999 |
1000 | [[package]]
1001 | name = "futures-macro"
1002 | version = "0.3.21"
1003 | source = "registry+https://github.com/rust-lang/crates.io-index"
1004 | checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
1005 | dependencies = [
1006 | "proc-macro2",
1007 | "quote",
1008 | "syn 1.0.95",
1009 | ]
1010 |
1011 | [[package]]
1012 | name = "futures-sink"
1013 | version = "0.3.30"
1014 | source = "registry+https://github.com/rust-lang/crates.io-index"
1015 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
1016 |
1017 | [[package]]
1018 | name = "futures-task"
1019 | version = "0.3.21"
1020 | source = "registry+https://github.com/rust-lang/crates.io-index"
1021 | checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
1022 |
1023 | [[package]]
1024 | name = "futures-util"
1025 | version = "0.3.21"
1026 | source = "registry+https://github.com/rust-lang/crates.io-index"
1027 | checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
1028 | dependencies = [
1029 | "futures-core",
1030 | "futures-io",
1031 | "futures-macro",
1032 | "futures-sink",
1033 | "futures-task",
1034 | "memchr",
1035 | "pin-project-lite",
1036 | "pin-utils",
1037 | "slab",
1038 | ]
1039 |
1040 | [[package]]
1041 | name = "fxhash"
1042 | version = "0.2.1"
1043 | source = "registry+https://github.com/rust-lang/crates.io-index"
1044 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
1045 | dependencies = [
1046 | "byteorder",
1047 | ]
1048 |
1049 | [[package]]
1050 | name = "gdk"
1051 | version = "0.15.4"
1052 | source = "registry+https://github.com/rust-lang/crates.io-index"
1053 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
1054 | dependencies = [
1055 | "bitflags",
1056 | "cairo-rs",
1057 | "gdk-pixbuf",
1058 | "gdk-sys",
1059 | "gio",
1060 | "glib",
1061 | "libc",
1062 | "pango",
1063 | ]
1064 |
1065 | [[package]]
1066 | name = "gdk-pixbuf"
1067 | version = "0.15.11"
1068 | source = "registry+https://github.com/rust-lang/crates.io-index"
1069 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
1070 | dependencies = [
1071 | "bitflags",
1072 | "gdk-pixbuf-sys",
1073 | "gio",
1074 | "glib",
1075 | "libc",
1076 | ]
1077 |
1078 | [[package]]
1079 | name = "gdk-pixbuf-sys"
1080 | version = "0.15.10"
1081 | source = "registry+https://github.com/rust-lang/crates.io-index"
1082 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
1083 | dependencies = [
1084 | "gio-sys",
1085 | "glib-sys",
1086 | "gobject-sys",
1087 | "libc",
1088 | "system-deps 6.0.2",
1089 | ]
1090 |
1091 | [[package]]
1092 | name = "gdk-sys"
1093 | version = "0.15.1"
1094 | source = "registry+https://github.com/rust-lang/crates.io-index"
1095 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
1096 | dependencies = [
1097 | "cairo-sys-rs",
1098 | "gdk-pixbuf-sys",
1099 | "gio-sys",
1100 | "glib-sys",
1101 | "gobject-sys",
1102 | "libc",
1103 | "pango-sys",
1104 | "pkg-config",
1105 | "system-deps 6.0.2",
1106 | ]
1107 |
1108 | [[package]]
1109 | name = "gdkwayland-sys"
1110 | version = "0.15.3"
1111 | source = "registry+https://github.com/rust-lang/crates.io-index"
1112 | checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2"
1113 | dependencies = [
1114 | "gdk-sys",
1115 | "glib-sys",
1116 | "gobject-sys",
1117 | "libc",
1118 | "pkg-config",
1119 | "system-deps 6.0.2",
1120 | ]
1121 |
1122 | [[package]]
1123 | name = "gdkx11-sys"
1124 | version = "0.15.1"
1125 | source = "registry+https://github.com/rust-lang/crates.io-index"
1126 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
1127 | dependencies = [
1128 | "gdk-sys",
1129 | "glib-sys",
1130 | "libc",
1131 | "system-deps 6.0.2",
1132 | "x11",
1133 | ]
1134 |
1135 | [[package]]
1136 | name = "generator"
1137 | version = "0.7.0"
1138 | source = "registry+https://github.com/rust-lang/crates.io-index"
1139 | checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee"
1140 | dependencies = [
1141 | "cc",
1142 | "libc",
1143 | "log",
1144 | "rustversion",
1145 | "winapi",
1146 | ]
1147 |
1148 | [[package]]
1149 | name = "generic-array"
1150 | version = "0.14.5"
1151 | source = "registry+https://github.com/rust-lang/crates.io-index"
1152 | checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
1153 | dependencies = [
1154 | "typenum",
1155 | "version_check",
1156 | ]
1157 |
1158 | [[package]]
1159 | name = "gethostname"
1160 | version = "0.3.0"
1161 | source = "registry+https://github.com/rust-lang/crates.io-index"
1162 | checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177"
1163 | dependencies = [
1164 | "libc",
1165 | "winapi",
1166 | ]
1167 |
1168 | [[package]]
1169 | name = "getrandom"
1170 | version = "0.1.16"
1171 | source = "registry+https://github.com/rust-lang/crates.io-index"
1172 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1173 | dependencies = [
1174 | "cfg-if",
1175 | "libc",
1176 | "wasi 0.9.0+wasi-snapshot-preview1",
1177 | ]
1178 |
1179 | [[package]]
1180 | name = "getrandom"
1181 | version = "0.2.6"
1182 | source = "registry+https://github.com/rust-lang/crates.io-index"
1183 | checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
1184 | dependencies = [
1185 | "cfg-if",
1186 | "libc",
1187 | "wasi 0.10.2+wasi-snapshot-preview1",
1188 | ]
1189 |
1190 | [[package]]
1191 | name = "gimli"
1192 | version = "0.28.1"
1193 | source = "registry+https://github.com/rust-lang/crates.io-index"
1194 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
1195 |
1196 | [[package]]
1197 | name = "gio"
1198 | version = "0.15.11"
1199 | source = "registry+https://github.com/rust-lang/crates.io-index"
1200 | checksum = "0f132be35e05d9662b9fa0fee3f349c6621f7782e0105917f4cc73c1bf47eceb"
1201 | dependencies = [
1202 | "bitflags",
1203 | "futures-channel",
1204 | "futures-core",
1205 | "futures-io",
1206 | "gio-sys",
1207 | "glib",
1208 | "libc",
1209 | "once_cell",
1210 | "thiserror",
1211 | ]
1212 |
1213 | [[package]]
1214 | name = "gio-sys"
1215 | version = "0.15.10"
1216 | source = "registry+https://github.com/rust-lang/crates.io-index"
1217 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
1218 | dependencies = [
1219 | "glib-sys",
1220 | "gobject-sys",
1221 | "libc",
1222 | "system-deps 6.0.2",
1223 | "winapi",
1224 | ]
1225 |
1226 | [[package]]
1227 | name = "glib"
1228 | version = "0.15.11"
1229 | source = "registry+https://github.com/rust-lang/crates.io-index"
1230 | checksum = "bd124026a2fa8c33a3d17a3fe59c103f2d9fa5bd92c19e029e037736729abeab"
1231 | dependencies = [
1232 | "bitflags",
1233 | "futures-channel",
1234 | "futures-core",
1235 | "futures-executor",
1236 | "futures-task",
1237 | "glib-macros",
1238 | "glib-sys",
1239 | "gobject-sys",
1240 | "libc",
1241 | "once_cell",
1242 | "smallvec",
1243 | "thiserror",
1244 | ]
1245 |
1246 | [[package]]
1247 | name = "glib-macros"
1248 | version = "0.15.11"
1249 | source = "registry+https://github.com/rust-lang/crates.io-index"
1250 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
1251 | dependencies = [
1252 | "anyhow",
1253 | "heck 0.4.0",
1254 | "proc-macro-crate",
1255 | "proc-macro-error",
1256 | "proc-macro2",
1257 | "quote",
1258 | "syn 1.0.95",
1259 | ]
1260 |
1261 | [[package]]
1262 | name = "glib-sys"
1263 | version = "0.15.10"
1264 | source = "registry+https://github.com/rust-lang/crates.io-index"
1265 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
1266 | dependencies = [
1267 | "libc",
1268 | "system-deps 6.0.2",
1269 | ]
1270 |
1271 | [[package]]
1272 | name = "glob"
1273 | version = "0.3.0"
1274 | source = "registry+https://github.com/rust-lang/crates.io-index"
1275 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
1276 |
1277 | [[package]]
1278 | name = "globset"
1279 | version = "0.4.8"
1280 | source = "registry+https://github.com/rust-lang/crates.io-index"
1281 | checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
1282 | dependencies = [
1283 | "aho-corasick",
1284 | "bstr",
1285 | "fnv",
1286 | "log",
1287 | "regex",
1288 | ]
1289 |
1290 | [[package]]
1291 | name = "gobject-sys"
1292 | version = "0.15.10"
1293 | source = "registry+https://github.com/rust-lang/crates.io-index"
1294 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
1295 | dependencies = [
1296 | "glib-sys",
1297 | "libc",
1298 | "system-deps 6.0.2",
1299 | ]
1300 |
1301 | [[package]]
1302 | name = "gtk"
1303 | version = "0.15.5"
1304 | source = "registry+https://github.com/rust-lang/crates.io-index"
1305 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
1306 | dependencies = [
1307 | "atk",
1308 | "bitflags",
1309 | "cairo-rs",
1310 | "field-offset",
1311 | "futures-channel",
1312 | "gdk",
1313 | "gdk-pixbuf",
1314 | "gio",
1315 | "glib",
1316 | "gtk-sys",
1317 | "gtk3-macros",
1318 | "libc",
1319 | "once_cell",
1320 | "pango",
1321 | "pkg-config",
1322 | ]
1323 |
1324 | [[package]]
1325 | name = "gtk-sys"
1326 | version = "0.15.3"
1327 | source = "registry+https://github.com/rust-lang/crates.io-index"
1328 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
1329 | dependencies = [
1330 | "atk-sys",
1331 | "cairo-sys-rs",
1332 | "gdk-pixbuf-sys",
1333 | "gdk-sys",
1334 | "gio-sys",
1335 | "glib-sys",
1336 | "gobject-sys",
1337 | "libc",
1338 | "pango-sys",
1339 | "system-deps 6.0.2",
1340 | ]
1341 |
1342 | [[package]]
1343 | name = "gtk3-macros"
1344 | version = "0.15.4"
1345 | source = "registry+https://github.com/rust-lang/crates.io-index"
1346 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9"
1347 | dependencies = [
1348 | "anyhow",
1349 | "proc-macro-crate",
1350 | "proc-macro-error",
1351 | "proc-macro2",
1352 | "quote",
1353 | "syn 1.0.95",
1354 | ]
1355 |
1356 | [[package]]
1357 | name = "h2"
1358 | version = "0.3.21"
1359 | source = "registry+https://github.com/rust-lang/crates.io-index"
1360 | checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
1361 | dependencies = [
1362 | "bytes",
1363 | "fnv",
1364 | "futures-core",
1365 | "futures-sink",
1366 | "futures-util",
1367 | "http",
1368 | "indexmap 1.9.1",
1369 | "slab",
1370 | "tokio",
1371 | "tokio-util",
1372 | "tracing",
1373 | ]
1374 |
1375 | [[package]]
1376 | name = "hashbrown"
1377 | version = "0.12.3"
1378 | source = "registry+https://github.com/rust-lang/crates.io-index"
1379 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1380 |
1381 | [[package]]
1382 | name = "hashbrown"
1383 | version = "0.14.3"
1384 | source = "registry+https://github.com/rust-lang/crates.io-index"
1385 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1386 |
1387 | [[package]]
1388 | name = "heck"
1389 | version = "0.3.3"
1390 | source = "registry+https://github.com/rust-lang/crates.io-index"
1391 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1392 | dependencies = [
1393 | "unicode-segmentation",
1394 | ]
1395 |
1396 | [[package]]
1397 | name = "heck"
1398 | version = "0.4.0"
1399 | source = "registry+https://github.com/rust-lang/crates.io-index"
1400 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
1401 |
1402 | [[package]]
1403 | name = "hermit-abi"
1404 | version = "0.1.19"
1405 | source = "registry+https://github.com/rust-lang/crates.io-index"
1406 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1407 | dependencies = [
1408 | "libc",
1409 | ]
1410 |
1411 | [[package]]
1412 | name = "hex"
1413 | version = "0.4.3"
1414 | source = "registry+https://github.com/rust-lang/crates.io-index"
1415 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1416 |
1417 | [[package]]
1418 | name = "html5ever"
1419 | version = "0.26.0"
1420 | source = "registry+https://github.com/rust-lang/crates.io-index"
1421 | checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
1422 | dependencies = [
1423 | "log",
1424 | "mac",
1425 | "markup5ever",
1426 | "proc-macro2",
1427 | "quote",
1428 | "syn 1.0.95",
1429 | ]
1430 |
1431 | [[package]]
1432 | name = "http"
1433 | version = "0.2.8"
1434 | source = "registry+https://github.com/rust-lang/crates.io-index"
1435 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
1436 | dependencies = [
1437 | "bytes",
1438 | "fnv",
1439 | "itoa 1.0.2",
1440 | ]
1441 |
1442 | [[package]]
1443 | name = "http-body"
1444 | version = "0.4.6"
1445 | source = "registry+https://github.com/rust-lang/crates.io-index"
1446 | checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1447 | dependencies = [
1448 | "bytes",
1449 | "http",
1450 | "pin-project-lite",
1451 | ]
1452 |
1453 | [[package]]
1454 | name = "http-range"
1455 | version = "0.1.5"
1456 | source = "registry+https://github.com/rust-lang/crates.io-index"
1457 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1458 |
1459 | [[package]]
1460 | name = "httparse"
1461 | version = "1.8.0"
1462 | source = "registry+https://github.com/rust-lang/crates.io-index"
1463 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1464 |
1465 | [[package]]
1466 | name = "httpdate"
1467 | version = "1.0.3"
1468 | source = "registry+https://github.com/rust-lang/crates.io-index"
1469 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1470 |
1471 | [[package]]
1472 | name = "hyper"
1473 | version = "0.14.28"
1474 | source = "registry+https://github.com/rust-lang/crates.io-index"
1475 | checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
1476 | dependencies = [
1477 | "bytes",
1478 | "futures-channel",
1479 | "futures-core",
1480 | "futures-util",
1481 | "h2",
1482 | "http",
1483 | "http-body",
1484 | "httparse",
1485 | "httpdate",
1486 | "itoa 1.0.2",
1487 | "pin-project-lite",
1488 | "socket2 0.5.5",
1489 | "tokio",
1490 | "tower-service",
1491 | "tracing",
1492 | "want",
1493 | ]
1494 |
1495 | [[package]]
1496 | name = "hyper-tls"
1497 | version = "0.5.0"
1498 | source = "registry+https://github.com/rust-lang/crates.io-index"
1499 | checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1500 | dependencies = [
1501 | "bytes",
1502 | "hyper",
1503 | "native-tls",
1504 | "tokio",
1505 | "tokio-native-tls",
1506 | ]
1507 |
1508 | [[package]]
1509 | name = "iana-time-zone"
1510 | version = "0.1.59"
1511 | source = "registry+https://github.com/rust-lang/crates.io-index"
1512 | checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
1513 | dependencies = [
1514 | "android_system_properties",
1515 | "core-foundation-sys",
1516 | "iana-time-zone-haiku",
1517 | "js-sys",
1518 | "wasm-bindgen",
1519 | "windows-core",
1520 | ]
1521 |
1522 | [[package]]
1523 | name = "iana-time-zone-haiku"
1524 | version = "0.1.2"
1525 | source = "registry+https://github.com/rust-lang/crates.io-index"
1526 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1527 | dependencies = [
1528 | "cc",
1529 | ]
1530 |
1531 | [[package]]
1532 | name = "ico"
1533 | version = "0.3.0"
1534 | source = "registry+https://github.com/rust-lang/crates.io-index"
1535 | checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
1536 | dependencies = [
1537 | "byteorder",
1538 | "png",
1539 | ]
1540 |
1541 | [[package]]
1542 | name = "ident_case"
1543 | version = "1.0.1"
1544 | source = "registry+https://github.com/rust-lang/crates.io-index"
1545 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1546 |
1547 | [[package]]
1548 | name = "idna"
1549 | version = "0.2.3"
1550 | source = "registry+https://github.com/rust-lang/crates.io-index"
1551 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
1552 | dependencies = [
1553 | "matches",
1554 | "unicode-bidi",
1555 | "unicode-normalization",
1556 | ]
1557 |
1558 | [[package]]
1559 | name = "ignore"
1560 | version = "0.4.18"
1561 | source = "registry+https://github.com/rust-lang/crates.io-index"
1562 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
1563 | dependencies = [
1564 | "crossbeam-utils",
1565 | "globset",
1566 | "lazy_static",
1567 | "log",
1568 | "memchr",
1569 | "regex",
1570 | "same-file",
1571 | "thread_local",
1572 | "walkdir",
1573 | "winapi-util",
1574 | ]
1575 |
1576 | [[package]]
1577 | name = "image"
1578 | version = "0.24.2"
1579 | source = "registry+https://github.com/rust-lang/crates.io-index"
1580 | checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212"
1581 | dependencies = [
1582 | "bytemuck",
1583 | "byteorder",
1584 | "color_quant",
1585 | "num-iter",
1586 | "num-rational",
1587 | "num-traits",
1588 | "png",
1589 | "tiff",
1590 | ]
1591 |
1592 | [[package]]
1593 | name = "indexmap"
1594 | version = "1.9.1"
1595 | source = "registry+https://github.com/rust-lang/crates.io-index"
1596 | checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
1597 | dependencies = [
1598 | "autocfg",
1599 | "hashbrown 0.12.3",
1600 | "serde",
1601 | ]
1602 |
1603 | [[package]]
1604 | name = "indexmap"
1605 | version = "2.1.0"
1606 | source = "registry+https://github.com/rust-lang/crates.io-index"
1607 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
1608 | dependencies = [
1609 | "equivalent",
1610 | "hashbrown 0.14.3",
1611 | "serde",
1612 | ]
1613 |
1614 | [[package]]
1615 | name = "infer"
1616 | version = "0.13.0"
1617 | source = "registry+https://github.com/rust-lang/crates.io-index"
1618 | checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc"
1619 | dependencies = [
1620 | "cfb",
1621 | ]
1622 |
1623 | [[package]]
1624 | name = "instant"
1625 | version = "0.1.12"
1626 | source = "registry+https://github.com/rust-lang/crates.io-index"
1627 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1628 | dependencies = [
1629 | "cfg-if",
1630 | ]
1631 |
1632 | [[package]]
1633 | name = "ipnet"
1634 | version = "2.9.0"
1635 | source = "registry+https://github.com/rust-lang/crates.io-index"
1636 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1637 |
1638 | [[package]]
1639 | name = "itoa"
1640 | version = "0.4.8"
1641 | source = "registry+https://github.com/rust-lang/crates.io-index"
1642 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1643 |
1644 | [[package]]
1645 | name = "itoa"
1646 | version = "1.0.2"
1647 | source = "registry+https://github.com/rust-lang/crates.io-index"
1648 | checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
1649 |
1650 | [[package]]
1651 | name = "javascriptcore-rs"
1652 | version = "0.16.0"
1653 | source = "registry+https://github.com/rust-lang/crates.io-index"
1654 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
1655 | dependencies = [
1656 | "bitflags",
1657 | "glib",
1658 | "javascriptcore-rs-sys",
1659 | ]
1660 |
1661 | [[package]]
1662 | name = "javascriptcore-rs-sys"
1663 | version = "0.4.0"
1664 | source = "registry+https://github.com/rust-lang/crates.io-index"
1665 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
1666 | dependencies = [
1667 | "glib-sys",
1668 | "gobject-sys",
1669 | "libc",
1670 | "system-deps 5.0.0",
1671 | ]
1672 |
1673 | [[package]]
1674 | name = "jni"
1675 | version = "0.20.0"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
1678 | dependencies = [
1679 | "cesu8",
1680 | "combine",
1681 | "jni-sys",
1682 | "log",
1683 | "thiserror",
1684 | "walkdir",
1685 | ]
1686 |
1687 | [[package]]
1688 | name = "jni-sys"
1689 | version = "0.3.0"
1690 | source = "registry+https://github.com/rust-lang/crates.io-index"
1691 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1692 |
1693 | [[package]]
1694 | name = "jpeg-decoder"
1695 | version = "0.2.6"
1696 | source = "registry+https://github.com/rust-lang/crates.io-index"
1697 | checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
1698 |
1699 | [[package]]
1700 | name = "js-sys"
1701 | version = "0.3.57"
1702 | source = "registry+https://github.com/rust-lang/crates.io-index"
1703 | checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
1704 | dependencies = [
1705 | "wasm-bindgen",
1706 | ]
1707 |
1708 | [[package]]
1709 | name = "json-patch"
1710 | version = "1.2.0"
1711 | source = "registry+https://github.com/rust-lang/crates.io-index"
1712 | checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6"
1713 | dependencies = [
1714 | "serde",
1715 | "serde_json",
1716 | "thiserror",
1717 | "treediff",
1718 | ]
1719 |
1720 | [[package]]
1721 | name = "kuchikiki"
1722 | version = "0.8.2"
1723 | source = "registry+https://github.com/rust-lang/crates.io-index"
1724 | checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
1725 | dependencies = [
1726 | "cssparser",
1727 | "html5ever",
1728 | "indexmap 1.9.1",
1729 | "matches",
1730 | "selectors",
1731 | ]
1732 |
1733 | [[package]]
1734 | name = "lazy_static"
1735 | version = "1.4.0"
1736 | source = "registry+https://github.com/rust-lang/crates.io-index"
1737 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1738 |
1739 | [[package]]
1740 | name = "libc"
1741 | version = "0.2.151"
1742 | source = "registry+https://github.com/rust-lang/crates.io-index"
1743 | checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
1744 |
1745 | [[package]]
1746 | name = "line-wrap"
1747 | version = "0.1.1"
1748 | source = "registry+https://github.com/rust-lang/crates.io-index"
1749 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
1750 | dependencies = [
1751 | "safemem",
1752 | ]
1753 |
1754 | [[package]]
1755 | name = "lock_api"
1756 | version = "0.4.7"
1757 | source = "registry+https://github.com/rust-lang/crates.io-index"
1758 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
1759 | dependencies = [
1760 | "autocfg",
1761 | "scopeguard",
1762 | ]
1763 |
1764 | [[package]]
1765 | name = "log"
1766 | version = "0.4.20"
1767 | source = "registry+https://github.com/rust-lang/crates.io-index"
1768 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1769 |
1770 | [[package]]
1771 | name = "loom"
1772 | version = "0.5.6"
1773 | source = "registry+https://github.com/rust-lang/crates.io-index"
1774 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1775 | dependencies = [
1776 | "cfg-if",
1777 | "generator",
1778 | "scoped-tls",
1779 | "serde",
1780 | "serde_json",
1781 | "tracing",
1782 | "tracing-subscriber",
1783 | ]
1784 |
1785 | [[package]]
1786 | name = "mac"
1787 | version = "0.1.1"
1788 | source = "registry+https://github.com/rust-lang/crates.io-index"
1789 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1790 |
1791 | [[package]]
1792 | name = "mac-notification-sys"
1793 | version = "0.5.0"
1794 | source = "registry+https://github.com/rust-lang/crates.io-index"
1795 | checksum = "297c13fc8ff9fa8b2d0e53850f80e0aa962628e865d447031ce58cdb062e5b29"
1796 | dependencies = [
1797 | "cc",
1798 | "dirs-next",
1799 | "objc-foundation",
1800 | "objc_id",
1801 | "time",
1802 | ]
1803 |
1804 | [[package]]
1805 | name = "malloc_buf"
1806 | version = "0.0.6"
1807 | source = "registry+https://github.com/rust-lang/crates.io-index"
1808 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1809 | dependencies = [
1810 | "libc",
1811 | ]
1812 |
1813 | [[package]]
1814 | name = "markup5ever"
1815 | version = "0.11.0"
1816 | source = "registry+https://github.com/rust-lang/crates.io-index"
1817 | checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
1818 | dependencies = [
1819 | "log",
1820 | "phf 0.10.1",
1821 | "phf_codegen 0.10.0",
1822 | "string_cache",
1823 | "string_cache_codegen",
1824 | "tendril",
1825 | ]
1826 |
1827 | [[package]]
1828 | name = "matchers"
1829 | version = "0.1.0"
1830 | source = "registry+https://github.com/rust-lang/crates.io-index"
1831 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1832 | dependencies = [
1833 | "regex-automata",
1834 | ]
1835 |
1836 | [[package]]
1837 | name = "matches"
1838 | version = "0.1.9"
1839 | source = "registry+https://github.com/rust-lang/crates.io-index"
1840 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1841 |
1842 | [[package]]
1843 | name = "memchr"
1844 | version = "2.5.0"
1845 | source = "registry+https://github.com/rust-lang/crates.io-index"
1846 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1847 |
1848 | [[package]]
1849 | name = "memoffset"
1850 | version = "0.6.5"
1851 | source = "registry+https://github.com/rust-lang/crates.io-index"
1852 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1853 | dependencies = [
1854 | "autocfg",
1855 | ]
1856 |
1857 | [[package]]
1858 | name = "memoffset"
1859 | version = "0.7.1"
1860 | source = "registry+https://github.com/rust-lang/crates.io-index"
1861 | checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
1862 | dependencies = [
1863 | "autocfg",
1864 | ]
1865 |
1866 | [[package]]
1867 | name = "memoffset"
1868 | version = "0.9.0"
1869 | source = "registry+https://github.com/rust-lang/crates.io-index"
1870 | checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1871 | dependencies = [
1872 | "autocfg",
1873 | ]
1874 |
1875 | [[package]]
1876 | name = "mime"
1877 | version = "0.3.17"
1878 | source = "registry+https://github.com/rust-lang/crates.io-index"
1879 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1880 |
1881 | [[package]]
1882 | name = "miniz_oxide"
1883 | version = "0.5.1"
1884 | source = "registry+https://github.com/rust-lang/crates.io-index"
1885 | checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
1886 | dependencies = [
1887 | "adler",
1888 | ]
1889 |
1890 | [[package]]
1891 | name = "miniz_oxide"
1892 | version = "0.7.1"
1893 | source = "registry+https://github.com/rust-lang/crates.io-index"
1894 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1895 | dependencies = [
1896 | "adler",
1897 | ]
1898 |
1899 | [[package]]
1900 | name = "mio"
1901 | version = "0.8.10"
1902 | source = "registry+https://github.com/rust-lang/crates.io-index"
1903 | checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
1904 | dependencies = [
1905 | "libc",
1906 | "wasi 0.11.0+wasi-snapshot-preview1",
1907 | "windows-sys 0.48.0",
1908 | ]
1909 |
1910 | [[package]]
1911 | name = "native-tls"
1912 | version = "0.2.10"
1913 | source = "registry+https://github.com/rust-lang/crates.io-index"
1914 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
1915 | dependencies = [
1916 | "lazy_static",
1917 | "libc",
1918 | "log",
1919 | "openssl",
1920 | "openssl-probe",
1921 | "openssl-sys",
1922 | "schannel",
1923 | "security-framework",
1924 | "security-framework-sys",
1925 | "tempfile",
1926 | ]
1927 |
1928 | [[package]]
1929 | name = "ndk"
1930 | version = "0.6.0"
1931 | source = "registry+https://github.com/rust-lang/crates.io-index"
1932 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
1933 | dependencies = [
1934 | "bitflags",
1935 | "jni-sys",
1936 | "ndk-sys",
1937 | "num_enum",
1938 | "thiserror",
1939 | ]
1940 |
1941 | [[package]]
1942 | name = "ndk-context"
1943 | version = "0.1.1"
1944 | source = "registry+https://github.com/rust-lang/crates.io-index"
1945 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1946 |
1947 | [[package]]
1948 | name = "ndk-sys"
1949 | version = "0.3.0"
1950 | source = "registry+https://github.com/rust-lang/crates.io-index"
1951 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
1952 | dependencies = [
1953 | "jni-sys",
1954 | ]
1955 |
1956 | [[package]]
1957 | name = "new_debug_unreachable"
1958 | version = "1.0.4"
1959 | source = "registry+https://github.com/rust-lang/crates.io-index"
1960 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
1961 |
1962 | [[package]]
1963 | name = "nix"
1964 | version = "0.23.2"
1965 | source = "registry+https://github.com/rust-lang/crates.io-index"
1966 | checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
1967 | dependencies = [
1968 | "bitflags",
1969 | "cc",
1970 | "cfg-if",
1971 | "libc",
1972 | "memoffset 0.6.5",
1973 | ]
1974 |
1975 | [[package]]
1976 | name = "nix"
1977 | version = "0.26.4"
1978 | source = "registry+https://github.com/rust-lang/crates.io-index"
1979 | checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1980 | dependencies = [
1981 | "bitflags",
1982 | "cfg-if",
1983 | "libc",
1984 | "memoffset 0.7.1",
1985 | ]
1986 |
1987 | [[package]]
1988 | name = "nodrop"
1989 | version = "0.1.14"
1990 | source = "registry+https://github.com/rust-lang/crates.io-index"
1991 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1992 |
1993 | [[package]]
1994 | name = "notify-rust"
1995 | version = "4.5.8"
1996 | source = "registry+https://github.com/rust-lang/crates.io-index"
1997 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4"
1998 | dependencies = [
1999 | "mac-notification-sys",
2000 | "serde",
2001 | "winrt-notification",
2002 | "zbus",
2003 | "zvariant",
2004 | "zvariant_derive",
2005 | ]
2006 |
2007 | [[package]]
2008 | name = "num-integer"
2009 | version = "0.1.45"
2010 | source = "registry+https://github.com/rust-lang/crates.io-index"
2011 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2012 | dependencies = [
2013 | "autocfg",
2014 | "num-traits",
2015 | ]
2016 |
2017 | [[package]]
2018 | name = "num-iter"
2019 | version = "0.1.43"
2020 | source = "registry+https://github.com/rust-lang/crates.io-index"
2021 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
2022 | dependencies = [
2023 | "autocfg",
2024 | "num-integer",
2025 | "num-traits",
2026 | ]
2027 |
2028 | [[package]]
2029 | name = "num-rational"
2030 | version = "0.4.0"
2031 | source = "registry+https://github.com/rust-lang/crates.io-index"
2032 | checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
2033 | dependencies = [
2034 | "autocfg",
2035 | "num-integer",
2036 | "num-traits",
2037 | ]
2038 |
2039 | [[package]]
2040 | name = "num-traits"
2041 | version = "0.2.15"
2042 | source = "registry+https://github.com/rust-lang/crates.io-index"
2043 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2044 | dependencies = [
2045 | "autocfg",
2046 | ]
2047 |
2048 | [[package]]
2049 | name = "num_cpus"
2050 | version = "1.13.1"
2051 | source = "registry+https://github.com/rust-lang/crates.io-index"
2052 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2053 | dependencies = [
2054 | "hermit-abi",
2055 | "libc",
2056 | ]
2057 |
2058 | [[package]]
2059 | name = "num_enum"
2060 | version = "0.5.7"
2061 | source = "registry+https://github.com/rust-lang/crates.io-index"
2062 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
2063 | dependencies = [
2064 | "num_enum_derive",
2065 | ]
2066 |
2067 | [[package]]
2068 | name = "num_enum_derive"
2069 | version = "0.5.7"
2070 | source = "registry+https://github.com/rust-lang/crates.io-index"
2071 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
2072 | dependencies = [
2073 | "proc-macro-crate",
2074 | "proc-macro2",
2075 | "quote",
2076 | "syn 1.0.95",
2077 | ]
2078 |
2079 | [[package]]
2080 | name = "objc"
2081 | version = "0.2.7"
2082 | source = "registry+https://github.com/rust-lang/crates.io-index"
2083 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2084 | dependencies = [
2085 | "malloc_buf",
2086 | "objc_exception",
2087 | ]
2088 |
2089 | [[package]]
2090 | name = "objc-foundation"
2091 | version = "0.1.1"
2092 | source = "registry+https://github.com/rust-lang/crates.io-index"
2093 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2094 | dependencies = [
2095 | "block",
2096 | "objc",
2097 | "objc_id",
2098 | ]
2099 |
2100 | [[package]]
2101 | name = "objc_exception"
2102 | version = "0.1.2"
2103 | source = "registry+https://github.com/rust-lang/crates.io-index"
2104 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
2105 | dependencies = [
2106 | "cc",
2107 | ]
2108 |
2109 | [[package]]
2110 | name = "objc_id"
2111 | version = "0.1.1"
2112 | source = "registry+https://github.com/rust-lang/crates.io-index"
2113 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2114 | dependencies = [
2115 | "objc",
2116 | ]
2117 |
2118 | [[package]]
2119 | name = "object"
2120 | version = "0.32.2"
2121 | source = "registry+https://github.com/rust-lang/crates.io-index"
2122 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2123 | dependencies = [
2124 | "memchr",
2125 | ]
2126 |
2127 | [[package]]
2128 | name = "once_cell"
2129 | version = "1.14.0"
2130 | source = "registry+https://github.com/rust-lang/crates.io-index"
2131 | checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
2132 |
2133 | [[package]]
2134 | name = "open"
2135 | version = "3.2.0"
2136 | source = "registry+https://github.com/rust-lang/crates.io-index"
2137 | checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
2138 | dependencies = [
2139 | "pathdiff",
2140 | "windows-sys 0.42.0",
2141 | ]
2142 |
2143 | [[package]]
2144 | name = "openssl"
2145 | version = "0.10.40"
2146 | source = "registry+https://github.com/rust-lang/crates.io-index"
2147 | checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
2148 | dependencies = [
2149 | "bitflags",
2150 | "cfg-if",
2151 | "foreign-types",
2152 | "libc",
2153 | "once_cell",
2154 | "openssl-macros",
2155 | "openssl-sys",
2156 | ]
2157 |
2158 | [[package]]
2159 | name = "openssl-macros"
2160 | version = "0.1.0"
2161 | source = "registry+https://github.com/rust-lang/crates.io-index"
2162 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
2163 | dependencies = [
2164 | "proc-macro2",
2165 | "quote",
2166 | "syn 1.0.95",
2167 | ]
2168 |
2169 | [[package]]
2170 | name = "openssl-probe"
2171 | version = "0.1.5"
2172 | source = "registry+https://github.com/rust-lang/crates.io-index"
2173 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2174 |
2175 | [[package]]
2176 | name = "openssl-sys"
2177 | version = "0.9.73"
2178 | source = "registry+https://github.com/rust-lang/crates.io-index"
2179 | checksum = "9d5fd19fb3e0a8191c1e34935718976a3e70c112ab9a24af6d7cadccd9d90bc0"
2180 | dependencies = [
2181 | "autocfg",
2182 | "cc",
2183 | "libc",
2184 | "pkg-config",
2185 | "vcpkg",
2186 | ]
2187 |
2188 | [[package]]
2189 | name = "ordered-stream"
2190 | version = "0.0.1"
2191 | source = "registry+https://github.com/rust-lang/crates.io-index"
2192 | checksum = "44630c059eacfd6e08bdaa51b1db2ce33119caa4ddc1235e923109aa5f25ccb1"
2193 | dependencies = [
2194 | "futures-core",
2195 | "pin-project-lite",
2196 | ]
2197 |
2198 | [[package]]
2199 | name = "os_info"
2200 | version = "3.5.1"
2201 | source = "registry+https://github.com/rust-lang/crates.io-index"
2202 | checksum = "c4750134fb6a5d49afc80777394ad5d95b04bc12068c6abb92fae8f43817270f"
2203 | dependencies = [
2204 | "log",
2205 | "serde",
2206 | "winapi",
2207 | ]
2208 |
2209 | [[package]]
2210 | name = "os_pipe"
2211 | version = "1.0.1"
2212 | source = "registry+https://github.com/rust-lang/crates.io-index"
2213 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55"
2214 | dependencies = [
2215 | "libc",
2216 | "winapi",
2217 | ]
2218 |
2219 | [[package]]
2220 | name = "pango"
2221 | version = "0.15.10"
2222 | source = "registry+https://github.com/rust-lang/crates.io-index"
2223 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
2224 | dependencies = [
2225 | "bitflags",
2226 | "glib",
2227 | "libc",
2228 | "once_cell",
2229 | "pango-sys",
2230 | ]
2231 |
2232 | [[package]]
2233 | name = "pango-sys"
2234 | version = "0.15.10"
2235 | source = "registry+https://github.com/rust-lang/crates.io-index"
2236 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
2237 | dependencies = [
2238 | "glib-sys",
2239 | "gobject-sys",
2240 | "libc",
2241 | "system-deps 6.0.2",
2242 | ]
2243 |
2244 | [[package]]
2245 | name = "parking"
2246 | version = "2.2.0"
2247 | source = "registry+https://github.com/rust-lang/crates.io-index"
2248 | checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
2249 |
2250 | [[package]]
2251 | name = "parking_lot"
2252 | version = "0.11.2"
2253 | source = "registry+https://github.com/rust-lang/crates.io-index"
2254 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2255 | dependencies = [
2256 | "instant",
2257 | "lock_api",
2258 | "parking_lot_core 0.8.6",
2259 | ]
2260 |
2261 | [[package]]
2262 | name = "parking_lot"
2263 | version = "0.12.0"
2264 | source = "registry+https://github.com/rust-lang/crates.io-index"
2265 | checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
2266 | dependencies = [
2267 | "lock_api",
2268 | "parking_lot_core 0.9.3",
2269 | ]
2270 |
2271 | [[package]]
2272 | name = "parking_lot_core"
2273 | version = "0.8.6"
2274 | source = "registry+https://github.com/rust-lang/crates.io-index"
2275 | checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2276 | dependencies = [
2277 | "cfg-if",
2278 | "instant",
2279 | "libc",
2280 | "redox_syscall",
2281 | "smallvec",
2282 | "winapi",
2283 | ]
2284 |
2285 | [[package]]
2286 | name = "parking_lot_core"
2287 | version = "0.9.3"
2288 | source = "registry+https://github.com/rust-lang/crates.io-index"
2289 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2290 | dependencies = [
2291 | "cfg-if",
2292 | "libc",
2293 | "redox_syscall",
2294 | "smallvec",
2295 | "windows-sys 0.36.1",
2296 | ]
2297 |
2298 | [[package]]
2299 | name = "pathdiff"
2300 | version = "0.2.1"
2301 | source = "registry+https://github.com/rust-lang/crates.io-index"
2302 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2303 |
2304 | [[package]]
2305 | name = "percent-encoding"
2306 | version = "2.3.1"
2307 | source = "registry+https://github.com/rust-lang/crates.io-index"
2308 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2309 |
2310 | [[package]]
2311 | name = "pest"
2312 | version = "2.1.3"
2313 | source = "registry+https://github.com/rust-lang/crates.io-index"
2314 | checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
2315 | dependencies = [
2316 | "ucd-trie",
2317 | ]
2318 |
2319 | [[package]]
2320 | name = "phf"
2321 | version = "0.8.0"
2322 | source = "registry+https://github.com/rust-lang/crates.io-index"
2323 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2324 | dependencies = [
2325 | "phf_macros 0.8.0",
2326 | "phf_shared 0.8.0",
2327 | "proc-macro-hack",
2328 | ]
2329 |
2330 | [[package]]
2331 | name = "phf"
2332 | version = "0.10.1"
2333 | source = "registry+https://github.com/rust-lang/crates.io-index"
2334 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2335 | dependencies = [
2336 | "phf_shared 0.10.0",
2337 | ]
2338 |
2339 | [[package]]
2340 | name = "phf"
2341 | version = "0.11.2"
2342 | source = "registry+https://github.com/rust-lang/crates.io-index"
2343 | checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2344 | dependencies = [
2345 | "phf_macros 0.11.2",
2346 | "phf_shared 0.11.2",
2347 | ]
2348 |
2349 | [[package]]
2350 | name = "phf_codegen"
2351 | version = "0.8.0"
2352 | source = "registry+https://github.com/rust-lang/crates.io-index"
2353 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2354 | dependencies = [
2355 | "phf_generator 0.8.0",
2356 | "phf_shared 0.8.0",
2357 | ]
2358 |
2359 | [[package]]
2360 | name = "phf_codegen"
2361 | version = "0.10.0"
2362 | source = "registry+https://github.com/rust-lang/crates.io-index"
2363 | checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2364 | dependencies = [
2365 | "phf_generator 0.10.0",
2366 | "phf_shared 0.10.0",
2367 | ]
2368 |
2369 | [[package]]
2370 | name = "phf_generator"
2371 | version = "0.8.0"
2372 | source = "registry+https://github.com/rust-lang/crates.io-index"
2373 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2374 | dependencies = [
2375 | "phf_shared 0.8.0",
2376 | "rand 0.7.3",
2377 | ]
2378 |
2379 | [[package]]
2380 | name = "phf_generator"
2381 | version = "0.10.0"
2382 | source = "registry+https://github.com/rust-lang/crates.io-index"
2383 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2384 | dependencies = [
2385 | "phf_shared 0.10.0",
2386 | "rand 0.8.5",
2387 | ]
2388 |
2389 | [[package]]
2390 | name = "phf_generator"
2391 | version = "0.11.2"
2392 | source = "registry+https://github.com/rust-lang/crates.io-index"
2393 | checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2394 | dependencies = [
2395 | "phf_shared 0.11.2",
2396 | "rand 0.8.5",
2397 | ]
2398 |
2399 | [[package]]
2400 | name = "phf_macros"
2401 | version = "0.8.0"
2402 | source = "registry+https://github.com/rust-lang/crates.io-index"
2403 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
2404 | dependencies = [
2405 | "phf_generator 0.8.0",
2406 | "phf_shared 0.8.0",
2407 | "proc-macro-hack",
2408 | "proc-macro2",
2409 | "quote",
2410 | "syn 1.0.95",
2411 | ]
2412 |
2413 | [[package]]
2414 | name = "phf_macros"
2415 | version = "0.11.2"
2416 | source = "registry+https://github.com/rust-lang/crates.io-index"
2417 | checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
2418 | dependencies = [
2419 | "phf_generator 0.11.2",
2420 | "phf_shared 0.11.2",
2421 | "proc-macro2",
2422 | "quote",
2423 | "syn 2.0.48",
2424 | ]
2425 |
2426 | [[package]]
2427 | name = "phf_shared"
2428 | version = "0.8.0"
2429 | source = "registry+https://github.com/rust-lang/crates.io-index"
2430 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2431 | dependencies = [
2432 | "siphasher",
2433 | ]
2434 |
2435 | [[package]]
2436 | name = "phf_shared"
2437 | version = "0.10.0"
2438 | source = "registry+https://github.com/rust-lang/crates.io-index"
2439 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2440 | dependencies = [
2441 | "siphasher",
2442 | ]
2443 |
2444 | [[package]]
2445 | name = "phf_shared"
2446 | version = "0.11.2"
2447 | source = "registry+https://github.com/rust-lang/crates.io-index"
2448 | checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2449 | dependencies = [
2450 | "siphasher",
2451 | ]
2452 |
2453 | [[package]]
2454 | name = "pin-project-lite"
2455 | version = "0.2.9"
2456 | source = "registry+https://github.com/rust-lang/crates.io-index"
2457 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2458 |
2459 | [[package]]
2460 | name = "pin-utils"
2461 | version = "0.1.0"
2462 | source = "registry+https://github.com/rust-lang/crates.io-index"
2463 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2464 |
2465 | [[package]]
2466 | name = "pkg-config"
2467 | version = "0.3.25"
2468 | source = "registry+https://github.com/rust-lang/crates.io-index"
2469 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2470 |
2471 | [[package]]
2472 | name = "plist"
2473 | version = "1.3.1"
2474 | source = "registry+https://github.com/rust-lang/crates.io-index"
2475 | checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
2476 | dependencies = [
2477 | "base64 0.13.0",
2478 | "indexmap 1.9.1",
2479 | "line-wrap",
2480 | "serde",
2481 | "time",
2482 | "xml-rs",
2483 | ]
2484 |
2485 | [[package]]
2486 | name = "png"
2487 | version = "0.17.5"
2488 | source = "registry+https://github.com/rust-lang/crates.io-index"
2489 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
2490 | dependencies = [
2491 | "bitflags",
2492 | "crc32fast",
2493 | "deflate",
2494 | "miniz_oxide 0.5.1",
2495 | ]
2496 |
2497 | [[package]]
2498 | name = "polling"
2499 | version = "2.5.2"
2500 | source = "registry+https://github.com/rust-lang/crates.io-index"
2501 | checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6"
2502 | dependencies = [
2503 | "autocfg",
2504 | "cfg-if",
2505 | "libc",
2506 | "log",
2507 | "wepoll-ffi",
2508 | "windows-sys 0.42.0",
2509 | ]
2510 |
2511 | [[package]]
2512 | name = "powerfmt"
2513 | version = "0.2.0"
2514 | source = "registry+https://github.com/rust-lang/crates.io-index"
2515 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2516 |
2517 | [[package]]
2518 | name = "ppv-lite86"
2519 | version = "0.2.16"
2520 | source = "registry+https://github.com/rust-lang/crates.io-index"
2521 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2522 |
2523 | [[package]]
2524 | name = "precomputed-hash"
2525 | version = "0.1.1"
2526 | source = "registry+https://github.com/rust-lang/crates.io-index"
2527 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2528 |
2529 | [[package]]
2530 | name = "proc-macro-crate"
2531 | version = "1.1.3"
2532 | source = "registry+https://github.com/rust-lang/crates.io-index"
2533 | checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
2534 | dependencies = [
2535 | "thiserror",
2536 | "toml 0.5.9",
2537 | ]
2538 |
2539 | [[package]]
2540 | name = "proc-macro-error"
2541 | version = "1.0.4"
2542 | source = "registry+https://github.com/rust-lang/crates.io-index"
2543 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2544 | dependencies = [
2545 | "proc-macro-error-attr",
2546 | "proc-macro2",
2547 | "quote",
2548 | "syn 1.0.95",
2549 | "version_check",
2550 | ]
2551 |
2552 | [[package]]
2553 | name = "proc-macro-error-attr"
2554 | version = "1.0.4"
2555 | source = "registry+https://github.com/rust-lang/crates.io-index"
2556 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2557 | dependencies = [
2558 | "proc-macro2",
2559 | "quote",
2560 | "version_check",
2561 | ]
2562 |
2563 | [[package]]
2564 | name = "proc-macro-hack"
2565 | version = "0.5.19"
2566 | source = "registry+https://github.com/rust-lang/crates.io-index"
2567 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2568 |
2569 | [[package]]
2570 | name = "proc-macro2"
2571 | version = "1.0.75"
2572 | source = "registry+https://github.com/rust-lang/crates.io-index"
2573 | checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708"
2574 | dependencies = [
2575 | "unicode-ident",
2576 | ]
2577 |
2578 | [[package]]
2579 | name = "quote"
2580 | version = "1.0.35"
2581 | source = "registry+https://github.com/rust-lang/crates.io-index"
2582 | checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2583 | dependencies = [
2584 | "proc-macro2",
2585 | ]
2586 |
2587 | [[package]]
2588 | name = "rand"
2589 | version = "0.7.3"
2590 | source = "registry+https://github.com/rust-lang/crates.io-index"
2591 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2592 | dependencies = [
2593 | "getrandom 0.1.16",
2594 | "libc",
2595 | "rand_chacha 0.2.2",
2596 | "rand_core 0.5.1",
2597 | "rand_hc",
2598 | "rand_pcg",
2599 | ]
2600 |
2601 | [[package]]
2602 | name = "rand"
2603 | version = "0.8.5"
2604 | source = "registry+https://github.com/rust-lang/crates.io-index"
2605 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2606 | dependencies = [
2607 | "libc",
2608 | "rand_chacha 0.3.1",
2609 | "rand_core 0.6.3",
2610 | ]
2611 |
2612 | [[package]]
2613 | name = "rand_chacha"
2614 | version = "0.2.2"
2615 | source = "registry+https://github.com/rust-lang/crates.io-index"
2616 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2617 | dependencies = [
2618 | "ppv-lite86",
2619 | "rand_core 0.5.1",
2620 | ]
2621 |
2622 | [[package]]
2623 | name = "rand_chacha"
2624 | version = "0.3.1"
2625 | source = "registry+https://github.com/rust-lang/crates.io-index"
2626 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2627 | dependencies = [
2628 | "ppv-lite86",
2629 | "rand_core 0.6.3",
2630 | ]
2631 |
2632 | [[package]]
2633 | name = "rand_core"
2634 | version = "0.5.1"
2635 | source = "registry+https://github.com/rust-lang/crates.io-index"
2636 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2637 | dependencies = [
2638 | "getrandom 0.1.16",
2639 | ]
2640 |
2641 | [[package]]
2642 | name = "rand_core"
2643 | version = "0.6.3"
2644 | source = "registry+https://github.com/rust-lang/crates.io-index"
2645 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2646 | dependencies = [
2647 | "getrandom 0.2.6",
2648 | ]
2649 |
2650 | [[package]]
2651 | name = "rand_hc"
2652 | version = "0.2.0"
2653 | source = "registry+https://github.com/rust-lang/crates.io-index"
2654 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2655 | dependencies = [
2656 | "rand_core 0.5.1",
2657 | ]
2658 |
2659 | [[package]]
2660 | name = "rand_pcg"
2661 | version = "0.2.1"
2662 | source = "registry+https://github.com/rust-lang/crates.io-index"
2663 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2664 | dependencies = [
2665 | "rand_core 0.5.1",
2666 | ]
2667 |
2668 | [[package]]
2669 | name = "raw-window-handle"
2670 | version = "0.5.0"
2671 | source = "registry+https://github.com/rust-lang/crates.io-index"
2672 | checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a"
2673 | dependencies = [
2674 | "cty",
2675 | ]
2676 |
2677 | [[package]]
2678 | name = "redox_syscall"
2679 | version = "0.2.13"
2680 | source = "registry+https://github.com/rust-lang/crates.io-index"
2681 | checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2682 | dependencies = [
2683 | "bitflags",
2684 | ]
2685 |
2686 | [[package]]
2687 | name = "redox_users"
2688 | version = "0.4.3"
2689 | source = "registry+https://github.com/rust-lang/crates.io-index"
2690 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2691 | dependencies = [
2692 | "getrandom 0.2.6",
2693 | "redox_syscall",
2694 | "thiserror",
2695 | ]
2696 |
2697 | [[package]]
2698 | name = "regex"
2699 | version = "1.6.0"
2700 | source = "registry+https://github.com/rust-lang/crates.io-index"
2701 | checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2702 | dependencies = [
2703 | "aho-corasick",
2704 | "memchr",
2705 | "regex-syntax",
2706 | ]
2707 |
2708 | [[package]]
2709 | name = "regex-automata"
2710 | version = "0.1.10"
2711 | source = "registry+https://github.com/rust-lang/crates.io-index"
2712 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2713 | dependencies = [
2714 | "regex-syntax",
2715 | ]
2716 |
2717 | [[package]]
2718 | name = "regex-syntax"
2719 | version = "0.6.27"
2720 | source = "registry+https://github.com/rust-lang/crates.io-index"
2721 | checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2722 |
2723 | [[package]]
2724 | name = "remove_dir_all"
2725 | version = "0.5.3"
2726 | source = "registry+https://github.com/rust-lang/crates.io-index"
2727 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2728 | dependencies = [
2729 | "winapi",
2730 | ]
2731 |
2732 | [[package]]
2733 | name = "reqwest"
2734 | version = "0.11.23"
2735 | source = "registry+https://github.com/rust-lang/crates.io-index"
2736 | checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
2737 | dependencies = [
2738 | "base64 0.21.5",
2739 | "bytes",
2740 | "encoding_rs",
2741 | "futures-core",
2742 | "futures-util",
2743 | "h2",
2744 | "http",
2745 | "http-body",
2746 | "hyper",
2747 | "hyper-tls",
2748 | "ipnet",
2749 | "js-sys",
2750 | "log",
2751 | "mime",
2752 | "native-tls",
2753 | "once_cell",
2754 | "percent-encoding",
2755 | "pin-project-lite",
2756 | "serde",
2757 | "serde_json",
2758 | "serde_urlencoded",
2759 | "system-configuration",
2760 | "tokio",
2761 | "tokio-native-tls",
2762 | "tokio-util",
2763 | "tower-service",
2764 | "url",
2765 | "wasm-bindgen",
2766 | "wasm-bindgen-futures",
2767 | "wasm-streams",
2768 | "web-sys",
2769 | "winreg 0.50.0",
2770 | ]
2771 |
2772 | [[package]]
2773 | name = "rfd"
2774 | version = "0.10.0"
2775 | source = "registry+https://github.com/rust-lang/crates.io-index"
2776 | checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea"
2777 | dependencies = [
2778 | "block",
2779 | "dispatch",
2780 | "glib-sys",
2781 | "gobject-sys",
2782 | "gtk-sys",
2783 | "js-sys",
2784 | "lazy_static",
2785 | "log",
2786 | "objc",
2787 | "objc-foundation",
2788 | "objc_id",
2789 | "raw-window-handle",
2790 | "wasm-bindgen",
2791 | "wasm-bindgen-futures",
2792 | "web-sys",
2793 | "windows 0.37.0",
2794 | ]
2795 |
2796 | [[package]]
2797 | name = "rustc-demangle"
2798 | version = "0.1.23"
2799 | source = "registry+https://github.com/rust-lang/crates.io-index"
2800 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2801 |
2802 | [[package]]
2803 | name = "rustc_version"
2804 | version = "0.3.3"
2805 | source = "registry+https://github.com/rust-lang/crates.io-index"
2806 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
2807 | dependencies = [
2808 | "semver 0.11.0",
2809 | ]
2810 |
2811 | [[package]]
2812 | name = "rustc_version"
2813 | version = "0.4.0"
2814 | source = "registry+https://github.com/rust-lang/crates.io-index"
2815 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2816 | dependencies = [
2817 | "semver 1.0.9",
2818 | ]
2819 |
2820 | [[package]]
2821 | name = "rustversion"
2822 | version = "1.0.6"
2823 | source = "registry+https://github.com/rust-lang/crates.io-index"
2824 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
2825 |
2826 | [[package]]
2827 | name = "ryu"
2828 | version = "1.0.10"
2829 | source = "registry+https://github.com/rust-lang/crates.io-index"
2830 | checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2831 |
2832 | [[package]]
2833 | name = "safemem"
2834 | version = "0.3.3"
2835 | source = "registry+https://github.com/rust-lang/crates.io-index"
2836 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2837 |
2838 | [[package]]
2839 | name = "same-file"
2840 | version = "1.0.6"
2841 | source = "registry+https://github.com/rust-lang/crates.io-index"
2842 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2843 | dependencies = [
2844 | "winapi-util",
2845 | ]
2846 |
2847 | [[package]]
2848 | name = "schannel"
2849 | version = "0.1.20"
2850 | source = "registry+https://github.com/rust-lang/crates.io-index"
2851 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2852 | dependencies = [
2853 | "lazy_static",
2854 | "windows-sys 0.36.1",
2855 | ]
2856 |
2857 | [[package]]
2858 | name = "scoped-tls"
2859 | version = "1.0.0"
2860 | source = "registry+https://github.com/rust-lang/crates.io-index"
2861 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2862 |
2863 | [[package]]
2864 | name = "scopeguard"
2865 | version = "1.1.0"
2866 | source = "registry+https://github.com/rust-lang/crates.io-index"
2867 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2868 |
2869 | [[package]]
2870 | name = "security-framework"
2871 | version = "2.6.1"
2872 | source = "registry+https://github.com/rust-lang/crates.io-index"
2873 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2874 | dependencies = [
2875 | "bitflags",
2876 | "core-foundation",
2877 | "core-foundation-sys",
2878 | "libc",
2879 | "security-framework-sys",
2880 | ]
2881 |
2882 | [[package]]
2883 | name = "security-framework-sys"
2884 | version = "2.6.1"
2885 | source = "registry+https://github.com/rust-lang/crates.io-index"
2886 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2887 | dependencies = [
2888 | "core-foundation-sys",
2889 | "libc",
2890 | ]
2891 |
2892 | [[package]]
2893 | name = "selectors"
2894 | version = "0.22.0"
2895 | source = "registry+https://github.com/rust-lang/crates.io-index"
2896 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2897 | dependencies = [
2898 | "bitflags",
2899 | "cssparser",
2900 | "derive_more",
2901 | "fxhash",
2902 | "log",
2903 | "matches",
2904 | "phf 0.8.0",
2905 | "phf_codegen 0.8.0",
2906 | "precomputed-hash",
2907 | "servo_arc",
2908 | "smallvec",
2909 | "thin-slice",
2910 | ]
2911 |
2912 | [[package]]
2913 | name = "semver"
2914 | version = "0.11.0"
2915 | source = "registry+https://github.com/rust-lang/crates.io-index"
2916 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2917 | dependencies = [
2918 | "semver-parser",
2919 | ]
2920 |
2921 | [[package]]
2922 | name = "semver"
2923 | version = "1.0.9"
2924 | source = "registry+https://github.com/rust-lang/crates.io-index"
2925 | checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
2926 | dependencies = [
2927 | "serde",
2928 | ]
2929 |
2930 | [[package]]
2931 | name = "semver-parser"
2932 | version = "0.10.2"
2933 | source = "registry+https://github.com/rust-lang/crates.io-index"
2934 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2935 | dependencies = [
2936 | "pest",
2937 | ]
2938 |
2939 | [[package]]
2940 | name = "serde"
2941 | version = "1.0.194"
2942 | source = "registry+https://github.com/rust-lang/crates.io-index"
2943 | checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
2944 | dependencies = [
2945 | "serde_derive",
2946 | ]
2947 |
2948 | [[package]]
2949 | name = "serde_derive"
2950 | version = "1.0.194"
2951 | source = "registry+https://github.com/rust-lang/crates.io-index"
2952 | checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
2953 | dependencies = [
2954 | "proc-macro2",
2955 | "quote",
2956 | "syn 2.0.48",
2957 | ]
2958 |
2959 | [[package]]
2960 | name = "serde_json"
2961 | version = "1.0.111"
2962 | source = "registry+https://github.com/rust-lang/crates.io-index"
2963 | checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
2964 | dependencies = [
2965 | "itoa 1.0.2",
2966 | "ryu",
2967 | "serde",
2968 | ]
2969 |
2970 | [[package]]
2971 | name = "serde_repr"
2972 | version = "0.1.8"
2973 | source = "registry+https://github.com/rust-lang/crates.io-index"
2974 | checksum = "a2ad84e47328a31223de7fed7a4f5087f2d6ddfe586cf3ca25b7a165bc0a5aed"
2975 | dependencies = [
2976 | "proc-macro2",
2977 | "quote",
2978 | "syn 1.0.95",
2979 | ]
2980 |
2981 | [[package]]
2982 | name = "serde_spanned"
2983 | version = "0.6.5"
2984 | source = "registry+https://github.com/rust-lang/crates.io-index"
2985 | checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2986 | dependencies = [
2987 | "serde",
2988 | ]
2989 |
2990 | [[package]]
2991 | name = "serde_urlencoded"
2992 | version = "0.7.1"
2993 | source = "registry+https://github.com/rust-lang/crates.io-index"
2994 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2995 | dependencies = [
2996 | "form_urlencoded",
2997 | "itoa 1.0.2",
2998 | "ryu",
2999 | "serde",
3000 | ]
3001 |
3002 | [[package]]
3003 | name = "serde_with"
3004 | version = "3.4.0"
3005 | source = "registry+https://github.com/rust-lang/crates.io-index"
3006 | checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
3007 | dependencies = [
3008 | "base64 0.21.5",
3009 | "chrono",
3010 | "hex",
3011 | "indexmap 1.9.1",
3012 | "indexmap 2.1.0",
3013 | "serde",
3014 | "serde_json",
3015 | "serde_with_macros",
3016 | "time",
3017 | ]
3018 |
3019 | [[package]]
3020 | name = "serde_with_macros"
3021 | version = "3.4.0"
3022 | source = "registry+https://github.com/rust-lang/crates.io-index"
3023 | checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788"
3024 | dependencies = [
3025 | "darling",
3026 | "proc-macro2",
3027 | "quote",
3028 | "syn 2.0.48",
3029 | ]
3030 |
3031 | [[package]]
3032 | name = "serialize-to-javascript"
3033 | version = "0.1.1"
3034 | source = "registry+https://github.com/rust-lang/crates.io-index"
3035 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
3036 | dependencies = [
3037 | "serde",
3038 | "serde_json",
3039 | "serialize-to-javascript-impl",
3040 | ]
3041 |
3042 | [[package]]
3043 | name = "serialize-to-javascript-impl"
3044 | version = "0.1.1"
3045 | source = "registry+https://github.com/rust-lang/crates.io-index"
3046 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
3047 | dependencies = [
3048 | "proc-macro2",
3049 | "quote",
3050 | "syn 1.0.95",
3051 | ]
3052 |
3053 | [[package]]
3054 | name = "servo_arc"
3055 | version = "0.1.1"
3056 | source = "registry+https://github.com/rust-lang/crates.io-index"
3057 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
3058 | dependencies = [
3059 | "nodrop",
3060 | "stable_deref_trait",
3061 | ]
3062 |
3063 | [[package]]
3064 | name = "sha1"
3065 | version = "0.6.1"
3066 | source = "registry+https://github.com/rust-lang/crates.io-index"
3067 | checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
3068 | dependencies = [
3069 | "sha1_smol",
3070 | ]
3071 |
3072 | [[package]]
3073 | name = "sha1_smol"
3074 | version = "1.0.0"
3075 | source = "registry+https://github.com/rust-lang/crates.io-index"
3076 | checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
3077 |
3078 | [[package]]
3079 | name = "sha2"
3080 | version = "0.10.2"
3081 | source = "registry+https://github.com/rust-lang/crates.io-index"
3082 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
3083 | dependencies = [
3084 | "cfg-if",
3085 | "cpufeatures",
3086 | "digest",
3087 | ]
3088 |
3089 | [[package]]
3090 | name = "sharded-slab"
3091 | version = "0.1.4"
3092 | source = "registry+https://github.com/rust-lang/crates.io-index"
3093 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
3094 | dependencies = [
3095 | "lazy_static",
3096 | ]
3097 |
3098 | [[package]]
3099 | name = "shared_child"
3100 | version = "1.0.0"
3101 | source = "registry+https://github.com/rust-lang/crates.io-index"
3102 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef"
3103 | dependencies = [
3104 | "libc",
3105 | "winapi",
3106 | ]
3107 |
3108 | [[package]]
3109 | name = "siphasher"
3110 | version = "0.3.10"
3111 | source = "registry+https://github.com/rust-lang/crates.io-index"
3112 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
3113 |
3114 | [[package]]
3115 | name = "slab"
3116 | version = "0.4.6"
3117 | source = "registry+https://github.com/rust-lang/crates.io-index"
3118 | checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
3119 |
3120 | [[package]]
3121 | name = "smallvec"
3122 | version = "1.8.0"
3123 | source = "registry+https://github.com/rust-lang/crates.io-index"
3124 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
3125 |
3126 | [[package]]
3127 | name = "socket2"
3128 | version = "0.4.10"
3129 | source = "registry+https://github.com/rust-lang/crates.io-index"
3130 | checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
3131 | dependencies = [
3132 | "libc",
3133 | "winapi",
3134 | ]
3135 |
3136 | [[package]]
3137 | name = "socket2"
3138 | version = "0.5.5"
3139 | source = "registry+https://github.com/rust-lang/crates.io-index"
3140 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
3141 | dependencies = [
3142 | "libc",
3143 | "windows-sys 0.48.0",
3144 | ]
3145 |
3146 | [[package]]
3147 | name = "soup2"
3148 | version = "0.2.1"
3149 | source = "registry+https://github.com/rust-lang/crates.io-index"
3150 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
3151 | dependencies = [
3152 | "bitflags",
3153 | "gio",
3154 | "glib",
3155 | "libc",
3156 | "once_cell",
3157 | "soup2-sys",
3158 | ]
3159 |
3160 | [[package]]
3161 | name = "soup2-sys"
3162 | version = "0.2.0"
3163 | source = "registry+https://github.com/rust-lang/crates.io-index"
3164 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
3165 | dependencies = [
3166 | "bitflags",
3167 | "gio-sys",
3168 | "glib-sys",
3169 | "gobject-sys",
3170 | "libc",
3171 | "system-deps 5.0.0",
3172 | ]
3173 |
3174 | [[package]]
3175 | name = "stable_deref_trait"
3176 | version = "1.2.0"
3177 | source = "registry+https://github.com/rust-lang/crates.io-index"
3178 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3179 |
3180 | [[package]]
3181 | name = "state"
3182 | version = "0.5.3"
3183 | source = "registry+https://github.com/rust-lang/crates.io-index"
3184 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
3185 | dependencies = [
3186 | "loom",
3187 | ]
3188 |
3189 | [[package]]
3190 | name = "static_assertions"
3191 | version = "1.1.0"
3192 | source = "registry+https://github.com/rust-lang/crates.io-index"
3193 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3194 |
3195 | [[package]]
3196 | name = "str-buf"
3197 | version = "1.0.6"
3198 | source = "registry+https://github.com/rust-lang/crates.io-index"
3199 | checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"
3200 |
3201 | [[package]]
3202 | name = "string_cache"
3203 | version = "0.8.4"
3204 | source = "registry+https://github.com/rust-lang/crates.io-index"
3205 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
3206 | dependencies = [
3207 | "new_debug_unreachable",
3208 | "once_cell",
3209 | "parking_lot 0.12.0",
3210 | "phf_shared 0.10.0",
3211 | "precomputed-hash",
3212 | "serde",
3213 | ]
3214 |
3215 | [[package]]
3216 | name = "string_cache_codegen"
3217 | version = "0.5.2"
3218 | source = "registry+https://github.com/rust-lang/crates.io-index"
3219 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
3220 | dependencies = [
3221 | "phf_generator 0.10.0",
3222 | "phf_shared 0.10.0",
3223 | "proc-macro2",
3224 | "quote",
3225 | ]
3226 |
3227 | [[package]]
3228 | name = "strsim"
3229 | version = "0.10.0"
3230 | source = "registry+https://github.com/rust-lang/crates.io-index"
3231 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3232 |
3233 | [[package]]
3234 | name = "strum"
3235 | version = "0.22.0"
3236 | source = "registry+https://github.com/rust-lang/crates.io-index"
3237 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
3238 | dependencies = [
3239 | "strum_macros",
3240 | ]
3241 |
3242 | [[package]]
3243 | name = "strum_macros"
3244 | version = "0.22.0"
3245 | source = "registry+https://github.com/rust-lang/crates.io-index"
3246 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
3247 | dependencies = [
3248 | "heck 0.3.3",
3249 | "proc-macro2",
3250 | "quote",
3251 | "syn 1.0.95",
3252 | ]
3253 |
3254 | [[package]]
3255 | name = "syn"
3256 | version = "1.0.95"
3257 | source = "registry+https://github.com/rust-lang/crates.io-index"
3258 | checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
3259 | dependencies = [
3260 | "proc-macro2",
3261 | "quote",
3262 | "unicode-ident",
3263 | ]
3264 |
3265 | [[package]]
3266 | name = "syn"
3267 | version = "2.0.48"
3268 | source = "registry+https://github.com/rust-lang/crates.io-index"
3269 | checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
3270 | dependencies = [
3271 | "proc-macro2",
3272 | "quote",
3273 | "unicode-ident",
3274 | ]
3275 |
3276 | [[package]]
3277 | name = "sys-locale"
3278 | version = "0.2.4"
3279 | source = "registry+https://github.com/rust-lang/crates.io-index"
3280 | checksum = "f8a11bd9c338fdba09f7881ab41551932ad42e405f61d01e8406baea71c07aee"
3281 | dependencies = [
3282 | "js-sys",
3283 | "libc",
3284 | "wasm-bindgen",
3285 | "web-sys",
3286 | "windows-sys 0.45.0",
3287 | ]
3288 |
3289 | [[package]]
3290 | name = "system-configuration"
3291 | version = "0.5.1"
3292 | source = "registry+https://github.com/rust-lang/crates.io-index"
3293 | checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
3294 | dependencies = [
3295 | "bitflags",
3296 | "core-foundation",
3297 | "system-configuration-sys",
3298 | ]
3299 |
3300 | [[package]]
3301 | name = "system-configuration-sys"
3302 | version = "0.5.0"
3303 | source = "registry+https://github.com/rust-lang/crates.io-index"
3304 | checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
3305 | dependencies = [
3306 | "core-foundation-sys",
3307 | "libc",
3308 | ]
3309 |
3310 | [[package]]
3311 | name = "system-deps"
3312 | version = "5.0.0"
3313 | source = "registry+https://github.com/rust-lang/crates.io-index"
3314 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
3315 | dependencies = [
3316 | "cfg-expr 0.9.1",
3317 | "heck 0.3.3",
3318 | "pkg-config",
3319 | "toml 0.5.9",
3320 | "version-compare 0.0.11",
3321 | ]
3322 |
3323 | [[package]]
3324 | name = "system-deps"
3325 | version = "6.0.2"
3326 | source = "registry+https://github.com/rust-lang/crates.io-index"
3327 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709"
3328 | dependencies = [
3329 | "cfg-expr 0.10.3",
3330 | "heck 0.4.0",
3331 | "pkg-config",
3332 | "toml 0.5.9",
3333 | "version-compare 0.1.0",
3334 | ]
3335 |
3336 | [[package]]
3337 | name = "tao"
3338 | version = "0.16.5"
3339 | source = "registry+https://github.com/rust-lang/crates.io-index"
3340 | checksum = "75f5aefd6be4cd3ad3f047442242fd9f57cbfb3e565379f66b5e14749364fa4f"
3341 | dependencies = [
3342 | "bitflags",
3343 | "cairo-rs",
3344 | "cc",
3345 | "cocoa",
3346 | "core-foundation",
3347 | "core-graphics",
3348 | "crossbeam-channel",
3349 | "dispatch",
3350 | "gdk",
3351 | "gdk-pixbuf",
3352 | "gdk-sys",
3353 | "gdkwayland-sys",
3354 | "gdkx11-sys",
3355 | "gio",
3356 | "glib",
3357 | "glib-sys",
3358 | "gtk",
3359 | "image",
3360 | "instant",
3361 | "jni",
3362 | "lazy_static",
3363 | "libc",
3364 | "log",
3365 | "ndk",
3366 | "ndk-context",
3367 | "ndk-sys",
3368 | "objc",
3369 | "once_cell",
3370 | "parking_lot 0.12.0",
3371 | "png",
3372 | "raw-window-handle",
3373 | "scopeguard",
3374 | "serde",
3375 | "tao-macros",
3376 | "unicode-segmentation",
3377 | "uuid",
3378 | "windows 0.39.0",
3379 | "windows-implement",
3380 | "x11-dl",
3381 | ]
3382 |
3383 | [[package]]
3384 | name = "tao-macros"
3385 | version = "0.1.2"
3386 | source = "registry+https://github.com/rust-lang/crates.io-index"
3387 | checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
3388 | dependencies = [
3389 | "proc-macro2",
3390 | "quote",
3391 | "syn 1.0.95",
3392 | ]
3393 |
3394 | [[package]]
3395 | name = "tar"
3396 | version = "0.4.38"
3397 | source = "registry+https://github.com/rust-lang/crates.io-index"
3398 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
3399 | dependencies = [
3400 | "filetime",
3401 | "libc",
3402 | "xattr",
3403 | ]
3404 |
3405 | [[package]]
3406 | name = "tauri"
3407 | version = "1.5.4"
3408 | source = "registry+https://github.com/rust-lang/crates.io-index"
3409 | checksum = "fd27c04b9543776a972c86ccf70660b517ecabbeced9fb58d8b961a13ad129af"
3410 | dependencies = [
3411 | "anyhow",
3412 | "bytes",
3413 | "cocoa",
3414 | "dirs-next",
3415 | "embed_plist",
3416 | "encoding_rs",
3417 | "flate2",
3418 | "futures-util",
3419 | "glib",
3420 | "glob",
3421 | "gtk",
3422 | "heck 0.4.0",
3423 | "http",
3424 | "ignore",
3425 | "notify-rust",
3426 | "objc",
3427 | "once_cell",
3428 | "open",
3429 | "os_info",
3430 | "os_pipe",
3431 | "percent-encoding",
3432 | "rand 0.8.5",
3433 | "raw-window-handle",
3434 | "regex",
3435 | "reqwest",
3436 | "rfd",
3437 | "semver 1.0.9",
3438 | "serde",
3439 | "serde_json",
3440 | "serde_repr",
3441 | "serialize-to-javascript",
3442 | "shared_child",
3443 | "state",
3444 | "sys-locale",
3445 | "tar",
3446 | "tauri-macros",
3447 | "tauri-runtime",
3448 | "tauri-runtime-wry",
3449 | "tauri-utils",
3450 | "tempfile",
3451 | "thiserror",
3452 | "tokio",
3453 | "url",
3454 | "uuid",
3455 | "webkit2gtk",
3456 | "webview2-com",
3457 | "windows 0.39.0",
3458 | ]
3459 |
3460 | [[package]]
3461 | name = "tauri-build"
3462 | version = "1.5.1"
3463 | source = "registry+https://github.com/rust-lang/crates.io-index"
3464 | checksum = "e9914a4715e0b75d9f387a285c7e26b5bbfeb1249ad9f842675a82481565c532"
3465 | dependencies = [
3466 | "anyhow",
3467 | "cargo_toml",
3468 | "dirs-next",
3469 | "heck 0.4.0",
3470 | "json-patch",
3471 | "semver 1.0.9",
3472 | "serde",
3473 | "serde_json",
3474 | "tauri-utils",
3475 | "tauri-winres",
3476 | "walkdir",
3477 | ]
3478 |
3479 | [[package]]
3480 | name = "tauri-codegen"
3481 | version = "1.4.2"
3482 | source = "registry+https://github.com/rust-lang/crates.io-index"
3483 | checksum = "a1554c5857f65dbc377cefb6b97c8ac77b1cb2a90d30d3448114d5d6b48a77fc"
3484 | dependencies = [
3485 | "base64 0.21.5",
3486 | "brotli",
3487 | "ico",
3488 | "json-patch",
3489 | "plist",
3490 | "png",
3491 | "proc-macro2",
3492 | "quote",
3493 | "regex",
3494 | "semver 1.0.9",
3495 | "serde",
3496 | "serde_json",
3497 | "sha2",
3498 | "tauri-utils",
3499 | "thiserror",
3500 | "time",
3501 | "uuid",
3502 | "walkdir",
3503 | ]
3504 |
3505 | [[package]]
3506 | name = "tauri-deno-starter"
3507 | version = "0.1.0"
3508 | dependencies = [
3509 | "tauri",
3510 | "tauri-build",
3511 | ]
3512 |
3513 | [[package]]
3514 | name = "tauri-macros"
3515 | version = "1.4.3"
3516 | source = "registry+https://github.com/rust-lang/crates.io-index"
3517 | checksum = "277abf361a3a6993ec16bcbb179de0d6518009b851090a01adfea12ac89fa875"
3518 | dependencies = [
3519 | "heck 0.4.0",
3520 | "proc-macro2",
3521 | "quote",
3522 | "syn 1.0.95",
3523 | "tauri-codegen",
3524 | "tauri-utils",
3525 | ]
3526 |
3527 | [[package]]
3528 | name = "tauri-runtime"
3529 | version = "0.14.2"
3530 | source = "registry+https://github.com/rust-lang/crates.io-index"
3531 | checksum = "cf2d0652aa2891ff3e9caa2401405257ea29ab8372cce01f186a5825f1bd0e76"
3532 | dependencies = [
3533 | "gtk",
3534 | "http",
3535 | "http-range",
3536 | "rand 0.8.5",
3537 | "raw-window-handle",
3538 | "serde",
3539 | "serde_json",
3540 | "tauri-utils",
3541 | "thiserror",
3542 | "url",
3543 | "uuid",
3544 | "webview2-com",
3545 | "windows 0.39.0",
3546 | ]
3547 |
3548 | [[package]]
3549 | name = "tauri-runtime-wry"
3550 | version = "0.14.3"
3551 | source = "registry+https://github.com/rust-lang/crates.io-index"
3552 | checksum = "6cae61fbc731f690a4899681c9052dde6d05b159b44563ace8186fc1bfb7d158"
3553 | dependencies = [
3554 | "arboard",
3555 | "cocoa",
3556 | "gtk",
3557 | "percent-encoding",
3558 | "rand 0.8.5",
3559 | "raw-window-handle",
3560 | "tauri-runtime",
3561 | "tauri-utils",
3562 | "uuid",
3563 | "webkit2gtk",
3564 | "webview2-com",
3565 | "windows 0.39.0",
3566 | "wry",
3567 | ]
3568 |
3569 | [[package]]
3570 | name = "tauri-utils"
3571 | version = "1.5.2"
3572 | source = "registry+https://github.com/rust-lang/crates.io-index"
3573 | checksum = "ece74810b1d3d44f29f732a7ae09a63183d63949bbdd59c61f8ed2a1b70150db"
3574 | dependencies = [
3575 | "brotli",
3576 | "ctor",
3577 | "dunce",
3578 | "glob",
3579 | "heck 0.4.0",
3580 | "html5ever",
3581 | "infer",
3582 | "json-patch",
3583 | "kuchikiki",
3584 | "log",
3585 | "memchr",
3586 | "phf 0.11.2",
3587 | "proc-macro2",
3588 | "quote",
3589 | "semver 1.0.9",
3590 | "serde",
3591 | "serde_json",
3592 | "serde_with",
3593 | "thiserror",
3594 | "url",
3595 | "walkdir",
3596 | "windows-version",
3597 | ]
3598 |
3599 | [[package]]
3600 | name = "tauri-winres"
3601 | version = "0.1.1"
3602 | source = "registry+https://github.com/rust-lang/crates.io-index"
3603 | checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
3604 | dependencies = [
3605 | "embed-resource",
3606 | "toml 0.7.8",
3607 | ]
3608 |
3609 | [[package]]
3610 | name = "tempfile"
3611 | version = "3.3.0"
3612 | source = "registry+https://github.com/rust-lang/crates.io-index"
3613 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
3614 | dependencies = [
3615 | "cfg-if",
3616 | "fastrand",
3617 | "libc",
3618 | "redox_syscall",
3619 | "remove_dir_all",
3620 | "winapi",
3621 | ]
3622 |
3623 | [[package]]
3624 | name = "tendril"
3625 | version = "0.4.3"
3626 | source = "registry+https://github.com/rust-lang/crates.io-index"
3627 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3628 | dependencies = [
3629 | "futf",
3630 | "mac",
3631 | "utf-8",
3632 | ]
3633 |
3634 | [[package]]
3635 | name = "thin-slice"
3636 | version = "0.1.1"
3637 | source = "registry+https://github.com/rust-lang/crates.io-index"
3638 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
3639 |
3640 | [[package]]
3641 | name = "thiserror"
3642 | version = "1.0.56"
3643 | source = "registry+https://github.com/rust-lang/crates.io-index"
3644 | checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
3645 | dependencies = [
3646 | "thiserror-impl",
3647 | ]
3648 |
3649 | [[package]]
3650 | name = "thiserror-impl"
3651 | version = "1.0.56"
3652 | source = "registry+https://github.com/rust-lang/crates.io-index"
3653 | checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
3654 | dependencies = [
3655 | "proc-macro2",
3656 | "quote",
3657 | "syn 2.0.48",
3658 | ]
3659 |
3660 | [[package]]
3661 | name = "thread_local"
3662 | version = "1.1.4"
3663 | source = "registry+https://github.com/rust-lang/crates.io-index"
3664 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
3665 | dependencies = [
3666 | "once_cell",
3667 | ]
3668 |
3669 | [[package]]
3670 | name = "tiff"
3671 | version = "0.7.4"
3672 | source = "registry+https://github.com/rust-lang/crates.io-index"
3673 | checksum = "9f71e422515e83e3ab8a03d4781d05ebf864fc61f4546e6ecffa58cbd34181a0"
3674 | dependencies = [
3675 | "flate2",
3676 | "jpeg-decoder",
3677 | "weezl",
3678 | ]
3679 |
3680 | [[package]]
3681 | name = "time"
3682 | version = "0.3.31"
3683 | source = "registry+https://github.com/rust-lang/crates.io-index"
3684 | checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
3685 | dependencies = [
3686 | "deranged",
3687 | "itoa 1.0.2",
3688 | "powerfmt",
3689 | "serde",
3690 | "time-core",
3691 | "time-macros",
3692 | ]
3693 |
3694 | [[package]]
3695 | name = "time-core"
3696 | version = "0.1.2"
3697 | source = "registry+https://github.com/rust-lang/crates.io-index"
3698 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3699 |
3700 | [[package]]
3701 | name = "time-macros"
3702 | version = "0.2.16"
3703 | source = "registry+https://github.com/rust-lang/crates.io-index"
3704 | checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
3705 | dependencies = [
3706 | "time-core",
3707 | ]
3708 |
3709 | [[package]]
3710 | name = "tinyvec"
3711 | version = "1.6.0"
3712 | source = "registry+https://github.com/rust-lang/crates.io-index"
3713 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3714 | dependencies = [
3715 | "tinyvec_macros",
3716 | ]
3717 |
3718 | [[package]]
3719 | name = "tinyvec_macros"
3720 | version = "0.1.0"
3721 | source = "registry+https://github.com/rust-lang/crates.io-index"
3722 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
3723 |
3724 | [[package]]
3725 | name = "tokio"
3726 | version = "1.29.1"
3727 | source = "registry+https://github.com/rust-lang/crates.io-index"
3728 | checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
3729 | dependencies = [
3730 | "autocfg",
3731 | "backtrace",
3732 | "bytes",
3733 | "libc",
3734 | "mio",
3735 | "num_cpus",
3736 | "pin-project-lite",
3737 | "socket2 0.4.10",
3738 | "windows-sys 0.48.0",
3739 | ]
3740 |
3741 | [[package]]
3742 | name = "tokio-native-tls"
3743 | version = "0.3.1"
3744 | source = "registry+https://github.com/rust-lang/crates.io-index"
3745 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3746 | dependencies = [
3747 | "native-tls",
3748 | "tokio",
3749 | ]
3750 |
3751 | [[package]]
3752 | name = "tokio-util"
3753 | version = "0.7.8"
3754 | source = "registry+https://github.com/rust-lang/crates.io-index"
3755 | checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
3756 | dependencies = [
3757 | "bytes",
3758 | "futures-core",
3759 | "futures-sink",
3760 | "pin-project-lite",
3761 | "tokio",
3762 | "tracing",
3763 | ]
3764 |
3765 | [[package]]
3766 | name = "toml"
3767 | version = "0.5.9"
3768 | source = "registry+https://github.com/rust-lang/crates.io-index"
3769 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
3770 | dependencies = [
3771 | "serde",
3772 | ]
3773 |
3774 | [[package]]
3775 | name = "toml"
3776 | version = "0.7.8"
3777 | source = "registry+https://github.com/rust-lang/crates.io-index"
3778 | checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
3779 | dependencies = [
3780 | "serde",
3781 | "serde_spanned",
3782 | "toml_datetime",
3783 | "toml_edit 0.19.15",
3784 | ]
3785 |
3786 | [[package]]
3787 | name = "toml"
3788 | version = "0.8.8"
3789 | source = "registry+https://github.com/rust-lang/crates.io-index"
3790 | checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
3791 | dependencies = [
3792 | "serde",
3793 | "serde_spanned",
3794 | "toml_datetime",
3795 | "toml_edit 0.21.0",
3796 | ]
3797 |
3798 | [[package]]
3799 | name = "toml_datetime"
3800 | version = "0.6.5"
3801 | source = "registry+https://github.com/rust-lang/crates.io-index"
3802 | checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
3803 | dependencies = [
3804 | "serde",
3805 | ]
3806 |
3807 | [[package]]
3808 | name = "toml_edit"
3809 | version = "0.19.15"
3810 | source = "registry+https://github.com/rust-lang/crates.io-index"
3811 | checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
3812 | dependencies = [
3813 | "indexmap 2.1.0",
3814 | "serde",
3815 | "serde_spanned",
3816 | "toml_datetime",
3817 | "winnow",
3818 | ]
3819 |
3820 | [[package]]
3821 | name = "toml_edit"
3822 | version = "0.21.0"
3823 | source = "registry+https://github.com/rust-lang/crates.io-index"
3824 | checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
3825 | dependencies = [
3826 | "indexmap 2.1.0",
3827 | "serde",
3828 | "serde_spanned",
3829 | "toml_datetime",
3830 | "winnow",
3831 | ]
3832 |
3833 | [[package]]
3834 | name = "tower-service"
3835 | version = "0.3.2"
3836 | source = "registry+https://github.com/rust-lang/crates.io-index"
3837 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3838 |
3839 | [[package]]
3840 | name = "tracing"
3841 | version = "0.1.34"
3842 | source = "registry+https://github.com/rust-lang/crates.io-index"
3843 | checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
3844 | dependencies = [
3845 | "cfg-if",
3846 | "pin-project-lite",
3847 | "tracing-attributes",
3848 | "tracing-core",
3849 | ]
3850 |
3851 | [[package]]
3852 | name = "tracing-attributes"
3853 | version = "0.1.21"
3854 | source = "registry+https://github.com/rust-lang/crates.io-index"
3855 | checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
3856 | dependencies = [
3857 | "proc-macro2",
3858 | "quote",
3859 | "syn 1.0.95",
3860 | ]
3861 |
3862 | [[package]]
3863 | name = "tracing-core"
3864 | version = "0.1.26"
3865 | source = "registry+https://github.com/rust-lang/crates.io-index"
3866 | checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
3867 | dependencies = [
3868 | "lazy_static",
3869 | "valuable",
3870 | ]
3871 |
3872 | [[package]]
3873 | name = "tracing-log"
3874 | version = "0.1.3"
3875 | source = "registry+https://github.com/rust-lang/crates.io-index"
3876 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
3877 | dependencies = [
3878 | "lazy_static",
3879 | "log",
3880 | "tracing-core",
3881 | ]
3882 |
3883 | [[package]]
3884 | name = "tracing-subscriber"
3885 | version = "0.3.11"
3886 | source = "registry+https://github.com/rust-lang/crates.io-index"
3887 | checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596"
3888 | dependencies = [
3889 | "ansi_term",
3890 | "lazy_static",
3891 | "matchers",
3892 | "regex",
3893 | "sharded-slab",
3894 | "smallvec",
3895 | "thread_local",
3896 | "tracing",
3897 | "tracing-core",
3898 | "tracing-log",
3899 | ]
3900 |
3901 | [[package]]
3902 | name = "treediff"
3903 | version = "4.0.2"
3904 | source = "registry+https://github.com/rust-lang/crates.io-index"
3905 | checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303"
3906 | dependencies = [
3907 | "serde_json",
3908 | ]
3909 |
3910 | [[package]]
3911 | name = "try-lock"
3912 | version = "0.2.5"
3913 | source = "registry+https://github.com/rust-lang/crates.io-index"
3914 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3915 |
3916 | [[package]]
3917 | name = "typenum"
3918 | version = "1.15.0"
3919 | source = "registry+https://github.com/rust-lang/crates.io-index"
3920 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
3921 |
3922 | [[package]]
3923 | name = "ucd-trie"
3924 | version = "0.1.3"
3925 | source = "registry+https://github.com/rust-lang/crates.io-index"
3926 | checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
3927 |
3928 | [[package]]
3929 | name = "uds_windows"
3930 | version = "1.1.0"
3931 | source = "registry+https://github.com/rust-lang/crates.io-index"
3932 | checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
3933 | dependencies = [
3934 | "memoffset 0.9.0",
3935 | "tempfile",
3936 | "winapi",
3937 | ]
3938 |
3939 | [[package]]
3940 | name = "unicode-bidi"
3941 | version = "0.3.8"
3942 | source = "registry+https://github.com/rust-lang/crates.io-index"
3943 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
3944 |
3945 | [[package]]
3946 | name = "unicode-ident"
3947 | version = "1.0.0"
3948 | source = "registry+https://github.com/rust-lang/crates.io-index"
3949 | checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
3950 |
3951 | [[package]]
3952 | name = "unicode-normalization"
3953 | version = "0.1.19"
3954 | source = "registry+https://github.com/rust-lang/crates.io-index"
3955 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
3956 | dependencies = [
3957 | "tinyvec",
3958 | ]
3959 |
3960 | [[package]]
3961 | name = "unicode-segmentation"
3962 | version = "1.10.1"
3963 | source = "registry+https://github.com/rust-lang/crates.io-index"
3964 | checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
3965 |
3966 | [[package]]
3967 | name = "url"
3968 | version = "2.3.0"
3969 | source = "registry+https://github.com/rust-lang/crates.io-index"
3970 | checksum = "22fe195a4f217c25b25cb5058ced57059824a678474874038dc88d211bf508d3"
3971 | dependencies = [
3972 | "form_urlencoded",
3973 | "idna",
3974 | "percent-encoding",
3975 | "serde",
3976 | ]
3977 |
3978 | [[package]]
3979 | name = "utf-8"
3980 | version = "0.7.6"
3981 | source = "registry+https://github.com/rust-lang/crates.io-index"
3982 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3983 |
3984 | [[package]]
3985 | name = "uuid"
3986 | version = "1.6.1"
3987 | source = "registry+https://github.com/rust-lang/crates.io-index"
3988 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
3989 | dependencies = [
3990 | "getrandom 0.2.6",
3991 | ]
3992 |
3993 | [[package]]
3994 | name = "valuable"
3995 | version = "0.1.0"
3996 | source = "registry+https://github.com/rust-lang/crates.io-index"
3997 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3998 |
3999 | [[package]]
4000 | name = "vcpkg"
4001 | version = "0.2.15"
4002 | source = "registry+https://github.com/rust-lang/crates.io-index"
4003 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4004 |
4005 | [[package]]
4006 | name = "version-compare"
4007 | version = "0.0.11"
4008 | source = "registry+https://github.com/rust-lang/crates.io-index"
4009 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
4010 |
4011 | [[package]]
4012 | name = "version-compare"
4013 | version = "0.1.0"
4014 | source = "registry+https://github.com/rust-lang/crates.io-index"
4015 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
4016 |
4017 | [[package]]
4018 | name = "version_check"
4019 | version = "0.9.4"
4020 | source = "registry+https://github.com/rust-lang/crates.io-index"
4021 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
4022 |
4023 | [[package]]
4024 | name = "vswhom"
4025 | version = "0.1.0"
4026 | source = "registry+https://github.com/rust-lang/crates.io-index"
4027 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
4028 | dependencies = [
4029 | "libc",
4030 | "vswhom-sys",
4031 | ]
4032 |
4033 | [[package]]
4034 | name = "vswhom-sys"
4035 | version = "0.1.2"
4036 | source = "registry+https://github.com/rust-lang/crates.io-index"
4037 | checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
4038 | dependencies = [
4039 | "cc",
4040 | "libc",
4041 | ]
4042 |
4043 | [[package]]
4044 | name = "waker-fn"
4045 | version = "1.1.1"
4046 | source = "registry+https://github.com/rust-lang/crates.io-index"
4047 | checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
4048 |
4049 | [[package]]
4050 | name = "walkdir"
4051 | version = "2.3.2"
4052 | source = "registry+https://github.com/rust-lang/crates.io-index"
4053 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
4054 | dependencies = [
4055 | "same-file",
4056 | "winapi",
4057 | "winapi-util",
4058 | ]
4059 |
4060 | [[package]]
4061 | name = "want"
4062 | version = "0.3.1"
4063 | source = "registry+https://github.com/rust-lang/crates.io-index"
4064 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4065 | dependencies = [
4066 | "try-lock",
4067 | ]
4068 |
4069 | [[package]]
4070 | name = "wasi"
4071 | version = "0.9.0+wasi-snapshot-preview1"
4072 | source = "registry+https://github.com/rust-lang/crates.io-index"
4073 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
4074 |
4075 | [[package]]
4076 | name = "wasi"
4077 | version = "0.10.2+wasi-snapshot-preview1"
4078 | source = "registry+https://github.com/rust-lang/crates.io-index"
4079 | checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
4080 |
4081 | [[package]]
4082 | name = "wasi"
4083 | version = "0.11.0+wasi-snapshot-preview1"
4084 | source = "registry+https://github.com/rust-lang/crates.io-index"
4085 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4086 |
4087 | [[package]]
4088 | name = "wasm-bindgen"
4089 | version = "0.2.80"
4090 | source = "registry+https://github.com/rust-lang/crates.io-index"
4091 | checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
4092 | dependencies = [
4093 | "cfg-if",
4094 | "wasm-bindgen-macro",
4095 | ]
4096 |
4097 | [[package]]
4098 | name = "wasm-bindgen-backend"
4099 | version = "0.2.80"
4100 | source = "registry+https://github.com/rust-lang/crates.io-index"
4101 | checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
4102 | dependencies = [
4103 | "bumpalo",
4104 | "lazy_static",
4105 | "log",
4106 | "proc-macro2",
4107 | "quote",
4108 | "syn 1.0.95",
4109 | "wasm-bindgen-shared",
4110 | ]
4111 |
4112 | [[package]]
4113 | name = "wasm-bindgen-futures"
4114 | version = "0.4.30"
4115 | source = "registry+https://github.com/rust-lang/crates.io-index"
4116 | checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
4117 | dependencies = [
4118 | "cfg-if",
4119 | "js-sys",
4120 | "wasm-bindgen",
4121 | "web-sys",
4122 | ]
4123 |
4124 | [[package]]
4125 | name = "wasm-bindgen-macro"
4126 | version = "0.2.80"
4127 | source = "registry+https://github.com/rust-lang/crates.io-index"
4128 | checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
4129 | dependencies = [
4130 | "quote",
4131 | "wasm-bindgen-macro-support",
4132 | ]
4133 |
4134 | [[package]]
4135 | name = "wasm-bindgen-macro-support"
4136 | version = "0.2.80"
4137 | source = "registry+https://github.com/rust-lang/crates.io-index"
4138 | checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
4139 | dependencies = [
4140 | "proc-macro2",
4141 | "quote",
4142 | "syn 1.0.95",
4143 | "wasm-bindgen-backend",
4144 | "wasm-bindgen-shared",
4145 | ]
4146 |
4147 | [[package]]
4148 | name = "wasm-bindgen-shared"
4149 | version = "0.2.80"
4150 | source = "registry+https://github.com/rust-lang/crates.io-index"
4151 | checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
4152 |
4153 | [[package]]
4154 | name = "wasm-streams"
4155 | version = "0.3.0"
4156 | source = "registry+https://github.com/rust-lang/crates.io-index"
4157 | checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
4158 | dependencies = [
4159 | "futures-util",
4160 | "js-sys",
4161 | "wasm-bindgen",
4162 | "wasm-bindgen-futures",
4163 | "web-sys",
4164 | ]
4165 |
4166 | [[package]]
4167 | name = "web-sys"
4168 | version = "0.3.57"
4169 | source = "registry+https://github.com/rust-lang/crates.io-index"
4170 | checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
4171 | dependencies = [
4172 | "js-sys",
4173 | "wasm-bindgen",
4174 | ]
4175 |
4176 | [[package]]
4177 | name = "webkit2gtk"
4178 | version = "0.18.2"
4179 | source = "registry+https://github.com/rust-lang/crates.io-index"
4180 | checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
4181 | dependencies = [
4182 | "bitflags",
4183 | "cairo-rs",
4184 | "gdk",
4185 | "gdk-sys",
4186 | "gio",
4187 | "gio-sys",
4188 | "glib",
4189 | "glib-sys",
4190 | "gobject-sys",
4191 | "gtk",
4192 | "gtk-sys",
4193 | "javascriptcore-rs",
4194 | "libc",
4195 | "once_cell",
4196 | "soup2",
4197 | "webkit2gtk-sys",
4198 | ]
4199 |
4200 | [[package]]
4201 | name = "webkit2gtk-sys"
4202 | version = "0.18.0"
4203 | source = "registry+https://github.com/rust-lang/crates.io-index"
4204 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
4205 | dependencies = [
4206 | "atk-sys",
4207 | "bitflags",
4208 | "cairo-sys-rs",
4209 | "gdk-pixbuf-sys",
4210 | "gdk-sys",
4211 | "gio-sys",
4212 | "glib-sys",
4213 | "gobject-sys",
4214 | "gtk-sys",
4215 | "javascriptcore-rs-sys",
4216 | "libc",
4217 | "pango-sys",
4218 | "pkg-config",
4219 | "soup2-sys",
4220 | "system-deps 6.0.2",
4221 | ]
4222 |
4223 | [[package]]
4224 | name = "webview2-com"
4225 | version = "0.19.1"
4226 | source = "registry+https://github.com/rust-lang/crates.io-index"
4227 | checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
4228 | dependencies = [
4229 | "webview2-com-macros",
4230 | "webview2-com-sys",
4231 | "windows 0.39.0",
4232 | "windows-implement",
4233 | ]
4234 |
4235 | [[package]]
4236 | name = "webview2-com-macros"
4237 | version = "0.6.0"
4238 | source = "registry+https://github.com/rust-lang/crates.io-index"
4239 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
4240 | dependencies = [
4241 | "proc-macro2",
4242 | "quote",
4243 | "syn 1.0.95",
4244 | ]
4245 |
4246 | [[package]]
4247 | name = "webview2-com-sys"
4248 | version = "0.19.0"
4249 | source = "registry+https://github.com/rust-lang/crates.io-index"
4250 | checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7"
4251 | dependencies = [
4252 | "regex",
4253 | "serde",
4254 | "serde_json",
4255 | "thiserror",
4256 | "windows 0.39.0",
4257 | "windows-bindgen",
4258 | "windows-metadata",
4259 | ]
4260 |
4261 | [[package]]
4262 | name = "weezl"
4263 | version = "0.1.7"
4264 | source = "registry+https://github.com/rust-lang/crates.io-index"
4265 | checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
4266 |
4267 | [[package]]
4268 | name = "wepoll-ffi"
4269 | version = "0.1.2"
4270 | source = "registry+https://github.com/rust-lang/crates.io-index"
4271 | checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
4272 | dependencies = [
4273 | "cc",
4274 | ]
4275 |
4276 | [[package]]
4277 | name = "winapi"
4278 | version = "0.3.9"
4279 | source = "registry+https://github.com/rust-lang/crates.io-index"
4280 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4281 | dependencies = [
4282 | "winapi-i686-pc-windows-gnu",
4283 | "winapi-x86_64-pc-windows-gnu",
4284 | ]
4285 |
4286 | [[package]]
4287 | name = "winapi-i686-pc-windows-gnu"
4288 | version = "0.4.0"
4289 | source = "registry+https://github.com/rust-lang/crates.io-index"
4290 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4291 |
4292 | [[package]]
4293 | name = "winapi-util"
4294 | version = "0.1.5"
4295 | source = "registry+https://github.com/rust-lang/crates.io-index"
4296 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
4297 | dependencies = [
4298 | "winapi",
4299 | ]
4300 |
4301 | [[package]]
4302 | name = "winapi-wsapoll"
4303 | version = "0.1.1"
4304 | source = "registry+https://github.com/rust-lang/crates.io-index"
4305 | checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e"
4306 | dependencies = [
4307 | "winapi",
4308 | ]
4309 |
4310 | [[package]]
4311 | name = "winapi-x86_64-pc-windows-gnu"
4312 | version = "0.4.0"
4313 | source = "registry+https://github.com/rust-lang/crates.io-index"
4314 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4315 |
4316 | [[package]]
4317 | name = "windows"
4318 | version = "0.24.0"
4319 | source = "registry+https://github.com/rust-lang/crates.io-index"
4320 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944"
4321 | dependencies = [
4322 | "windows_i686_gnu 0.24.0",
4323 | "windows_i686_msvc 0.24.0",
4324 | "windows_x86_64_gnu 0.24.0",
4325 | "windows_x86_64_msvc 0.24.0",
4326 | ]
4327 |
4328 | [[package]]
4329 | name = "windows"
4330 | version = "0.37.0"
4331 | source = "registry+https://github.com/rust-lang/crates.io-index"
4332 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647"
4333 | dependencies = [
4334 | "windows_aarch64_msvc 0.37.0",
4335 | "windows_i686_gnu 0.37.0",
4336 | "windows_i686_msvc 0.37.0",
4337 | "windows_x86_64_gnu 0.37.0",
4338 | "windows_x86_64_msvc 0.37.0",
4339 | ]
4340 |
4341 | [[package]]
4342 | name = "windows"
4343 | version = "0.39.0"
4344 | source = "registry+https://github.com/rust-lang/crates.io-index"
4345 | checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
4346 | dependencies = [
4347 | "windows-implement",
4348 | "windows_aarch64_msvc 0.39.0",
4349 | "windows_i686_gnu 0.39.0",
4350 | "windows_i686_msvc 0.39.0",
4351 | "windows_x86_64_gnu 0.39.0",
4352 | "windows_x86_64_msvc 0.39.0",
4353 | ]
4354 |
4355 | [[package]]
4356 | name = "windows-bindgen"
4357 | version = "0.39.0"
4358 | source = "registry+https://github.com/rust-lang/crates.io-index"
4359 | checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41"
4360 | dependencies = [
4361 | "windows-metadata",
4362 | "windows-tokens",
4363 | ]
4364 |
4365 | [[package]]
4366 | name = "windows-core"
4367 | version = "0.52.0"
4368 | source = "registry+https://github.com/rust-lang/crates.io-index"
4369 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
4370 | dependencies = [
4371 | "windows-targets 0.52.0",
4372 | ]
4373 |
4374 | [[package]]
4375 | name = "windows-implement"
4376 | version = "0.39.0"
4377 | source = "registry+https://github.com/rust-lang/crates.io-index"
4378 | checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
4379 | dependencies = [
4380 | "syn 1.0.95",
4381 | "windows-tokens",
4382 | ]
4383 |
4384 | [[package]]
4385 | name = "windows-metadata"
4386 | version = "0.39.0"
4387 | source = "registry+https://github.com/rust-lang/crates.io-index"
4388 | checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
4389 |
4390 | [[package]]
4391 | name = "windows-sys"
4392 | version = "0.36.1"
4393 | source = "registry+https://github.com/rust-lang/crates.io-index"
4394 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
4395 | dependencies = [
4396 | "windows_aarch64_msvc 0.36.1",
4397 | "windows_i686_gnu 0.36.1",
4398 | "windows_i686_msvc 0.36.1",
4399 | "windows_x86_64_gnu 0.36.1",
4400 | "windows_x86_64_msvc 0.36.1",
4401 | ]
4402 |
4403 | [[package]]
4404 | name = "windows-sys"
4405 | version = "0.42.0"
4406 | source = "registry+https://github.com/rust-lang/crates.io-index"
4407 | checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
4408 | dependencies = [
4409 | "windows_aarch64_gnullvm 0.42.2",
4410 | "windows_aarch64_msvc 0.42.2",
4411 | "windows_i686_gnu 0.42.2",
4412 | "windows_i686_msvc 0.42.2",
4413 | "windows_x86_64_gnu 0.42.2",
4414 | "windows_x86_64_gnullvm 0.42.2",
4415 | "windows_x86_64_msvc 0.42.2",
4416 | ]
4417 |
4418 | [[package]]
4419 | name = "windows-sys"
4420 | version = "0.45.0"
4421 | source = "registry+https://github.com/rust-lang/crates.io-index"
4422 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4423 | dependencies = [
4424 | "windows-targets 0.42.2",
4425 | ]
4426 |
4427 | [[package]]
4428 | name = "windows-sys"
4429 | version = "0.48.0"
4430 | source = "registry+https://github.com/rust-lang/crates.io-index"
4431 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4432 | dependencies = [
4433 | "windows-targets 0.48.5",
4434 | ]
4435 |
4436 | [[package]]
4437 | name = "windows-targets"
4438 | version = "0.42.2"
4439 | source = "registry+https://github.com/rust-lang/crates.io-index"
4440 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4441 | dependencies = [
4442 | "windows_aarch64_gnullvm 0.42.2",
4443 | "windows_aarch64_msvc 0.42.2",
4444 | "windows_i686_gnu 0.42.2",
4445 | "windows_i686_msvc 0.42.2",
4446 | "windows_x86_64_gnu 0.42.2",
4447 | "windows_x86_64_gnullvm 0.42.2",
4448 | "windows_x86_64_msvc 0.42.2",
4449 | ]
4450 |
4451 | [[package]]
4452 | name = "windows-targets"
4453 | version = "0.48.5"
4454 | source = "registry+https://github.com/rust-lang/crates.io-index"
4455 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4456 | dependencies = [
4457 | "windows_aarch64_gnullvm 0.48.5",
4458 | "windows_aarch64_msvc 0.48.5",
4459 | "windows_i686_gnu 0.48.5",
4460 | "windows_i686_msvc 0.48.5",
4461 | "windows_x86_64_gnu 0.48.5",
4462 | "windows_x86_64_gnullvm 0.48.5",
4463 | "windows_x86_64_msvc 0.48.5",
4464 | ]
4465 |
4466 | [[package]]
4467 | name = "windows-targets"
4468 | version = "0.52.0"
4469 | source = "registry+https://github.com/rust-lang/crates.io-index"
4470 | checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
4471 | dependencies = [
4472 | "windows_aarch64_gnullvm 0.52.0",
4473 | "windows_aarch64_msvc 0.52.0",
4474 | "windows_i686_gnu 0.52.0",
4475 | "windows_i686_msvc 0.52.0",
4476 | "windows_x86_64_gnu 0.52.0",
4477 | "windows_x86_64_gnullvm 0.52.0",
4478 | "windows_x86_64_msvc 0.52.0",
4479 | ]
4480 |
4481 | [[package]]
4482 | name = "windows-tokens"
4483 | version = "0.39.0"
4484 | source = "registry+https://github.com/rust-lang/crates.io-index"
4485 | checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
4486 |
4487 | [[package]]
4488 | name = "windows-version"
4489 | version = "0.1.0"
4490 | source = "registry+https://github.com/rust-lang/crates.io-index"
4491 | checksum = "75aa004c988e080ad34aff5739c39d0312f4684699d6d71fc8a198d057b8b9b4"
4492 | dependencies = [
4493 | "windows-targets 0.52.0",
4494 | ]
4495 |
4496 | [[package]]
4497 | name = "windows_aarch64_gnullvm"
4498 | version = "0.42.2"
4499 | source = "registry+https://github.com/rust-lang/crates.io-index"
4500 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4501 |
4502 | [[package]]
4503 | name = "windows_aarch64_gnullvm"
4504 | version = "0.48.5"
4505 | source = "registry+https://github.com/rust-lang/crates.io-index"
4506 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4507 |
4508 | [[package]]
4509 | name = "windows_aarch64_gnullvm"
4510 | version = "0.52.0"
4511 | source = "registry+https://github.com/rust-lang/crates.io-index"
4512 | checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
4513 |
4514 | [[package]]
4515 | name = "windows_aarch64_msvc"
4516 | version = "0.36.1"
4517 | source = "registry+https://github.com/rust-lang/crates.io-index"
4518 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
4519 |
4520 | [[package]]
4521 | name = "windows_aarch64_msvc"
4522 | version = "0.37.0"
4523 | source = "registry+https://github.com/rust-lang/crates.io-index"
4524 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a"
4525 |
4526 | [[package]]
4527 | name = "windows_aarch64_msvc"
4528 | version = "0.39.0"
4529 | source = "registry+https://github.com/rust-lang/crates.io-index"
4530 | checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
4531 |
4532 | [[package]]
4533 | name = "windows_aarch64_msvc"
4534 | version = "0.42.2"
4535 | source = "registry+https://github.com/rust-lang/crates.io-index"
4536 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4537 |
4538 | [[package]]
4539 | name = "windows_aarch64_msvc"
4540 | version = "0.48.5"
4541 | source = "registry+https://github.com/rust-lang/crates.io-index"
4542 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4543 |
4544 | [[package]]
4545 | name = "windows_aarch64_msvc"
4546 | version = "0.52.0"
4547 | source = "registry+https://github.com/rust-lang/crates.io-index"
4548 | checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
4549 |
4550 | [[package]]
4551 | name = "windows_i686_gnu"
4552 | version = "0.24.0"
4553 | source = "registry+https://github.com/rust-lang/crates.io-index"
4554 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd"
4555 |
4556 | [[package]]
4557 | name = "windows_i686_gnu"
4558 | version = "0.36.1"
4559 | source = "registry+https://github.com/rust-lang/crates.io-index"
4560 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
4561 |
4562 | [[package]]
4563 | name = "windows_i686_gnu"
4564 | version = "0.37.0"
4565 | source = "registry+https://github.com/rust-lang/crates.io-index"
4566 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1"
4567 |
4568 | [[package]]
4569 | name = "windows_i686_gnu"
4570 | version = "0.39.0"
4571 | source = "registry+https://github.com/rust-lang/crates.io-index"
4572 | checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
4573 |
4574 | [[package]]
4575 | name = "windows_i686_gnu"
4576 | version = "0.42.2"
4577 | source = "registry+https://github.com/rust-lang/crates.io-index"
4578 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4579 |
4580 | [[package]]
4581 | name = "windows_i686_gnu"
4582 | version = "0.48.5"
4583 | source = "registry+https://github.com/rust-lang/crates.io-index"
4584 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4585 |
4586 | [[package]]
4587 | name = "windows_i686_gnu"
4588 | version = "0.52.0"
4589 | source = "registry+https://github.com/rust-lang/crates.io-index"
4590 | checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
4591 |
4592 | [[package]]
4593 | name = "windows_i686_msvc"
4594 | version = "0.24.0"
4595 | source = "registry+https://github.com/rust-lang/crates.io-index"
4596 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6"
4597 |
4598 | [[package]]
4599 | name = "windows_i686_msvc"
4600 | version = "0.36.1"
4601 | source = "registry+https://github.com/rust-lang/crates.io-index"
4602 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
4603 |
4604 | [[package]]
4605 | name = "windows_i686_msvc"
4606 | version = "0.37.0"
4607 | source = "registry+https://github.com/rust-lang/crates.io-index"
4608 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c"
4609 |
4610 | [[package]]
4611 | name = "windows_i686_msvc"
4612 | version = "0.39.0"
4613 | source = "registry+https://github.com/rust-lang/crates.io-index"
4614 | checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
4615 |
4616 | [[package]]
4617 | name = "windows_i686_msvc"
4618 | version = "0.42.2"
4619 | source = "registry+https://github.com/rust-lang/crates.io-index"
4620 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4621 |
4622 | [[package]]
4623 | name = "windows_i686_msvc"
4624 | version = "0.48.5"
4625 | source = "registry+https://github.com/rust-lang/crates.io-index"
4626 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4627 |
4628 | [[package]]
4629 | name = "windows_i686_msvc"
4630 | version = "0.52.0"
4631 | source = "registry+https://github.com/rust-lang/crates.io-index"
4632 | checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
4633 |
4634 | [[package]]
4635 | name = "windows_x86_64_gnu"
4636 | version = "0.24.0"
4637 | source = "registry+https://github.com/rust-lang/crates.io-index"
4638 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4"
4639 |
4640 | [[package]]
4641 | name = "windows_x86_64_gnu"
4642 | version = "0.36.1"
4643 | source = "registry+https://github.com/rust-lang/crates.io-index"
4644 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
4645 |
4646 | [[package]]
4647 | name = "windows_x86_64_gnu"
4648 | version = "0.37.0"
4649 | source = "registry+https://github.com/rust-lang/crates.io-index"
4650 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d"
4651 |
4652 | [[package]]
4653 | name = "windows_x86_64_gnu"
4654 | version = "0.39.0"
4655 | source = "registry+https://github.com/rust-lang/crates.io-index"
4656 | checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
4657 |
4658 | [[package]]
4659 | name = "windows_x86_64_gnu"
4660 | version = "0.42.2"
4661 | source = "registry+https://github.com/rust-lang/crates.io-index"
4662 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4663 |
4664 | [[package]]
4665 | name = "windows_x86_64_gnu"
4666 | version = "0.48.5"
4667 | source = "registry+https://github.com/rust-lang/crates.io-index"
4668 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4669 |
4670 | [[package]]
4671 | name = "windows_x86_64_gnu"
4672 | version = "0.52.0"
4673 | source = "registry+https://github.com/rust-lang/crates.io-index"
4674 | checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
4675 |
4676 | [[package]]
4677 | name = "windows_x86_64_gnullvm"
4678 | version = "0.42.2"
4679 | source = "registry+https://github.com/rust-lang/crates.io-index"
4680 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4681 |
4682 | [[package]]
4683 | name = "windows_x86_64_gnullvm"
4684 | version = "0.48.5"
4685 | source = "registry+https://github.com/rust-lang/crates.io-index"
4686 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4687 |
4688 | [[package]]
4689 | name = "windows_x86_64_gnullvm"
4690 | version = "0.52.0"
4691 | source = "registry+https://github.com/rust-lang/crates.io-index"
4692 | checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
4693 |
4694 | [[package]]
4695 | name = "windows_x86_64_msvc"
4696 | version = "0.24.0"
4697 | source = "registry+https://github.com/rust-lang/crates.io-index"
4698 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399"
4699 |
4700 | [[package]]
4701 | name = "windows_x86_64_msvc"
4702 | version = "0.36.1"
4703 | source = "registry+https://github.com/rust-lang/crates.io-index"
4704 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
4705 |
4706 | [[package]]
4707 | name = "windows_x86_64_msvc"
4708 | version = "0.37.0"
4709 | source = "registry+https://github.com/rust-lang/crates.io-index"
4710 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d"
4711 |
4712 | [[package]]
4713 | name = "windows_x86_64_msvc"
4714 | version = "0.39.0"
4715 | source = "registry+https://github.com/rust-lang/crates.io-index"
4716 | checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
4717 |
4718 | [[package]]
4719 | name = "windows_x86_64_msvc"
4720 | version = "0.42.2"
4721 | source = "registry+https://github.com/rust-lang/crates.io-index"
4722 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4723 |
4724 | [[package]]
4725 | name = "windows_x86_64_msvc"
4726 | version = "0.48.5"
4727 | source = "registry+https://github.com/rust-lang/crates.io-index"
4728 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4729 |
4730 | [[package]]
4731 | name = "windows_x86_64_msvc"
4732 | version = "0.52.0"
4733 | source = "registry+https://github.com/rust-lang/crates.io-index"
4734 | checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
4735 |
4736 | [[package]]
4737 | name = "winnow"
4738 | version = "0.5.32"
4739 | source = "registry+https://github.com/rust-lang/crates.io-index"
4740 | checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6"
4741 | dependencies = [
4742 | "memchr",
4743 | ]
4744 |
4745 | [[package]]
4746 | name = "winreg"
4747 | version = "0.50.0"
4748 | source = "registry+https://github.com/rust-lang/crates.io-index"
4749 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4750 | dependencies = [
4751 | "cfg-if",
4752 | "windows-sys 0.48.0",
4753 | ]
4754 |
4755 | [[package]]
4756 | name = "winreg"
4757 | version = "0.51.0"
4758 | source = "registry+https://github.com/rust-lang/crates.io-index"
4759 | checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
4760 | dependencies = [
4761 | "cfg-if",
4762 | "windows-sys 0.48.0",
4763 | ]
4764 |
4765 | [[package]]
4766 | name = "winrt-notification"
4767 | version = "0.5.1"
4768 | source = "registry+https://github.com/rust-lang/crates.io-index"
4769 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4"
4770 | dependencies = [
4771 | "strum",
4772 | "windows 0.24.0",
4773 | "xml-rs",
4774 | ]
4775 |
4776 | [[package]]
4777 | name = "wry"
4778 | version = "0.24.7"
4779 | source = "registry+https://github.com/rust-lang/crates.io-index"
4780 | checksum = "6ad85d0e067359e409fcb88903c3eac817c392e5d638258abfb3da5ad8ba6fc4"
4781 | dependencies = [
4782 | "base64 0.13.0",
4783 | "block",
4784 | "cocoa",
4785 | "core-graphics",
4786 | "crossbeam-channel",
4787 | "dunce",
4788 | "gdk",
4789 | "gio",
4790 | "glib",
4791 | "gtk",
4792 | "html5ever",
4793 | "http",
4794 | "kuchikiki",
4795 | "libc",
4796 | "log",
4797 | "objc",
4798 | "objc_id",
4799 | "once_cell",
4800 | "serde",
4801 | "serde_json",
4802 | "sha2",
4803 | "soup2",
4804 | "tao",
4805 | "thiserror",
4806 | "url",
4807 | "webkit2gtk",
4808 | "webkit2gtk-sys",
4809 | "webview2-com",
4810 | "windows 0.39.0",
4811 | "windows-implement",
4812 | ]
4813 |
4814 | [[package]]
4815 | name = "x11"
4816 | version = "2.19.1"
4817 | source = "registry+https://github.com/rust-lang/crates.io-index"
4818 | checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a"
4819 | dependencies = [
4820 | "libc",
4821 | "pkg-config",
4822 | ]
4823 |
4824 | [[package]]
4825 | name = "x11-dl"
4826 | version = "2.20.0"
4827 | source = "registry+https://github.com/rust-lang/crates.io-index"
4828 | checksum = "0c83627bc137605acc00bb399c7b908ef460b621fc37c953db2b09f88c449ea6"
4829 | dependencies = [
4830 | "lazy_static",
4831 | "libc",
4832 | "pkg-config",
4833 | ]
4834 |
4835 | [[package]]
4836 | name = "x11rb"
4837 | version = "0.12.0"
4838 | source = "registry+https://github.com/rust-lang/crates.io-index"
4839 | checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a"
4840 | dependencies = [
4841 | "gethostname",
4842 | "nix 0.26.4",
4843 | "winapi",
4844 | "winapi-wsapoll",
4845 | "x11rb-protocol",
4846 | ]
4847 |
4848 | [[package]]
4849 | name = "x11rb-protocol"
4850 | version = "0.12.0"
4851 | source = "registry+https://github.com/rust-lang/crates.io-index"
4852 | checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc"
4853 | dependencies = [
4854 | "nix 0.26.4",
4855 | ]
4856 |
4857 | [[package]]
4858 | name = "xattr"
4859 | version = "0.2.3"
4860 | source = "registry+https://github.com/rust-lang/crates.io-index"
4861 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
4862 | dependencies = [
4863 | "libc",
4864 | ]
4865 |
4866 | [[package]]
4867 | name = "xml-rs"
4868 | version = "0.8.4"
4869 | source = "registry+https://github.com/rust-lang/crates.io-index"
4870 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
4871 |
4872 | [[package]]
4873 | name = "zbus"
4874 | version = "2.3.2"
4875 | source = "registry+https://github.com/rust-lang/crates.io-index"
4876 | checksum = "2d8f1a037b2c4a67d9654dc7bdfa8ff2e80555bbefdd3c1833c1d1b27c963a6b"
4877 | dependencies = [
4878 | "async-broadcast",
4879 | "async-channel",
4880 | "async-executor",
4881 | "async-io",
4882 | "async-lock",
4883 | "async-recursion",
4884 | "async-task",
4885 | "async-trait",
4886 | "byteorder",
4887 | "derivative",
4888 | "dirs",
4889 | "enumflags2",
4890 | "event-listener",
4891 | "futures-core",
4892 | "futures-sink",
4893 | "futures-util",
4894 | "hex",
4895 | "lazy_static",
4896 | "nix 0.23.2",
4897 | "once_cell",
4898 | "ordered-stream",
4899 | "rand 0.8.5",
4900 | "serde",
4901 | "serde_repr",
4902 | "sha1",
4903 | "static_assertions",
4904 | "tracing",
4905 | "uds_windows",
4906 | "winapi",
4907 | "zbus_macros",
4908 | "zbus_names",
4909 | "zvariant",
4910 | ]
4911 |
4912 | [[package]]
4913 | name = "zbus_macros"
4914 | version = "2.3.2"
4915 | source = "registry+https://github.com/rust-lang/crates.io-index"
4916 | checksum = "1f8fb5186d1c87ae88cf234974c240671238b4a679158ad3b94ec465237349a6"
4917 | dependencies = [
4918 | "proc-macro-crate",
4919 | "proc-macro2",
4920 | "quote",
4921 | "regex",
4922 | "syn 1.0.95",
4923 | ]
4924 |
4925 | [[package]]
4926 | name = "zbus_names"
4927 | version = "2.2.0"
4928 | source = "registry+https://github.com/rust-lang/crates.io-index"
4929 | checksum = "41a408fd8a352695690f53906dc7fd036be924ec51ea5e05666ff42685ed0af5"
4930 | dependencies = [
4931 | "serde",
4932 | "static_assertions",
4933 | "zvariant",
4934 | ]
4935 |
4936 | [[package]]
4937 | name = "zvariant"
4938 | version = "3.7.1"
4939 | source = "registry+https://github.com/rust-lang/crates.io-index"
4940 | checksum = "b794fb7f59af4105697b0449ba31731ee5dbb3e773a17dbdf3d36206ea1b1644"
4941 | dependencies = [
4942 | "byteorder",
4943 | "enumflags2",
4944 | "libc",
4945 | "serde",
4946 | "static_assertions",
4947 | "zvariant_derive",
4948 | ]
4949 |
4950 | [[package]]
4951 | name = "zvariant_derive"
4952 | version = "3.7.1"
4953 | source = "registry+https://github.com/rust-lang/crates.io-index"
4954 | checksum = "dd58d4b6c8e26d3dd2149c8c40c6613ef6451b9885ff1296d1ac86c388351a54"
4955 | dependencies = [
4956 | "proc-macro-crate",
4957 | "proc-macro2",
4958 | "quote",
4959 | "syn 1.0.95",
4960 | ]
4961 |
--------------------------------------------------------------------------------