├── src
├── vite-env.d.ts
├── main.tsx
├── index.css
├── App.css
├── App.tsx
├── favicon.svg
└── logo.svg
├── src-tauri
├── build.rs
├── .gitignore
├── icons
│ ├── icon.ico
│ ├── icon.png
│ ├── 32x32.png
│ ├── icon.icns
│ ├── 128x128.png
│ ├── StoreLogo.png
│ ├── 128x128@2x.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
├── tsconfig.node.json
├── vite.config.ts
├── .gitignore
├── index.html
├── tsconfig.json
├── package.json
├── README.md
└── pnpm-lock.yaml
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/src-tauri/.gitignore:
--------------------------------------------------------------------------------
1 | # Generated by Cargo
2 | # will have compiled files and executables
3 | /target/
4 |
--------------------------------------------------------------------------------
/src-tauri/icons/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/icon.ico
--------------------------------------------------------------------------------
/src-tauri/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/icon.png
--------------------------------------------------------------------------------
/src-tauri/icons/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/32x32.png
--------------------------------------------------------------------------------
/src-tauri/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/icon.icns
--------------------------------------------------------------------------------
/src-tauri/icons/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/128x128.png
--------------------------------------------------------------------------------
/src-tauri/icons/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/StoreLogo.png
--------------------------------------------------------------------------------
/src-tauri/icons/128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/128x128@2x.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square30x30Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square30x30Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square44x44Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square71x71Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square89x89Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square89x89Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square107x107Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square107x107Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square142x142Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square142x142Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square150x150Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square284x284Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square284x284Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oSethoum/tauri-react-template/HEAD/src-tauri/icons/Square310x310Logo.png
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "module": "esnext",
5 | "moduleResolution": "node"
6 | },
7 | "include": ["vite.config.ts"]
8 | }
9 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from "vite";
2 | import react from "@vitejs/plugin-react";
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | server: {
8 | port: 3000,
9 | },
10 | });
11 |
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom/client'
3 | import App from './App'
4 | import './index.css'
5 |
6 | ReactDOM.createRoot(document.getElementById('root')!).render(
7 |
8 |
9 |
10 | )
11 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Vite App
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | }
9 |
10 | code {
11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 | monospace;
13 | }
14 |
--------------------------------------------------------------------------------
/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 | let context = tauri::generate_context!();
8 | tauri::Builder::default()
9 | .menu(if cfg!(target_os = "macos") {
10 | tauri::Menu::os_default(&context.package_info().name)
11 | } else {
12 | tauri::Menu::default()
13 | })
14 | .run(context)
15 | .expect("error while running tauri application");
16 | }
17 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ESNext",
4 | "useDefineForClassFields": true,
5 | "lib": ["DOM", "DOM.Iterable", "ESNext"],
6 | "allowJs": false,
7 | "skipLibCheck": true,
8 | "esModuleInterop": false,
9 | "allowSyntheticDefaultImports": true,
10 | "strict": true,
11 | "forceConsistentCasingInFileNames": true,
12 | "module": "ESNext",
13 | "moduleResolution": "Node",
14 | "resolveJsonModule": true,
15 | "isolatedModules": true,
16 | "noEmit": true,
17 | "jsx": "react-jsx"
18 | },
19 | "include": ["src"],
20 | "references": [{ "path": "./tsconfig.node.json" }]
21 | }
22 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tauri-react-template",
3 | "private": true,
4 | "version": "0.1.0",
5 | "scripts": {
6 | "dev": "vite",
7 | "build": "tsc && vite build",
8 | "preview": "vite preview",
9 | "tauri:dev": "tauri dev",
10 | "tauri:build": "tauri build"
11 | },
12 | "dependencies": {
13 | "@tauri-apps/api": "^1.0.2",
14 | "react": "^18.2.0",
15 | "react-dom": "^18.2.0"
16 | },
17 | "devDependencies": {
18 | "@tauri-apps/cli": "^1.0.5",
19 | "@types/react": "^18.0.17",
20 | "@types/react-dom": "^18.0.6",
21 | "@vitejs/plugin-react": "^2.0.1",
22 | "typescript": "^4.8.2",
23 | "vite": "^3.0.9"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 |
40 | button {
41 | font-size: calc(10px + 2vmin);
42 | }
43 |
--------------------------------------------------------------------------------
/src-tauri/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "app"
3 | version = "0.1.0"
4 | description = "A Tauri App"
5 | authors = ["you"]
6 | license = ""
7 | repository = ""
8 | default-run = "app"
9 | edition = "2021"
10 | rust-version = "1.57"
11 |
12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13 |
14 | [build-dependencies]
15 | tauri-build = { version = "1.0.2", features = [] }
16 |
17 | [dependencies]
18 | serde_json = "1.0"
19 | serde = { version = "1.0", features = ["derive"] }
20 | tauri = { version = "1.0.2", features = ["api-all"] }
21 |
22 | [features]
23 | # by default Tauri runs in production mode
24 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
25 | default = [ "custom-protocol" ]
26 | # this feature is used for production builds where `devPath` points to the filesystem
27 | # DO NOT remove this
28 | custom-protocol = [ "tauri/custom-protocol" ]
29 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React-tauri-vite-template
2 |
3 | Simple template to get started with react vite and tauri, note that it has typescript support also, ~~It enables the vite-plugin-tauri, to avoid ghost terminal issue~~.
4 |
5 | ## why ?
6 |
7 | Because it's fun.
8 |
9 | ## Requirements:
10 |
11 | [here](https://tauri.app/v1/guides/getting-started/prerequisites)
12 |
13 | ## Instructions
14 |
15 | 1- install dependencies
16 |
17 | ```sh
18 | #npm
19 | npm install
20 |
21 | #yarn
22 | yarn
23 | ```
24 |
25 | 2- Run the App in development mode:
26 |
27 | ```sh
28 | #npm
29 | npm run tauri:dev
30 |
31 | #yarn
32 | yarn tauri:dev
33 | ```
34 |
35 | note that the first run will take time as tauri download and compile dependencies.
36 |
37 | ## Production
38 |
39 | when you are happy with the results and ready to ship your useless app.
40 |
41 | run:
42 |
43 | ```sh
44 | #npm
45 | npm run tauri:build
46 |
47 | #yarn
48 | yarn tauri:build
49 | ```
50 |
51 | ## Note:
52 |
53 | tested on:
54 |
55 | - windows 10
56 |
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
1 | import { useState } from 'react'
2 | import logo from './logo.svg'
3 | import './App.css'
4 |
5 | function App() {
6 | const [count, setCount] = useState(0)
7 |
8 | return (
9 |
10 |
11 |
12 | Hello Vite + React!
13 |
14 |
17 |
18 |
19 | Edit App.tsx and save to test HMR updates.
20 |
21 |
22 |
28 | Learn React
29 |
30 | {' | '}
31 |
37 | Vite Docs
38 |
39 |
40 |
41 |
42 | )
43 | }
44 |
45 | export default App
46 |
--------------------------------------------------------------------------------
/src/favicon.svg:
--------------------------------------------------------------------------------
1 |
16 |
--------------------------------------------------------------------------------
/src-tauri/tauri.conf.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "../node_modules/@tauri-apps/cli/schema.json",
3 | "build": {
4 | "beforeBuildCommand": "pnpm build",
5 | "beforeDevCommand": "pnpm dev",
6 | "devPath": "http://localhost:3000",
7 | "distDir": "../dist"
8 | },
9 | "package": {
10 | "productName": "tauri-react-template",
11 | "version": "0.1.0"
12 | },
13 | "tauri": {
14 | "allowlist": {
15 | "all": true
16 | },
17 | "bundle": {
18 | "active": true,
19 | "category": "DeveloperTool",
20 | "copyright": "",
21 | "deb": {
22 | "depends": []
23 | },
24 | "externalBin": [],
25 | "icon": [
26 | "icons/32x32.png",
27 | "icons/128x128.png",
28 | "icons/128x128@2x.png",
29 | "icons/icon.icns",
30 | "icons/icon.ico"
31 | ],
32 | "identifier": "com.tarui-react-template.dev",
33 | "longDescription": "",
34 | "macOS": {
35 | "entitlements": null,
36 | "exceptionDomain": "",
37 | "frameworks": [],
38 | "providerShortName": null,
39 | "signingIdentity": null
40 | },
41 | "resources": [],
42 | "shortDescription": "",
43 | "targets": "all",
44 | "windows": {
45 | "certificateThumbprint": null,
46 | "digestAlgorithm": "sha256",
47 | "timestampUrl": ""
48 | }
49 | },
50 | "security": {
51 | "csp": null
52 | },
53 | "updater": {
54 | "active": false
55 | },
56 | "windows": [
57 | {
58 | "fullscreen": false,
59 | "height": 600,
60 | "resizable": true,
61 | "title": "tauri-react-template",
62 | "width": 800
63 | }
64 | ]
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/src/logo.svg:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: 5.4
2 |
3 | specifiers:
4 | '@tauri-apps/api': ^1.0.2
5 | '@tauri-apps/cli': ^1.0.5
6 | '@types/react': ^18.0.17
7 | '@types/react-dom': ^18.0.6
8 | '@vitejs/plugin-react': ^2.0.1
9 | react: ^18.2.0
10 | react-dom: ^18.2.0
11 | typescript: ^4.8.2
12 | vite: ^3.0.9
13 |
14 | dependencies:
15 | '@tauri-apps/api': 1.0.2
16 | react: 18.2.0
17 | react-dom: 18.2.0_react@18.2.0
18 |
19 | devDependencies:
20 | '@tauri-apps/cli': 1.0.5
21 | '@types/react': 18.0.17
22 | '@types/react-dom': 18.0.6
23 | '@vitejs/plugin-react': 2.0.1_vite@3.0.9
24 | typescript: 4.8.2
25 | vite: 3.0.9
26 |
27 | packages:
28 |
29 | /@ampproject/remapping/2.2.0:
30 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
31 | engines: {node: '>=6.0.0'}
32 | dependencies:
33 | '@jridgewell/gen-mapping': 0.1.1
34 | '@jridgewell/trace-mapping': 0.3.15
35 | dev: true
36 |
37 | /@babel/code-frame/7.18.6:
38 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
39 | engines: {node: '>=6.9.0'}
40 | dependencies:
41 | '@babel/highlight': 7.18.6
42 | dev: true
43 |
44 | /@babel/compat-data/7.18.13:
45 | resolution: {integrity: sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==}
46 | engines: {node: '>=6.9.0'}
47 | dev: true
48 |
49 | /@babel/core/7.18.13:
50 | resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==}
51 | engines: {node: '>=6.9.0'}
52 | dependencies:
53 | '@ampproject/remapping': 2.2.0
54 | '@babel/code-frame': 7.18.6
55 | '@babel/generator': 7.18.13
56 | '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
57 | '@babel/helper-module-transforms': 7.18.9
58 | '@babel/helpers': 7.18.9
59 | '@babel/parser': 7.18.13
60 | '@babel/template': 7.18.10
61 | '@babel/traverse': 7.18.13
62 | '@babel/types': 7.18.13
63 | convert-source-map: 1.8.0
64 | debug: 4.3.4
65 | gensync: 1.0.0-beta.2
66 | json5: 2.2.1
67 | semver: 6.3.0
68 | transitivePeerDependencies:
69 | - supports-color
70 | dev: true
71 |
72 | /@babel/generator/7.18.13:
73 | resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==}
74 | engines: {node: '>=6.9.0'}
75 | dependencies:
76 | '@babel/types': 7.18.13
77 | '@jridgewell/gen-mapping': 0.3.2
78 | jsesc: 2.5.2
79 | dev: true
80 |
81 | /@babel/helper-annotate-as-pure/7.18.6:
82 | resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
83 | engines: {node: '>=6.9.0'}
84 | dependencies:
85 | '@babel/types': 7.18.13
86 | dev: true
87 |
88 | /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.13:
89 | resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
90 | engines: {node: '>=6.9.0'}
91 | peerDependencies:
92 | '@babel/core': ^7.0.0
93 | dependencies:
94 | '@babel/compat-data': 7.18.13
95 | '@babel/core': 7.18.13
96 | '@babel/helper-validator-option': 7.18.6
97 | browserslist: 4.21.3
98 | semver: 6.3.0
99 | dev: true
100 |
101 | /@babel/helper-environment-visitor/7.18.9:
102 | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
103 | engines: {node: '>=6.9.0'}
104 | dev: true
105 |
106 | /@babel/helper-function-name/7.18.9:
107 | resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
108 | engines: {node: '>=6.9.0'}
109 | dependencies:
110 | '@babel/template': 7.18.10
111 | '@babel/types': 7.18.13
112 | dev: true
113 |
114 | /@babel/helper-hoist-variables/7.18.6:
115 | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
116 | engines: {node: '>=6.9.0'}
117 | dependencies:
118 | '@babel/types': 7.18.13
119 | dev: true
120 |
121 | /@babel/helper-module-imports/7.18.6:
122 | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
123 | engines: {node: '>=6.9.0'}
124 | dependencies:
125 | '@babel/types': 7.18.13
126 | dev: true
127 |
128 | /@babel/helper-module-transforms/7.18.9:
129 | resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
130 | engines: {node: '>=6.9.0'}
131 | dependencies:
132 | '@babel/helper-environment-visitor': 7.18.9
133 | '@babel/helper-module-imports': 7.18.6
134 | '@babel/helper-simple-access': 7.18.6
135 | '@babel/helper-split-export-declaration': 7.18.6
136 | '@babel/helper-validator-identifier': 7.18.6
137 | '@babel/template': 7.18.10
138 | '@babel/traverse': 7.18.13
139 | '@babel/types': 7.18.13
140 | transitivePeerDependencies:
141 | - supports-color
142 | dev: true
143 |
144 | /@babel/helper-plugin-utils/7.18.9:
145 | resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
146 | engines: {node: '>=6.9.0'}
147 | dev: true
148 |
149 | /@babel/helper-simple-access/7.18.6:
150 | resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
151 | engines: {node: '>=6.9.0'}
152 | dependencies:
153 | '@babel/types': 7.18.13
154 | dev: true
155 |
156 | /@babel/helper-split-export-declaration/7.18.6:
157 | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
158 | engines: {node: '>=6.9.0'}
159 | dependencies:
160 | '@babel/types': 7.18.13
161 | dev: true
162 |
163 | /@babel/helper-string-parser/7.18.10:
164 | resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
165 | engines: {node: '>=6.9.0'}
166 | dev: true
167 |
168 | /@babel/helper-validator-identifier/7.18.6:
169 | resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
170 | engines: {node: '>=6.9.0'}
171 | dev: true
172 |
173 | /@babel/helper-validator-option/7.18.6:
174 | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
175 | engines: {node: '>=6.9.0'}
176 | dev: true
177 |
178 | /@babel/helpers/7.18.9:
179 | resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
180 | engines: {node: '>=6.9.0'}
181 | dependencies:
182 | '@babel/template': 7.18.10
183 | '@babel/traverse': 7.18.13
184 | '@babel/types': 7.18.13
185 | transitivePeerDependencies:
186 | - supports-color
187 | dev: true
188 |
189 | /@babel/highlight/7.18.6:
190 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
191 | engines: {node: '>=6.9.0'}
192 | dependencies:
193 | '@babel/helper-validator-identifier': 7.18.6
194 | chalk: 2.4.2
195 | js-tokens: 4.0.0
196 | dev: true
197 |
198 | /@babel/parser/7.18.13:
199 | resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==}
200 | engines: {node: '>=6.0.0'}
201 | hasBin: true
202 | dependencies:
203 | '@babel/types': 7.18.13
204 | dev: true
205 |
206 | /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.13:
207 | resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
208 | engines: {node: '>=6.9.0'}
209 | peerDependencies:
210 | '@babel/core': ^7.0.0-0
211 | dependencies:
212 | '@babel/core': 7.18.13
213 | '@babel/helper-plugin-utils': 7.18.9
214 | dev: true
215 |
216 | /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.13:
217 | resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
218 | engines: {node: '>=6.9.0'}
219 | peerDependencies:
220 | '@babel/core': ^7.0.0-0
221 | dependencies:
222 | '@babel/core': 7.18.13
223 | '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
224 | dev: true
225 |
226 | /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.13:
227 | resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
228 | engines: {node: '>=6.9.0'}
229 | peerDependencies:
230 | '@babel/core': ^7.0.0-0
231 | dependencies:
232 | '@babel/core': 7.18.13
233 | '@babel/helper-plugin-utils': 7.18.9
234 | dev: true
235 |
236 | /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.18.13:
237 | resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
238 | engines: {node: '>=6.9.0'}
239 | peerDependencies:
240 | '@babel/core': ^7.0.0-0
241 | dependencies:
242 | '@babel/core': 7.18.13
243 | '@babel/helper-plugin-utils': 7.18.9
244 | dev: true
245 |
246 | /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.13:
247 | resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==}
248 | engines: {node: '>=6.9.0'}
249 | peerDependencies:
250 | '@babel/core': ^7.0.0-0
251 | dependencies:
252 | '@babel/core': 7.18.13
253 | '@babel/helper-annotate-as-pure': 7.18.6
254 | '@babel/helper-module-imports': 7.18.6
255 | '@babel/helper-plugin-utils': 7.18.9
256 | '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13
257 | '@babel/types': 7.18.13
258 | dev: true
259 |
260 | /@babel/template/7.18.10:
261 | resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
262 | engines: {node: '>=6.9.0'}
263 | dependencies:
264 | '@babel/code-frame': 7.18.6
265 | '@babel/parser': 7.18.13
266 | '@babel/types': 7.18.13
267 | dev: true
268 |
269 | /@babel/traverse/7.18.13:
270 | resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==}
271 | engines: {node: '>=6.9.0'}
272 | dependencies:
273 | '@babel/code-frame': 7.18.6
274 | '@babel/generator': 7.18.13
275 | '@babel/helper-environment-visitor': 7.18.9
276 | '@babel/helper-function-name': 7.18.9
277 | '@babel/helper-hoist-variables': 7.18.6
278 | '@babel/helper-split-export-declaration': 7.18.6
279 | '@babel/parser': 7.18.13
280 | '@babel/types': 7.18.13
281 | debug: 4.3.4
282 | globals: 11.12.0
283 | transitivePeerDependencies:
284 | - supports-color
285 | dev: true
286 |
287 | /@babel/types/7.18.13:
288 | resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==}
289 | engines: {node: '>=6.9.0'}
290 | dependencies:
291 | '@babel/helper-string-parser': 7.18.10
292 | '@babel/helper-validator-identifier': 7.18.6
293 | to-fast-properties: 2.0.0
294 | dev: true
295 |
296 | /@esbuild/linux-loong64/0.14.54:
297 | resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
298 | engines: {node: '>=12'}
299 | cpu: [loong64]
300 | os: [linux]
301 | requiresBuild: true
302 | dev: true
303 | optional: true
304 |
305 | /@jridgewell/gen-mapping/0.1.1:
306 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
307 | engines: {node: '>=6.0.0'}
308 | dependencies:
309 | '@jridgewell/set-array': 1.1.2
310 | '@jridgewell/sourcemap-codec': 1.4.14
311 | dev: true
312 |
313 | /@jridgewell/gen-mapping/0.3.2:
314 | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
315 | engines: {node: '>=6.0.0'}
316 | dependencies:
317 | '@jridgewell/set-array': 1.1.2
318 | '@jridgewell/sourcemap-codec': 1.4.14
319 | '@jridgewell/trace-mapping': 0.3.15
320 | dev: true
321 |
322 | /@jridgewell/resolve-uri/3.1.0:
323 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
324 | engines: {node: '>=6.0.0'}
325 | dev: true
326 |
327 | /@jridgewell/set-array/1.1.2:
328 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
329 | engines: {node: '>=6.0.0'}
330 | dev: true
331 |
332 | /@jridgewell/sourcemap-codec/1.4.14:
333 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
334 | dev: true
335 |
336 | /@jridgewell/trace-mapping/0.3.15:
337 | resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==}
338 | dependencies:
339 | '@jridgewell/resolve-uri': 3.1.0
340 | '@jridgewell/sourcemap-codec': 1.4.14
341 | dev: true
342 |
343 | /@tauri-apps/api/1.0.2:
344 | resolution: {integrity: sha512-yuNW0oeJ1/ZA7wNF1KgxhHrSu5viPVzY/UgUczzN5ptLM8dH15Juy5rEGkoHfeXGju90Y/l22hi3BtIrp/za+w==}
345 | engines: {node: '>= 12.22.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'}
346 | dev: false
347 |
348 | /@tauri-apps/cli-darwin-arm64/1.0.5:
349 | resolution: {integrity: sha512-oxpFb9ZeMiC3xPUJ9NsXWCnnwFSVkPbJUvDKpc9IaoDIUpsMTV72W4P0Nh0uQRbyhx4modPpstt7+ONypNVYNg==}
350 | engines: {node: '>= 10'}
351 | cpu: [arm64]
352 | os: [darwin]
353 | requiresBuild: true
354 | dev: true
355 | optional: true
356 |
357 | /@tauri-apps/cli-darwin-x64/1.0.5:
358 | resolution: {integrity: sha512-hRNYC6L9edz2dEqK33tssPylF2ti6x6udidBlGWc5GSoeEb/05qKMEA1MESQYKBG+4q+wjJvACA2vvz6AfgJ3Q==}
359 | engines: {node: '>= 10'}
360 | cpu: [x64]
361 | os: [darwin]
362 | requiresBuild: true
363 | dev: true
364 | optional: true
365 |
366 | /@tauri-apps/cli-linux-arm-gnueabihf/1.0.5:
367 | resolution: {integrity: sha512-hc/Jp3TtFpxB8XVkLEwWy7MNcUBlS8rNCafQBUt4KSElXB+/oGo50jPO+wd5GSMSOR59UCzH08v11P0b+sAa/w==}
368 | engines: {node: '>= 10'}
369 | cpu: [arm]
370 | os: [linux]
371 | requiresBuild: true
372 | dev: true
373 | optional: true
374 |
375 | /@tauri-apps/cli-linux-arm64-gnu/1.0.5:
376 | resolution: {integrity: sha512-btFlkD2PG+yzJBZzWeJmyCy8ZV+iys2Jl66Fs4g9lSi3KrBDnyfQ26RpGZb2pRfkkcVP8/x1WSfByO+Rj+PTBA==}
377 | engines: {node: '>= 10'}
378 | cpu: [arm64]
379 | os: [linux]
380 | requiresBuild: true
381 | dev: true
382 | optional: true
383 |
384 | /@tauri-apps/cli-linux-arm64-musl/1.0.5:
385 | resolution: {integrity: sha512-p5JFdWab2AWhfgAZW/mgOLu+YiIJXKV0NdATGmdiBgQCMmz1k/FM8iOFApCgGbo3/zkR58cJ7Z7hyWmQ07M6Pw==}
386 | engines: {node: '>= 10'}
387 | cpu: [arm64]
388 | os: [linux]
389 | requiresBuild: true
390 | dev: true
391 | optional: true
392 |
393 | /@tauri-apps/cli-linux-x64-gnu/1.0.5:
394 | resolution: {integrity: sha512-fOXR635AXxwSO7MCfBhMLnGpcg1H83XGw9ocuyg4jjvtE8QoYPwC4ksfb5lLhDVMui9iIKY93NAK3EkQiSGGmQ==}
395 | engines: {node: '>= 10'}
396 | cpu: [x64]
397 | os: [linux]
398 | requiresBuild: true
399 | dev: true
400 | optional: true
401 |
402 | /@tauri-apps/cli-linux-x64-musl/1.0.5:
403 | resolution: {integrity: sha512-8be4zJVkuMs427JqONhFx5Ia5zWsQ5tbZXd80C3dHNL+5/3VIOK6nGQ0iijyZSLXiE9JKEH2jp1EHB+1TVJRcw==}
404 | engines: {node: '>= 10'}
405 | cpu: [x64]
406 | os: [linux]
407 | requiresBuild: true
408 | dev: true
409 | optional: true
410 |
411 | /@tauri-apps/cli-win32-ia32-msvc/1.0.5:
412 | resolution: {integrity: sha512-WpnIfzS1e4InGhvd1IDSKC3w6kbI5c6oJgMmtkMTBlhjhiZXhZmQF4XA784A5Y13pzsbXnbNJKOp8DuPVkoTRQ==}
413 | engines: {node: '>= 10'}
414 | cpu: [ia32]
415 | os: [win32]
416 | requiresBuild: true
417 | dev: true
418 | optional: true
419 |
420 | /@tauri-apps/cli-win32-x64-msvc/1.0.5:
421 | resolution: {integrity: sha512-8iEhVD3X4LZfrlxEPOV+mAj4QrJrEqKTICiJnwmgjvhYQOOsNHzg5kca7pcBbqcgorQOBydLpfGJtxWRusVPaw==}
422 | engines: {node: '>= 10'}
423 | cpu: [x64]
424 | os: [win32]
425 | requiresBuild: true
426 | dev: true
427 | optional: true
428 |
429 | /@tauri-apps/cli/1.0.5:
430 | resolution: {integrity: sha512-vbY+MwK+xN65x0R/o16UQPxBtJl8pmzVzC0TZKokZfmeOkomoqOEOinSwznAMeyR1ZMJW+fXVgJCPvGsRQ0LGg==}
431 | engines: {node: '>= 10'}
432 | hasBin: true
433 | optionalDependencies:
434 | '@tauri-apps/cli-darwin-arm64': 1.0.5
435 | '@tauri-apps/cli-darwin-x64': 1.0.5
436 | '@tauri-apps/cli-linux-arm-gnueabihf': 1.0.5
437 | '@tauri-apps/cli-linux-arm64-gnu': 1.0.5
438 | '@tauri-apps/cli-linux-arm64-musl': 1.0.5
439 | '@tauri-apps/cli-linux-x64-gnu': 1.0.5
440 | '@tauri-apps/cli-linux-x64-musl': 1.0.5
441 | '@tauri-apps/cli-win32-ia32-msvc': 1.0.5
442 | '@tauri-apps/cli-win32-x64-msvc': 1.0.5
443 | dev: true
444 |
445 | /@types/prop-types/15.7.5:
446 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
447 | dev: true
448 |
449 | /@types/react-dom/18.0.6:
450 | resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==}
451 | dependencies:
452 | '@types/react': 18.0.17
453 | dev: true
454 |
455 | /@types/react/18.0.17:
456 | resolution: {integrity: sha512-38ETy4tL+rn4uQQi7mB81G7V1g0u2ryquNmsVIOKUAEIDK+3CUjZ6rSRpdvS99dNBnkLFL83qfmtLacGOTIhwQ==}
457 | dependencies:
458 | '@types/prop-types': 15.7.5
459 | '@types/scheduler': 0.16.2
460 | csstype: 3.1.0
461 | dev: true
462 |
463 | /@types/scheduler/0.16.2:
464 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
465 | dev: true
466 |
467 | /@vitejs/plugin-react/2.0.1_vite@3.0.9:
468 | resolution: {integrity: sha512-uINzNHmjrbunlFtyVkST6lY1ewSfz/XwLufG0PIqvLGnpk2nOIOa/1CACTDNcKi1/RwaCzJLmsXwm1NsUVV/NA==}
469 | engines: {node: ^14.18.0 || >=16.0.0}
470 | peerDependencies:
471 | vite: ^3.0.0
472 | dependencies:
473 | '@babel/core': 7.18.13
474 | '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
475 | '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13
476 | '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.13
477 | '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.13
478 | magic-string: 0.26.3
479 | react-refresh: 0.14.0
480 | vite: 3.0.9
481 | transitivePeerDependencies:
482 | - supports-color
483 | dev: true
484 |
485 | /ansi-styles/3.2.1:
486 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
487 | engines: {node: '>=4'}
488 | dependencies:
489 | color-convert: 1.9.3
490 | dev: true
491 |
492 | /browserslist/4.21.3:
493 | resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
494 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
495 | hasBin: true
496 | dependencies:
497 | caniuse-lite: 1.0.30001385
498 | electron-to-chromium: 1.4.234
499 | node-releases: 2.0.6
500 | update-browserslist-db: 1.0.5_browserslist@4.21.3
501 | dev: true
502 |
503 | /caniuse-lite/1.0.30001385:
504 | resolution: {integrity: sha512-MpiCqJGhBkHgpyimE9GWmZTnyHyEEM35u115bD3QBrXpjvL/JgcP8cUhKJshfmg4OtEHFenifcK5sZayEw5tvQ==}
505 | dev: true
506 |
507 | /chalk/2.4.2:
508 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
509 | engines: {node: '>=4'}
510 | dependencies:
511 | ansi-styles: 3.2.1
512 | escape-string-regexp: 1.0.5
513 | supports-color: 5.5.0
514 | dev: true
515 |
516 | /color-convert/1.9.3:
517 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
518 | dependencies:
519 | color-name: 1.1.3
520 | dev: true
521 |
522 | /color-name/1.1.3:
523 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
524 | dev: true
525 |
526 | /convert-source-map/1.8.0:
527 | resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
528 | dependencies:
529 | safe-buffer: 5.1.2
530 | dev: true
531 |
532 | /csstype/3.1.0:
533 | resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
534 | dev: true
535 |
536 | /debug/4.3.4:
537 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
538 | engines: {node: '>=6.0'}
539 | peerDependencies:
540 | supports-color: '*'
541 | peerDependenciesMeta:
542 | supports-color:
543 | optional: true
544 | dependencies:
545 | ms: 2.1.2
546 | dev: true
547 |
548 | /electron-to-chromium/1.4.234:
549 | resolution: {integrity: sha512-VqlJ4Ihd9F7eQIfwEtf7C0eZZDl6bQtpez8vx8VHN9iCZEzePZjr7n9OGFHSav4WN9zfLa2CFLowj0siBoc0hQ==}
550 | dev: true
551 |
552 | /esbuild-android-64/0.14.54:
553 | resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
554 | engines: {node: '>=12'}
555 | cpu: [x64]
556 | os: [android]
557 | requiresBuild: true
558 | dev: true
559 | optional: true
560 |
561 | /esbuild-android-arm64/0.14.54:
562 | resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
563 | engines: {node: '>=12'}
564 | cpu: [arm64]
565 | os: [android]
566 | requiresBuild: true
567 | dev: true
568 | optional: true
569 |
570 | /esbuild-darwin-64/0.14.54:
571 | resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
572 | engines: {node: '>=12'}
573 | cpu: [x64]
574 | os: [darwin]
575 | requiresBuild: true
576 | dev: true
577 | optional: true
578 |
579 | /esbuild-darwin-arm64/0.14.54:
580 | resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
581 | engines: {node: '>=12'}
582 | cpu: [arm64]
583 | os: [darwin]
584 | requiresBuild: true
585 | dev: true
586 | optional: true
587 |
588 | /esbuild-freebsd-64/0.14.54:
589 | resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
590 | engines: {node: '>=12'}
591 | cpu: [x64]
592 | os: [freebsd]
593 | requiresBuild: true
594 | dev: true
595 | optional: true
596 |
597 | /esbuild-freebsd-arm64/0.14.54:
598 | resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
599 | engines: {node: '>=12'}
600 | cpu: [arm64]
601 | os: [freebsd]
602 | requiresBuild: true
603 | dev: true
604 | optional: true
605 |
606 | /esbuild-linux-32/0.14.54:
607 | resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
608 | engines: {node: '>=12'}
609 | cpu: [ia32]
610 | os: [linux]
611 | requiresBuild: true
612 | dev: true
613 | optional: true
614 |
615 | /esbuild-linux-64/0.14.54:
616 | resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
617 | engines: {node: '>=12'}
618 | cpu: [x64]
619 | os: [linux]
620 | requiresBuild: true
621 | dev: true
622 | optional: true
623 |
624 | /esbuild-linux-arm/0.14.54:
625 | resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
626 | engines: {node: '>=12'}
627 | cpu: [arm]
628 | os: [linux]
629 | requiresBuild: true
630 | dev: true
631 | optional: true
632 |
633 | /esbuild-linux-arm64/0.14.54:
634 | resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
635 | engines: {node: '>=12'}
636 | cpu: [arm64]
637 | os: [linux]
638 | requiresBuild: true
639 | dev: true
640 | optional: true
641 |
642 | /esbuild-linux-mips64le/0.14.54:
643 | resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
644 | engines: {node: '>=12'}
645 | cpu: [mips64el]
646 | os: [linux]
647 | requiresBuild: true
648 | dev: true
649 | optional: true
650 |
651 | /esbuild-linux-ppc64le/0.14.54:
652 | resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
653 | engines: {node: '>=12'}
654 | cpu: [ppc64]
655 | os: [linux]
656 | requiresBuild: true
657 | dev: true
658 | optional: true
659 |
660 | /esbuild-linux-riscv64/0.14.54:
661 | resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
662 | engines: {node: '>=12'}
663 | cpu: [riscv64]
664 | os: [linux]
665 | requiresBuild: true
666 | dev: true
667 | optional: true
668 |
669 | /esbuild-linux-s390x/0.14.54:
670 | resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
671 | engines: {node: '>=12'}
672 | cpu: [s390x]
673 | os: [linux]
674 | requiresBuild: true
675 | dev: true
676 | optional: true
677 |
678 | /esbuild-netbsd-64/0.14.54:
679 | resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
680 | engines: {node: '>=12'}
681 | cpu: [x64]
682 | os: [netbsd]
683 | requiresBuild: true
684 | dev: true
685 | optional: true
686 |
687 | /esbuild-openbsd-64/0.14.54:
688 | resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
689 | engines: {node: '>=12'}
690 | cpu: [x64]
691 | os: [openbsd]
692 | requiresBuild: true
693 | dev: true
694 | optional: true
695 |
696 | /esbuild-sunos-64/0.14.54:
697 | resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
698 | engines: {node: '>=12'}
699 | cpu: [x64]
700 | os: [sunos]
701 | requiresBuild: true
702 | dev: true
703 | optional: true
704 |
705 | /esbuild-windows-32/0.14.54:
706 | resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
707 | engines: {node: '>=12'}
708 | cpu: [ia32]
709 | os: [win32]
710 | requiresBuild: true
711 | dev: true
712 | optional: true
713 |
714 | /esbuild-windows-64/0.14.54:
715 | resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
716 | engines: {node: '>=12'}
717 | cpu: [x64]
718 | os: [win32]
719 | requiresBuild: true
720 | dev: true
721 | optional: true
722 |
723 | /esbuild-windows-arm64/0.14.54:
724 | resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
725 | engines: {node: '>=12'}
726 | cpu: [arm64]
727 | os: [win32]
728 | requiresBuild: true
729 | dev: true
730 | optional: true
731 |
732 | /esbuild/0.14.54:
733 | resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
734 | engines: {node: '>=12'}
735 | hasBin: true
736 | requiresBuild: true
737 | optionalDependencies:
738 | '@esbuild/linux-loong64': 0.14.54
739 | esbuild-android-64: 0.14.54
740 | esbuild-android-arm64: 0.14.54
741 | esbuild-darwin-64: 0.14.54
742 | esbuild-darwin-arm64: 0.14.54
743 | esbuild-freebsd-64: 0.14.54
744 | esbuild-freebsd-arm64: 0.14.54
745 | esbuild-linux-32: 0.14.54
746 | esbuild-linux-64: 0.14.54
747 | esbuild-linux-arm: 0.14.54
748 | esbuild-linux-arm64: 0.14.54
749 | esbuild-linux-mips64le: 0.14.54
750 | esbuild-linux-ppc64le: 0.14.54
751 | esbuild-linux-riscv64: 0.14.54
752 | esbuild-linux-s390x: 0.14.54
753 | esbuild-netbsd-64: 0.14.54
754 | esbuild-openbsd-64: 0.14.54
755 | esbuild-sunos-64: 0.14.54
756 | esbuild-windows-32: 0.14.54
757 | esbuild-windows-64: 0.14.54
758 | esbuild-windows-arm64: 0.14.54
759 | dev: true
760 |
761 | /escalade/3.1.1:
762 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
763 | engines: {node: '>=6'}
764 | dev: true
765 |
766 | /escape-string-regexp/1.0.5:
767 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
768 | engines: {node: '>=0.8.0'}
769 | dev: true
770 |
771 | /fsevents/2.3.2:
772 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
773 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
774 | os: [darwin]
775 | requiresBuild: true
776 | dev: true
777 | optional: true
778 |
779 | /function-bind/1.1.1:
780 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
781 | dev: true
782 |
783 | /gensync/1.0.0-beta.2:
784 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
785 | engines: {node: '>=6.9.0'}
786 | dev: true
787 |
788 | /globals/11.12.0:
789 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
790 | engines: {node: '>=4'}
791 | dev: true
792 |
793 | /has-flag/3.0.0:
794 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
795 | engines: {node: '>=4'}
796 | dev: true
797 |
798 | /has/1.0.3:
799 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
800 | engines: {node: '>= 0.4.0'}
801 | dependencies:
802 | function-bind: 1.1.1
803 | dev: true
804 |
805 | /is-core-module/2.10.0:
806 | resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==}
807 | dependencies:
808 | has: 1.0.3
809 | dev: true
810 |
811 | /js-tokens/4.0.0:
812 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
813 |
814 | /jsesc/2.5.2:
815 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
816 | engines: {node: '>=4'}
817 | hasBin: true
818 | dev: true
819 |
820 | /json5/2.2.1:
821 | resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
822 | engines: {node: '>=6'}
823 | hasBin: true
824 | dev: true
825 |
826 | /loose-envify/1.4.0:
827 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
828 | hasBin: true
829 | dependencies:
830 | js-tokens: 4.0.0
831 | dev: false
832 |
833 | /magic-string/0.26.3:
834 | resolution: {integrity: sha512-u1Po0NDyFcwdg2nzHT88wSK0+Rih0N1M+Ph1Sp08k8yvFFU3KR72wryS7e1qMPJypt99WB7fIFVCA92mQrMjrg==}
835 | engines: {node: '>=12'}
836 | dependencies:
837 | sourcemap-codec: 1.4.8
838 | dev: true
839 |
840 | /ms/2.1.2:
841 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
842 | dev: true
843 |
844 | /nanoid/3.3.4:
845 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
846 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
847 | hasBin: true
848 | dev: true
849 |
850 | /node-releases/2.0.6:
851 | resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
852 | dev: true
853 |
854 | /path-parse/1.0.7:
855 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
856 | dev: true
857 |
858 | /picocolors/1.0.0:
859 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
860 | dev: true
861 |
862 | /postcss/8.4.16:
863 | resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
864 | engines: {node: ^10 || ^12 || >=14}
865 | dependencies:
866 | nanoid: 3.3.4
867 | picocolors: 1.0.0
868 | source-map-js: 1.0.2
869 | dev: true
870 |
871 | /react-dom/18.2.0_react@18.2.0:
872 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
873 | peerDependencies:
874 | react: ^18.2.0
875 | dependencies:
876 | loose-envify: 1.4.0
877 | react: 18.2.0
878 | scheduler: 0.23.0
879 | dev: false
880 |
881 | /react-refresh/0.14.0:
882 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
883 | engines: {node: '>=0.10.0'}
884 | dev: true
885 |
886 | /react/18.2.0:
887 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
888 | engines: {node: '>=0.10.0'}
889 | dependencies:
890 | loose-envify: 1.4.0
891 | dev: false
892 |
893 | /resolve/1.22.1:
894 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
895 | hasBin: true
896 | dependencies:
897 | is-core-module: 2.10.0
898 | path-parse: 1.0.7
899 | supports-preserve-symlinks-flag: 1.0.0
900 | dev: true
901 |
902 | /rollup/2.77.3:
903 | resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
904 | engines: {node: '>=10.0.0'}
905 | hasBin: true
906 | optionalDependencies:
907 | fsevents: 2.3.2
908 | dev: true
909 |
910 | /safe-buffer/5.1.2:
911 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
912 | dev: true
913 |
914 | /scheduler/0.23.0:
915 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
916 | dependencies:
917 | loose-envify: 1.4.0
918 | dev: false
919 |
920 | /semver/6.3.0:
921 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
922 | hasBin: true
923 | dev: true
924 |
925 | /source-map-js/1.0.2:
926 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
927 | engines: {node: '>=0.10.0'}
928 | dev: true
929 |
930 | /sourcemap-codec/1.4.8:
931 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
932 | dev: true
933 |
934 | /supports-color/5.5.0:
935 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
936 | engines: {node: '>=4'}
937 | dependencies:
938 | has-flag: 3.0.0
939 | dev: true
940 |
941 | /supports-preserve-symlinks-flag/1.0.0:
942 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
943 | engines: {node: '>= 0.4'}
944 | dev: true
945 |
946 | /to-fast-properties/2.0.0:
947 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
948 | engines: {node: '>=4'}
949 | dev: true
950 |
951 | /typescript/4.8.2:
952 | resolution: {integrity: sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==}
953 | engines: {node: '>=4.2.0'}
954 | hasBin: true
955 | dev: true
956 |
957 | /update-browserslist-db/1.0.5_browserslist@4.21.3:
958 | resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
959 | hasBin: true
960 | peerDependencies:
961 | browserslist: '>= 4.21.0'
962 | dependencies:
963 | browserslist: 4.21.3
964 | escalade: 3.1.1
965 | picocolors: 1.0.0
966 | dev: true
967 |
968 | /vite/3.0.9:
969 | resolution: {integrity: sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==}
970 | engines: {node: ^14.18.0 || >=16.0.0}
971 | hasBin: true
972 | peerDependencies:
973 | less: '*'
974 | sass: '*'
975 | stylus: '*'
976 | terser: ^5.4.0
977 | peerDependenciesMeta:
978 | less:
979 | optional: true
980 | sass:
981 | optional: true
982 | stylus:
983 | optional: true
984 | terser:
985 | optional: true
986 | dependencies:
987 | esbuild: 0.14.54
988 | postcss: 8.4.16
989 | resolve: 1.22.1
990 | rollup: 2.77.3
991 | optionalDependencies:
992 | fsevents: 2.3.2
993 | dev: true
994 |
--------------------------------------------------------------------------------
/src-tauri/Cargo.lock:
--------------------------------------------------------------------------------
1 | # This file is automatically @generated by Cargo.
2 | # It is not intended for manual editing.
3 | version = 3
4 |
5 | [[package]]
6 | name = "adler"
7 | version = "1.0.2"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10 |
11 | [[package]]
12 | name = "adler32"
13 | version = "1.2.0"
14 | source = "registry+https://github.com/rust-lang/crates.io-index"
15 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
16 |
17 | [[package]]
18 | name = "aho-corasick"
19 | version = "0.7.18"
20 | source = "registry+https://github.com/rust-lang/crates.io-index"
21 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
22 | dependencies = [
23 | "memchr",
24 | ]
25 |
26 | [[package]]
27 | name = "alloc-no-stdlib"
28 | version = "2.0.3"
29 | source = "registry+https://github.com/rust-lang/crates.io-index"
30 | checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
31 |
32 | [[package]]
33 | name = "alloc-stdlib"
34 | version = "0.2.1"
35 | source = "registry+https://github.com/rust-lang/crates.io-index"
36 | checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
37 | dependencies = [
38 | "alloc-no-stdlib",
39 | ]
40 |
41 | [[package]]
42 | name = "ansi_term"
43 | version = "0.12.1"
44 | source = "registry+https://github.com/rust-lang/crates.io-index"
45 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
46 | dependencies = [
47 | "winapi",
48 | ]
49 |
50 | [[package]]
51 | name = "anyhow"
52 | version = "1.0.62"
53 | source = "registry+https://github.com/rust-lang/crates.io-index"
54 | checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305"
55 |
56 | [[package]]
57 | name = "app"
58 | version = "0.1.0"
59 | dependencies = [
60 | "serde",
61 | "serde_json",
62 | "tauri",
63 | "tauri-build",
64 | ]
65 |
66 | [[package]]
67 | name = "atk"
68 | version = "0.15.1"
69 | source = "registry+https://github.com/rust-lang/crates.io-index"
70 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
71 | dependencies = [
72 | "atk-sys",
73 | "bitflags",
74 | "glib",
75 | "libc",
76 | ]
77 |
78 | [[package]]
79 | name = "atk-sys"
80 | version = "0.15.1"
81 | source = "registry+https://github.com/rust-lang/crates.io-index"
82 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
83 | dependencies = [
84 | "glib-sys",
85 | "gobject-sys",
86 | "libc",
87 | "system-deps 6.0.2",
88 | ]
89 |
90 | [[package]]
91 | name = "attohttpc"
92 | version = "0.19.1"
93 | source = "registry+https://github.com/rust-lang/crates.io-index"
94 | checksum = "262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e"
95 | dependencies = [
96 | "flate2",
97 | "http",
98 | "log",
99 | "native-tls",
100 | "openssl",
101 | "serde",
102 | "serde_json",
103 | "serde_urlencoded",
104 | "url",
105 | "wildmatch",
106 | ]
107 |
108 | [[package]]
109 | name = "autocfg"
110 | version = "1.1.0"
111 | source = "registry+https://github.com/rust-lang/crates.io-index"
112 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
113 |
114 | [[package]]
115 | name = "base64"
116 | version = "0.13.0"
117 | source = "registry+https://github.com/rust-lang/crates.io-index"
118 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
119 |
120 | [[package]]
121 | name = "bitflags"
122 | version = "1.3.2"
123 | source = "registry+https://github.com/rust-lang/crates.io-index"
124 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
125 |
126 | [[package]]
127 | name = "block"
128 | version = "0.1.6"
129 | source = "registry+https://github.com/rust-lang/crates.io-index"
130 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
131 |
132 | [[package]]
133 | name = "block-buffer"
134 | version = "0.10.2"
135 | source = "registry+https://github.com/rust-lang/crates.io-index"
136 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
137 | dependencies = [
138 | "generic-array",
139 | ]
140 |
141 | [[package]]
142 | name = "brotli"
143 | version = "3.3.4"
144 | source = "registry+https://github.com/rust-lang/crates.io-index"
145 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
146 | dependencies = [
147 | "alloc-no-stdlib",
148 | "alloc-stdlib",
149 | "brotli-decompressor",
150 | ]
151 |
152 | [[package]]
153 | name = "brotli-decompressor"
154 | version = "2.3.2"
155 | source = "registry+https://github.com/rust-lang/crates.io-index"
156 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
157 | dependencies = [
158 | "alloc-no-stdlib",
159 | "alloc-stdlib",
160 | ]
161 |
162 | [[package]]
163 | name = "bstr"
164 | version = "0.2.17"
165 | source = "registry+https://github.com/rust-lang/crates.io-index"
166 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
167 | dependencies = [
168 | "memchr",
169 | ]
170 |
171 | [[package]]
172 | name = "bumpalo"
173 | version = "3.11.0"
174 | source = "registry+https://github.com/rust-lang/crates.io-index"
175 | checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
176 |
177 | [[package]]
178 | name = "bytemuck"
179 | version = "1.12.1"
180 | source = "registry+https://github.com/rust-lang/crates.io-index"
181 | checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
182 |
183 | [[package]]
184 | name = "byteorder"
185 | version = "1.4.3"
186 | source = "registry+https://github.com/rust-lang/crates.io-index"
187 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
188 |
189 | [[package]]
190 | name = "bytes"
191 | version = "1.2.1"
192 | source = "registry+https://github.com/rust-lang/crates.io-index"
193 | checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
194 |
195 | [[package]]
196 | name = "cairo-rs"
197 | version = "0.15.12"
198 | source = "registry+https://github.com/rust-lang/crates.io-index"
199 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
200 | dependencies = [
201 | "bitflags",
202 | "cairo-sys-rs",
203 | "glib",
204 | "libc",
205 | "thiserror",
206 | ]
207 |
208 | [[package]]
209 | name = "cairo-sys-rs"
210 | version = "0.15.1"
211 | source = "registry+https://github.com/rust-lang/crates.io-index"
212 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
213 | dependencies = [
214 | "glib-sys",
215 | "libc",
216 | "system-deps 6.0.2",
217 | ]
218 |
219 | [[package]]
220 | name = "cargo_toml"
221 | version = "0.11.5"
222 | source = "registry+https://github.com/rust-lang/crates.io-index"
223 | checksum = "5809dd3e6444651fd1cdd3dbec71eca438c439a0fcc8081674a14da0afe50185"
224 | dependencies = [
225 | "serde",
226 | "serde_derive",
227 | "toml",
228 | ]
229 |
230 | [[package]]
231 | name = "cc"
232 | version = "1.0.73"
233 | source = "registry+https://github.com/rust-lang/crates.io-index"
234 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
235 |
236 | [[package]]
237 | name = "cesu8"
238 | version = "1.1.0"
239 | source = "registry+https://github.com/rust-lang/crates.io-index"
240 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
241 |
242 | [[package]]
243 | name = "cfb"
244 | version = "0.6.1"
245 | source = "registry+https://github.com/rust-lang/crates.io-index"
246 | checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c"
247 | dependencies = [
248 | "byteorder",
249 | "uuid 0.8.2",
250 | ]
251 |
252 | [[package]]
253 | name = "cfg-expr"
254 | version = "0.9.1"
255 | source = "registry+https://github.com/rust-lang/crates.io-index"
256 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
257 | dependencies = [
258 | "smallvec",
259 | ]
260 |
261 | [[package]]
262 | name = "cfg-expr"
263 | version = "0.10.3"
264 | source = "registry+https://github.com/rust-lang/crates.io-index"
265 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db"
266 | dependencies = [
267 | "smallvec",
268 | ]
269 |
270 | [[package]]
271 | name = "cfg-if"
272 | version = "1.0.0"
273 | source = "registry+https://github.com/rust-lang/crates.io-index"
274 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
275 |
276 | [[package]]
277 | name = "cocoa"
278 | version = "0.24.0"
279 | source = "registry+https://github.com/rust-lang/crates.io-index"
280 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
281 | dependencies = [
282 | "bitflags",
283 | "block",
284 | "cocoa-foundation",
285 | "core-foundation",
286 | "core-graphics",
287 | "foreign-types",
288 | "libc",
289 | "objc",
290 | ]
291 |
292 | [[package]]
293 | name = "cocoa-foundation"
294 | version = "0.1.0"
295 | source = "registry+https://github.com/rust-lang/crates.io-index"
296 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
297 | dependencies = [
298 | "bitflags",
299 | "block",
300 | "core-foundation",
301 | "core-graphics-types",
302 | "foreign-types",
303 | "libc",
304 | "objc",
305 | ]
306 |
307 | [[package]]
308 | name = "color_quant"
309 | version = "1.1.0"
310 | source = "registry+https://github.com/rust-lang/crates.io-index"
311 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
312 |
313 | [[package]]
314 | name = "combine"
315 | version = "4.6.6"
316 | source = "registry+https://github.com/rust-lang/crates.io-index"
317 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
318 | dependencies = [
319 | "bytes",
320 | "memchr",
321 | ]
322 |
323 | [[package]]
324 | name = "convert_case"
325 | version = "0.4.0"
326 | source = "registry+https://github.com/rust-lang/crates.io-index"
327 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
328 |
329 | [[package]]
330 | name = "core-foundation"
331 | version = "0.9.3"
332 | source = "registry+https://github.com/rust-lang/crates.io-index"
333 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
334 | dependencies = [
335 | "core-foundation-sys",
336 | "libc",
337 | ]
338 |
339 | [[package]]
340 | name = "core-foundation-sys"
341 | version = "0.8.3"
342 | source = "registry+https://github.com/rust-lang/crates.io-index"
343 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
344 |
345 | [[package]]
346 | name = "core-graphics"
347 | version = "0.22.3"
348 | source = "registry+https://github.com/rust-lang/crates.io-index"
349 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
350 | dependencies = [
351 | "bitflags",
352 | "core-foundation",
353 | "core-graphics-types",
354 | "foreign-types",
355 | "libc",
356 | ]
357 |
358 | [[package]]
359 | name = "core-graphics-types"
360 | version = "0.1.1"
361 | source = "registry+https://github.com/rust-lang/crates.io-index"
362 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
363 | dependencies = [
364 | "bitflags",
365 | "core-foundation",
366 | "foreign-types",
367 | "libc",
368 | ]
369 |
370 | [[package]]
371 | name = "cpufeatures"
372 | version = "0.2.4"
373 | source = "registry+https://github.com/rust-lang/crates.io-index"
374 | checksum = "dc948ebb96241bb40ab73effeb80d9f93afaad49359d159a5e61be51619fe813"
375 | dependencies = [
376 | "libc",
377 | ]
378 |
379 | [[package]]
380 | name = "crc32fast"
381 | version = "1.3.2"
382 | source = "registry+https://github.com/rust-lang/crates.io-index"
383 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
384 | dependencies = [
385 | "cfg-if",
386 | ]
387 |
388 | [[package]]
389 | name = "crossbeam-channel"
390 | version = "0.5.6"
391 | source = "registry+https://github.com/rust-lang/crates.io-index"
392 | checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
393 | dependencies = [
394 | "cfg-if",
395 | "crossbeam-utils",
396 | ]
397 |
398 | [[package]]
399 | name = "crossbeam-utils"
400 | version = "0.8.11"
401 | source = "registry+https://github.com/rust-lang/crates.io-index"
402 | checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
403 | dependencies = [
404 | "cfg-if",
405 | "once_cell",
406 | ]
407 |
408 | [[package]]
409 | name = "crypto-common"
410 | version = "0.1.6"
411 | source = "registry+https://github.com/rust-lang/crates.io-index"
412 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
413 | dependencies = [
414 | "generic-array",
415 | "typenum",
416 | ]
417 |
418 | [[package]]
419 | name = "cssparser"
420 | version = "0.27.2"
421 | source = "registry+https://github.com/rust-lang/crates.io-index"
422 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
423 | dependencies = [
424 | "cssparser-macros",
425 | "dtoa-short",
426 | "itoa 0.4.8",
427 | "matches",
428 | "phf 0.8.0",
429 | "proc-macro2",
430 | "quote",
431 | "smallvec",
432 | "syn",
433 | ]
434 |
435 | [[package]]
436 | name = "cssparser-macros"
437 | version = "0.6.0"
438 | source = "registry+https://github.com/rust-lang/crates.io-index"
439 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
440 | dependencies = [
441 | "quote",
442 | "syn",
443 | ]
444 |
445 | [[package]]
446 | name = "ctor"
447 | version = "0.1.23"
448 | source = "registry+https://github.com/rust-lang/crates.io-index"
449 | checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
450 | dependencies = [
451 | "quote",
452 | "syn",
453 | ]
454 |
455 | [[package]]
456 | name = "cty"
457 | version = "0.2.2"
458 | source = "registry+https://github.com/rust-lang/crates.io-index"
459 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
460 |
461 | [[package]]
462 | name = "darling"
463 | version = "0.13.4"
464 | source = "registry+https://github.com/rust-lang/crates.io-index"
465 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
466 | dependencies = [
467 | "darling_core",
468 | "darling_macro",
469 | ]
470 |
471 | [[package]]
472 | name = "darling_core"
473 | version = "0.13.4"
474 | source = "registry+https://github.com/rust-lang/crates.io-index"
475 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
476 | dependencies = [
477 | "fnv",
478 | "ident_case",
479 | "proc-macro2",
480 | "quote",
481 | "strsim",
482 | "syn",
483 | ]
484 |
485 | [[package]]
486 | name = "darling_macro"
487 | version = "0.13.4"
488 | source = "registry+https://github.com/rust-lang/crates.io-index"
489 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
490 | dependencies = [
491 | "darling_core",
492 | "quote",
493 | "syn",
494 | ]
495 |
496 | [[package]]
497 | name = "dbus"
498 | version = "0.9.6"
499 | source = "registry+https://github.com/rust-lang/crates.io-index"
500 | checksum = "6f8bcdd56d2e5c4ed26a529c5a9029f5db8290d433497506f958eae3be148eb6"
501 | dependencies = [
502 | "libc",
503 | "libdbus-sys",
504 | "winapi",
505 | ]
506 |
507 | [[package]]
508 | name = "deflate"
509 | version = "0.7.20"
510 | source = "registry+https://github.com/rust-lang/crates.io-index"
511 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4"
512 | dependencies = [
513 | "adler32",
514 | "byteorder",
515 | ]
516 |
517 | [[package]]
518 | name = "deflate"
519 | version = "1.0.0"
520 | source = "registry+https://github.com/rust-lang/crates.io-index"
521 | checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
522 | dependencies = [
523 | "adler32",
524 | ]
525 |
526 | [[package]]
527 | name = "derive_more"
528 | version = "0.99.17"
529 | source = "registry+https://github.com/rust-lang/crates.io-index"
530 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
531 | dependencies = [
532 | "convert_case",
533 | "proc-macro2",
534 | "quote",
535 | "rustc_version 0.4.0",
536 | "syn",
537 | ]
538 |
539 | [[package]]
540 | name = "digest"
541 | version = "0.10.3"
542 | source = "registry+https://github.com/rust-lang/crates.io-index"
543 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
544 | dependencies = [
545 | "block-buffer",
546 | "crypto-common",
547 | ]
548 |
549 | [[package]]
550 | name = "dirs-next"
551 | version = "2.0.0"
552 | source = "registry+https://github.com/rust-lang/crates.io-index"
553 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
554 | dependencies = [
555 | "cfg-if",
556 | "dirs-sys-next",
557 | ]
558 |
559 | [[package]]
560 | name = "dirs-sys-next"
561 | version = "0.1.2"
562 | source = "registry+https://github.com/rust-lang/crates.io-index"
563 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
564 | dependencies = [
565 | "libc",
566 | "redox_users",
567 | "winapi",
568 | ]
569 |
570 | [[package]]
571 | name = "dispatch"
572 | version = "0.2.0"
573 | source = "registry+https://github.com/rust-lang/crates.io-index"
574 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
575 |
576 | [[package]]
577 | name = "dtoa"
578 | version = "0.4.8"
579 | source = "registry+https://github.com/rust-lang/crates.io-index"
580 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
581 |
582 | [[package]]
583 | name = "dtoa-short"
584 | version = "0.3.3"
585 | source = "registry+https://github.com/rust-lang/crates.io-index"
586 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
587 | dependencies = [
588 | "dtoa",
589 | ]
590 |
591 | [[package]]
592 | name = "embed-resource"
593 | version = "1.7.2"
594 | source = "registry+https://github.com/rust-lang/crates.io-index"
595 | checksum = "ecc24ff8d764818e9ab17963b0593c535f077a513f565e75e4352d758bc4d8c0"
596 | dependencies = [
597 | "cc",
598 | "rustc_version 0.4.0",
599 | "toml",
600 | "vswhom",
601 | "winreg",
602 | ]
603 |
604 | [[package]]
605 | name = "embed_plist"
606 | version = "1.2.2"
607 | source = "registry+https://github.com/rust-lang/crates.io-index"
608 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
609 |
610 | [[package]]
611 | name = "fastrand"
612 | version = "1.8.0"
613 | source = "registry+https://github.com/rust-lang/crates.io-index"
614 | checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
615 | dependencies = [
616 | "instant",
617 | ]
618 |
619 | [[package]]
620 | name = "field-offset"
621 | version = "0.3.4"
622 | source = "registry+https://github.com/rust-lang/crates.io-index"
623 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
624 | dependencies = [
625 | "memoffset",
626 | "rustc_version 0.3.3",
627 | ]
628 |
629 | [[package]]
630 | name = "filetime"
631 | version = "0.2.17"
632 | source = "registry+https://github.com/rust-lang/crates.io-index"
633 | checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
634 | dependencies = [
635 | "cfg-if",
636 | "libc",
637 | "redox_syscall",
638 | "windows-sys",
639 | ]
640 |
641 | [[package]]
642 | name = "flate2"
643 | version = "1.0.24"
644 | source = "registry+https://github.com/rust-lang/crates.io-index"
645 | checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
646 | dependencies = [
647 | "crc32fast",
648 | "miniz_oxide",
649 | ]
650 |
651 | [[package]]
652 | name = "fnv"
653 | version = "1.0.7"
654 | source = "registry+https://github.com/rust-lang/crates.io-index"
655 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
656 |
657 | [[package]]
658 | name = "foreign-types"
659 | version = "0.3.2"
660 | source = "registry+https://github.com/rust-lang/crates.io-index"
661 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
662 | dependencies = [
663 | "foreign-types-shared",
664 | ]
665 |
666 | [[package]]
667 | name = "foreign-types-shared"
668 | version = "0.1.1"
669 | source = "registry+https://github.com/rust-lang/crates.io-index"
670 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
671 |
672 | [[package]]
673 | name = "form_urlencoded"
674 | version = "1.0.1"
675 | source = "registry+https://github.com/rust-lang/crates.io-index"
676 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
677 | dependencies = [
678 | "matches",
679 | "percent-encoding",
680 | ]
681 |
682 | [[package]]
683 | name = "futf"
684 | version = "0.1.5"
685 | source = "registry+https://github.com/rust-lang/crates.io-index"
686 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
687 | dependencies = [
688 | "mac",
689 | "new_debug_unreachable",
690 | ]
691 |
692 | [[package]]
693 | name = "futures"
694 | version = "0.3.24"
695 | source = "registry+https://github.com/rust-lang/crates.io-index"
696 | checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
697 | dependencies = [
698 | "futures-channel",
699 | "futures-core",
700 | "futures-executor",
701 | "futures-io",
702 | "futures-sink",
703 | "futures-task",
704 | "futures-util",
705 | ]
706 |
707 | [[package]]
708 | name = "futures-channel"
709 | version = "0.3.24"
710 | source = "registry+https://github.com/rust-lang/crates.io-index"
711 | checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
712 | dependencies = [
713 | "futures-core",
714 | "futures-sink",
715 | ]
716 |
717 | [[package]]
718 | name = "futures-core"
719 | version = "0.3.24"
720 | source = "registry+https://github.com/rust-lang/crates.io-index"
721 | checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
722 |
723 | [[package]]
724 | name = "futures-executor"
725 | version = "0.3.24"
726 | source = "registry+https://github.com/rust-lang/crates.io-index"
727 | checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
728 | dependencies = [
729 | "futures-core",
730 | "futures-task",
731 | "futures-util",
732 | ]
733 |
734 | [[package]]
735 | name = "futures-io"
736 | version = "0.3.24"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
739 |
740 | [[package]]
741 | name = "futures-lite"
742 | version = "1.12.0"
743 | source = "registry+https://github.com/rust-lang/crates.io-index"
744 | checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
745 | dependencies = [
746 | "fastrand",
747 | "futures-core",
748 | "futures-io",
749 | "memchr",
750 | "parking",
751 | "pin-project-lite",
752 | "waker-fn",
753 | ]
754 |
755 | [[package]]
756 | name = "futures-macro"
757 | version = "0.3.24"
758 | source = "registry+https://github.com/rust-lang/crates.io-index"
759 | checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
760 | dependencies = [
761 | "proc-macro2",
762 | "quote",
763 | "syn",
764 | ]
765 |
766 | [[package]]
767 | name = "futures-sink"
768 | version = "0.3.24"
769 | source = "registry+https://github.com/rust-lang/crates.io-index"
770 | checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
771 |
772 | [[package]]
773 | name = "futures-task"
774 | version = "0.3.24"
775 | source = "registry+https://github.com/rust-lang/crates.io-index"
776 | checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
777 |
778 | [[package]]
779 | name = "futures-util"
780 | version = "0.3.24"
781 | source = "registry+https://github.com/rust-lang/crates.io-index"
782 | checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
783 | dependencies = [
784 | "futures-channel",
785 | "futures-core",
786 | "futures-io",
787 | "futures-macro",
788 | "futures-sink",
789 | "futures-task",
790 | "memchr",
791 | "pin-project-lite",
792 | "pin-utils",
793 | "slab",
794 | ]
795 |
796 | [[package]]
797 | name = "fxhash"
798 | version = "0.2.1"
799 | source = "registry+https://github.com/rust-lang/crates.io-index"
800 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
801 | dependencies = [
802 | "byteorder",
803 | ]
804 |
805 | [[package]]
806 | name = "gdk"
807 | version = "0.15.4"
808 | source = "registry+https://github.com/rust-lang/crates.io-index"
809 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
810 | dependencies = [
811 | "bitflags",
812 | "cairo-rs",
813 | "gdk-pixbuf",
814 | "gdk-sys",
815 | "gio",
816 | "glib",
817 | "libc",
818 | "pango",
819 | ]
820 |
821 | [[package]]
822 | name = "gdk-pixbuf"
823 | version = "0.15.11"
824 | source = "registry+https://github.com/rust-lang/crates.io-index"
825 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
826 | dependencies = [
827 | "bitflags",
828 | "gdk-pixbuf-sys",
829 | "gio",
830 | "glib",
831 | "libc",
832 | ]
833 |
834 | [[package]]
835 | name = "gdk-pixbuf-sys"
836 | version = "0.15.10"
837 | source = "registry+https://github.com/rust-lang/crates.io-index"
838 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
839 | dependencies = [
840 | "gio-sys",
841 | "glib-sys",
842 | "gobject-sys",
843 | "libc",
844 | "system-deps 6.0.2",
845 | ]
846 |
847 | [[package]]
848 | name = "gdk-sys"
849 | version = "0.15.1"
850 | source = "registry+https://github.com/rust-lang/crates.io-index"
851 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
852 | dependencies = [
853 | "cairo-sys-rs",
854 | "gdk-pixbuf-sys",
855 | "gio-sys",
856 | "glib-sys",
857 | "gobject-sys",
858 | "libc",
859 | "pango-sys",
860 | "pkg-config",
861 | "system-deps 6.0.2",
862 | ]
863 |
864 | [[package]]
865 | name = "gdkx11-sys"
866 | version = "0.15.1"
867 | source = "registry+https://github.com/rust-lang/crates.io-index"
868 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
869 | dependencies = [
870 | "gdk-sys",
871 | "glib-sys",
872 | "libc",
873 | "system-deps 6.0.2",
874 | "x11",
875 | ]
876 |
877 | [[package]]
878 | name = "generator"
879 | version = "0.7.1"
880 | source = "registry+https://github.com/rust-lang/crates.io-index"
881 | checksum = "cc184cace1cea8335047a471cc1da80f18acf8a76f3bab2028d499e328948ec7"
882 | dependencies = [
883 | "cc",
884 | "libc",
885 | "log",
886 | "rustversion",
887 | "windows 0.32.0",
888 | ]
889 |
890 | [[package]]
891 | name = "generic-array"
892 | version = "0.14.6"
893 | source = "registry+https://github.com/rust-lang/crates.io-index"
894 | checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
895 | dependencies = [
896 | "typenum",
897 | "version_check",
898 | ]
899 |
900 | [[package]]
901 | name = "getrandom"
902 | version = "0.1.16"
903 | source = "registry+https://github.com/rust-lang/crates.io-index"
904 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
905 | dependencies = [
906 | "cfg-if",
907 | "libc",
908 | "wasi 0.9.0+wasi-snapshot-preview1",
909 | ]
910 |
911 | [[package]]
912 | name = "getrandom"
913 | version = "0.2.7"
914 | source = "registry+https://github.com/rust-lang/crates.io-index"
915 | checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
916 | dependencies = [
917 | "cfg-if",
918 | "libc",
919 | "wasi 0.11.0+wasi-snapshot-preview1",
920 | ]
921 |
922 | [[package]]
923 | name = "gio"
924 | version = "0.15.12"
925 | source = "registry+https://github.com/rust-lang/crates.io-index"
926 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
927 | dependencies = [
928 | "bitflags",
929 | "futures-channel",
930 | "futures-core",
931 | "futures-io",
932 | "gio-sys",
933 | "glib",
934 | "libc",
935 | "once_cell",
936 | "thiserror",
937 | ]
938 |
939 | [[package]]
940 | name = "gio-sys"
941 | version = "0.15.10"
942 | source = "registry+https://github.com/rust-lang/crates.io-index"
943 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
944 | dependencies = [
945 | "glib-sys",
946 | "gobject-sys",
947 | "libc",
948 | "system-deps 6.0.2",
949 | "winapi",
950 | ]
951 |
952 | [[package]]
953 | name = "glib"
954 | version = "0.15.12"
955 | source = "registry+https://github.com/rust-lang/crates.io-index"
956 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
957 | dependencies = [
958 | "bitflags",
959 | "futures-channel",
960 | "futures-core",
961 | "futures-executor",
962 | "futures-task",
963 | "glib-macros",
964 | "glib-sys",
965 | "gobject-sys",
966 | "libc",
967 | "once_cell",
968 | "smallvec",
969 | "thiserror",
970 | ]
971 |
972 | [[package]]
973 | name = "glib-macros"
974 | version = "0.15.11"
975 | source = "registry+https://github.com/rust-lang/crates.io-index"
976 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
977 | dependencies = [
978 | "anyhow",
979 | "heck 0.4.0",
980 | "proc-macro-crate",
981 | "proc-macro-error",
982 | "proc-macro2",
983 | "quote",
984 | "syn",
985 | ]
986 |
987 | [[package]]
988 | name = "glib-sys"
989 | version = "0.15.10"
990 | source = "registry+https://github.com/rust-lang/crates.io-index"
991 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
992 | dependencies = [
993 | "libc",
994 | "system-deps 6.0.2",
995 | ]
996 |
997 | [[package]]
998 | name = "glob"
999 | version = "0.3.0"
1000 | source = "registry+https://github.com/rust-lang/crates.io-index"
1001 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
1002 |
1003 | [[package]]
1004 | name = "globset"
1005 | version = "0.4.9"
1006 | source = "registry+https://github.com/rust-lang/crates.io-index"
1007 | checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
1008 | dependencies = [
1009 | "aho-corasick",
1010 | "bstr",
1011 | "fnv",
1012 | "log",
1013 | "regex",
1014 | ]
1015 |
1016 | [[package]]
1017 | name = "gobject-sys"
1018 | version = "0.15.10"
1019 | source = "registry+https://github.com/rust-lang/crates.io-index"
1020 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
1021 | dependencies = [
1022 | "glib-sys",
1023 | "libc",
1024 | "system-deps 6.0.2",
1025 | ]
1026 |
1027 | [[package]]
1028 | name = "gtk"
1029 | version = "0.15.5"
1030 | source = "registry+https://github.com/rust-lang/crates.io-index"
1031 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
1032 | dependencies = [
1033 | "atk",
1034 | "bitflags",
1035 | "cairo-rs",
1036 | "field-offset",
1037 | "futures-channel",
1038 | "gdk",
1039 | "gdk-pixbuf",
1040 | "gio",
1041 | "glib",
1042 | "gtk-sys",
1043 | "gtk3-macros",
1044 | "libc",
1045 | "once_cell",
1046 | "pango",
1047 | "pkg-config",
1048 | ]
1049 |
1050 | [[package]]
1051 | name = "gtk-sys"
1052 | version = "0.15.3"
1053 | source = "registry+https://github.com/rust-lang/crates.io-index"
1054 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
1055 | dependencies = [
1056 | "atk-sys",
1057 | "cairo-sys-rs",
1058 | "gdk-pixbuf-sys",
1059 | "gdk-sys",
1060 | "gio-sys",
1061 | "glib-sys",
1062 | "gobject-sys",
1063 | "libc",
1064 | "pango-sys",
1065 | "system-deps 6.0.2",
1066 | ]
1067 |
1068 | [[package]]
1069 | name = "gtk3-macros"
1070 | version = "0.15.4"
1071 | source = "registry+https://github.com/rust-lang/crates.io-index"
1072 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9"
1073 | dependencies = [
1074 | "anyhow",
1075 | "proc-macro-crate",
1076 | "proc-macro-error",
1077 | "proc-macro2",
1078 | "quote",
1079 | "syn",
1080 | ]
1081 |
1082 | [[package]]
1083 | name = "hashbrown"
1084 | version = "0.12.3"
1085 | source = "registry+https://github.com/rust-lang/crates.io-index"
1086 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1087 |
1088 | [[package]]
1089 | name = "heck"
1090 | version = "0.3.3"
1091 | source = "registry+https://github.com/rust-lang/crates.io-index"
1092 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1093 | dependencies = [
1094 | "unicode-segmentation",
1095 | ]
1096 |
1097 | [[package]]
1098 | name = "heck"
1099 | version = "0.4.0"
1100 | source = "registry+https://github.com/rust-lang/crates.io-index"
1101 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
1102 |
1103 | [[package]]
1104 | name = "hermit-abi"
1105 | version = "0.1.19"
1106 | source = "registry+https://github.com/rust-lang/crates.io-index"
1107 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1108 | dependencies = [
1109 | "libc",
1110 | ]
1111 |
1112 | [[package]]
1113 | name = "html5ever"
1114 | version = "0.25.2"
1115 | source = "registry+https://github.com/rust-lang/crates.io-index"
1116 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
1117 | dependencies = [
1118 | "log",
1119 | "mac",
1120 | "markup5ever",
1121 | "proc-macro2",
1122 | "quote",
1123 | "syn",
1124 | ]
1125 |
1126 | [[package]]
1127 | name = "http"
1128 | version = "0.2.8"
1129 | source = "registry+https://github.com/rust-lang/crates.io-index"
1130 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
1131 | dependencies = [
1132 | "bytes",
1133 | "fnv",
1134 | "itoa 1.0.3",
1135 | ]
1136 |
1137 | [[package]]
1138 | name = "http-range"
1139 | version = "0.1.5"
1140 | source = "registry+https://github.com/rust-lang/crates.io-index"
1141 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1142 |
1143 | [[package]]
1144 | name = "ico"
1145 | version = "0.1.0"
1146 | source = "registry+https://github.com/rust-lang/crates.io-index"
1147 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804"
1148 | dependencies = [
1149 | "byteorder",
1150 | "png 0.11.0",
1151 | ]
1152 |
1153 | [[package]]
1154 | name = "ident_case"
1155 | version = "1.0.1"
1156 | source = "registry+https://github.com/rust-lang/crates.io-index"
1157 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1158 |
1159 | [[package]]
1160 | name = "idna"
1161 | version = "0.2.3"
1162 | source = "registry+https://github.com/rust-lang/crates.io-index"
1163 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
1164 | dependencies = [
1165 | "matches",
1166 | "unicode-bidi",
1167 | "unicode-normalization",
1168 | ]
1169 |
1170 | [[package]]
1171 | name = "ignore"
1172 | version = "0.4.18"
1173 | source = "registry+https://github.com/rust-lang/crates.io-index"
1174 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
1175 | dependencies = [
1176 | "crossbeam-utils",
1177 | "globset",
1178 | "lazy_static",
1179 | "log",
1180 | "memchr",
1181 | "regex",
1182 | "same-file",
1183 | "thread_local",
1184 | "walkdir",
1185 | "winapi-util",
1186 | ]
1187 |
1188 | [[package]]
1189 | name = "image"
1190 | version = "0.24.3"
1191 | source = "registry+https://github.com/rust-lang/crates.io-index"
1192 | checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964"
1193 | dependencies = [
1194 | "bytemuck",
1195 | "byteorder",
1196 | "color_quant",
1197 | "num-rational",
1198 | "num-traits",
1199 | ]
1200 |
1201 | [[package]]
1202 | name = "indexmap"
1203 | version = "1.9.1"
1204 | source = "registry+https://github.com/rust-lang/crates.io-index"
1205 | checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
1206 | dependencies = [
1207 | "autocfg",
1208 | "hashbrown",
1209 | ]
1210 |
1211 | [[package]]
1212 | name = "infer"
1213 | version = "0.7.0"
1214 | source = "registry+https://github.com/rust-lang/crates.io-index"
1215 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b"
1216 | dependencies = [
1217 | "cfb",
1218 | ]
1219 |
1220 | [[package]]
1221 | name = "inflate"
1222 | version = "0.3.4"
1223 | source = "registry+https://github.com/rust-lang/crates.io-index"
1224 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4"
1225 | dependencies = [
1226 | "adler32",
1227 | ]
1228 |
1229 | [[package]]
1230 | name = "instant"
1231 | version = "0.1.12"
1232 | source = "registry+https://github.com/rust-lang/crates.io-index"
1233 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1234 | dependencies = [
1235 | "cfg-if",
1236 | ]
1237 |
1238 | [[package]]
1239 | name = "itoa"
1240 | version = "0.4.8"
1241 | source = "registry+https://github.com/rust-lang/crates.io-index"
1242 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1243 |
1244 | [[package]]
1245 | name = "itoa"
1246 | version = "1.0.3"
1247 | source = "registry+https://github.com/rust-lang/crates.io-index"
1248 | checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
1249 |
1250 | [[package]]
1251 | name = "javascriptcore-rs"
1252 | version = "0.16.0"
1253 | source = "registry+https://github.com/rust-lang/crates.io-index"
1254 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
1255 | dependencies = [
1256 | "bitflags",
1257 | "glib",
1258 | "javascriptcore-rs-sys",
1259 | ]
1260 |
1261 | [[package]]
1262 | name = "javascriptcore-rs-sys"
1263 | version = "0.4.0"
1264 | source = "registry+https://github.com/rust-lang/crates.io-index"
1265 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
1266 | dependencies = [
1267 | "glib-sys",
1268 | "gobject-sys",
1269 | "libc",
1270 | "system-deps 5.0.0",
1271 | ]
1272 |
1273 | [[package]]
1274 | name = "jni"
1275 | version = "0.18.0"
1276 | source = "registry+https://github.com/rust-lang/crates.io-index"
1277 | checksum = "24967112a1e4301ca5342ea339763613a37592b8a6ce6cf2e4494537c7a42faf"
1278 | dependencies = [
1279 | "cesu8",
1280 | "combine",
1281 | "jni-sys",
1282 | "log",
1283 | "thiserror",
1284 | "walkdir",
1285 | ]
1286 |
1287 | [[package]]
1288 | name = "jni"
1289 | version = "0.19.0"
1290 | source = "registry+https://github.com/rust-lang/crates.io-index"
1291 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"
1292 | dependencies = [
1293 | "cesu8",
1294 | "combine",
1295 | "jni-sys",
1296 | "log",
1297 | "thiserror",
1298 | "walkdir",
1299 | ]
1300 |
1301 | [[package]]
1302 | name = "jni-sys"
1303 | version = "0.3.0"
1304 | source = "registry+https://github.com/rust-lang/crates.io-index"
1305 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1306 |
1307 | [[package]]
1308 | name = "js-sys"
1309 | version = "0.3.59"
1310 | source = "registry+https://github.com/rust-lang/crates.io-index"
1311 | checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
1312 | dependencies = [
1313 | "wasm-bindgen",
1314 | ]
1315 |
1316 | [[package]]
1317 | name = "json-patch"
1318 | version = "0.2.6"
1319 | source = "registry+https://github.com/rust-lang/crates.io-index"
1320 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d"
1321 | dependencies = [
1322 | "serde",
1323 | "serde_json",
1324 | "treediff",
1325 | ]
1326 |
1327 | [[package]]
1328 | name = "kuchiki"
1329 | version = "0.8.1"
1330 | source = "registry+https://github.com/rust-lang/crates.io-index"
1331 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
1332 | dependencies = [
1333 | "cssparser",
1334 | "html5ever",
1335 | "matches",
1336 | "selectors",
1337 | ]
1338 |
1339 | [[package]]
1340 | name = "lazy_static"
1341 | version = "1.4.0"
1342 | source = "registry+https://github.com/rust-lang/crates.io-index"
1343 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1344 |
1345 | [[package]]
1346 | name = "libc"
1347 | version = "0.2.132"
1348 | source = "registry+https://github.com/rust-lang/crates.io-index"
1349 | checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
1350 |
1351 | [[package]]
1352 | name = "libdbus-sys"
1353 | version = "0.2.2"
1354 | source = "registry+https://github.com/rust-lang/crates.io-index"
1355 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b"
1356 | dependencies = [
1357 | "pkg-config",
1358 | ]
1359 |
1360 | [[package]]
1361 | name = "line-wrap"
1362 | version = "0.1.1"
1363 | source = "registry+https://github.com/rust-lang/crates.io-index"
1364 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
1365 | dependencies = [
1366 | "safemem",
1367 | ]
1368 |
1369 | [[package]]
1370 | name = "lock_api"
1371 | version = "0.4.8"
1372 | source = "registry+https://github.com/rust-lang/crates.io-index"
1373 | checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390"
1374 | dependencies = [
1375 | "autocfg",
1376 | "scopeguard",
1377 | ]
1378 |
1379 | [[package]]
1380 | name = "log"
1381 | version = "0.4.17"
1382 | source = "registry+https://github.com/rust-lang/crates.io-index"
1383 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
1384 | dependencies = [
1385 | "cfg-if",
1386 | ]
1387 |
1388 | [[package]]
1389 | name = "loom"
1390 | version = "0.5.6"
1391 | source = "registry+https://github.com/rust-lang/crates.io-index"
1392 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1393 | dependencies = [
1394 | "cfg-if",
1395 | "generator",
1396 | "scoped-tls",
1397 | "serde",
1398 | "serde_json",
1399 | "tracing",
1400 | "tracing-subscriber",
1401 | ]
1402 |
1403 | [[package]]
1404 | name = "mac"
1405 | version = "0.1.1"
1406 | source = "registry+https://github.com/rust-lang/crates.io-index"
1407 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1408 |
1409 | [[package]]
1410 | name = "mac-notification-sys"
1411 | version = "0.5.6"
1412 | source = "registry+https://github.com/rust-lang/crates.io-index"
1413 | checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5"
1414 | dependencies = [
1415 | "cc",
1416 | "dirs-next",
1417 | "objc-foundation",
1418 | "objc_id",
1419 | "time",
1420 | ]
1421 |
1422 | [[package]]
1423 | name = "malloc_buf"
1424 | version = "0.0.6"
1425 | source = "registry+https://github.com/rust-lang/crates.io-index"
1426 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1427 | dependencies = [
1428 | "libc",
1429 | ]
1430 |
1431 | [[package]]
1432 | name = "markup5ever"
1433 | version = "0.10.1"
1434 | source = "registry+https://github.com/rust-lang/crates.io-index"
1435 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
1436 | dependencies = [
1437 | "log",
1438 | "phf 0.8.0",
1439 | "phf_codegen",
1440 | "string_cache",
1441 | "string_cache_codegen",
1442 | "tendril",
1443 | ]
1444 |
1445 | [[package]]
1446 | name = "matchers"
1447 | version = "0.1.0"
1448 | source = "registry+https://github.com/rust-lang/crates.io-index"
1449 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1450 | dependencies = [
1451 | "regex-automata",
1452 | ]
1453 |
1454 | [[package]]
1455 | name = "matches"
1456 | version = "0.1.9"
1457 | source = "registry+https://github.com/rust-lang/crates.io-index"
1458 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1459 |
1460 | [[package]]
1461 | name = "memchr"
1462 | version = "2.5.0"
1463 | source = "registry+https://github.com/rust-lang/crates.io-index"
1464 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1465 |
1466 | [[package]]
1467 | name = "memoffset"
1468 | version = "0.6.5"
1469 | source = "registry+https://github.com/rust-lang/crates.io-index"
1470 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1471 | dependencies = [
1472 | "autocfg",
1473 | ]
1474 |
1475 | [[package]]
1476 | name = "miniz_oxide"
1477 | version = "0.5.3"
1478 | source = "registry+https://github.com/rust-lang/crates.io-index"
1479 | checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
1480 | dependencies = [
1481 | "adler",
1482 | ]
1483 |
1484 | [[package]]
1485 | name = "native-tls"
1486 | version = "0.2.10"
1487 | source = "registry+https://github.com/rust-lang/crates.io-index"
1488 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
1489 | dependencies = [
1490 | "lazy_static",
1491 | "libc",
1492 | "log",
1493 | "openssl",
1494 | "openssl-probe",
1495 | "openssl-sys",
1496 | "schannel",
1497 | "security-framework",
1498 | "security-framework-sys",
1499 | "tempfile",
1500 | ]
1501 |
1502 | [[package]]
1503 | name = "ndk"
1504 | version = "0.6.0"
1505 | source = "registry+https://github.com/rust-lang/crates.io-index"
1506 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
1507 | dependencies = [
1508 | "bitflags",
1509 | "jni-sys",
1510 | "ndk-sys",
1511 | "num_enum",
1512 | "thiserror",
1513 | ]
1514 |
1515 | [[package]]
1516 | name = "ndk-context"
1517 | version = "0.1.1"
1518 | source = "registry+https://github.com/rust-lang/crates.io-index"
1519 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1520 |
1521 | [[package]]
1522 | name = "ndk-sys"
1523 | version = "0.3.0"
1524 | source = "registry+https://github.com/rust-lang/crates.io-index"
1525 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
1526 | dependencies = [
1527 | "jni-sys",
1528 | ]
1529 |
1530 | [[package]]
1531 | name = "new_debug_unreachable"
1532 | version = "1.0.4"
1533 | source = "registry+https://github.com/rust-lang/crates.io-index"
1534 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
1535 |
1536 | [[package]]
1537 | name = "nodrop"
1538 | version = "0.1.14"
1539 | source = "registry+https://github.com/rust-lang/crates.io-index"
1540 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1541 |
1542 | [[package]]
1543 | name = "notify-rust"
1544 | version = "4.5.8"
1545 | source = "registry+https://github.com/rust-lang/crates.io-index"
1546 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4"
1547 | dependencies = [
1548 | "dbus",
1549 | "mac-notification-sys",
1550 | "winrt-notification",
1551 | ]
1552 |
1553 | [[package]]
1554 | name = "num-integer"
1555 | version = "0.1.45"
1556 | source = "registry+https://github.com/rust-lang/crates.io-index"
1557 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1558 | dependencies = [
1559 | "autocfg",
1560 | "num-traits",
1561 | ]
1562 |
1563 | [[package]]
1564 | name = "num-iter"
1565 | version = "0.1.43"
1566 | source = "registry+https://github.com/rust-lang/crates.io-index"
1567 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1568 | dependencies = [
1569 | "autocfg",
1570 | "num-integer",
1571 | "num-traits",
1572 | ]
1573 |
1574 | [[package]]
1575 | name = "num-rational"
1576 | version = "0.4.1"
1577 | source = "registry+https://github.com/rust-lang/crates.io-index"
1578 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1579 | dependencies = [
1580 | "autocfg",
1581 | "num-integer",
1582 | "num-traits",
1583 | ]
1584 |
1585 | [[package]]
1586 | name = "num-traits"
1587 | version = "0.2.15"
1588 | source = "registry+https://github.com/rust-lang/crates.io-index"
1589 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1590 | dependencies = [
1591 | "autocfg",
1592 | ]
1593 |
1594 | [[package]]
1595 | name = "num_cpus"
1596 | version = "1.13.1"
1597 | source = "registry+https://github.com/rust-lang/crates.io-index"
1598 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1599 | dependencies = [
1600 | "hermit-abi",
1601 | "libc",
1602 | ]
1603 |
1604 | [[package]]
1605 | name = "num_enum"
1606 | version = "0.5.7"
1607 | source = "registry+https://github.com/rust-lang/crates.io-index"
1608 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
1609 | dependencies = [
1610 | "num_enum_derive",
1611 | ]
1612 |
1613 | [[package]]
1614 | name = "num_enum_derive"
1615 | version = "0.5.7"
1616 | source = "registry+https://github.com/rust-lang/crates.io-index"
1617 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
1618 | dependencies = [
1619 | "proc-macro-crate",
1620 | "proc-macro2",
1621 | "quote",
1622 | "syn",
1623 | ]
1624 |
1625 | [[package]]
1626 | name = "num_threads"
1627 | version = "0.1.6"
1628 | source = "registry+https://github.com/rust-lang/crates.io-index"
1629 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
1630 | dependencies = [
1631 | "libc",
1632 | ]
1633 |
1634 | [[package]]
1635 | name = "objc"
1636 | version = "0.2.7"
1637 | source = "registry+https://github.com/rust-lang/crates.io-index"
1638 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1639 | dependencies = [
1640 | "malloc_buf",
1641 | "objc_exception",
1642 | ]
1643 |
1644 | [[package]]
1645 | name = "objc-foundation"
1646 | version = "0.1.1"
1647 | source = "registry+https://github.com/rust-lang/crates.io-index"
1648 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
1649 | dependencies = [
1650 | "block",
1651 | "objc",
1652 | "objc_id",
1653 | ]
1654 |
1655 | [[package]]
1656 | name = "objc_exception"
1657 | version = "0.1.2"
1658 | source = "registry+https://github.com/rust-lang/crates.io-index"
1659 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
1660 | dependencies = [
1661 | "cc",
1662 | ]
1663 |
1664 | [[package]]
1665 | name = "objc_id"
1666 | version = "0.1.1"
1667 | source = "registry+https://github.com/rust-lang/crates.io-index"
1668 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
1669 | dependencies = [
1670 | "objc",
1671 | ]
1672 |
1673 | [[package]]
1674 | name = "once_cell"
1675 | version = "1.13.1"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e"
1678 |
1679 | [[package]]
1680 | name = "open"
1681 | version = "3.0.2"
1682 | source = "registry+https://github.com/rust-lang/crates.io-index"
1683 | checksum = "f23a407004a1033f53e93f9b45580d14de23928faad187384f891507c9b0c045"
1684 | dependencies = [
1685 | "pathdiff",
1686 | "windows-sys",
1687 | ]
1688 |
1689 | [[package]]
1690 | name = "openssl"
1691 | version = "0.10.41"
1692 | source = "registry+https://github.com/rust-lang/crates.io-index"
1693 | checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
1694 | dependencies = [
1695 | "bitflags",
1696 | "cfg-if",
1697 | "foreign-types",
1698 | "libc",
1699 | "once_cell",
1700 | "openssl-macros",
1701 | "openssl-sys",
1702 | ]
1703 |
1704 | [[package]]
1705 | name = "openssl-macros"
1706 | version = "0.1.0"
1707 | source = "registry+https://github.com/rust-lang/crates.io-index"
1708 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
1709 | dependencies = [
1710 | "proc-macro2",
1711 | "quote",
1712 | "syn",
1713 | ]
1714 |
1715 | [[package]]
1716 | name = "openssl-probe"
1717 | version = "0.1.5"
1718 | source = "registry+https://github.com/rust-lang/crates.io-index"
1719 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1720 |
1721 | [[package]]
1722 | name = "openssl-sys"
1723 | version = "0.9.75"
1724 | source = "registry+https://github.com/rust-lang/crates.io-index"
1725 | checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
1726 | dependencies = [
1727 | "autocfg",
1728 | "cc",
1729 | "libc",
1730 | "pkg-config",
1731 | "vcpkg",
1732 | ]
1733 |
1734 | [[package]]
1735 | name = "os_info"
1736 | version = "3.5.0"
1737 | source = "registry+https://github.com/rust-lang/crates.io-index"
1738 | checksum = "5209b2162b2c140df493a93689e04f8deab3a67634f5bc7a553c0a98e5b8d399"
1739 | dependencies = [
1740 | "log",
1741 | "serde",
1742 | "winapi",
1743 | ]
1744 |
1745 | [[package]]
1746 | name = "os_pipe"
1747 | version = "1.0.1"
1748 | source = "registry+https://github.com/rust-lang/crates.io-index"
1749 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55"
1750 | dependencies = [
1751 | "libc",
1752 | "winapi",
1753 | ]
1754 |
1755 | [[package]]
1756 | name = "pango"
1757 | version = "0.15.10"
1758 | source = "registry+https://github.com/rust-lang/crates.io-index"
1759 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
1760 | dependencies = [
1761 | "bitflags",
1762 | "glib",
1763 | "libc",
1764 | "once_cell",
1765 | "pango-sys",
1766 | ]
1767 |
1768 | [[package]]
1769 | name = "pango-sys"
1770 | version = "0.15.10"
1771 | source = "registry+https://github.com/rust-lang/crates.io-index"
1772 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
1773 | dependencies = [
1774 | "glib-sys",
1775 | "gobject-sys",
1776 | "libc",
1777 | "system-deps 6.0.2",
1778 | ]
1779 |
1780 | [[package]]
1781 | name = "parking"
1782 | version = "2.0.0"
1783 | source = "registry+https://github.com/rust-lang/crates.io-index"
1784 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
1785 |
1786 | [[package]]
1787 | name = "parking_lot"
1788 | version = "0.12.1"
1789 | source = "registry+https://github.com/rust-lang/crates.io-index"
1790 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1791 | dependencies = [
1792 | "lock_api",
1793 | "parking_lot_core",
1794 | ]
1795 |
1796 | [[package]]
1797 | name = "parking_lot_core"
1798 | version = "0.9.3"
1799 | source = "registry+https://github.com/rust-lang/crates.io-index"
1800 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
1801 | dependencies = [
1802 | "cfg-if",
1803 | "libc",
1804 | "redox_syscall",
1805 | "smallvec",
1806 | "windows-sys",
1807 | ]
1808 |
1809 | [[package]]
1810 | name = "paste"
1811 | version = "1.0.8"
1812 | source = "registry+https://github.com/rust-lang/crates.io-index"
1813 | checksum = "9423e2b32f7a043629287a536f21951e8c6a82482d0acb1eeebfc90bc2225b22"
1814 |
1815 | [[package]]
1816 | name = "pathdiff"
1817 | version = "0.2.1"
1818 | source = "registry+https://github.com/rust-lang/crates.io-index"
1819 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
1820 |
1821 | [[package]]
1822 | name = "percent-encoding"
1823 | version = "2.1.0"
1824 | source = "registry+https://github.com/rust-lang/crates.io-index"
1825 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1826 |
1827 | [[package]]
1828 | name = "pest"
1829 | version = "2.3.0"
1830 | source = "registry+https://github.com/rust-lang/crates.io-index"
1831 | checksum = "4b0560d531d1febc25a3c9398a62a71256c0178f2e3443baedd9ad4bb8c9deb4"
1832 | dependencies = [
1833 | "thiserror",
1834 | "ucd-trie",
1835 | ]
1836 |
1837 | [[package]]
1838 | name = "phf"
1839 | version = "0.8.0"
1840 | source = "registry+https://github.com/rust-lang/crates.io-index"
1841 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
1842 | dependencies = [
1843 | "phf_macros 0.8.0",
1844 | "phf_shared 0.8.0",
1845 | "proc-macro-hack",
1846 | ]
1847 |
1848 | [[package]]
1849 | name = "phf"
1850 | version = "0.10.1"
1851 | source = "registry+https://github.com/rust-lang/crates.io-index"
1852 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
1853 | dependencies = [
1854 | "phf_macros 0.10.0",
1855 | "phf_shared 0.10.0",
1856 | "proc-macro-hack",
1857 | ]
1858 |
1859 | [[package]]
1860 | name = "phf_codegen"
1861 | version = "0.8.0"
1862 | source = "registry+https://github.com/rust-lang/crates.io-index"
1863 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
1864 | dependencies = [
1865 | "phf_generator 0.8.0",
1866 | "phf_shared 0.8.0",
1867 | ]
1868 |
1869 | [[package]]
1870 | name = "phf_generator"
1871 | version = "0.8.0"
1872 | source = "registry+https://github.com/rust-lang/crates.io-index"
1873 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
1874 | dependencies = [
1875 | "phf_shared 0.8.0",
1876 | "rand 0.7.3",
1877 | ]
1878 |
1879 | [[package]]
1880 | name = "phf_generator"
1881 | version = "0.10.0"
1882 | source = "registry+https://github.com/rust-lang/crates.io-index"
1883 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
1884 | dependencies = [
1885 | "phf_shared 0.10.0",
1886 | "rand 0.8.5",
1887 | ]
1888 |
1889 | [[package]]
1890 | name = "phf_macros"
1891 | version = "0.8.0"
1892 | source = "registry+https://github.com/rust-lang/crates.io-index"
1893 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
1894 | dependencies = [
1895 | "phf_generator 0.8.0",
1896 | "phf_shared 0.8.0",
1897 | "proc-macro-hack",
1898 | "proc-macro2",
1899 | "quote",
1900 | "syn",
1901 | ]
1902 |
1903 | [[package]]
1904 | name = "phf_macros"
1905 | version = "0.10.0"
1906 | source = "registry+https://github.com/rust-lang/crates.io-index"
1907 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
1908 | dependencies = [
1909 | "phf_generator 0.10.0",
1910 | "phf_shared 0.10.0",
1911 | "proc-macro-hack",
1912 | "proc-macro2",
1913 | "quote",
1914 | "syn",
1915 | ]
1916 |
1917 | [[package]]
1918 | name = "phf_shared"
1919 | version = "0.8.0"
1920 | source = "registry+https://github.com/rust-lang/crates.io-index"
1921 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
1922 | dependencies = [
1923 | "siphasher",
1924 | ]
1925 |
1926 | [[package]]
1927 | name = "phf_shared"
1928 | version = "0.10.0"
1929 | source = "registry+https://github.com/rust-lang/crates.io-index"
1930 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
1931 | dependencies = [
1932 | "siphasher",
1933 | ]
1934 |
1935 | [[package]]
1936 | name = "pin-project-lite"
1937 | version = "0.2.9"
1938 | source = "registry+https://github.com/rust-lang/crates.io-index"
1939 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1940 |
1941 | [[package]]
1942 | name = "pin-utils"
1943 | version = "0.1.0"
1944 | source = "registry+https://github.com/rust-lang/crates.io-index"
1945 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1946 |
1947 | [[package]]
1948 | name = "pkg-config"
1949 | version = "0.3.25"
1950 | source = "registry+https://github.com/rust-lang/crates.io-index"
1951 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1952 |
1953 | [[package]]
1954 | name = "plist"
1955 | version = "1.3.1"
1956 | source = "registry+https://github.com/rust-lang/crates.io-index"
1957 | checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
1958 | dependencies = [
1959 | "base64",
1960 | "indexmap",
1961 | "line-wrap",
1962 | "serde",
1963 | "time",
1964 | "xml-rs",
1965 | ]
1966 |
1967 | [[package]]
1968 | name = "png"
1969 | version = "0.11.0"
1970 | source = "registry+https://github.com/rust-lang/crates.io-index"
1971 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925"
1972 | dependencies = [
1973 | "bitflags",
1974 | "deflate 0.7.20",
1975 | "inflate",
1976 | "num-iter",
1977 | ]
1978 |
1979 | [[package]]
1980 | name = "png"
1981 | version = "0.17.5"
1982 | source = "registry+https://github.com/rust-lang/crates.io-index"
1983 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
1984 | dependencies = [
1985 | "bitflags",
1986 | "crc32fast",
1987 | "deflate 1.0.0",
1988 | "miniz_oxide",
1989 | ]
1990 |
1991 | [[package]]
1992 | name = "ppv-lite86"
1993 | version = "0.2.16"
1994 | source = "registry+https://github.com/rust-lang/crates.io-index"
1995 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1996 |
1997 | [[package]]
1998 | name = "precomputed-hash"
1999 | version = "0.1.1"
2000 | source = "registry+https://github.com/rust-lang/crates.io-index"
2001 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2002 |
2003 | [[package]]
2004 | name = "proc-macro-crate"
2005 | version = "1.2.1"
2006 | source = "registry+https://github.com/rust-lang/crates.io-index"
2007 | checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
2008 | dependencies = [
2009 | "once_cell",
2010 | "thiserror",
2011 | "toml",
2012 | ]
2013 |
2014 | [[package]]
2015 | name = "proc-macro-error"
2016 | version = "1.0.4"
2017 | source = "registry+https://github.com/rust-lang/crates.io-index"
2018 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2019 | dependencies = [
2020 | "proc-macro-error-attr",
2021 | "proc-macro2",
2022 | "quote",
2023 | "syn",
2024 | "version_check",
2025 | ]
2026 |
2027 | [[package]]
2028 | name = "proc-macro-error-attr"
2029 | version = "1.0.4"
2030 | source = "registry+https://github.com/rust-lang/crates.io-index"
2031 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2032 | dependencies = [
2033 | "proc-macro2",
2034 | "quote",
2035 | "version_check",
2036 | ]
2037 |
2038 | [[package]]
2039 | name = "proc-macro-hack"
2040 | version = "0.5.19"
2041 | source = "registry+https://github.com/rust-lang/crates.io-index"
2042 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2043 |
2044 | [[package]]
2045 | name = "proc-macro2"
2046 | version = "1.0.43"
2047 | source = "registry+https://github.com/rust-lang/crates.io-index"
2048 | checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2049 | dependencies = [
2050 | "unicode-ident",
2051 | ]
2052 |
2053 | [[package]]
2054 | name = "quote"
2055 | version = "1.0.21"
2056 | source = "registry+https://github.com/rust-lang/crates.io-index"
2057 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2058 | dependencies = [
2059 | "proc-macro2",
2060 | ]
2061 |
2062 | [[package]]
2063 | name = "rand"
2064 | version = "0.7.3"
2065 | source = "registry+https://github.com/rust-lang/crates.io-index"
2066 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2067 | dependencies = [
2068 | "getrandom 0.1.16",
2069 | "libc",
2070 | "rand_chacha 0.2.2",
2071 | "rand_core 0.5.1",
2072 | "rand_hc",
2073 | "rand_pcg",
2074 | ]
2075 |
2076 | [[package]]
2077 | name = "rand"
2078 | version = "0.8.5"
2079 | source = "registry+https://github.com/rust-lang/crates.io-index"
2080 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2081 | dependencies = [
2082 | "libc",
2083 | "rand_chacha 0.3.1",
2084 | "rand_core 0.6.3",
2085 | ]
2086 |
2087 | [[package]]
2088 | name = "rand_chacha"
2089 | version = "0.2.2"
2090 | source = "registry+https://github.com/rust-lang/crates.io-index"
2091 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2092 | dependencies = [
2093 | "ppv-lite86",
2094 | "rand_core 0.5.1",
2095 | ]
2096 |
2097 | [[package]]
2098 | name = "rand_chacha"
2099 | version = "0.3.1"
2100 | source = "registry+https://github.com/rust-lang/crates.io-index"
2101 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2102 | dependencies = [
2103 | "ppv-lite86",
2104 | "rand_core 0.6.3",
2105 | ]
2106 |
2107 | [[package]]
2108 | name = "rand_core"
2109 | version = "0.5.1"
2110 | source = "registry+https://github.com/rust-lang/crates.io-index"
2111 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2112 | dependencies = [
2113 | "getrandom 0.1.16",
2114 | ]
2115 |
2116 | [[package]]
2117 | name = "rand_core"
2118 | version = "0.6.3"
2119 | source = "registry+https://github.com/rust-lang/crates.io-index"
2120 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2121 | dependencies = [
2122 | "getrandom 0.2.7",
2123 | ]
2124 |
2125 | [[package]]
2126 | name = "rand_hc"
2127 | version = "0.2.0"
2128 | source = "registry+https://github.com/rust-lang/crates.io-index"
2129 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2130 | dependencies = [
2131 | "rand_core 0.5.1",
2132 | ]
2133 |
2134 | [[package]]
2135 | name = "rand_pcg"
2136 | version = "0.2.1"
2137 | source = "registry+https://github.com/rust-lang/crates.io-index"
2138 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2139 | dependencies = [
2140 | "rand_core 0.5.1",
2141 | ]
2142 |
2143 | [[package]]
2144 | name = "raw-window-handle"
2145 | version = "0.4.3"
2146 | source = "registry+https://github.com/rust-lang/crates.io-index"
2147 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41"
2148 | dependencies = [
2149 | "cty",
2150 | ]
2151 |
2152 | [[package]]
2153 | name = "redox_syscall"
2154 | version = "0.2.16"
2155 | source = "registry+https://github.com/rust-lang/crates.io-index"
2156 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2157 | dependencies = [
2158 | "bitflags",
2159 | ]
2160 |
2161 | [[package]]
2162 | name = "redox_users"
2163 | version = "0.4.3"
2164 | source = "registry+https://github.com/rust-lang/crates.io-index"
2165 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2166 | dependencies = [
2167 | "getrandom 0.2.7",
2168 | "redox_syscall",
2169 | "thiserror",
2170 | ]
2171 |
2172 | [[package]]
2173 | name = "regex"
2174 | version = "1.6.0"
2175 | source = "registry+https://github.com/rust-lang/crates.io-index"
2176 | checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2177 | dependencies = [
2178 | "aho-corasick",
2179 | "memchr",
2180 | "regex-syntax",
2181 | ]
2182 |
2183 | [[package]]
2184 | name = "regex-automata"
2185 | version = "0.1.10"
2186 | source = "registry+https://github.com/rust-lang/crates.io-index"
2187 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2188 | dependencies = [
2189 | "regex-syntax",
2190 | ]
2191 |
2192 | [[package]]
2193 | name = "regex-syntax"
2194 | version = "0.6.27"
2195 | source = "registry+https://github.com/rust-lang/crates.io-index"
2196 | checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2197 |
2198 | [[package]]
2199 | name = "remove_dir_all"
2200 | version = "0.5.3"
2201 | source = "registry+https://github.com/rust-lang/crates.io-index"
2202 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2203 | dependencies = [
2204 | "winapi",
2205 | ]
2206 |
2207 | [[package]]
2208 | name = "rfd"
2209 | version = "0.9.1"
2210 | source = "registry+https://github.com/rust-lang/crates.io-index"
2211 | checksum = "f121348fd3b9035ed11be1f028e8944263c30641f8c5deacf57a4320782fb402"
2212 | dependencies = [
2213 | "block",
2214 | "dispatch",
2215 | "embed-resource",
2216 | "glib-sys",
2217 | "gobject-sys",
2218 | "gtk-sys",
2219 | "js-sys",
2220 | "lazy_static",
2221 | "log",
2222 | "objc",
2223 | "objc-foundation",
2224 | "objc_id",
2225 | "raw-window-handle",
2226 | "wasm-bindgen",
2227 | "wasm-bindgen-futures",
2228 | "web-sys",
2229 | "windows 0.37.0",
2230 | ]
2231 |
2232 | [[package]]
2233 | name = "rustc_version"
2234 | version = "0.3.3"
2235 | source = "registry+https://github.com/rust-lang/crates.io-index"
2236 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
2237 | dependencies = [
2238 | "semver 0.11.0",
2239 | ]
2240 |
2241 | [[package]]
2242 | name = "rustc_version"
2243 | version = "0.4.0"
2244 | source = "registry+https://github.com/rust-lang/crates.io-index"
2245 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2246 | dependencies = [
2247 | "semver 1.0.13",
2248 | ]
2249 |
2250 | [[package]]
2251 | name = "rustversion"
2252 | version = "1.0.9"
2253 | source = "registry+https://github.com/rust-lang/crates.io-index"
2254 | checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
2255 |
2256 | [[package]]
2257 | name = "ryu"
2258 | version = "1.0.11"
2259 | source = "registry+https://github.com/rust-lang/crates.io-index"
2260 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2261 |
2262 | [[package]]
2263 | name = "safemem"
2264 | version = "0.3.3"
2265 | source = "registry+https://github.com/rust-lang/crates.io-index"
2266 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2267 |
2268 | [[package]]
2269 | name = "same-file"
2270 | version = "1.0.6"
2271 | source = "registry+https://github.com/rust-lang/crates.io-index"
2272 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2273 | dependencies = [
2274 | "winapi-util",
2275 | ]
2276 |
2277 | [[package]]
2278 | name = "schannel"
2279 | version = "0.1.20"
2280 | source = "registry+https://github.com/rust-lang/crates.io-index"
2281 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2282 | dependencies = [
2283 | "lazy_static",
2284 | "windows-sys",
2285 | ]
2286 |
2287 | [[package]]
2288 | name = "scoped-tls"
2289 | version = "1.0.0"
2290 | source = "registry+https://github.com/rust-lang/crates.io-index"
2291 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2292 |
2293 | [[package]]
2294 | name = "scopeguard"
2295 | version = "1.1.0"
2296 | source = "registry+https://github.com/rust-lang/crates.io-index"
2297 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2298 |
2299 | [[package]]
2300 | name = "security-framework"
2301 | version = "2.7.0"
2302 | source = "registry+https://github.com/rust-lang/crates.io-index"
2303 | checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
2304 | dependencies = [
2305 | "bitflags",
2306 | "core-foundation",
2307 | "core-foundation-sys",
2308 | "libc",
2309 | "security-framework-sys",
2310 | ]
2311 |
2312 | [[package]]
2313 | name = "security-framework-sys"
2314 | version = "2.6.1"
2315 | source = "registry+https://github.com/rust-lang/crates.io-index"
2316 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2317 | dependencies = [
2318 | "core-foundation-sys",
2319 | "libc",
2320 | ]
2321 |
2322 | [[package]]
2323 | name = "selectors"
2324 | version = "0.22.0"
2325 | source = "registry+https://github.com/rust-lang/crates.io-index"
2326 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2327 | dependencies = [
2328 | "bitflags",
2329 | "cssparser",
2330 | "derive_more",
2331 | "fxhash",
2332 | "log",
2333 | "matches",
2334 | "phf 0.8.0",
2335 | "phf_codegen",
2336 | "precomputed-hash",
2337 | "servo_arc",
2338 | "smallvec",
2339 | "thin-slice",
2340 | ]
2341 |
2342 | [[package]]
2343 | name = "semver"
2344 | version = "0.11.0"
2345 | source = "registry+https://github.com/rust-lang/crates.io-index"
2346 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2347 | dependencies = [
2348 | "semver-parser",
2349 | ]
2350 |
2351 | [[package]]
2352 | name = "semver"
2353 | version = "1.0.13"
2354 | source = "registry+https://github.com/rust-lang/crates.io-index"
2355 | checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711"
2356 | dependencies = [
2357 | "serde",
2358 | ]
2359 |
2360 | [[package]]
2361 | name = "semver-parser"
2362 | version = "0.10.2"
2363 | source = "registry+https://github.com/rust-lang/crates.io-index"
2364 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2365 | dependencies = [
2366 | "pest",
2367 | ]
2368 |
2369 | [[package]]
2370 | name = "serde"
2371 | version = "1.0.144"
2372 | source = "registry+https://github.com/rust-lang/crates.io-index"
2373 | checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
2374 | dependencies = [
2375 | "serde_derive",
2376 | ]
2377 |
2378 | [[package]]
2379 | name = "serde_derive"
2380 | version = "1.0.144"
2381 | source = "registry+https://github.com/rust-lang/crates.io-index"
2382 | checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
2383 | dependencies = [
2384 | "proc-macro2",
2385 | "quote",
2386 | "syn",
2387 | ]
2388 |
2389 | [[package]]
2390 | name = "serde_json"
2391 | version = "1.0.85"
2392 | source = "registry+https://github.com/rust-lang/crates.io-index"
2393 | checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
2394 | dependencies = [
2395 | "itoa 1.0.3",
2396 | "ryu",
2397 | "serde",
2398 | ]
2399 |
2400 | [[package]]
2401 | name = "serde_repr"
2402 | version = "0.1.9"
2403 | source = "registry+https://github.com/rust-lang/crates.io-index"
2404 | checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
2405 | dependencies = [
2406 | "proc-macro2",
2407 | "quote",
2408 | "syn",
2409 | ]
2410 |
2411 | [[package]]
2412 | name = "serde_urlencoded"
2413 | version = "0.7.1"
2414 | source = "registry+https://github.com/rust-lang/crates.io-index"
2415 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2416 | dependencies = [
2417 | "form_urlencoded",
2418 | "itoa 1.0.3",
2419 | "ryu",
2420 | "serde",
2421 | ]
2422 |
2423 | [[package]]
2424 | name = "serde_with"
2425 | version = "1.14.0"
2426 | source = "registry+https://github.com/rust-lang/crates.io-index"
2427 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
2428 | dependencies = [
2429 | "serde",
2430 | "serde_with_macros",
2431 | ]
2432 |
2433 | [[package]]
2434 | name = "serde_with_macros"
2435 | version = "1.5.2"
2436 | source = "registry+https://github.com/rust-lang/crates.io-index"
2437 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
2438 | dependencies = [
2439 | "darling",
2440 | "proc-macro2",
2441 | "quote",
2442 | "syn",
2443 | ]
2444 |
2445 | [[package]]
2446 | name = "serialize-to-javascript"
2447 | version = "0.1.1"
2448 | source = "registry+https://github.com/rust-lang/crates.io-index"
2449 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
2450 | dependencies = [
2451 | "serde",
2452 | "serde_json",
2453 | "serialize-to-javascript-impl",
2454 | ]
2455 |
2456 | [[package]]
2457 | name = "serialize-to-javascript-impl"
2458 | version = "0.1.1"
2459 | source = "registry+https://github.com/rust-lang/crates.io-index"
2460 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
2461 | dependencies = [
2462 | "proc-macro2",
2463 | "quote",
2464 | "syn",
2465 | ]
2466 |
2467 | [[package]]
2468 | name = "servo_arc"
2469 | version = "0.1.1"
2470 | source = "registry+https://github.com/rust-lang/crates.io-index"
2471 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2472 | dependencies = [
2473 | "nodrop",
2474 | "stable_deref_trait",
2475 | ]
2476 |
2477 | [[package]]
2478 | name = "sha2"
2479 | version = "0.10.2"
2480 | source = "registry+https://github.com/rust-lang/crates.io-index"
2481 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2482 | dependencies = [
2483 | "cfg-if",
2484 | "cpufeatures",
2485 | "digest",
2486 | ]
2487 |
2488 | [[package]]
2489 | name = "sharded-slab"
2490 | version = "0.1.4"
2491 | source = "registry+https://github.com/rust-lang/crates.io-index"
2492 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2493 | dependencies = [
2494 | "lazy_static",
2495 | ]
2496 |
2497 | [[package]]
2498 | name = "shared_child"
2499 | version = "1.0.0"
2500 | source = "registry+https://github.com/rust-lang/crates.io-index"
2501 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef"
2502 | dependencies = [
2503 | "libc",
2504 | "winapi",
2505 | ]
2506 |
2507 | [[package]]
2508 | name = "siphasher"
2509 | version = "0.3.10"
2510 | source = "registry+https://github.com/rust-lang/crates.io-index"
2511 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2512 |
2513 | [[package]]
2514 | name = "slab"
2515 | version = "0.4.7"
2516 | source = "registry+https://github.com/rust-lang/crates.io-index"
2517 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
2518 | dependencies = [
2519 | "autocfg",
2520 | ]
2521 |
2522 | [[package]]
2523 | name = "smallvec"
2524 | version = "1.9.0"
2525 | source = "registry+https://github.com/rust-lang/crates.io-index"
2526 | checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2527 |
2528 | [[package]]
2529 | name = "soup2"
2530 | version = "0.2.1"
2531 | source = "registry+https://github.com/rust-lang/crates.io-index"
2532 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
2533 | dependencies = [
2534 | "bitflags",
2535 | "gio",
2536 | "glib",
2537 | "libc",
2538 | "once_cell",
2539 | "soup2-sys",
2540 | ]
2541 |
2542 | [[package]]
2543 | name = "soup2-sys"
2544 | version = "0.2.0"
2545 | source = "registry+https://github.com/rust-lang/crates.io-index"
2546 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
2547 | dependencies = [
2548 | "bitflags",
2549 | "gio-sys",
2550 | "glib-sys",
2551 | "gobject-sys",
2552 | "libc",
2553 | "system-deps 5.0.0",
2554 | ]
2555 |
2556 | [[package]]
2557 | name = "stable_deref_trait"
2558 | version = "1.2.0"
2559 | source = "registry+https://github.com/rust-lang/crates.io-index"
2560 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2561 |
2562 | [[package]]
2563 | name = "state"
2564 | version = "0.5.3"
2565 | source = "registry+https://github.com/rust-lang/crates.io-index"
2566 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
2567 | dependencies = [
2568 | "loom",
2569 | ]
2570 |
2571 | [[package]]
2572 | name = "string_cache"
2573 | version = "0.8.4"
2574 | source = "registry+https://github.com/rust-lang/crates.io-index"
2575 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2576 | dependencies = [
2577 | "new_debug_unreachable",
2578 | "once_cell",
2579 | "parking_lot",
2580 | "phf_shared 0.10.0",
2581 | "precomputed-hash",
2582 | "serde",
2583 | ]
2584 |
2585 | [[package]]
2586 | name = "string_cache_codegen"
2587 | version = "0.5.2"
2588 | source = "registry+https://github.com/rust-lang/crates.io-index"
2589 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2590 | dependencies = [
2591 | "phf_generator 0.10.0",
2592 | "phf_shared 0.10.0",
2593 | "proc-macro2",
2594 | "quote",
2595 | ]
2596 |
2597 | [[package]]
2598 | name = "strsim"
2599 | version = "0.10.0"
2600 | source = "registry+https://github.com/rust-lang/crates.io-index"
2601 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2602 |
2603 | [[package]]
2604 | name = "strum"
2605 | version = "0.22.0"
2606 | source = "registry+https://github.com/rust-lang/crates.io-index"
2607 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
2608 | dependencies = [
2609 | "strum_macros",
2610 | ]
2611 |
2612 | [[package]]
2613 | name = "strum_macros"
2614 | version = "0.22.0"
2615 | source = "registry+https://github.com/rust-lang/crates.io-index"
2616 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
2617 | dependencies = [
2618 | "heck 0.3.3",
2619 | "proc-macro2",
2620 | "quote",
2621 | "syn",
2622 | ]
2623 |
2624 | [[package]]
2625 | name = "syn"
2626 | version = "1.0.99"
2627 | source = "registry+https://github.com/rust-lang/crates.io-index"
2628 | checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2629 | dependencies = [
2630 | "proc-macro2",
2631 | "quote",
2632 | "unicode-ident",
2633 | ]
2634 |
2635 | [[package]]
2636 | name = "system-deps"
2637 | version = "5.0.0"
2638 | source = "registry+https://github.com/rust-lang/crates.io-index"
2639 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
2640 | dependencies = [
2641 | "cfg-expr 0.9.1",
2642 | "heck 0.3.3",
2643 | "pkg-config",
2644 | "toml",
2645 | "version-compare 0.0.11",
2646 | ]
2647 |
2648 | [[package]]
2649 | name = "system-deps"
2650 | version = "6.0.2"
2651 | source = "registry+https://github.com/rust-lang/crates.io-index"
2652 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709"
2653 | dependencies = [
2654 | "cfg-expr 0.10.3",
2655 | "heck 0.4.0",
2656 | "pkg-config",
2657 | "toml",
2658 | "version-compare 0.1.0",
2659 | ]
2660 |
2661 | [[package]]
2662 | name = "tao"
2663 | version = "0.12.2"
2664 | source = "registry+https://github.com/rust-lang/crates.io-index"
2665 | checksum = "f6fd7725dc1e593e9ecabd9fe49c112a204c8c8694db4182e78b2a5af490b1ae"
2666 | dependencies = [
2667 | "bitflags",
2668 | "cairo-rs",
2669 | "cc",
2670 | "cocoa",
2671 | "core-foundation",
2672 | "core-graphics",
2673 | "crossbeam-channel",
2674 | "dispatch",
2675 | "gdk",
2676 | "gdk-pixbuf",
2677 | "gdk-sys",
2678 | "gdkx11-sys",
2679 | "gio",
2680 | "glib",
2681 | "glib-sys",
2682 | "gtk",
2683 | "image",
2684 | "instant",
2685 | "jni 0.19.0",
2686 | "lazy_static",
2687 | "libc",
2688 | "log",
2689 | "ndk",
2690 | "ndk-context",
2691 | "ndk-sys",
2692 | "objc",
2693 | "once_cell",
2694 | "parking_lot",
2695 | "paste",
2696 | "png 0.17.5",
2697 | "raw-window-handle",
2698 | "scopeguard",
2699 | "serde",
2700 | "unicode-segmentation",
2701 | "uuid 1.1.2",
2702 | "windows 0.37.0",
2703 | "windows-implement",
2704 | "x11-dl",
2705 | ]
2706 |
2707 | [[package]]
2708 | name = "tar"
2709 | version = "0.4.38"
2710 | source = "registry+https://github.com/rust-lang/crates.io-index"
2711 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
2712 | dependencies = [
2713 | "filetime",
2714 | "libc",
2715 | "xattr",
2716 | ]
2717 |
2718 | [[package]]
2719 | name = "tauri"
2720 | version = "1.0.5"
2721 | source = "registry+https://github.com/rust-lang/crates.io-index"
2722 | checksum = "e1a56a8b125069c2682bd31610109b4436c050c74447bee1078217a0325c1add"
2723 | dependencies = [
2724 | "anyhow",
2725 | "attohttpc",
2726 | "cocoa",
2727 | "dirs-next",
2728 | "embed_plist",
2729 | "flate2",
2730 | "futures",
2731 | "futures-lite",
2732 | "glib",
2733 | "glob",
2734 | "gtk",
2735 | "heck 0.4.0",
2736 | "http",
2737 | "ignore",
2738 | "notify-rust",
2739 | "objc",
2740 | "once_cell",
2741 | "open",
2742 | "os_info",
2743 | "os_pipe",
2744 | "percent-encoding",
2745 | "rand 0.8.5",
2746 | "raw-window-handle",
2747 | "regex",
2748 | "rfd",
2749 | "semver 1.0.13",
2750 | "serde",
2751 | "serde_json",
2752 | "serde_repr",
2753 | "serialize-to-javascript",
2754 | "shared_child",
2755 | "state",
2756 | "tar",
2757 | "tauri-macros",
2758 | "tauri-runtime",
2759 | "tauri-runtime-wry",
2760 | "tauri-utils",
2761 | "tempfile",
2762 | "thiserror",
2763 | "tokio",
2764 | "url",
2765 | "uuid 1.1.2",
2766 | "webkit2gtk",
2767 | "webview2-com",
2768 | "windows 0.37.0",
2769 | ]
2770 |
2771 | [[package]]
2772 | name = "tauri-build"
2773 | version = "1.0.4"
2774 | source = "registry+https://github.com/rust-lang/crates.io-index"
2775 | checksum = "acafb1c515c5d14234a294461bd43c723639a84891a45f6a250fd3441ad2e8ed"
2776 | dependencies = [
2777 | "anyhow",
2778 | "cargo_toml",
2779 | "heck 0.4.0",
2780 | "json-patch",
2781 | "semver 1.0.13",
2782 | "serde_json",
2783 | "tauri-utils",
2784 | "winres",
2785 | ]
2786 |
2787 | [[package]]
2788 | name = "tauri-codegen"
2789 | version = "1.0.4"
2790 | source = "registry+https://github.com/rust-lang/crates.io-index"
2791 | checksum = "16d62a3c8790d6cba686cea6e3f7f569d12c662c3274c2d165a4fd33e3871b72"
2792 | dependencies = [
2793 | "base64",
2794 | "brotli",
2795 | "ico",
2796 | "json-patch",
2797 | "plist",
2798 | "png 0.17.5",
2799 | "proc-macro2",
2800 | "quote",
2801 | "regex",
2802 | "semver 1.0.13",
2803 | "serde",
2804 | "serde_json",
2805 | "sha2",
2806 | "tauri-utils",
2807 | "thiserror",
2808 | "time",
2809 | "uuid 1.1.2",
2810 | "walkdir",
2811 | ]
2812 |
2813 | [[package]]
2814 | name = "tauri-macros"
2815 | version = "1.0.4"
2816 | source = "registry+https://github.com/rust-lang/crates.io-index"
2817 | checksum = "7296fa17996629f43081e1c66d554703900187ed900c5bf46f97f0bcfb069278"
2818 | dependencies = [
2819 | "heck 0.4.0",
2820 | "proc-macro2",
2821 | "quote",
2822 | "syn",
2823 | "tauri-codegen",
2824 | "tauri-utils",
2825 | ]
2826 |
2827 | [[package]]
2828 | name = "tauri-runtime"
2829 | version = "0.10.2"
2830 | source = "registry+https://github.com/rust-lang/crates.io-index"
2831 | checksum = "4e4cff3b4d9469727fa2107c4b3d2eda110df1ba45103fb420178e536362fae4"
2832 | dependencies = [
2833 | "gtk",
2834 | "http",
2835 | "http-range",
2836 | "infer",
2837 | "raw-window-handle",
2838 | "serde",
2839 | "serde_json",
2840 | "tauri-utils",
2841 | "thiserror",
2842 | "uuid 1.1.2",
2843 | "webview2-com",
2844 | "windows 0.37.0",
2845 | ]
2846 |
2847 | [[package]]
2848 | name = "tauri-runtime-wry"
2849 | version = "0.10.2"
2850 | source = "registry+https://github.com/rust-lang/crates.io-index"
2851 | checksum = "3fa8c4edaf01d8b556e7172c844b1b4dd3399adcd1a606bd520fc3e65f698546"
2852 | dependencies = [
2853 | "cocoa",
2854 | "gtk",
2855 | "percent-encoding",
2856 | "rand 0.8.5",
2857 | "raw-window-handle",
2858 | "tauri-runtime",
2859 | "tauri-utils",
2860 | "uuid 1.1.2",
2861 | "webkit2gtk",
2862 | "webview2-com",
2863 | "windows 0.37.0",
2864 | "wry",
2865 | ]
2866 |
2867 | [[package]]
2868 | name = "tauri-utils"
2869 | version = "1.0.3"
2870 | source = "registry+https://github.com/rust-lang/crates.io-index"
2871 | checksum = "12ff4b68d9faeb57c9c727bf58c9c9768d2b67d8e84e62ce6146e7859a2e9c6b"
2872 | dependencies = [
2873 | "brotli",
2874 | "ctor",
2875 | "glob",
2876 | "heck 0.4.0",
2877 | "html5ever",
2878 | "json-patch",
2879 | "kuchiki",
2880 | "memchr",
2881 | "phf 0.10.1",
2882 | "proc-macro2",
2883 | "quote",
2884 | "semver 1.0.13",
2885 | "serde",
2886 | "serde_json",
2887 | "serde_with",
2888 | "thiserror",
2889 | "url",
2890 | "walkdir",
2891 | "windows 0.37.0",
2892 | ]
2893 |
2894 | [[package]]
2895 | name = "tempfile"
2896 | version = "3.3.0"
2897 | source = "registry+https://github.com/rust-lang/crates.io-index"
2898 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2899 | dependencies = [
2900 | "cfg-if",
2901 | "fastrand",
2902 | "libc",
2903 | "redox_syscall",
2904 | "remove_dir_all",
2905 | "winapi",
2906 | ]
2907 |
2908 | [[package]]
2909 | name = "tendril"
2910 | version = "0.4.3"
2911 | source = "registry+https://github.com/rust-lang/crates.io-index"
2912 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2913 | dependencies = [
2914 | "futf",
2915 | "mac",
2916 | "utf-8",
2917 | ]
2918 |
2919 | [[package]]
2920 | name = "thin-slice"
2921 | version = "0.1.1"
2922 | source = "registry+https://github.com/rust-lang/crates.io-index"
2923 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
2924 |
2925 | [[package]]
2926 | name = "thiserror"
2927 | version = "1.0.32"
2928 | source = "registry+https://github.com/rust-lang/crates.io-index"
2929 | checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
2930 | dependencies = [
2931 | "thiserror-impl",
2932 | ]
2933 |
2934 | [[package]]
2935 | name = "thiserror-impl"
2936 | version = "1.0.32"
2937 | source = "registry+https://github.com/rust-lang/crates.io-index"
2938 | checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
2939 | dependencies = [
2940 | "proc-macro2",
2941 | "quote",
2942 | "syn",
2943 | ]
2944 |
2945 | [[package]]
2946 | name = "thread_local"
2947 | version = "1.1.4"
2948 | source = "registry+https://github.com/rust-lang/crates.io-index"
2949 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2950 | dependencies = [
2951 | "once_cell",
2952 | ]
2953 |
2954 | [[package]]
2955 | name = "time"
2956 | version = "0.3.14"
2957 | source = "registry+https://github.com/rust-lang/crates.io-index"
2958 | checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
2959 | dependencies = [
2960 | "itoa 1.0.3",
2961 | "libc",
2962 | "num_threads",
2963 | ]
2964 |
2965 | [[package]]
2966 | name = "tinyvec"
2967 | version = "1.6.0"
2968 | source = "registry+https://github.com/rust-lang/crates.io-index"
2969 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2970 | dependencies = [
2971 | "tinyvec_macros",
2972 | ]
2973 |
2974 | [[package]]
2975 | name = "tinyvec_macros"
2976 | version = "0.1.0"
2977 | source = "registry+https://github.com/rust-lang/crates.io-index"
2978 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2979 |
2980 | [[package]]
2981 | name = "tokio"
2982 | version = "1.20.1"
2983 | source = "registry+https://github.com/rust-lang/crates.io-index"
2984 | checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
2985 | dependencies = [
2986 | "autocfg",
2987 | "bytes",
2988 | "memchr",
2989 | "num_cpus",
2990 | "once_cell",
2991 | "pin-project-lite",
2992 | ]
2993 |
2994 | [[package]]
2995 | name = "toml"
2996 | version = "0.5.9"
2997 | source = "registry+https://github.com/rust-lang/crates.io-index"
2998 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2999 | dependencies = [
3000 | "serde",
3001 | ]
3002 |
3003 | [[package]]
3004 | name = "tracing"
3005 | version = "0.1.36"
3006 | source = "registry+https://github.com/rust-lang/crates.io-index"
3007 | checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
3008 | dependencies = [
3009 | "cfg-if",
3010 | "pin-project-lite",
3011 | "tracing-attributes",
3012 | "tracing-core",
3013 | ]
3014 |
3015 | [[package]]
3016 | name = "tracing-attributes"
3017 | version = "0.1.22"
3018 | source = "registry+https://github.com/rust-lang/crates.io-index"
3019 | checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
3020 | dependencies = [
3021 | "proc-macro2",
3022 | "quote",
3023 | "syn",
3024 | ]
3025 |
3026 | [[package]]
3027 | name = "tracing-core"
3028 | version = "0.1.29"
3029 | source = "registry+https://github.com/rust-lang/crates.io-index"
3030 | checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
3031 | dependencies = [
3032 | "once_cell",
3033 | "valuable",
3034 | ]
3035 |
3036 | [[package]]
3037 | name = "tracing-log"
3038 | version = "0.1.3"
3039 | source = "registry+https://github.com/rust-lang/crates.io-index"
3040 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
3041 | dependencies = [
3042 | "lazy_static",
3043 | "log",
3044 | "tracing-core",
3045 | ]
3046 |
3047 | [[package]]
3048 | name = "tracing-subscriber"
3049 | version = "0.3.15"
3050 | source = "registry+https://github.com/rust-lang/crates.io-index"
3051 | checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
3052 | dependencies = [
3053 | "ansi_term",
3054 | "matchers",
3055 | "once_cell",
3056 | "regex",
3057 | "sharded-slab",
3058 | "smallvec",
3059 | "thread_local",
3060 | "tracing",
3061 | "tracing-core",
3062 | "tracing-log",
3063 | ]
3064 |
3065 | [[package]]
3066 | name = "treediff"
3067 | version = "3.0.2"
3068 | source = "registry+https://github.com/rust-lang/crates.io-index"
3069 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff"
3070 | dependencies = [
3071 | "serde_json",
3072 | ]
3073 |
3074 | [[package]]
3075 | name = "typenum"
3076 | version = "1.15.0"
3077 | source = "registry+https://github.com/rust-lang/crates.io-index"
3078 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
3079 |
3080 | [[package]]
3081 | name = "ucd-trie"
3082 | version = "0.1.4"
3083 | source = "registry+https://github.com/rust-lang/crates.io-index"
3084 | checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
3085 |
3086 | [[package]]
3087 | name = "unicode-bidi"
3088 | version = "0.3.8"
3089 | source = "registry+https://github.com/rust-lang/crates.io-index"
3090 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
3091 |
3092 | [[package]]
3093 | name = "unicode-ident"
3094 | version = "1.0.3"
3095 | source = "registry+https://github.com/rust-lang/crates.io-index"
3096 | checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
3097 |
3098 | [[package]]
3099 | name = "unicode-normalization"
3100 | version = "0.1.21"
3101 | source = "registry+https://github.com/rust-lang/crates.io-index"
3102 | checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
3103 | dependencies = [
3104 | "tinyvec",
3105 | ]
3106 |
3107 | [[package]]
3108 | name = "unicode-segmentation"
3109 | version = "1.9.0"
3110 | source = "registry+https://github.com/rust-lang/crates.io-index"
3111 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
3112 |
3113 | [[package]]
3114 | name = "url"
3115 | version = "2.2.2"
3116 | source = "registry+https://github.com/rust-lang/crates.io-index"
3117 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
3118 | dependencies = [
3119 | "form_urlencoded",
3120 | "idna",
3121 | "matches",
3122 | "percent-encoding",
3123 | "serde",
3124 | ]
3125 |
3126 | [[package]]
3127 | name = "utf-8"
3128 | version = "0.7.6"
3129 | source = "registry+https://github.com/rust-lang/crates.io-index"
3130 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3131 |
3132 | [[package]]
3133 | name = "uuid"
3134 | version = "0.8.2"
3135 | source = "registry+https://github.com/rust-lang/crates.io-index"
3136 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
3137 |
3138 | [[package]]
3139 | name = "uuid"
3140 | version = "1.1.2"
3141 | source = "registry+https://github.com/rust-lang/crates.io-index"
3142 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
3143 | dependencies = [
3144 | "getrandom 0.2.7",
3145 | ]
3146 |
3147 | [[package]]
3148 | name = "valuable"
3149 | version = "0.1.0"
3150 | source = "registry+https://github.com/rust-lang/crates.io-index"
3151 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3152 |
3153 | [[package]]
3154 | name = "vcpkg"
3155 | version = "0.2.15"
3156 | source = "registry+https://github.com/rust-lang/crates.io-index"
3157 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3158 |
3159 | [[package]]
3160 | name = "version-compare"
3161 | version = "0.0.11"
3162 | source = "registry+https://github.com/rust-lang/crates.io-index"
3163 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
3164 |
3165 | [[package]]
3166 | name = "version-compare"
3167 | version = "0.1.0"
3168 | source = "registry+https://github.com/rust-lang/crates.io-index"
3169 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
3170 |
3171 | [[package]]
3172 | name = "version_check"
3173 | version = "0.9.4"
3174 | source = "registry+https://github.com/rust-lang/crates.io-index"
3175 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3176 |
3177 | [[package]]
3178 | name = "vswhom"
3179 | version = "0.1.0"
3180 | source = "registry+https://github.com/rust-lang/crates.io-index"
3181 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3182 | dependencies = [
3183 | "libc",
3184 | "vswhom-sys",
3185 | ]
3186 |
3187 | [[package]]
3188 | name = "vswhom-sys"
3189 | version = "0.1.1"
3190 | source = "registry+https://github.com/rust-lang/crates.io-index"
3191 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39"
3192 | dependencies = [
3193 | "cc",
3194 | "libc",
3195 | ]
3196 |
3197 | [[package]]
3198 | name = "waker-fn"
3199 | version = "1.1.0"
3200 | source = "registry+https://github.com/rust-lang/crates.io-index"
3201 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
3202 |
3203 | [[package]]
3204 | name = "walkdir"
3205 | version = "2.3.2"
3206 | source = "registry+https://github.com/rust-lang/crates.io-index"
3207 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
3208 | dependencies = [
3209 | "same-file",
3210 | "winapi",
3211 | "winapi-util",
3212 | ]
3213 |
3214 | [[package]]
3215 | name = "wasi"
3216 | version = "0.9.0+wasi-snapshot-preview1"
3217 | source = "registry+https://github.com/rust-lang/crates.io-index"
3218 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3219 |
3220 | [[package]]
3221 | name = "wasi"
3222 | version = "0.11.0+wasi-snapshot-preview1"
3223 | source = "registry+https://github.com/rust-lang/crates.io-index"
3224 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3225 |
3226 | [[package]]
3227 | name = "wasm-bindgen"
3228 | version = "0.2.82"
3229 | source = "registry+https://github.com/rust-lang/crates.io-index"
3230 | checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
3231 | dependencies = [
3232 | "cfg-if",
3233 | "wasm-bindgen-macro",
3234 | ]
3235 |
3236 | [[package]]
3237 | name = "wasm-bindgen-backend"
3238 | version = "0.2.82"
3239 | source = "registry+https://github.com/rust-lang/crates.io-index"
3240 | checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
3241 | dependencies = [
3242 | "bumpalo",
3243 | "log",
3244 | "once_cell",
3245 | "proc-macro2",
3246 | "quote",
3247 | "syn",
3248 | "wasm-bindgen-shared",
3249 | ]
3250 |
3251 | [[package]]
3252 | name = "wasm-bindgen-futures"
3253 | version = "0.4.32"
3254 | source = "registry+https://github.com/rust-lang/crates.io-index"
3255 | checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
3256 | dependencies = [
3257 | "cfg-if",
3258 | "js-sys",
3259 | "wasm-bindgen",
3260 | "web-sys",
3261 | ]
3262 |
3263 | [[package]]
3264 | name = "wasm-bindgen-macro"
3265 | version = "0.2.82"
3266 | source = "registry+https://github.com/rust-lang/crates.io-index"
3267 | checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
3268 | dependencies = [
3269 | "quote",
3270 | "wasm-bindgen-macro-support",
3271 | ]
3272 |
3273 | [[package]]
3274 | name = "wasm-bindgen-macro-support"
3275 | version = "0.2.82"
3276 | source = "registry+https://github.com/rust-lang/crates.io-index"
3277 | checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
3278 | dependencies = [
3279 | "proc-macro2",
3280 | "quote",
3281 | "syn",
3282 | "wasm-bindgen-backend",
3283 | "wasm-bindgen-shared",
3284 | ]
3285 |
3286 | [[package]]
3287 | name = "wasm-bindgen-shared"
3288 | version = "0.2.82"
3289 | source = "registry+https://github.com/rust-lang/crates.io-index"
3290 | checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
3291 |
3292 | [[package]]
3293 | name = "web-sys"
3294 | version = "0.3.59"
3295 | source = "registry+https://github.com/rust-lang/crates.io-index"
3296 | checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
3297 | dependencies = [
3298 | "js-sys",
3299 | "wasm-bindgen",
3300 | ]
3301 |
3302 | [[package]]
3303 | name = "webkit2gtk"
3304 | version = "0.18.0"
3305 | source = "registry+https://github.com/rust-lang/crates.io-index"
3306 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc"
3307 | dependencies = [
3308 | "bitflags",
3309 | "cairo-rs",
3310 | "gdk",
3311 | "gdk-sys",
3312 | "gio",
3313 | "gio-sys",
3314 | "glib",
3315 | "glib-sys",
3316 | "gobject-sys",
3317 | "gtk",
3318 | "gtk-sys",
3319 | "javascriptcore-rs",
3320 | "libc",
3321 | "once_cell",
3322 | "soup2",
3323 | "webkit2gtk-sys",
3324 | ]
3325 |
3326 | [[package]]
3327 | name = "webkit2gtk-sys"
3328 | version = "0.18.0"
3329 | source = "registry+https://github.com/rust-lang/crates.io-index"
3330 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
3331 | dependencies = [
3332 | "atk-sys",
3333 | "bitflags",
3334 | "cairo-sys-rs",
3335 | "gdk-pixbuf-sys",
3336 | "gdk-sys",
3337 | "gio-sys",
3338 | "glib-sys",
3339 | "gobject-sys",
3340 | "gtk-sys",
3341 | "javascriptcore-rs-sys",
3342 | "libc",
3343 | "pango-sys",
3344 | "pkg-config",
3345 | "soup2-sys",
3346 | "system-deps 6.0.2",
3347 | ]
3348 |
3349 | [[package]]
3350 | name = "webview2-com"
3351 | version = "0.16.0"
3352 | source = "registry+https://github.com/rust-lang/crates.io-index"
3353 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f"
3354 | dependencies = [
3355 | "webview2-com-macros",
3356 | "webview2-com-sys",
3357 | "windows 0.37.0",
3358 | "windows-implement",
3359 | ]
3360 |
3361 | [[package]]
3362 | name = "webview2-com-macros"
3363 | version = "0.6.0"
3364 | source = "registry+https://github.com/rust-lang/crates.io-index"
3365 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
3366 | dependencies = [
3367 | "proc-macro2",
3368 | "quote",
3369 | "syn",
3370 | ]
3371 |
3372 | [[package]]
3373 | name = "webview2-com-sys"
3374 | version = "0.16.0"
3375 | source = "registry+https://github.com/rust-lang/crates.io-index"
3376 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1"
3377 | dependencies = [
3378 | "regex",
3379 | "serde",
3380 | "serde_json",
3381 | "thiserror",
3382 | "windows 0.37.0",
3383 | "windows-bindgen",
3384 | ]
3385 |
3386 | [[package]]
3387 | name = "wildmatch"
3388 | version = "2.1.1"
3389 | source = "registry+https://github.com/rust-lang/crates.io-index"
3390 | checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86"
3391 |
3392 | [[package]]
3393 | name = "winapi"
3394 | version = "0.3.9"
3395 | source = "registry+https://github.com/rust-lang/crates.io-index"
3396 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3397 | dependencies = [
3398 | "winapi-i686-pc-windows-gnu",
3399 | "winapi-x86_64-pc-windows-gnu",
3400 | ]
3401 |
3402 | [[package]]
3403 | name = "winapi-i686-pc-windows-gnu"
3404 | version = "0.4.0"
3405 | source = "registry+https://github.com/rust-lang/crates.io-index"
3406 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3407 |
3408 | [[package]]
3409 | name = "winapi-util"
3410 | version = "0.1.5"
3411 | source = "registry+https://github.com/rust-lang/crates.io-index"
3412 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3413 | dependencies = [
3414 | "winapi",
3415 | ]
3416 |
3417 | [[package]]
3418 | name = "winapi-x86_64-pc-windows-gnu"
3419 | version = "0.4.0"
3420 | source = "registry+https://github.com/rust-lang/crates.io-index"
3421 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3422 |
3423 | [[package]]
3424 | name = "windows"
3425 | version = "0.24.0"
3426 | source = "registry+https://github.com/rust-lang/crates.io-index"
3427 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944"
3428 | dependencies = [
3429 | "windows_i686_gnu 0.24.0",
3430 | "windows_i686_msvc 0.24.0",
3431 | "windows_x86_64_gnu 0.24.0",
3432 | "windows_x86_64_msvc 0.24.0",
3433 | ]
3434 |
3435 | [[package]]
3436 | name = "windows"
3437 | version = "0.32.0"
3438 | source = "registry+https://github.com/rust-lang/crates.io-index"
3439 | checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec"
3440 | dependencies = [
3441 | "windows_aarch64_msvc 0.32.0",
3442 | "windows_i686_gnu 0.32.0",
3443 | "windows_i686_msvc 0.32.0",
3444 | "windows_x86_64_gnu 0.32.0",
3445 | "windows_x86_64_msvc 0.32.0",
3446 | ]
3447 |
3448 | [[package]]
3449 | name = "windows"
3450 | version = "0.37.0"
3451 | source = "registry+https://github.com/rust-lang/crates.io-index"
3452 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647"
3453 | dependencies = [
3454 | "windows-implement",
3455 | "windows_aarch64_msvc 0.37.0",
3456 | "windows_i686_gnu 0.37.0",
3457 | "windows_i686_msvc 0.37.0",
3458 | "windows_x86_64_gnu 0.37.0",
3459 | "windows_x86_64_msvc 0.37.0",
3460 | ]
3461 |
3462 | [[package]]
3463 | name = "windows-bindgen"
3464 | version = "0.37.0"
3465 | source = "registry+https://github.com/rust-lang/crates.io-index"
3466 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8"
3467 | dependencies = [
3468 | "windows-metadata",
3469 | "windows-tokens",
3470 | ]
3471 |
3472 | [[package]]
3473 | name = "windows-implement"
3474 | version = "0.37.0"
3475 | source = "registry+https://github.com/rust-lang/crates.io-index"
3476 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14"
3477 | dependencies = [
3478 | "syn",
3479 | "windows-tokens",
3480 | ]
3481 |
3482 | [[package]]
3483 | name = "windows-metadata"
3484 | version = "0.37.0"
3485 | source = "registry+https://github.com/rust-lang/crates.io-index"
3486 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463"
3487 |
3488 | [[package]]
3489 | name = "windows-sys"
3490 | version = "0.36.1"
3491 | source = "registry+https://github.com/rust-lang/crates.io-index"
3492 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
3493 | dependencies = [
3494 | "windows_aarch64_msvc 0.36.1",
3495 | "windows_i686_gnu 0.36.1",
3496 | "windows_i686_msvc 0.36.1",
3497 | "windows_x86_64_gnu 0.36.1",
3498 | "windows_x86_64_msvc 0.36.1",
3499 | ]
3500 |
3501 | [[package]]
3502 | name = "windows-tokens"
3503 | version = "0.37.0"
3504 | source = "registry+https://github.com/rust-lang/crates.io-index"
3505 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169"
3506 |
3507 | [[package]]
3508 | name = "windows_aarch64_msvc"
3509 | version = "0.32.0"
3510 | source = "registry+https://github.com/rust-lang/crates.io-index"
3511 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5"
3512 |
3513 | [[package]]
3514 | name = "windows_aarch64_msvc"
3515 | version = "0.36.1"
3516 | source = "registry+https://github.com/rust-lang/crates.io-index"
3517 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
3518 |
3519 | [[package]]
3520 | name = "windows_aarch64_msvc"
3521 | version = "0.37.0"
3522 | source = "registry+https://github.com/rust-lang/crates.io-index"
3523 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a"
3524 |
3525 | [[package]]
3526 | name = "windows_i686_gnu"
3527 | version = "0.24.0"
3528 | source = "registry+https://github.com/rust-lang/crates.io-index"
3529 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd"
3530 |
3531 | [[package]]
3532 | name = "windows_i686_gnu"
3533 | version = "0.32.0"
3534 | source = "registry+https://github.com/rust-lang/crates.io-index"
3535 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615"
3536 |
3537 | [[package]]
3538 | name = "windows_i686_gnu"
3539 | version = "0.36.1"
3540 | source = "registry+https://github.com/rust-lang/crates.io-index"
3541 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
3542 |
3543 | [[package]]
3544 | name = "windows_i686_gnu"
3545 | version = "0.37.0"
3546 | source = "registry+https://github.com/rust-lang/crates.io-index"
3547 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1"
3548 |
3549 | [[package]]
3550 | name = "windows_i686_msvc"
3551 | version = "0.24.0"
3552 | source = "registry+https://github.com/rust-lang/crates.io-index"
3553 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6"
3554 |
3555 | [[package]]
3556 | name = "windows_i686_msvc"
3557 | version = "0.32.0"
3558 | source = "registry+https://github.com/rust-lang/crates.io-index"
3559 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172"
3560 |
3561 | [[package]]
3562 | name = "windows_i686_msvc"
3563 | version = "0.36.1"
3564 | source = "registry+https://github.com/rust-lang/crates.io-index"
3565 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
3566 |
3567 | [[package]]
3568 | name = "windows_i686_msvc"
3569 | version = "0.37.0"
3570 | source = "registry+https://github.com/rust-lang/crates.io-index"
3571 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c"
3572 |
3573 | [[package]]
3574 | name = "windows_x86_64_gnu"
3575 | version = "0.24.0"
3576 | source = "registry+https://github.com/rust-lang/crates.io-index"
3577 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4"
3578 |
3579 | [[package]]
3580 | name = "windows_x86_64_gnu"
3581 | version = "0.32.0"
3582 | source = "registry+https://github.com/rust-lang/crates.io-index"
3583 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc"
3584 |
3585 | [[package]]
3586 | name = "windows_x86_64_gnu"
3587 | version = "0.36.1"
3588 | source = "registry+https://github.com/rust-lang/crates.io-index"
3589 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
3590 |
3591 | [[package]]
3592 | name = "windows_x86_64_gnu"
3593 | version = "0.37.0"
3594 | source = "registry+https://github.com/rust-lang/crates.io-index"
3595 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d"
3596 |
3597 | [[package]]
3598 | name = "windows_x86_64_msvc"
3599 | version = "0.24.0"
3600 | source = "registry+https://github.com/rust-lang/crates.io-index"
3601 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399"
3602 |
3603 | [[package]]
3604 | name = "windows_x86_64_msvc"
3605 | version = "0.32.0"
3606 | source = "registry+https://github.com/rust-lang/crates.io-index"
3607 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
3608 |
3609 | [[package]]
3610 | name = "windows_x86_64_msvc"
3611 | version = "0.36.1"
3612 | source = "registry+https://github.com/rust-lang/crates.io-index"
3613 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
3614 |
3615 | [[package]]
3616 | name = "windows_x86_64_msvc"
3617 | version = "0.37.0"
3618 | source = "registry+https://github.com/rust-lang/crates.io-index"
3619 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d"
3620 |
3621 | [[package]]
3622 | name = "winreg"
3623 | version = "0.10.1"
3624 | source = "registry+https://github.com/rust-lang/crates.io-index"
3625 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
3626 | dependencies = [
3627 | "winapi",
3628 | ]
3629 |
3630 | [[package]]
3631 | name = "winres"
3632 | version = "0.1.12"
3633 | source = "registry+https://github.com/rust-lang/crates.io-index"
3634 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
3635 | dependencies = [
3636 | "toml",
3637 | ]
3638 |
3639 | [[package]]
3640 | name = "winrt-notification"
3641 | version = "0.5.1"
3642 | source = "registry+https://github.com/rust-lang/crates.io-index"
3643 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4"
3644 | dependencies = [
3645 | "strum",
3646 | "windows 0.24.0",
3647 | "xml-rs",
3648 | ]
3649 |
3650 | [[package]]
3651 | name = "wry"
3652 | version = "0.19.0"
3653 | source = "registry+https://github.com/rust-lang/crates.io-index"
3654 | checksum = "ce19dddbd3ce01dc8f14eb6d4c8f914123bf8379aaa838f6da4f981ff7104a3f"
3655 | dependencies = [
3656 | "block",
3657 | "cocoa",
3658 | "core-graphics",
3659 | "gdk",
3660 | "gio",
3661 | "glib",
3662 | "gtk",
3663 | "http",
3664 | "jni 0.18.0",
3665 | "libc",
3666 | "log",
3667 | "objc",
3668 | "objc_id",
3669 | "once_cell",
3670 | "serde",
3671 | "serde_json",
3672 | "tao",
3673 | "thiserror",
3674 | "url",
3675 | "webkit2gtk",
3676 | "webkit2gtk-sys",
3677 | "webview2-com",
3678 | "windows 0.37.0",
3679 | "windows-implement",
3680 | ]
3681 |
3682 | [[package]]
3683 | name = "x11"
3684 | version = "2.20.0"
3685 | source = "registry+https://github.com/rust-lang/crates.io-index"
3686 | checksum = "f7ae97874a928d821b061fce3d1fc52f08071dd53c89a6102bc06efcac3b2908"
3687 | dependencies = [
3688 | "libc",
3689 | "pkg-config",
3690 | ]
3691 |
3692 | [[package]]
3693 | name = "x11-dl"
3694 | version = "2.20.0"
3695 | source = "registry+https://github.com/rust-lang/crates.io-index"
3696 | checksum = "0c83627bc137605acc00bb399c7b908ef460b621fc37c953db2b09f88c449ea6"
3697 | dependencies = [
3698 | "lazy_static",
3699 | "libc",
3700 | "pkg-config",
3701 | ]
3702 |
3703 | [[package]]
3704 | name = "xattr"
3705 | version = "0.2.3"
3706 | source = "registry+https://github.com/rust-lang/crates.io-index"
3707 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3708 | dependencies = [
3709 | "libc",
3710 | ]
3711 |
3712 | [[package]]
3713 | name = "xml-rs"
3714 | version = "0.8.4"
3715 | source = "registry+https://github.com/rust-lang/crates.io-index"
3716 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
3717 |
--------------------------------------------------------------------------------