├── .nvmrc
├── README.md
├── src
├── main.jsx
├── Main.res
├── global.css
└── App.res
├── src-tauri
├── build.rs
├── icons
│ ├── 32x32.png
│ ├── icon.icns
│ ├── icon.ico
│ ├── icon.png
│ ├── 128x128.png
│ ├── 128x128@2x.png
│ ├── StoreLogo.png
│ ├── Square30x30Logo.png
│ ├── Square44x44Logo.png
│ ├── Square71x71Logo.png
│ ├── Square89x89Logo.png
│ ├── Square107x107Logo.png
│ ├── Square142x142Logo.png
│ ├── Square150x150Logo.png
│ ├── Square284x284Logo.png
│ └── Square310x310Logo.png
├── .gitignore
├── rustfmt.toml
├── src
│ └── main.rs
├── Cargo.toml
├── tauri.conf.json
└── Cargo.lock
├── vite.config.js
├── .editorconfig
├── index.html
├── .gitignore
├── bsconfig.json
├── package.json
├── public
└── vite.svg
└── yarn.lock
/.nvmrc:
--------------------------------------------------------------------------------
1 | v16.14.0
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Severino
2 |
3 | # License
4 |
5 | MIT
6 |
--------------------------------------------------------------------------------
/src/main.jsx:
--------------------------------------------------------------------------------
1 | import "./global.css"
2 | import "./Main.bs"
3 |
--------------------------------------------------------------------------------
/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/src-tauri/icons/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/32x32.png
--------------------------------------------------------------------------------
/src-tauri/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/icon.icns
--------------------------------------------------------------------------------
/src-tauri/icons/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/icon.ico
--------------------------------------------------------------------------------
/src-tauri/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/icon.png
--------------------------------------------------------------------------------
/src-tauri/.gitignore:
--------------------------------------------------------------------------------
1 | # Generated by Cargo
2 | # will have compiled files and executables
3 | /target/
4 |
--------------------------------------------------------------------------------
/src-tauri/icons/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/128x128.png
--------------------------------------------------------------------------------
/src-tauri/icons/128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/128x128@2x.png
--------------------------------------------------------------------------------
/src-tauri/icons/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/StoreLogo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square30x30Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square30x30Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square44x44Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square71x71Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square89x89Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square89x89Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square107x107Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square107x107Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square142x142Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square142x142Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square150x150Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square284x284Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square284x284Logo.png
--------------------------------------------------------------------------------
/src-tauri/icons/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fdaciuk/severino/HEAD/src-tauri/icons/Square310x310Logo.png
--------------------------------------------------------------------------------
/src-tauri/rustfmt.toml:
--------------------------------------------------------------------------------
1 | tab_spaces = 2
2 | max_width = 80
3 | imports_layout = "HorizontalVertical"
4 | inline_attribute_width = 50
5 |
--------------------------------------------------------------------------------
/src/Main.res:
--------------------------------------------------------------------------------
1 | switch ReactDOM.querySelector("#root") {
2 | | None => Js.log("Root element not found.")
3 | | Some(root) => ReactDOM.render(, root)
4 | }
5 |
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
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 | })
8 |
--------------------------------------------------------------------------------
/src/global.css:
--------------------------------------------------------------------------------
1 | html {
2 | font-size: 62.5%;
3 | }
4 |
5 | html, body, #root {
6 | padding: 0;
7 | margin: 0;
8 | width: 100%;
9 | height: 100%;
10 | }
11 |
12 | * {
13 | box-sizing: border-box;
14 | }
15 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_size = 2
5 | indent_style = space
6 | charset = utf-8
7 | trim_trailing_whitespace = true
8 | insert_final_newline = true
9 | end_of_line = lf
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Vite + React
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/.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 |
26 | lib/
27 | .merlin
28 | .bsb.lock
29 | src/*.bs.js
30 |
--------------------------------------------------------------------------------
/src-tauri/src/main.rs:
--------------------------------------------------------------------------------
1 | #![cfg_attr(
2 | all(not(debug_assertions), target_os = "windows"),
3 | windows_subsystem = "windows"
4 | )]
5 |
6 | fn main() {
7 | tauri::Builder::default()
8 | .invoke_handler(tauri::generate_handler![ping])
9 | .run(tauri::generate_context!())
10 | .expect("error while running tauri application");
11 | }
12 |
13 | #[tauri::command]
14 | fn ping() -> &'static str {
15 | "pong"
16 | }
17 |
--------------------------------------------------------------------------------
/bsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "severino",
3 | "namespace": false,
4 | "reason": {
5 | "react-jsx": 3
6 | },
7 | "bs-dependencies": [
8 | "@rescript/react",
9 | "@rescriptbr/ancestor",
10 | "@ryyppy/rescript-promise"
11 | ],
12 | "ppx-flags": [],
13 | "sources": [
14 | {
15 | "dir": "src",
16 | "subdirs": true
17 | }
18 | ],
19 | "package-specs": {
20 | "module": "es6",
21 | "in-source": true
22 | },
23 | "warnings": {
24 | "error": "+8"
25 | },
26 | "suffix": ".bs.js",
27 | "bsc-flags": ["-bs-g", "-bs-super-errors"]
28 | }
29 |
--------------------------------------------------------------------------------
/src/App.res:
--------------------------------------------------------------------------------
1 | open Ancestor
2 |
3 | module Tauri = {
4 | @module("@tauri-apps/api")
5 | external invoke: string => Promise.t = "invoke"
6 | }
7 |
8 | @react.component
9 | let make = () => {
10 | React.useEffect0(() => {
11 | Tauri.invoke("ping")->Promise.thenResolve(response => Js.log(response))->ignore
12 | None
13 | })
14 |
15 | #pct)] height=[xs(100.0->#pct)]>
16 | #px)] color=[xs(#hex("#fafafa"))]>
17 | {"ReScript + Tauri + Rust > Electrons"->React.string}
18 |
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "severino",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "rescript:dev": "rescript build -w",
8 | "rescript:build": "rescript build",
9 | "dev": "vite",
10 | "build": "rescript build && vite build",
11 | "preview": "vite preview",
12 | "tauri": "tauri"
13 | },
14 | "dependencies": {
15 | "@emotion/css": "11.10.0",
16 | "@rescript/react": "0.10.3",
17 | "@rescriptbr/ancestor": "0.9.0-2",
18 | "@ryyppy/rescript-promise": "2.1.0",
19 | "@tauri-apps/api": "^1.0.2",
20 | "react": "^17.0.0",
21 | "react-dom": "^17.0.0",
22 | "rescript": "9.1.4"
23 | },
24 | "devDependencies": {
25 | "@tauri-apps/cli": "^1.0.5",
26 | "@types/react": "^18.0.15",
27 | "@types/react-dom": "^18.0.6",
28 | "@vitejs/plugin-react": "^2.0.0",
29 | "vite": "^3.0.0"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/src-tauri/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "app"
3 | version = "0.1.0"
4 | description = "A Tauri App"
5 | authors = ["you"]
6 | license = ""
7 | repository = ""
8 | default-run = "app"
9 | edition = "2021"
10 | rust-version = "1.57"
11 |
12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13 |
14 | [build-dependencies]
15 | tauri-build = { version = "1.0.4", features = [] }
16 |
17 | [dependencies]
18 | serde_json = "1.0"
19 | serde = { version = "1.0", features = ["derive"] }
20 | tauri = { version = "1.0.5", features = ["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 used for production builds where `devPath` points to the filesystem
27 | # DO NOT remove this
28 | custom-protocol = [ "tauri/custom-protocol" ]
29 |
--------------------------------------------------------------------------------
/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src-tauri/tauri.conf.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "../node_modules/@tauri-apps/cli/schema.json",
3 | "build": {
4 | "beforeBuildCommand": "yarn build",
5 | "beforeDevCommand": "yarn dev",
6 | "devPath": "http://localhost:5173",
7 | "distDir": "../dist"
8 | },
9 | "package": {
10 | "productName": "severino",
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": "dev.severino.tool",
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": "Severino",
62 | "width": 800
63 | }
64 | ]
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ampproject/remapping@^2.1.0":
6 | version "2.2.0"
7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
9 | dependencies:
10 | "@jridgewell/gen-mapping" "^0.1.0"
11 | "@jridgewell/trace-mapping" "^0.3.9"
12 |
13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
14 | version "7.18.6"
15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
16 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
17 | dependencies:
18 | "@babel/highlight" "^7.18.6"
19 |
20 | "@babel/compat-data@^7.18.8":
21 | version "7.18.8"
22 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d"
23 | integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==
24 |
25 | "@babel/core@^7.18.6":
26 | version "7.18.10"
27 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.10.tgz#39ad504991d77f1f3da91be0b8b949a5bc466fb8"
28 | integrity sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==
29 | dependencies:
30 | "@ampproject/remapping" "^2.1.0"
31 | "@babel/code-frame" "^7.18.6"
32 | "@babel/generator" "^7.18.10"
33 | "@babel/helper-compilation-targets" "^7.18.9"
34 | "@babel/helper-module-transforms" "^7.18.9"
35 | "@babel/helpers" "^7.18.9"
36 | "@babel/parser" "^7.18.10"
37 | "@babel/template" "^7.18.10"
38 | "@babel/traverse" "^7.18.10"
39 | "@babel/types" "^7.18.10"
40 | convert-source-map "^1.7.0"
41 | debug "^4.1.0"
42 | gensync "^1.0.0-beta.2"
43 | json5 "^2.2.1"
44 | semver "^6.3.0"
45 |
46 | "@babel/generator@^7.18.10":
47 | version "7.18.10"
48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.10.tgz#794f328bfabdcbaf0ebf9bf91b5b57b61fa77a2a"
49 | integrity sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==
50 | dependencies:
51 | "@babel/types" "^7.18.10"
52 | "@jridgewell/gen-mapping" "^0.3.2"
53 | jsesc "^2.5.1"
54 |
55 | "@babel/helper-annotate-as-pure@^7.18.6":
56 | version "7.18.6"
57 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
58 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
59 | dependencies:
60 | "@babel/types" "^7.18.6"
61 |
62 | "@babel/helper-compilation-targets@^7.18.9":
63 | version "7.18.9"
64 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf"
65 | integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==
66 | dependencies:
67 | "@babel/compat-data" "^7.18.8"
68 | "@babel/helper-validator-option" "^7.18.6"
69 | browserslist "^4.20.2"
70 | semver "^6.3.0"
71 |
72 | "@babel/helper-environment-visitor@^7.18.9":
73 | version "7.18.9"
74 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
75 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
76 |
77 | "@babel/helper-function-name@^7.18.9":
78 | version "7.18.9"
79 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz#940e6084a55dee867d33b4e487da2676365e86b0"
80 | integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==
81 | dependencies:
82 | "@babel/template" "^7.18.6"
83 | "@babel/types" "^7.18.9"
84 |
85 | "@babel/helper-hoist-variables@^7.18.6":
86 | version "7.18.6"
87 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
88 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
89 | dependencies:
90 | "@babel/types" "^7.18.6"
91 |
92 | "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6":
93 | version "7.18.6"
94 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
95 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
96 | dependencies:
97 | "@babel/types" "^7.18.6"
98 |
99 | "@babel/helper-module-transforms@^7.18.9":
100 | version "7.18.9"
101 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712"
102 | integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==
103 | dependencies:
104 | "@babel/helper-environment-visitor" "^7.18.9"
105 | "@babel/helper-module-imports" "^7.18.6"
106 | "@babel/helper-simple-access" "^7.18.6"
107 | "@babel/helper-split-export-declaration" "^7.18.6"
108 | "@babel/helper-validator-identifier" "^7.18.6"
109 | "@babel/template" "^7.18.6"
110 | "@babel/traverse" "^7.18.9"
111 | "@babel/types" "^7.18.9"
112 |
113 | "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9":
114 | version "7.18.9"
115 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f"
116 | integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==
117 |
118 | "@babel/helper-simple-access@^7.18.6":
119 | version "7.18.6"
120 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"
121 | integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
122 | dependencies:
123 | "@babel/types" "^7.18.6"
124 |
125 | "@babel/helper-split-export-declaration@^7.18.6":
126 | version "7.18.6"
127 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
128 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
129 | dependencies:
130 | "@babel/types" "^7.18.6"
131 |
132 | "@babel/helper-string-parser@^7.18.10":
133 | version "7.18.10"
134 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"
135 | integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
136 |
137 | "@babel/helper-validator-identifier@^7.18.6":
138 | version "7.18.6"
139 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
140 | integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
141 |
142 | "@babel/helper-validator-option@^7.18.6":
143 | version "7.18.6"
144 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
145 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
146 |
147 | "@babel/helpers@^7.18.9":
148 | version "7.18.9"
149 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9"
150 | integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==
151 | dependencies:
152 | "@babel/template" "^7.18.6"
153 | "@babel/traverse" "^7.18.9"
154 | "@babel/types" "^7.18.9"
155 |
156 | "@babel/highlight@^7.18.6":
157 | version "7.18.6"
158 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
159 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
160 | dependencies:
161 | "@babel/helper-validator-identifier" "^7.18.6"
162 | chalk "^2.0.0"
163 | js-tokens "^4.0.0"
164 |
165 | "@babel/parser@^7.18.10", "@babel/parser@^7.18.11":
166 | version "7.18.11"
167 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9"
168 | integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==
169 |
170 | "@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6":
171 | version "7.18.6"
172 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
173 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
174 | dependencies:
175 | "@babel/helper-plugin-utils" "^7.18.6"
176 |
177 | "@babel/plugin-transform-react-jsx-development@^7.18.6":
178 | version "7.18.6"
179 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5"
180 | integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==
181 | dependencies:
182 | "@babel/plugin-transform-react-jsx" "^7.18.6"
183 |
184 | "@babel/plugin-transform-react-jsx-self@^7.18.6":
185 | version "7.18.6"
186 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7"
187 | integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==
188 | dependencies:
189 | "@babel/helper-plugin-utils" "^7.18.6"
190 |
191 | "@babel/plugin-transform-react-jsx-source@^7.18.6":
192 | version "7.18.6"
193 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz#06e9ae8a14d2bc19ce6e3c447d842032a50598fc"
194 | integrity sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==
195 | dependencies:
196 | "@babel/helper-plugin-utils" "^7.18.6"
197 |
198 | "@babel/plugin-transform-react-jsx@^7.18.6":
199 | version "7.18.10"
200 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz#ea47b2c4197102c196cbd10db9b3bb20daa820f1"
201 | integrity sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==
202 | dependencies:
203 | "@babel/helper-annotate-as-pure" "^7.18.6"
204 | "@babel/helper-module-imports" "^7.18.6"
205 | "@babel/helper-plugin-utils" "^7.18.9"
206 | "@babel/plugin-syntax-jsx" "^7.18.6"
207 | "@babel/types" "^7.18.10"
208 |
209 | "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3":
210 | version "7.18.9"
211 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz#b4fcfce55db3d2e5e080d2490f608a3b9f407f4a"
212 | integrity sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==
213 | dependencies:
214 | regenerator-runtime "^0.13.4"
215 |
216 | "@babel/template@^7.18.10", "@babel/template@^7.18.6":
217 | version "7.18.10"
218 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
219 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
220 | dependencies:
221 | "@babel/code-frame" "^7.18.6"
222 | "@babel/parser" "^7.18.10"
223 | "@babel/types" "^7.18.10"
224 |
225 | "@babel/traverse@^7.18.10", "@babel/traverse@^7.18.9":
226 | version "7.18.11"
227 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f"
228 | integrity sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==
229 | dependencies:
230 | "@babel/code-frame" "^7.18.6"
231 | "@babel/generator" "^7.18.10"
232 | "@babel/helper-environment-visitor" "^7.18.9"
233 | "@babel/helper-function-name" "^7.18.9"
234 | "@babel/helper-hoist-variables" "^7.18.6"
235 | "@babel/helper-split-export-declaration" "^7.18.6"
236 | "@babel/parser" "^7.18.11"
237 | "@babel/types" "^7.18.10"
238 | debug "^4.1.0"
239 | globals "^11.1.0"
240 |
241 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9":
242 | version "7.18.10"
243 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.10.tgz#4908e81b6b339ca7c6b7a555a5fc29446f26dde6"
244 | integrity sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==
245 | dependencies:
246 | "@babel/helper-string-parser" "^7.18.10"
247 | "@babel/helper-validator-identifier" "^7.18.6"
248 | to-fast-properties "^2.0.0"
249 |
250 | "@emotion/babel-plugin@^11.10.0":
251 | version "11.10.0"
252 | resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.0.tgz#ae545b8faa6b42d3a50ec86b70b758296f3c4467"
253 | integrity sha512-xVnpDAAbtxL1dsuSelU5A7BnY/lftws0wUexNJZTPsvX/1tM4GZJbclgODhvW4E+NH7E5VFcH0bBn30NvniPJA==
254 | dependencies:
255 | "@babel/helper-module-imports" "^7.16.7"
256 | "@babel/plugin-syntax-jsx" "^7.17.12"
257 | "@babel/runtime" "^7.18.3"
258 | "@emotion/hash" "^0.9.0"
259 | "@emotion/memoize" "^0.8.0"
260 | "@emotion/serialize" "^1.1.0"
261 | babel-plugin-macros "^3.1.0"
262 | convert-source-map "^1.5.0"
263 | escape-string-regexp "^4.0.0"
264 | find-root "^1.1.0"
265 | source-map "^0.5.7"
266 | stylis "4.0.13"
267 |
268 | "@emotion/cache@^11.10.0":
269 | version "11.10.1"
270 | resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.10.1.tgz#75a157c2a6bb9220450f73ebef1df2e1467dc65d"
271 | integrity sha512-uZTj3Yz5D69GE25iFZcIQtibnVCFsc/6+XIozyL3ycgWvEdif2uEw9wlUt6umjLr4Keg9K6xRPHmD8LGi+6p1A==
272 | dependencies:
273 | "@emotion/memoize" "^0.8.0"
274 | "@emotion/sheet" "^1.2.0"
275 | "@emotion/utils" "^1.2.0"
276 | "@emotion/weak-memoize" "^0.3.0"
277 | stylis "4.0.13"
278 |
279 | "@emotion/css@11.10.0":
280 | version "11.10.0"
281 | resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.10.0.tgz#270b4fdf2419e59cb07081d0e9f7940d88b8b443"
282 | integrity sha512-dH9f+kSCucc8ilMg0MUA1AemabcyzYpe5EKX24F528PJjD7HyIY/VBNJHxfUdc8l400h2ncAjR6yEDu+DBj2cg==
283 | dependencies:
284 | "@emotion/babel-plugin" "^11.10.0"
285 | "@emotion/cache" "^11.10.0"
286 | "@emotion/serialize" "^1.1.0"
287 | "@emotion/sheet" "^1.2.0"
288 | "@emotion/utils" "^1.2.0"
289 |
290 | "@emotion/hash@^0.9.0":
291 | version "0.9.0"
292 | resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.0.tgz#c5153d50401ee3c027a57a177bc269b16d889cb7"
293 | integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==
294 |
295 | "@emotion/memoize@^0.8.0":
296 | version "0.8.0"
297 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f"
298 | integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==
299 |
300 | "@emotion/serialize@^1.1.0":
301 | version "1.1.0"
302 | resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.0.tgz#b1f97b1011b09346a40e9796c37a3397b4ea8ea8"
303 | integrity sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA==
304 | dependencies:
305 | "@emotion/hash" "^0.9.0"
306 | "@emotion/memoize" "^0.8.0"
307 | "@emotion/unitless" "^0.8.0"
308 | "@emotion/utils" "^1.2.0"
309 | csstype "^3.0.2"
310 |
311 | "@emotion/sheet@^1.2.0":
312 | version "1.2.0"
313 | resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.0.tgz#771b1987855839e214fc1741bde43089397f7be5"
314 | integrity sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==
315 |
316 | "@emotion/unitless@^0.8.0":
317 | version "0.8.0"
318 | resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.0.tgz#a4a36e9cbdc6903737cd20d38033241e1b8833db"
319 | integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==
320 |
321 | "@emotion/utils@^1.2.0":
322 | version "1.2.0"
323 | resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.0.tgz#9716eaccbc6b5ded2ea5a90d65562609aab0f561"
324 | integrity sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==
325 |
326 | "@emotion/weak-memoize@^0.3.0":
327 | version "0.3.0"
328 | resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz#ea89004119dc42db2e1dba0f97d553f7372f6fcb"
329 | integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==
330 |
331 | "@esbuild/linux-loong64@0.14.53":
332 | version "0.14.53"
333 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.14.53.tgz#251b4cd6760fadb4d68a05815e6dc5e432d69cd6"
334 | integrity sha512-W2dAL6Bnyn4xa/QRSU3ilIK4EzD5wgYXKXJiS1HDF5vU3675qc2bvFyLwbUcdmssDveyndy7FbitrCoiV/eMLg==
335 |
336 | "@jridgewell/gen-mapping@^0.1.0":
337 | version "0.1.1"
338 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
339 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
340 | dependencies:
341 | "@jridgewell/set-array" "^1.0.0"
342 | "@jridgewell/sourcemap-codec" "^1.4.10"
343 |
344 | "@jridgewell/gen-mapping@^0.3.2":
345 | version "0.3.2"
346 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
347 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
348 | dependencies:
349 | "@jridgewell/set-array" "^1.0.1"
350 | "@jridgewell/sourcemap-codec" "^1.4.10"
351 | "@jridgewell/trace-mapping" "^0.3.9"
352 |
353 | "@jridgewell/resolve-uri@^3.0.3":
354 | version "3.1.0"
355 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
356 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
357 |
358 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
359 | version "1.1.2"
360 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
361 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
362 |
363 | "@jridgewell/sourcemap-codec@^1.4.10":
364 | version "1.4.14"
365 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
366 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
367 |
368 | "@jridgewell/trace-mapping@^0.3.9":
369 | version "0.3.14"
370 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed"
371 | integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==
372 | dependencies:
373 | "@jridgewell/resolve-uri" "^3.0.3"
374 | "@jridgewell/sourcemap-codec" "^1.4.10"
375 |
376 | "@rescript/react@0.10.3":
377 | version "0.10.3"
378 | resolved "https://registry.yarnpkg.com/@rescript/react/-/react-0.10.3.tgz#a2a8bed6b017940ec26c2154764b350f50348889"
379 | integrity sha512-Lf9rzrR3bQPKJjOK3PBRa/B3xrJ7CqQ1HYr9VHPVxJidarIJJFZBhj0Dg1uZURX+Wg/xiP0PHFxXmdj2bK8Vxw==
380 |
381 | "@rescriptbr/ancestor@0.9.0-2":
382 | version "0.9.0-2"
383 | resolved "https://registry.yarnpkg.com/@rescriptbr/ancestor/-/ancestor-0.9.0-2.tgz#08eefc7d70062f0b92b0c5ba94528e8439f1921d"
384 | integrity sha512-+bqkJdf03YojG/BSx6Ti5h5+NDjsI+hwXdFUJycC2BMom2US+YL2AznqkWgYh3W+JZUClJaJB9dselrlUdktJg==
385 |
386 | "@ryyppy/rescript-promise@2.1.0":
387 | version "2.1.0"
388 | resolved "https://registry.yarnpkg.com/@ryyppy/rescript-promise/-/rescript-promise-2.1.0.tgz#a33861274c41360cfbe872cf489f3dcb8dd526e6"
389 | integrity sha512-+dW6msBrj2Lr2hbEMX+HoWCvN89qVjl94RwbYWJgHQuj8jm/izdPC0YzxgpGoEFdeAEW2sOozoLcYHxT6o5WXQ==
390 |
391 | "@tauri-apps/api@^1.0.2":
392 | version "1.0.2"
393 | resolved "https://registry.yarnpkg.com/@tauri-apps/api/-/api-1.0.2.tgz#5228720e35d50fd08df87067dc29e7306c1f7a10"
394 | integrity sha512-yuNW0oeJ1/ZA7wNF1KgxhHrSu5viPVzY/UgUczzN5ptLM8dH15Juy5rEGkoHfeXGju90Y/l22hi3BtIrp/za+w==
395 |
396 | "@tauri-apps/cli-darwin-arm64@1.0.5":
397 | version "1.0.5"
398 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.0.5.tgz#6fd17a8d9e0e7982b5c9887639407fdec783a744"
399 | integrity sha512-oxpFb9ZeMiC3xPUJ9NsXWCnnwFSVkPbJUvDKpc9IaoDIUpsMTV72W4P0Nh0uQRbyhx4modPpstt7+ONypNVYNg==
400 |
401 | "@tauri-apps/cli-darwin-x64@1.0.5":
402 | version "1.0.5"
403 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.0.5.tgz#6aaaadd68739c4c4f86546f3d17b2fb60a5a0c04"
404 | integrity sha512-hRNYC6L9edz2dEqK33tssPylF2ti6x6udidBlGWc5GSoeEb/05qKMEA1MESQYKBG+4q+wjJvACA2vvz6AfgJ3Q==
405 |
406 | "@tauri-apps/cli-linux-arm-gnueabihf@1.0.5":
407 | version "1.0.5"
408 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.0.5.tgz#d2d01c8b85ee3771656386bfda3852af8ed811da"
409 | integrity sha512-hc/Jp3TtFpxB8XVkLEwWy7MNcUBlS8rNCafQBUt4KSElXB+/oGo50jPO+wd5GSMSOR59UCzH08v11P0b+sAa/w==
410 |
411 | "@tauri-apps/cli-linux-arm64-gnu@1.0.5":
412 | version "1.0.5"
413 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.0.5.tgz#7ca848120c2e90b57188aaa9daee11cf29e2e2f4"
414 | integrity sha512-btFlkD2PG+yzJBZzWeJmyCy8ZV+iys2Jl66Fs4g9lSi3KrBDnyfQ26RpGZb2pRfkkcVP8/x1WSfByO+Rj+PTBA==
415 |
416 | "@tauri-apps/cli-linux-arm64-musl@1.0.5":
417 | version "1.0.5"
418 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.0.5.tgz#5ba65790849e0737f560f3ccd12f7a2a88c25b23"
419 | integrity sha512-p5JFdWab2AWhfgAZW/mgOLu+YiIJXKV0NdATGmdiBgQCMmz1k/FM8iOFApCgGbo3/zkR58cJ7Z7hyWmQ07M6Pw==
420 |
421 | "@tauri-apps/cli-linux-x64-gnu@1.0.5":
422 | version "1.0.5"
423 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.0.5.tgz#d06430c608316cb5a29ec805d4c5d078a293c3ae"
424 | integrity sha512-fOXR635AXxwSO7MCfBhMLnGpcg1H83XGw9ocuyg4jjvtE8QoYPwC4ksfb5lLhDVMui9iIKY93NAK3EkQiSGGmQ==
425 |
426 | "@tauri-apps/cli-linux-x64-musl@1.0.5":
427 | version "1.0.5"
428 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.0.5.tgz#813c90531f4001453e73b3ad2d4c75929412a249"
429 | integrity sha512-8be4zJVkuMs427JqONhFx5Ia5zWsQ5tbZXd80C3dHNL+5/3VIOK6nGQ0iijyZSLXiE9JKEH2jp1EHB+1TVJRcw==
430 |
431 | "@tauri-apps/cli-win32-ia32-msvc@1.0.5":
432 | version "1.0.5"
433 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.0.5.tgz#a3eb6f56c3f4ba35f6311e1fb31bd30e6892b316"
434 | integrity sha512-WpnIfzS1e4InGhvd1IDSKC3w6kbI5c6oJgMmtkMTBlhjhiZXhZmQF4XA784A5Y13pzsbXnbNJKOp8DuPVkoTRQ==
435 |
436 | "@tauri-apps/cli-win32-x64-msvc@1.0.5":
437 | version "1.0.5"
438 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.0.5.tgz#f1e0860166e8f86b550e35aaf22ef95d6da5a7c8"
439 | integrity sha512-8iEhVD3X4LZfrlxEPOV+mAj4QrJrEqKTICiJnwmgjvhYQOOsNHzg5kca7pcBbqcgorQOBydLpfGJtxWRusVPaw==
440 |
441 | "@tauri-apps/cli@^1.0.5":
442 | version "1.0.5"
443 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli/-/cli-1.0.5.tgz#a15a61e8467be29277b72707c4189c58c33d94bf"
444 | integrity sha512-vbY+MwK+xN65x0R/o16UQPxBtJl8pmzVzC0TZKokZfmeOkomoqOEOinSwznAMeyR1ZMJW+fXVgJCPvGsRQ0LGg==
445 | optionalDependencies:
446 | "@tauri-apps/cli-darwin-arm64" "1.0.5"
447 | "@tauri-apps/cli-darwin-x64" "1.0.5"
448 | "@tauri-apps/cli-linux-arm-gnueabihf" "1.0.5"
449 | "@tauri-apps/cli-linux-arm64-gnu" "1.0.5"
450 | "@tauri-apps/cli-linux-arm64-musl" "1.0.5"
451 | "@tauri-apps/cli-linux-x64-gnu" "1.0.5"
452 | "@tauri-apps/cli-linux-x64-musl" "1.0.5"
453 | "@tauri-apps/cli-win32-ia32-msvc" "1.0.5"
454 | "@tauri-apps/cli-win32-x64-msvc" "1.0.5"
455 |
456 | "@types/parse-json@^4.0.0":
457 | version "4.0.0"
458 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
459 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
460 |
461 | "@types/prop-types@*":
462 | version "15.7.5"
463 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
464 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
465 |
466 | "@types/react-dom@^18.0.6":
467 | version "18.0.6"
468 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.6.tgz#36652900024842b74607a17786b6662dd1e103a1"
469 | integrity sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==
470 | dependencies:
471 | "@types/react" "*"
472 |
473 | "@types/react@*", "@types/react@^18.0.15":
474 | version "18.0.15"
475 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.15.tgz#d355644c26832dc27f3e6cbf0c4f4603fc4ab7fe"
476 | integrity sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==
477 | dependencies:
478 | "@types/prop-types" "*"
479 | "@types/scheduler" "*"
480 | csstype "^3.0.2"
481 |
482 | "@types/scheduler@*":
483 | version "0.16.2"
484 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
485 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
486 |
487 | "@vitejs/plugin-react@^2.0.0":
488 | version "2.0.0"
489 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-2.0.0.tgz#12decd097773a00620e44b780b1d2c00df101449"
490 | integrity sha512-zHkRR+X4zqEPNBbKV2FvWSxK7Q6crjMBVIAYroSU8Nbb4M3E5x4qOiLoqJBHtXgr27kfednXjkwr3lr8jS6Wrw==
491 | dependencies:
492 | "@babel/core" "^7.18.6"
493 | "@babel/plugin-transform-react-jsx" "^7.18.6"
494 | "@babel/plugin-transform-react-jsx-development" "^7.18.6"
495 | "@babel/plugin-transform-react-jsx-self" "^7.18.6"
496 | "@babel/plugin-transform-react-jsx-source" "^7.18.6"
497 | magic-string "^0.26.2"
498 | react-refresh "^0.14.0"
499 |
500 | ansi-styles@^3.2.1:
501 | version "3.2.1"
502 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
503 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
504 | dependencies:
505 | color-convert "^1.9.0"
506 |
507 | babel-plugin-macros@^3.1.0:
508 | version "3.1.0"
509 | resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
510 | integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
511 | dependencies:
512 | "@babel/runtime" "^7.12.5"
513 | cosmiconfig "^7.0.0"
514 | resolve "^1.19.0"
515 |
516 | browserslist@^4.20.2:
517 | version "4.21.3"
518 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz#5df277694eb3c48bc5c4b05af3e8b7e09c5a6d1a"
519 | integrity sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==
520 | dependencies:
521 | caniuse-lite "^1.0.30001370"
522 | electron-to-chromium "^1.4.202"
523 | node-releases "^2.0.6"
524 | update-browserslist-db "^1.0.5"
525 |
526 | callsites@^3.0.0:
527 | version "3.1.0"
528 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
529 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
530 |
531 | caniuse-lite@^1.0.30001370:
532 | version "1.0.30001374"
533 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001374.tgz#3dab138e3f5485ba2e74bd13eca7fe1037ce6f57"
534 | integrity sha512-mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw==
535 |
536 | chalk@^2.0.0:
537 | version "2.4.2"
538 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
539 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
540 | dependencies:
541 | ansi-styles "^3.2.1"
542 | escape-string-regexp "^1.0.5"
543 | supports-color "^5.3.0"
544 |
545 | color-convert@^1.9.0:
546 | version "1.9.3"
547 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
548 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
549 | dependencies:
550 | color-name "1.1.3"
551 |
552 | color-name@1.1.3:
553 | version "1.1.3"
554 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
555 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
556 |
557 | convert-source-map@^1.5.0, convert-source-map@^1.7.0:
558 | version "1.8.0"
559 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
560 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
561 | dependencies:
562 | safe-buffer "~5.1.1"
563 |
564 | cosmiconfig@^7.0.0:
565 | version "7.0.1"
566 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
567 | integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
568 | dependencies:
569 | "@types/parse-json" "^4.0.0"
570 | import-fresh "^3.2.1"
571 | parse-json "^5.0.0"
572 | path-type "^4.0.0"
573 | yaml "^1.10.0"
574 |
575 | csstype@^3.0.2:
576 | version "3.1.0"
577 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2"
578 | integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==
579 |
580 | debug@^4.1.0:
581 | version "4.3.4"
582 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
583 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
584 | dependencies:
585 | ms "2.1.2"
586 |
587 | electron-to-chromium@^1.4.202:
588 | version "1.4.211"
589 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.211.tgz#afaa8b58313807501312d598d99b953568d60f91"
590 | integrity sha512-BZSbMpyFQU0KBJ1JG26XGeFI3i4op+qOYGxftmZXFZoHkhLgsSv4DHDJfl8ogII3hIuzGt51PaZ195OVu0yJ9A==
591 |
592 | error-ex@^1.3.1:
593 | version "1.3.2"
594 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
595 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
596 | dependencies:
597 | is-arrayish "^0.2.1"
598 |
599 | esbuild-android-64@0.14.53:
600 | version "0.14.53"
601 | resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.53.tgz#259bc3ef1399a3cad8f4f67c40ee20779c4de675"
602 | integrity sha512-fIL93sOTnEU+NrTAVMIKiAw0YH22HWCAgg4N4Z6zov2t0kY9RAJ50zY9ZMCQ+RT6bnOfDt8gCTnt/RaSNA2yRA==
603 |
604 | esbuild-android-arm64@0.14.53:
605 | version "0.14.53"
606 | resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.53.tgz#2158253d4e8f9fdd2a081bbb4f73b8806178841e"
607 | integrity sha512-PC7KaF1v0h/nWpvlU1UMN7dzB54cBH8qSsm7S9mkwFA1BXpaEOufCg8hdoEI1jep0KeO/rjZVWrsH8+q28T77A==
608 |
609 | esbuild-darwin-64@0.14.53:
610 | version "0.14.53"
611 | resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.53.tgz#b4681831fd8f8d06feb5048acbe90d742074cc2a"
612 | integrity sha512-gE7P5wlnkX4d4PKvLBUgmhZXvL7lzGRLri17/+CmmCzfncIgq8lOBvxGMiQ4xazplhxq+72TEohyFMZLFxuWvg==
613 |
614 | esbuild-darwin-arm64@0.14.53:
615 | version "0.14.53"
616 | resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.53.tgz#d267d957852d121b261b3f76ead86e5b5463acc9"
617 | integrity sha512-otJwDU3hnI15Q98PX4MJbknSZ/WSR1I45il7gcxcECXzfN4Mrpft5hBDHXNRnCh+5858uPXBXA1Vaz2jVWLaIA==
618 |
619 | esbuild-freebsd-64@0.14.53:
620 | version "0.14.53"
621 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.53.tgz#aca2af6d72b537fe66a38eb8f374fb66d4c98ca0"
622 | integrity sha512-WkdJa8iyrGHyKiPF4lk0MiOF87Q2SkE+i+8D4Cazq3/iqmGPJ6u49je300MFi5I2eUsQCkaOWhpCVQMTKGww2w==
623 |
624 | esbuild-freebsd-arm64@0.14.53:
625 | version "0.14.53"
626 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.53.tgz#76282e19312d914c34343c8a7da6cc5f051580b9"
627 | integrity sha512-9T7WwCuV30NAx0SyQpw8edbKvbKELnnm1FHg7gbSYaatH+c8WJW10g/OdM7JYnv7qkimw2ZTtSA+NokOLd2ydQ==
628 |
629 | esbuild-linux-32@0.14.53:
630 | version "0.14.53"
631 | resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.53.tgz#1045d34cf7c5faaf2af3b29cc1573b06580c37e5"
632 | integrity sha512-VGanLBg5en2LfGDgLEUxQko2lqsOS7MTEWUi8x91YmsHNyzJVT/WApbFFx3MQGhkf+XdimVhpyo5/G0PBY91zg==
633 |
634 | esbuild-linux-64@0.14.53:
635 | version "0.14.53"
636 | resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.53.tgz#ab3f2ee2ebb5a6930c72d9539cb34b428808cbe4"
637 | integrity sha512-pP/FA55j/fzAV7N9DF31meAyjOH6Bjuo3aSKPh26+RW85ZEtbJv9nhoxmGTd9FOqjx59Tc1ZbrJabuiXlMwuZQ==
638 |
639 | esbuild-linux-arm64@0.14.53:
640 | version "0.14.53"
641 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.53.tgz#1f5530412f6690949e78297122350488d3266cfe"
642 | integrity sha512-GDmWITT+PMsjCA6/lByYk7NyFssW4Q6in32iPkpjZ/ytSyH+xeEx8q7HG3AhWH6heemEYEWpTll/eui3jwlSnw==
643 |
644 | esbuild-linux-arm@0.14.53:
645 | version "0.14.53"
646 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.53.tgz#a44ec9b5b42007ab6c0d65a224ccc6bbd97c54cf"
647 | integrity sha512-/u81NGAVZMopbmzd21Nu/wvnKQK3pT4CrvQ8BTje1STXcQAGnfyKgQlj3m0j2BzYbvQxSy+TMck4TNV2onvoPA==
648 |
649 | esbuild-linux-mips64le@0.14.53:
650 | version "0.14.53"
651 | resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.53.tgz#a4d0b6b17cfdeea4e41b0b085a5f73d99311be9f"
652 | integrity sha512-d6/XHIQW714gSSp6tOOX2UscedVobELvQlPMkInhx1NPz4ThZI9uNLQ4qQJHGBGKGfu+rtJsxM4NVHLhnNRdWQ==
653 |
654 | esbuild-linux-ppc64le@0.14.53:
655 | version "0.14.53"
656 | resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.53.tgz#8c331822c85465434e086e3e6065863770c38139"
657 | integrity sha512-ndnJmniKPCB52m+r6BtHHLAOXw+xBCWIxNnedbIpuREOcbSU/AlyM/2dA3BmUQhsHdb4w3amD5U2s91TJ3MzzA==
658 |
659 | esbuild-linux-riscv64@0.14.53:
660 | version "0.14.53"
661 | resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.53.tgz#36fd75543401304bea8a2d63bf8ea18aaa508e00"
662 | integrity sha512-yG2sVH+QSix6ct4lIzJj329iJF3MhloLE6/vKMQAAd26UVPVkhMFqFopY+9kCgYsdeWvXdPgmyOuKa48Y7+/EQ==
663 |
664 | esbuild-linux-s390x@0.14.53:
665 | version "0.14.53"
666 | resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.53.tgz#1622677ab6824123f48f75d3afc031cd41936129"
667 | integrity sha512-OCJlgdkB+XPYndHmw6uZT7jcYgzmx9K+28PVdOa/eLjdoYkeAFvH5hTwX4AXGLZLH09tpl4bVsEtvuyUldaNCg==
668 |
669 | esbuild-netbsd-64@0.14.53:
670 | version "0.14.53"
671 | resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.53.tgz#e86d0efd0116658be335492ed12e66b26b4baf52"
672 | integrity sha512-gp2SB+Efc7MhMdWV2+pmIs/Ja/Mi5rjw+wlDmmbIn68VGXBleNgiEZG+eV2SRS0kJEUyHNedDtwRIMzaohWedQ==
673 |
674 | esbuild-openbsd-64@0.14.53:
675 | version "0.14.53"
676 | resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.53.tgz#9bcbbe6f86304872c6e91f64c8eb73fc29c3588b"
677 | integrity sha512-eKQ30ZWe+WTZmteDYg8S+YjHV5s4iTxeSGhJKJajFfQx9TLZJvsJX0/paqwP51GicOUruFpSUAs2NCc0a4ivQQ==
678 |
679 | esbuild-sunos-64@0.14.53:
680 | version "0.14.53"
681 | resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.53.tgz#f7a872f7460bfb7b131f7188a95fbce3d1c577e8"
682 | integrity sha512-OWLpS7a2FrIRukQqcgQqR1XKn0jSJoOdT+RlhAxUoEQM/IpytS3FXzCJM6xjUYtpO5GMY0EdZJp+ur2pYdm39g==
683 |
684 | esbuild-windows-32@0.14.53:
685 | version "0.14.53"
686 | resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.53.tgz#c5e3ca50e2d1439cc2c9fe4defa63bcd474ce709"
687 | integrity sha512-m14XyWQP5rwGW0tbEfp95U6A0wY0DYPInWBB7D69FAXUpBpBObRoGTKRv36lf2RWOdE4YO3TNvj37zhXjVL5xg==
688 |
689 | esbuild-windows-64@0.14.53:
690 | version "0.14.53"
691 | resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.53.tgz#ec2ab4a60c5215f092ffe1eab6d01319e88238af"
692 | integrity sha512-s9skQFF0I7zqnQ2K8S1xdLSfZFsPLuOGmSx57h2btSEswv0N0YodYvqLcJMrNMXh6EynOmWD7rz+0rWWbFpIHQ==
693 |
694 | esbuild-windows-arm64@0.14.53:
695 | version "0.14.53"
696 | resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.53.tgz#f71d403806bdf9f4a1f9d097db9aec949bd675c8"
697 | integrity sha512-E+5Gvb+ZWts+00T9II6wp2L3KG2r3iGxByqd/a1RmLmYWVsSVUjkvIxZuJ3hYTIbhLkH5PRwpldGTKYqVz0nzQ==
698 |
699 | esbuild@^0.14.47:
700 | version "0.14.53"
701 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.53.tgz#20b1007f686e8584f2a01a1bec5a37aac9498ce4"
702 | integrity sha512-ohO33pUBQ64q6mmheX1mZ8mIXj8ivQY/L4oVuAshr+aJI+zLl+amrp3EodrUNDNYVrKJXGPfIHFGhO8slGRjuw==
703 | optionalDependencies:
704 | "@esbuild/linux-loong64" "0.14.53"
705 | esbuild-android-64 "0.14.53"
706 | esbuild-android-arm64 "0.14.53"
707 | esbuild-darwin-64 "0.14.53"
708 | esbuild-darwin-arm64 "0.14.53"
709 | esbuild-freebsd-64 "0.14.53"
710 | esbuild-freebsd-arm64 "0.14.53"
711 | esbuild-linux-32 "0.14.53"
712 | esbuild-linux-64 "0.14.53"
713 | esbuild-linux-arm "0.14.53"
714 | esbuild-linux-arm64 "0.14.53"
715 | esbuild-linux-mips64le "0.14.53"
716 | esbuild-linux-ppc64le "0.14.53"
717 | esbuild-linux-riscv64 "0.14.53"
718 | esbuild-linux-s390x "0.14.53"
719 | esbuild-netbsd-64 "0.14.53"
720 | esbuild-openbsd-64 "0.14.53"
721 | esbuild-sunos-64 "0.14.53"
722 | esbuild-windows-32 "0.14.53"
723 | esbuild-windows-64 "0.14.53"
724 | esbuild-windows-arm64 "0.14.53"
725 |
726 | escalade@^3.1.1:
727 | version "3.1.1"
728 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
729 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
730 |
731 | escape-string-regexp@^1.0.5:
732 | version "1.0.5"
733 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
734 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
735 |
736 | escape-string-regexp@^4.0.0:
737 | version "4.0.0"
738 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
739 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
740 |
741 | find-root@^1.1.0:
742 | version "1.1.0"
743 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
744 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
745 |
746 | fsevents@~2.3.2:
747 | version "2.3.2"
748 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
749 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
750 |
751 | function-bind@^1.1.1:
752 | version "1.1.1"
753 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
754 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
755 |
756 | gensync@^1.0.0-beta.2:
757 | version "1.0.0-beta.2"
758 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
759 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
760 |
761 | globals@^11.1.0:
762 | version "11.12.0"
763 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
764 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
765 |
766 | has-flag@^3.0.0:
767 | version "3.0.0"
768 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
769 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
770 |
771 | has@^1.0.3:
772 | version "1.0.3"
773 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
774 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
775 | dependencies:
776 | function-bind "^1.1.1"
777 |
778 | import-fresh@^3.2.1:
779 | version "3.3.0"
780 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
781 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
782 | dependencies:
783 | parent-module "^1.0.0"
784 | resolve-from "^4.0.0"
785 |
786 | is-arrayish@^0.2.1:
787 | version "0.2.1"
788 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
789 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
790 |
791 | is-core-module@^2.9.0:
792 | version "2.10.0"
793 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
794 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
795 | dependencies:
796 | has "^1.0.3"
797 |
798 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
799 | version "4.0.0"
800 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
801 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
802 |
803 | jsesc@^2.5.1:
804 | version "2.5.2"
805 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
806 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
807 |
808 | json-parse-even-better-errors@^2.3.0:
809 | version "2.3.1"
810 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
811 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
812 |
813 | json5@^2.2.1:
814 | version "2.2.1"
815 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
816 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
817 |
818 | lines-and-columns@^1.1.6:
819 | version "1.2.4"
820 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
821 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
822 |
823 | loose-envify@^1.1.0:
824 | version "1.4.0"
825 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
826 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
827 | dependencies:
828 | js-tokens "^3.0.0 || ^4.0.0"
829 |
830 | magic-string@^0.26.2:
831 | version "0.26.2"
832 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.2.tgz#5331700e4158cd6befda738bb6b0c7b93c0d4432"
833 | integrity sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==
834 | dependencies:
835 | sourcemap-codec "^1.4.8"
836 |
837 | ms@2.1.2:
838 | version "2.1.2"
839 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
840 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
841 |
842 | nanoid@^3.3.4:
843 | version "3.3.4"
844 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
845 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
846 |
847 | node-releases@^2.0.6:
848 | version "2.0.6"
849 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
850 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
851 |
852 | object-assign@^4.1.1:
853 | version "4.1.1"
854 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
855 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
856 |
857 | parent-module@^1.0.0:
858 | version "1.0.1"
859 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
860 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
861 | dependencies:
862 | callsites "^3.0.0"
863 |
864 | parse-json@^5.0.0:
865 | version "5.2.0"
866 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
867 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
868 | dependencies:
869 | "@babel/code-frame" "^7.0.0"
870 | error-ex "^1.3.1"
871 | json-parse-even-better-errors "^2.3.0"
872 | lines-and-columns "^1.1.6"
873 |
874 | path-parse@^1.0.7:
875 | version "1.0.7"
876 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
877 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
878 |
879 | path-type@^4.0.0:
880 | version "4.0.0"
881 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
882 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
883 |
884 | picocolors@^1.0.0:
885 | version "1.0.0"
886 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
887 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
888 |
889 | postcss@^8.4.14:
890 | version "8.4.14"
891 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
892 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
893 | dependencies:
894 | nanoid "^3.3.4"
895 | picocolors "^1.0.0"
896 | source-map-js "^1.0.2"
897 |
898 | react-dom@^17.0.0:
899 | version "17.0.2"
900 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
901 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
902 | dependencies:
903 | loose-envify "^1.1.0"
904 | object-assign "^4.1.1"
905 | scheduler "^0.20.2"
906 |
907 | react-refresh@^0.14.0:
908 | version "0.14.0"
909 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e"
910 | integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==
911 |
912 | react@^17.0.0:
913 | version "17.0.2"
914 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
915 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
916 | dependencies:
917 | loose-envify "^1.1.0"
918 | object-assign "^4.1.1"
919 |
920 | regenerator-runtime@^0.13.4:
921 | version "0.13.9"
922 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
923 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
924 |
925 | rescript@9.1.4:
926 | version "9.1.4"
927 | resolved "https://registry.yarnpkg.com/rescript/-/rescript-9.1.4.tgz#1eb126f98d6c16942c0bf0df67c050198e580515"
928 | integrity sha512-aXANK4IqecJzdnDpJUsU6pxMViCR5ogAxzuqS0mOr8TloMnzAjJFu63fjD6LCkWrKAhlMkFFzQvVQYaAaVkFXw==
929 |
930 | resolve-from@^4.0.0:
931 | version "4.0.0"
932 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
933 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
934 |
935 | resolve@^1.19.0, resolve@^1.22.1:
936 | version "1.22.1"
937 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
938 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
939 | dependencies:
940 | is-core-module "^2.9.0"
941 | path-parse "^1.0.7"
942 | supports-preserve-symlinks-flag "^1.0.0"
943 |
944 | rollup@^2.75.6:
945 | version "2.77.2"
946 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.77.2.tgz#6b6075c55f9cc2040a5912e6e062151e42e2c4e3"
947 | integrity sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==
948 | optionalDependencies:
949 | fsevents "~2.3.2"
950 |
951 | safe-buffer@~5.1.1:
952 | version "5.1.2"
953 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
954 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
955 |
956 | scheduler@^0.20.2:
957 | version "0.20.2"
958 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
959 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
960 | dependencies:
961 | loose-envify "^1.1.0"
962 | object-assign "^4.1.1"
963 |
964 | semver@^6.3.0:
965 | version "6.3.0"
966 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
967 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
968 |
969 | source-map-js@^1.0.2:
970 | version "1.0.2"
971 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
972 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
973 |
974 | source-map@^0.5.7:
975 | version "0.5.7"
976 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
977 | integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
978 |
979 | sourcemap-codec@^1.4.8:
980 | version "1.4.8"
981 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
982 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
983 |
984 | stylis@4.0.13:
985 | version "4.0.13"
986 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
987 | integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
988 |
989 | supports-color@^5.3.0:
990 | version "5.5.0"
991 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
992 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
993 | dependencies:
994 | has-flag "^3.0.0"
995 |
996 | supports-preserve-symlinks-flag@^1.0.0:
997 | version "1.0.0"
998 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
999 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1000 |
1001 | to-fast-properties@^2.0.0:
1002 | version "2.0.0"
1003 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1004 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
1005 |
1006 | update-browserslist-db@^1.0.5:
1007 | version "1.0.5"
1008 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38"
1009 | integrity sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==
1010 | dependencies:
1011 | escalade "^3.1.1"
1012 | picocolors "^1.0.0"
1013 |
1014 | vite@^3.0.0:
1015 | version "3.0.4"
1016 | resolved "https://registry.yarnpkg.com/vite/-/vite-3.0.4.tgz#c61688d6b97573e96cf5ac25f2d68597b5ce68e8"
1017 | integrity sha512-NU304nqnBeOx2MkQnskBQxVsa0pRAH5FphokTGmyy8M3oxbvw7qAXts2GORxs+h/2vKsD+osMhZ7An6yK6F1dA==
1018 | dependencies:
1019 | esbuild "^0.14.47"
1020 | postcss "^8.4.14"
1021 | resolve "^1.22.1"
1022 | rollup "^2.75.6"
1023 | optionalDependencies:
1024 | fsevents "~2.3.2"
1025 |
1026 | yaml@^1.10.0:
1027 | version "1.10.2"
1028 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
1029 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
1030 |
--------------------------------------------------------------------------------
/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.59"
53 | source = "registry+https://github.com/rust-lang/crates.io-index"
54 | checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9"
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.10.0"
174 | source = "registry+https://github.com/rust-lang/crates.io-index"
175 | checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
176 |
177 | [[package]]
178 | name = "bytemuck"
179 | version = "1.11.0"
180 | source = "registry+https://github.com/rust-lang/crates.io-index"
181 | checksum = "a5377c8865e74a160d21f29c2d40669f53286db6eab59b88540cbb12ffc8b835"
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.4"
316 | source = "registry+https://github.com/rust-lang/crates.io-index"
317 | checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948"
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.2"
373 | source = "registry+https://github.com/rust-lang/crates.io-index"
374 | checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
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.21"
695 | source = "registry+https://github.com/rust-lang/crates.io-index"
696 | checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
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.21"
710 | source = "registry+https://github.com/rust-lang/crates.io-index"
711 | checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
712 | dependencies = [
713 | "futures-core",
714 | "futures-sink",
715 | ]
716 |
717 | [[package]]
718 | name = "futures-core"
719 | version = "0.3.21"
720 | source = "registry+https://github.com/rust-lang/crates.io-index"
721 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
722 |
723 | [[package]]
724 | name = "futures-executor"
725 | version = "0.3.21"
726 | source = "registry+https://github.com/rust-lang/crates.io-index"
727 | checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
728 | dependencies = [
729 | "futures-core",
730 | "futures-task",
731 | "futures-util",
732 | ]
733 |
734 | [[package]]
735 | name = "futures-io"
736 | version = "0.3.21"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
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.21"
758 | source = "registry+https://github.com/rust-lang/crates.io-index"
759 | checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
760 | dependencies = [
761 | "proc-macro2",
762 | "quote",
763 | "syn",
764 | ]
765 |
766 | [[package]]
767 | name = "futures-sink"
768 | version = "0.3.21"
769 | source = "registry+https://github.com/rust-lang/crates.io-index"
770 | checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
771 |
772 | [[package]]
773 | name = "futures-task"
774 | version = "0.3.21"
775 | source = "registry+https://github.com/rust-lang/crates.io-index"
776 | checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
777 |
778 | [[package]]
779 | name = "futures-util"
780 | version = "0.3.21"
781 | source = "registry+https://github.com/rust-lang/crates.io-index"
782 | checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
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.127"
1348 | source = "registry+https://github.com/rust-lang/crates.io-index"
1349 | checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b"
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.7"
1372 | source = "registry+https://github.com/rust-lang/crates.io-index"
1373 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
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.5"
1412 | source = "registry+https://github.com/rust-lang/crates.io-index"
1413 | checksum = "fff231a88fe2e9985f9d159a2f02986fe46daa0f6af976a0d934be4870cc9d02"
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.0"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
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.2.1"
1830 | source = "registry+https://github.com/rust-lang/crates.io-index"
1831 | checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8"
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.0"
2006 | source = "registry+https://github.com/rust-lang/crates.io-index"
2007 | checksum = "26d50bfb8c23f23915855a00d98b5a35ef2e0b871bb52937bacadb798fbb66c8"
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.6.1"
2302 | source = "registry+https://github.com/rust-lang/crates.io-index"
2303 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
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.142"
2372 | source = "registry+https://github.com/rust-lang/crates.io-index"
2373 | checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2"
2374 | dependencies = [
2375 | "serde_derive",
2376 | ]
2377 |
2378 | [[package]]
2379 | name = "serde_derive"
2380 | version = "1.0.142"
2381 | source = "registry+https://github.com/rust-lang/crates.io-index"
2382 | checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e"
2383 | dependencies = [
2384 | "proc-macro2",
2385 | "quote",
2386 | "syn",
2387 | ]
2388 |
2389 | [[package]]
2390 | name = "serde_json"
2391 | version = "1.0.83"
2392 | source = "registry+https://github.com/rust-lang/crates.io-index"
2393 | checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
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.12"
2957 | source = "registry+https://github.com/rust-lang/crates.io-index"
2958 | checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f"
2959 | dependencies = [
2960 | "itoa 1.0.3",
2961 | "js-sys",
2962 | "libc",
2963 | "num_threads",
2964 | ]
2965 |
2966 | [[package]]
2967 | name = "tinyvec"
2968 | version = "1.6.0"
2969 | source = "registry+https://github.com/rust-lang/crates.io-index"
2970 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2971 | dependencies = [
2972 | "tinyvec_macros",
2973 | ]
2974 |
2975 | [[package]]
2976 | name = "tinyvec_macros"
2977 | version = "0.1.0"
2978 | source = "registry+https://github.com/rust-lang/crates.io-index"
2979 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2980 |
2981 | [[package]]
2982 | name = "tokio"
2983 | version = "1.20.1"
2984 | source = "registry+https://github.com/rust-lang/crates.io-index"
2985 | checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
2986 | dependencies = [
2987 | "autocfg",
2988 | "bytes",
2989 | "memchr",
2990 | "num_cpus",
2991 | "once_cell",
2992 | "pin-project-lite",
2993 | ]
2994 |
2995 | [[package]]
2996 | name = "toml"
2997 | version = "0.5.9"
2998 | source = "registry+https://github.com/rust-lang/crates.io-index"
2999 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
3000 | dependencies = [
3001 | "serde",
3002 | ]
3003 |
3004 | [[package]]
3005 | name = "tracing"
3006 | version = "0.1.36"
3007 | source = "registry+https://github.com/rust-lang/crates.io-index"
3008 | checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
3009 | dependencies = [
3010 | "cfg-if",
3011 | "pin-project-lite",
3012 | "tracing-attributes",
3013 | "tracing-core",
3014 | ]
3015 |
3016 | [[package]]
3017 | name = "tracing-attributes"
3018 | version = "0.1.22"
3019 | source = "registry+https://github.com/rust-lang/crates.io-index"
3020 | checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
3021 | dependencies = [
3022 | "proc-macro2",
3023 | "quote",
3024 | "syn",
3025 | ]
3026 |
3027 | [[package]]
3028 | name = "tracing-core"
3029 | version = "0.1.29"
3030 | source = "registry+https://github.com/rust-lang/crates.io-index"
3031 | checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
3032 | dependencies = [
3033 | "once_cell",
3034 | "valuable",
3035 | ]
3036 |
3037 | [[package]]
3038 | name = "tracing-log"
3039 | version = "0.1.3"
3040 | source = "registry+https://github.com/rust-lang/crates.io-index"
3041 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
3042 | dependencies = [
3043 | "lazy_static",
3044 | "log",
3045 | "tracing-core",
3046 | ]
3047 |
3048 | [[package]]
3049 | name = "tracing-subscriber"
3050 | version = "0.3.15"
3051 | source = "registry+https://github.com/rust-lang/crates.io-index"
3052 | checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
3053 | dependencies = [
3054 | "ansi_term",
3055 | "matchers",
3056 | "once_cell",
3057 | "regex",
3058 | "sharded-slab",
3059 | "smallvec",
3060 | "thread_local",
3061 | "tracing",
3062 | "tracing-core",
3063 | "tracing-log",
3064 | ]
3065 |
3066 | [[package]]
3067 | name = "treediff"
3068 | version = "3.0.2"
3069 | source = "registry+https://github.com/rust-lang/crates.io-index"
3070 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff"
3071 | dependencies = [
3072 | "serde_json",
3073 | ]
3074 |
3075 | [[package]]
3076 | name = "typenum"
3077 | version = "1.15.0"
3078 | source = "registry+https://github.com/rust-lang/crates.io-index"
3079 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
3080 |
3081 | [[package]]
3082 | name = "ucd-trie"
3083 | version = "0.1.4"
3084 | source = "registry+https://github.com/rust-lang/crates.io-index"
3085 | checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
3086 |
3087 | [[package]]
3088 | name = "unicode-bidi"
3089 | version = "0.3.8"
3090 | source = "registry+https://github.com/rust-lang/crates.io-index"
3091 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
3092 |
3093 | [[package]]
3094 | name = "unicode-ident"
3095 | version = "1.0.3"
3096 | source = "registry+https://github.com/rust-lang/crates.io-index"
3097 | checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
3098 |
3099 | [[package]]
3100 | name = "unicode-normalization"
3101 | version = "0.1.21"
3102 | source = "registry+https://github.com/rust-lang/crates.io-index"
3103 | checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
3104 | dependencies = [
3105 | "tinyvec",
3106 | ]
3107 |
3108 | [[package]]
3109 | name = "unicode-segmentation"
3110 | version = "1.9.0"
3111 | source = "registry+https://github.com/rust-lang/crates.io-index"
3112 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
3113 |
3114 | [[package]]
3115 | name = "url"
3116 | version = "2.2.2"
3117 | source = "registry+https://github.com/rust-lang/crates.io-index"
3118 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
3119 | dependencies = [
3120 | "form_urlencoded",
3121 | "idna",
3122 | "matches",
3123 | "percent-encoding",
3124 | "serde",
3125 | ]
3126 |
3127 | [[package]]
3128 | name = "utf-8"
3129 | version = "0.7.6"
3130 | source = "registry+https://github.com/rust-lang/crates.io-index"
3131 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3132 |
3133 | [[package]]
3134 | name = "uuid"
3135 | version = "0.8.2"
3136 | source = "registry+https://github.com/rust-lang/crates.io-index"
3137 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
3138 |
3139 | [[package]]
3140 | name = "uuid"
3141 | version = "1.1.2"
3142 | source = "registry+https://github.com/rust-lang/crates.io-index"
3143 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
3144 | dependencies = [
3145 | "getrandom 0.2.7",
3146 | ]
3147 |
3148 | [[package]]
3149 | name = "valuable"
3150 | version = "0.1.0"
3151 | source = "registry+https://github.com/rust-lang/crates.io-index"
3152 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3153 |
3154 | [[package]]
3155 | name = "vcpkg"
3156 | version = "0.2.15"
3157 | source = "registry+https://github.com/rust-lang/crates.io-index"
3158 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3159 |
3160 | [[package]]
3161 | name = "version-compare"
3162 | version = "0.0.11"
3163 | source = "registry+https://github.com/rust-lang/crates.io-index"
3164 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
3165 |
3166 | [[package]]
3167 | name = "version-compare"
3168 | version = "0.1.0"
3169 | source = "registry+https://github.com/rust-lang/crates.io-index"
3170 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
3171 |
3172 | [[package]]
3173 | name = "version_check"
3174 | version = "0.9.4"
3175 | source = "registry+https://github.com/rust-lang/crates.io-index"
3176 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3177 |
3178 | [[package]]
3179 | name = "vswhom"
3180 | version = "0.1.0"
3181 | source = "registry+https://github.com/rust-lang/crates.io-index"
3182 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3183 | dependencies = [
3184 | "libc",
3185 | "vswhom-sys",
3186 | ]
3187 |
3188 | [[package]]
3189 | name = "vswhom-sys"
3190 | version = "0.1.1"
3191 | source = "registry+https://github.com/rust-lang/crates.io-index"
3192 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39"
3193 | dependencies = [
3194 | "cc",
3195 | "libc",
3196 | ]
3197 |
3198 | [[package]]
3199 | name = "waker-fn"
3200 | version = "1.1.0"
3201 | source = "registry+https://github.com/rust-lang/crates.io-index"
3202 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
3203 |
3204 | [[package]]
3205 | name = "walkdir"
3206 | version = "2.3.2"
3207 | source = "registry+https://github.com/rust-lang/crates.io-index"
3208 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
3209 | dependencies = [
3210 | "same-file",
3211 | "winapi",
3212 | "winapi-util",
3213 | ]
3214 |
3215 | [[package]]
3216 | name = "wasi"
3217 | version = "0.9.0+wasi-snapshot-preview1"
3218 | source = "registry+https://github.com/rust-lang/crates.io-index"
3219 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3220 |
3221 | [[package]]
3222 | name = "wasi"
3223 | version = "0.11.0+wasi-snapshot-preview1"
3224 | source = "registry+https://github.com/rust-lang/crates.io-index"
3225 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3226 |
3227 | [[package]]
3228 | name = "wasm-bindgen"
3229 | version = "0.2.82"
3230 | source = "registry+https://github.com/rust-lang/crates.io-index"
3231 | checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
3232 | dependencies = [
3233 | "cfg-if",
3234 | "wasm-bindgen-macro",
3235 | ]
3236 |
3237 | [[package]]
3238 | name = "wasm-bindgen-backend"
3239 | version = "0.2.82"
3240 | source = "registry+https://github.com/rust-lang/crates.io-index"
3241 | checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
3242 | dependencies = [
3243 | "bumpalo",
3244 | "log",
3245 | "once_cell",
3246 | "proc-macro2",
3247 | "quote",
3248 | "syn",
3249 | "wasm-bindgen-shared",
3250 | ]
3251 |
3252 | [[package]]
3253 | name = "wasm-bindgen-futures"
3254 | version = "0.4.32"
3255 | source = "registry+https://github.com/rust-lang/crates.io-index"
3256 | checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
3257 | dependencies = [
3258 | "cfg-if",
3259 | "js-sys",
3260 | "wasm-bindgen",
3261 | "web-sys",
3262 | ]
3263 |
3264 | [[package]]
3265 | name = "wasm-bindgen-macro"
3266 | version = "0.2.82"
3267 | source = "registry+https://github.com/rust-lang/crates.io-index"
3268 | checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
3269 | dependencies = [
3270 | "quote",
3271 | "wasm-bindgen-macro-support",
3272 | ]
3273 |
3274 | [[package]]
3275 | name = "wasm-bindgen-macro-support"
3276 | version = "0.2.82"
3277 | source = "registry+https://github.com/rust-lang/crates.io-index"
3278 | checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
3279 | dependencies = [
3280 | "proc-macro2",
3281 | "quote",
3282 | "syn",
3283 | "wasm-bindgen-backend",
3284 | "wasm-bindgen-shared",
3285 | ]
3286 |
3287 | [[package]]
3288 | name = "wasm-bindgen-shared"
3289 | version = "0.2.82"
3290 | source = "registry+https://github.com/rust-lang/crates.io-index"
3291 | checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
3292 |
3293 | [[package]]
3294 | name = "web-sys"
3295 | version = "0.3.59"
3296 | source = "registry+https://github.com/rust-lang/crates.io-index"
3297 | checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
3298 | dependencies = [
3299 | "js-sys",
3300 | "wasm-bindgen",
3301 | ]
3302 |
3303 | [[package]]
3304 | name = "webkit2gtk"
3305 | version = "0.18.0"
3306 | source = "registry+https://github.com/rust-lang/crates.io-index"
3307 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc"
3308 | dependencies = [
3309 | "bitflags",
3310 | "cairo-rs",
3311 | "gdk",
3312 | "gdk-sys",
3313 | "gio",
3314 | "gio-sys",
3315 | "glib",
3316 | "glib-sys",
3317 | "gobject-sys",
3318 | "gtk",
3319 | "gtk-sys",
3320 | "javascriptcore-rs",
3321 | "libc",
3322 | "once_cell",
3323 | "soup2",
3324 | "webkit2gtk-sys",
3325 | ]
3326 |
3327 | [[package]]
3328 | name = "webkit2gtk-sys"
3329 | version = "0.18.0"
3330 | source = "registry+https://github.com/rust-lang/crates.io-index"
3331 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
3332 | dependencies = [
3333 | "atk-sys",
3334 | "bitflags",
3335 | "cairo-sys-rs",
3336 | "gdk-pixbuf-sys",
3337 | "gdk-sys",
3338 | "gio-sys",
3339 | "glib-sys",
3340 | "gobject-sys",
3341 | "gtk-sys",
3342 | "javascriptcore-rs-sys",
3343 | "libc",
3344 | "pango-sys",
3345 | "pkg-config",
3346 | "soup2-sys",
3347 | "system-deps 6.0.2",
3348 | ]
3349 |
3350 | [[package]]
3351 | name = "webview2-com"
3352 | version = "0.16.0"
3353 | source = "registry+https://github.com/rust-lang/crates.io-index"
3354 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f"
3355 | dependencies = [
3356 | "webview2-com-macros",
3357 | "webview2-com-sys",
3358 | "windows 0.37.0",
3359 | "windows-implement",
3360 | ]
3361 |
3362 | [[package]]
3363 | name = "webview2-com-macros"
3364 | version = "0.6.0"
3365 | source = "registry+https://github.com/rust-lang/crates.io-index"
3366 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
3367 | dependencies = [
3368 | "proc-macro2",
3369 | "quote",
3370 | "syn",
3371 | ]
3372 |
3373 | [[package]]
3374 | name = "webview2-com-sys"
3375 | version = "0.16.0"
3376 | source = "registry+https://github.com/rust-lang/crates.io-index"
3377 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1"
3378 | dependencies = [
3379 | "regex",
3380 | "serde",
3381 | "serde_json",
3382 | "thiserror",
3383 | "windows 0.37.0",
3384 | "windows-bindgen",
3385 | ]
3386 |
3387 | [[package]]
3388 | name = "wildmatch"
3389 | version = "2.1.1"
3390 | source = "registry+https://github.com/rust-lang/crates.io-index"
3391 | checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86"
3392 |
3393 | [[package]]
3394 | name = "winapi"
3395 | version = "0.3.9"
3396 | source = "registry+https://github.com/rust-lang/crates.io-index"
3397 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3398 | dependencies = [
3399 | "winapi-i686-pc-windows-gnu",
3400 | "winapi-x86_64-pc-windows-gnu",
3401 | ]
3402 |
3403 | [[package]]
3404 | name = "winapi-i686-pc-windows-gnu"
3405 | version = "0.4.0"
3406 | source = "registry+https://github.com/rust-lang/crates.io-index"
3407 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3408 |
3409 | [[package]]
3410 | name = "winapi-util"
3411 | version = "0.1.5"
3412 | source = "registry+https://github.com/rust-lang/crates.io-index"
3413 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3414 | dependencies = [
3415 | "winapi",
3416 | ]
3417 |
3418 | [[package]]
3419 | name = "winapi-x86_64-pc-windows-gnu"
3420 | version = "0.4.0"
3421 | source = "registry+https://github.com/rust-lang/crates.io-index"
3422 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3423 |
3424 | [[package]]
3425 | name = "windows"
3426 | version = "0.24.0"
3427 | source = "registry+https://github.com/rust-lang/crates.io-index"
3428 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944"
3429 | dependencies = [
3430 | "windows_i686_gnu 0.24.0",
3431 | "windows_i686_msvc 0.24.0",
3432 | "windows_x86_64_gnu 0.24.0",
3433 | "windows_x86_64_msvc 0.24.0",
3434 | ]
3435 |
3436 | [[package]]
3437 | name = "windows"
3438 | version = "0.32.0"
3439 | source = "registry+https://github.com/rust-lang/crates.io-index"
3440 | checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec"
3441 | dependencies = [
3442 | "windows_aarch64_msvc 0.32.0",
3443 | "windows_i686_gnu 0.32.0",
3444 | "windows_i686_msvc 0.32.0",
3445 | "windows_x86_64_gnu 0.32.0",
3446 | "windows_x86_64_msvc 0.32.0",
3447 | ]
3448 |
3449 | [[package]]
3450 | name = "windows"
3451 | version = "0.37.0"
3452 | source = "registry+https://github.com/rust-lang/crates.io-index"
3453 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647"
3454 | dependencies = [
3455 | "windows-implement",
3456 | "windows_aarch64_msvc 0.37.0",
3457 | "windows_i686_gnu 0.37.0",
3458 | "windows_i686_msvc 0.37.0",
3459 | "windows_x86_64_gnu 0.37.0",
3460 | "windows_x86_64_msvc 0.37.0",
3461 | ]
3462 |
3463 | [[package]]
3464 | name = "windows-bindgen"
3465 | version = "0.37.0"
3466 | source = "registry+https://github.com/rust-lang/crates.io-index"
3467 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8"
3468 | dependencies = [
3469 | "windows-metadata",
3470 | "windows-tokens",
3471 | ]
3472 |
3473 | [[package]]
3474 | name = "windows-implement"
3475 | version = "0.37.0"
3476 | source = "registry+https://github.com/rust-lang/crates.io-index"
3477 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14"
3478 | dependencies = [
3479 | "syn",
3480 | "windows-tokens",
3481 | ]
3482 |
3483 | [[package]]
3484 | name = "windows-metadata"
3485 | version = "0.37.0"
3486 | source = "registry+https://github.com/rust-lang/crates.io-index"
3487 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463"
3488 |
3489 | [[package]]
3490 | name = "windows-sys"
3491 | version = "0.36.1"
3492 | source = "registry+https://github.com/rust-lang/crates.io-index"
3493 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
3494 | dependencies = [
3495 | "windows_aarch64_msvc 0.36.1",
3496 | "windows_i686_gnu 0.36.1",
3497 | "windows_i686_msvc 0.36.1",
3498 | "windows_x86_64_gnu 0.36.1",
3499 | "windows_x86_64_msvc 0.36.1",
3500 | ]
3501 |
3502 | [[package]]
3503 | name = "windows-tokens"
3504 | version = "0.37.0"
3505 | source = "registry+https://github.com/rust-lang/crates.io-index"
3506 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169"
3507 |
3508 | [[package]]
3509 | name = "windows_aarch64_msvc"
3510 | version = "0.32.0"
3511 | source = "registry+https://github.com/rust-lang/crates.io-index"
3512 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5"
3513 |
3514 | [[package]]
3515 | name = "windows_aarch64_msvc"
3516 | version = "0.36.1"
3517 | source = "registry+https://github.com/rust-lang/crates.io-index"
3518 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
3519 |
3520 | [[package]]
3521 | name = "windows_aarch64_msvc"
3522 | version = "0.37.0"
3523 | source = "registry+https://github.com/rust-lang/crates.io-index"
3524 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a"
3525 |
3526 | [[package]]
3527 | name = "windows_i686_gnu"
3528 | version = "0.24.0"
3529 | source = "registry+https://github.com/rust-lang/crates.io-index"
3530 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd"
3531 |
3532 | [[package]]
3533 | name = "windows_i686_gnu"
3534 | version = "0.32.0"
3535 | source = "registry+https://github.com/rust-lang/crates.io-index"
3536 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615"
3537 |
3538 | [[package]]
3539 | name = "windows_i686_gnu"
3540 | version = "0.36.1"
3541 | source = "registry+https://github.com/rust-lang/crates.io-index"
3542 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
3543 |
3544 | [[package]]
3545 | name = "windows_i686_gnu"
3546 | version = "0.37.0"
3547 | source = "registry+https://github.com/rust-lang/crates.io-index"
3548 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1"
3549 |
3550 | [[package]]
3551 | name = "windows_i686_msvc"
3552 | version = "0.24.0"
3553 | source = "registry+https://github.com/rust-lang/crates.io-index"
3554 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6"
3555 |
3556 | [[package]]
3557 | name = "windows_i686_msvc"
3558 | version = "0.32.0"
3559 | source = "registry+https://github.com/rust-lang/crates.io-index"
3560 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172"
3561 |
3562 | [[package]]
3563 | name = "windows_i686_msvc"
3564 | version = "0.36.1"
3565 | source = "registry+https://github.com/rust-lang/crates.io-index"
3566 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
3567 |
3568 | [[package]]
3569 | name = "windows_i686_msvc"
3570 | version = "0.37.0"
3571 | source = "registry+https://github.com/rust-lang/crates.io-index"
3572 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c"
3573 |
3574 | [[package]]
3575 | name = "windows_x86_64_gnu"
3576 | version = "0.24.0"
3577 | source = "registry+https://github.com/rust-lang/crates.io-index"
3578 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4"
3579 |
3580 | [[package]]
3581 | name = "windows_x86_64_gnu"
3582 | version = "0.32.0"
3583 | source = "registry+https://github.com/rust-lang/crates.io-index"
3584 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc"
3585 |
3586 | [[package]]
3587 | name = "windows_x86_64_gnu"
3588 | version = "0.36.1"
3589 | source = "registry+https://github.com/rust-lang/crates.io-index"
3590 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
3591 |
3592 | [[package]]
3593 | name = "windows_x86_64_gnu"
3594 | version = "0.37.0"
3595 | source = "registry+https://github.com/rust-lang/crates.io-index"
3596 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d"
3597 |
3598 | [[package]]
3599 | name = "windows_x86_64_msvc"
3600 | version = "0.24.0"
3601 | source = "registry+https://github.com/rust-lang/crates.io-index"
3602 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399"
3603 |
3604 | [[package]]
3605 | name = "windows_x86_64_msvc"
3606 | version = "0.32.0"
3607 | source = "registry+https://github.com/rust-lang/crates.io-index"
3608 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
3609 |
3610 | [[package]]
3611 | name = "windows_x86_64_msvc"
3612 | version = "0.36.1"
3613 | source = "registry+https://github.com/rust-lang/crates.io-index"
3614 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
3615 |
3616 | [[package]]
3617 | name = "windows_x86_64_msvc"
3618 | version = "0.37.0"
3619 | source = "registry+https://github.com/rust-lang/crates.io-index"
3620 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d"
3621 |
3622 | [[package]]
3623 | name = "winreg"
3624 | version = "0.10.1"
3625 | source = "registry+https://github.com/rust-lang/crates.io-index"
3626 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
3627 | dependencies = [
3628 | "winapi",
3629 | ]
3630 |
3631 | [[package]]
3632 | name = "winres"
3633 | version = "0.1.12"
3634 | source = "registry+https://github.com/rust-lang/crates.io-index"
3635 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
3636 | dependencies = [
3637 | "toml",
3638 | ]
3639 |
3640 | [[package]]
3641 | name = "winrt-notification"
3642 | version = "0.5.1"
3643 | source = "registry+https://github.com/rust-lang/crates.io-index"
3644 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4"
3645 | dependencies = [
3646 | "strum",
3647 | "windows 0.24.0",
3648 | "xml-rs",
3649 | ]
3650 |
3651 | [[package]]
3652 | name = "wry"
3653 | version = "0.19.0"
3654 | source = "registry+https://github.com/rust-lang/crates.io-index"
3655 | checksum = "ce19dddbd3ce01dc8f14eb6d4c8f914123bf8379aaa838f6da4f981ff7104a3f"
3656 | dependencies = [
3657 | "block",
3658 | "cocoa",
3659 | "core-graphics",
3660 | "gdk",
3661 | "gio",
3662 | "glib",
3663 | "gtk",
3664 | "http",
3665 | "jni 0.18.0",
3666 | "libc",
3667 | "log",
3668 | "objc",
3669 | "objc_id",
3670 | "once_cell",
3671 | "serde",
3672 | "serde_json",
3673 | "tao",
3674 | "thiserror",
3675 | "url",
3676 | "webkit2gtk",
3677 | "webkit2gtk-sys",
3678 | "webview2-com",
3679 | "windows 0.37.0",
3680 | "windows-implement",
3681 | ]
3682 |
3683 | [[package]]
3684 | name = "x11"
3685 | version = "2.19.1"
3686 | source = "registry+https://github.com/rust-lang/crates.io-index"
3687 | checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a"
3688 | dependencies = [
3689 | "libc",
3690 | "pkg-config",
3691 | ]
3692 |
3693 | [[package]]
3694 | name = "x11-dl"
3695 | version = "2.19.1"
3696 | source = "registry+https://github.com/rust-lang/crates.io-index"
3697 | checksum = "ea26926b4ce81a6f5d9d0f3a0bc401e5a37c6ae14a1bfaa8ff6099ca80038c59"
3698 | dependencies = [
3699 | "lazy_static",
3700 | "libc",
3701 | "pkg-config",
3702 | ]
3703 |
3704 | [[package]]
3705 | name = "xattr"
3706 | version = "0.2.3"
3707 | source = "registry+https://github.com/rust-lang/crates.io-index"
3708 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3709 | dependencies = [
3710 | "libc",
3711 | ]
3712 |
3713 | [[package]]
3714 | name = "xml-rs"
3715 | version = "0.8.4"
3716 | source = "registry+https://github.com/rust-lang/crates.io-index"
3717 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
3718 |
--------------------------------------------------------------------------------