├── .gitignore ├── web ├── src │ ├── vite-env.d.ts │ ├── main.css │ ├── config.ts │ ├── main.tsx │ ├── assets │ │ └── react.svg │ ├── App.tsx │ └── usePeer.ts ├── postcss.config.js ├── Dockerfile ├── vite.config.ts ├── tsconfig.node.json ├── .gitignore ├── .dockerignore ├── index.html ├── .eslintrc.cjs ├── fly.toml ├── tsconfig.json ├── package.json ├── README.md ├── public │ └── logo.svg └── tailwind.config.js ├── desktop ├── src │ ├── vite-env.d.ts │ ├── globals.css │ ├── lib │ │ ├── utils.ts │ │ ├── config.ts │ │ ├── qr.ts │ │ └── usePeer.ts │ ├── main.tsx │ ├── assets │ │ ├── success.svg │ │ └── react.svg │ ├── components │ │ └── PermissionModal.tsx │ ├── useAccessibilityPermission.tsx │ └── App.tsx ├── src-tauri │ ├── .gitignore │ ├── icons │ │ ├── 32x32.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── StoreLogo.png │ │ ├── Square30x30Logo.png │ │ ├── Square44x44Logo.png │ │ ├── Square71x71Logo.png │ │ ├── Square89x89Logo.png │ │ ├── Square107x107Logo.png │ │ ├── Square142x142Logo.png │ │ ├── Square150x150Logo.png │ │ ├── Square284x284Logo.png │ │ └── Square310x310Logo.png │ ├── src │ │ ├── logging.rs │ │ ├── main.rs │ │ ├── cmd.rs │ │ └── permissions.rs │ ├── build.rs │ ├── capabilities │ │ └── default.json │ ├── Cargo.toml │ ├── tauri.conf.json │ └── Cargo.lock ├── postcss.config.js ├── tsconfig.node.json ├── tailwind.config.js ├── .gitignore ├── README.md ├── index.html ├── tsconfig.json ├── vite.config.ts ├── package.json └── public │ ├── vite.svg │ └── tauri.svg ├── Cargo.toml ├── .vscode ├── extensions.json └── settings.json ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.yaml │ └── bug_report.yaml ├── FUNDING.yml └── workflows │ ├── web.yaml │ └── desktop.yaml ├── docs ├── Commercial_license.txt ├── License.txt └── BUILDING.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | schemas/ 3 | node_modules/ 4 | bun.lockb -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /desktop/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/src/main.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /desktop/src/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = [ 4 | "desktop/src-tauri", 5 | ] -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"] 3 | } 4 | -------------------------------------------------------------------------------- /desktop/src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | 5 | -------------------------------------------------------------------------------- /desktop/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /desktop/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /desktop/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /desktop/postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /desktop/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /desktop/src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewh1teagle/mobslide/HEAD/desktop/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /desktop/src/lib/utils.ts: -------------------------------------------------------------------------------- 1 | export function cx(...cns: (boolean | string | undefined)[]): string { 2 | return cns.filter(Boolean).join(" "); 3 | } 4 | -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM peerjs/peerjs-server 2 | 3 | # Expose port 9000 4 | EXPOSE 9000 5 | ENTRYPOINT ["node", "peerjs.js", "--host", "0.0.0.0", "--port", "9000"] -------------------------------------------------------------------------------- /desktop/src/main.tsx: -------------------------------------------------------------------------------- 1 | import ReactDOM from "react-dom/client"; 2 | import App from "./App"; 3 | import "./globals.css"; 4 | 5 | ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( 6 | 7 | ); 8 | -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- 1 | import react from "@vitejs/plugin-react-swc"; 2 | import { defineConfig } from "vite"; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | base: "/mobslide/", 8 | }); 9 | -------------------------------------------------------------------------------- /web/src/config.ts: -------------------------------------------------------------------------------- 1 | import { PeerOptions } from "peerjs"; 2 | 3 | export const PEERJS_OPTIONS: PeerOptions = { 4 | host: "mobslide-signaling.fly.dev", 5 | port: 443, 6 | path: "/", 7 | pingInterval: 2000, 8 | secure: true, 9 | debug: 3, 10 | }; 11 | -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /desktop/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client"; 3 | import App from "./App.tsx"; 4 | import "./main.css"; 5 | 6 | ReactDOM.createRoot(document.getElementById("root")!).render( 7 | 8 | 9 | 10 | ); 11 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | indent_style = space 11 | indent_size = 2 -------------------------------------------------------------------------------- /desktop/tailwind.config.js: -------------------------------------------------------------------------------- 1 | import daisyui from 'daisyui' 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | export default { 5 | content: [ 6 | "./index.html", 7 | "./src/**/*.{js,ts,jsx,tsx}", 8 | ], 9 | theme: { 10 | extend: {}, 11 | }, 12 | plugins: [daisyui], 13 | } 14 | 15 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.codeActionsOnSave": { 4 | "source.fixAll": "never", 5 | "source.organizeImports": "explicit" 6 | }, 7 | "html.format.contentUnformatted": "pre,code,textarea,svg", 8 | "rust-analyzer.check.command": "clippy" 9 | } -------------------------------------------------------------------------------- /web/.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 | -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /desktop/.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 | target/ -------------------------------------------------------------------------------- /desktop/README.md: -------------------------------------------------------------------------------- 1 | # Tauri + React + Typescript 2 | 3 | This template should help get you started developing with Tauri, React and Typescript in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | - [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) 8 | -------------------------------------------------------------------------------- /desktop/src-tauri/src/logging.rs: -------------------------------------------------------------------------------- 1 | use tracing_subscriber::{layer::SubscriberExt, EnvFilter, Layer, Registry}; 2 | 3 | pub fn setup_logging() { 4 | let sub = Registry::default().with( 5 | tracing_subscriber::fmt::layer() 6 | .with_ansi(true) 7 | .with_filter(EnvFilter::from_default_env()), 8 | ); 9 | tracing::subscriber::set_global_default(sub).unwrap(); 10 | } 11 | -------------------------------------------------------------------------------- /desktop/src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn commit_hash() -> String { 2 | let output = std::process::Command::new("git") 3 | .args(["rev-parse", "--short", "HEAD"]) 4 | .output() 5 | .unwrap(); 6 | String::from_utf8(output.stdout).unwrap() 7 | } 8 | fn main() { 9 | let hash = commit_hash(); 10 | println!("cargo:rustc-env=COMMIT_HASH={}", hash); 11 | tauri_build::build(); 12 | } 13 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React + TS 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /desktop/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Tauri + React + TS 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /desktop/src/lib/config.ts: -------------------------------------------------------------------------------- 1 | import { PeerOptions } from "peerjs"; 2 | 3 | export const BASE_URL = 4 | false && import.meta.env.MODE === "development" 5 | ? "http://localhost:5173/mobslide/" 6 | : "https://thewh1teagle.github.io/mobslide/"; 7 | export const PEERJS_OPTIONS: PeerOptions = { 8 | host: "mobslide-signaling.fly.dev", 9 | port: 443, 10 | path: "/", 11 | pingInterval: 2000, 12 | secure: true, 13 | debug: 3, 14 | }; 15 | -------------------------------------------------------------------------------- /web/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { browser: true, es2020: true }, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:@typescript-eslint/recommended', 7 | 'plugin:react-hooks/recommended', 8 | ], 9 | ignorePatterns: ['dist', '.eslintrc.cjs'], 10 | parser: '@typescript-eslint/parser', 11 | plugins: ['react-refresh'], 12 | rules: { 13 | 'react-refresh/only-export-components': [ 14 | 'warn', 15 | { allowConstantExport: true }, 16 | ], 17 | }, 18 | } 19 | -------------------------------------------------------------------------------- /desktop/src/assets/success.svg: -------------------------------------------------------------------------------- 1 | 8 | 12 | 20 | -------------------------------------------------------------------------------- /desktop/src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "../gen/schemas/capabilities.json", 3 | "identifier": "default", 4 | "description": "default permissions", 5 | "local": true, 6 | "windows": [ 7 | "main" 8 | ], 9 | "permissions": [ 10 | "core:default", 11 | "core:path:default", 12 | "core:event:default", 13 | "core:window:default", 14 | "core:resources:default", 15 | "core:menu:default", 16 | "core:tray:default", 17 | "shell:allow-open", 18 | "shell:default", 19 | "os:allow-platform" 20 | ] 21 | } -------------------------------------------------------------------------------- /web/fly.toml: -------------------------------------------------------------------------------- 1 | # fly.toml app configuration file generated for mobslide-signaling on 2023-11-20T04:36:58+02:00 2 | # 3 | # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 | # 5 | 6 | app = "mobslide-signaling" 7 | primary_region = "mad" 8 | 9 | [build] 10 | dockerfile = "Dockerfile" 11 | 12 | [http_service] 13 | internal_port = 9000 14 | force_https = true 15 | auto_stop_machines = false 16 | auto_start_machines = true 17 | min_machines_running = 0 18 | [http_service.concurrency] 19 | type = "requests" 20 | soft_limit = 100000 # 100,000 21 | hard_limit = 100000 # 100,000 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest an idea for this project 3 | title: "[Feature Request]: " 4 | labels: ["feature request"] 5 | assignees: 6 | - thewh1teagle 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | 💚💜 Thank you for interest. ❤️💛 12 | *Please prioritize checking existing issues first. 13 | I will repay with higher-quality code.* 14 | - type: textarea 15 | id: describe-the-feature 16 | attributes: 17 | label: Describe the feature 18 | description: Also tell us why you think it useful 19 | placeholder: Description... 20 | validations: 21 | required: true 22 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /desktop/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /desktop/vite.config.ts: -------------------------------------------------------------------------------- 1 | import react from "@vitejs/plugin-react"; 2 | import { defineConfig } from "vite"; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig(async () => ({ 6 | plugins: [react()], 7 | 8 | // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build` 9 | // 10 | // 1. prevent vite from obscuring rust errors 11 | clearScreen: false, 12 | // 2. tauri expects a fixed port, fail if that port is not available 13 | server: { 14 | port: 1420, 15 | strictPort: true, 16 | }, 17 | // 3. to make use of `TAURI_DEBUG` and other env variables 18 | // https://tauri.studio/v1/api/config#buildconfig.beforedevcommand 19 | envPrefix: ["VITE_", "TAURI_"], 20 | })); 21 | -------------------------------------------------------------------------------- /docs/Commercial_license.txt: -------------------------------------------------------------------------------- 1 | COMMERCIAL SOFTWARE LICENSE AGREEMENT 2 | 3 | 1. LICENSE GRANT 4 | 5 | Licensor grants Licensee a non-exclusive, non-transferable license to use the software 6 | 7 | 2. CONTACT FOR LICENSING 8 | 9 | For licensing inquiries and details, Licensee agrees to contact Licensor at [Your Contact Email Address] or [Your Contact Phone Number]. 10 | 11 | 3. RESTRICTIONS 12 | 13 | Licensee shall not: 14 | a. Distribute, sublicense, or transfer the software to any third party. 15 | b. Use the software for any purpose other than commercial use. 16 | 17 | 4. TERM AND TERMINATION 18 | 19 | This Agreement shall commence on the effective date and continue until terminated by either party. 20 | 21 | IN WITNESS WHEREOF, the parties hereto have executed this Commercial Software License Agreement as of the Effective Date. 22 | 23 | thewh1teagle 2023 24 | -------------------------------------------------------------------------------- /desktop/src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | // Prevents additional console window on Windows in release, DO NOT REMOVE!! 2 | #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] 3 | 4 | mod cmd; 5 | mod logging; 6 | 7 | #[cfg(target_os = "macos")] 8 | mod permissions; 9 | 10 | fn main() { 11 | logging::setup_logging(); 12 | tauri::Builder::default() 13 | .plugin(tauri_plugin_os::init()) 14 | .plugin(tauri_plugin_shell::init()) 15 | .invoke_handler(tauri::generate_handler![ 16 | cmd::press, 17 | cmd::package_info, 18 | #[cfg(target_os = "macos")] 19 | cmd::check_accessibility_permission, 20 | #[cfg(target_os = "macos")] 21 | cmd::open_accessibility_permission, 22 | ]) 23 | .run(tauri::generate_context!()) 24 | .expect("error while running tauri application"); 25 | } 26 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [thewh1teagle] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 15 | -------------------------------------------------------------------------------- /desktop/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "mobslide" 3 | version = "0.0.0" 4 | description = "Turn your smartphone into presentation remote controller" 5 | authors = ["thewh1teagle"] 6 | license = "MIT" 7 | repository = "https://github.com/thewh1teagle/modslide" 8 | edition = "2021" 9 | 10 | [build-dependencies] 11 | tauri-build = { version = "2", features = [] } 12 | 13 | [dependencies] 14 | tauri = { version = "2", features = ["devtools"] } 15 | # Plugins 16 | tauri-plugin-shell = "2" 17 | tauri-plugin-os = "2" 18 | serde_json = "1.0.116" 19 | # Hardware 20 | enigo = { version = "0.2.1" } 21 | # Logs 22 | tracing = { version = "0.1.40", features = ["log"] } 23 | tracing-log = "0.2.0" 24 | tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] } 25 | 26 | [target.'cfg(target_os = "macos")'.dependencies] 27 | # Accessibility 28 | accessibility-sys = { version = "0.1.3" } 29 | core-foundation-sys = { version = "0.8.6" } 30 | cocoa = "0.25.0" 31 | objc = "0.2.7" 32 | -------------------------------------------------------------------------------- /desktop/src/components/PermissionModal.tsx: -------------------------------------------------------------------------------- 1 | import { cx } from "../lib/utils"; 2 | 3 | interface PermissionModalProps { 4 | allowed: boolean; 5 | checkPermission: (showPrompt: boolean) => void; 6 | } 7 | export default function PermissionModal({ 8 | allowed: granted, 9 | checkPermission, 10 | }: PermissionModalProps) { 11 | return ( 12 | 13 |
14 |

Accessibility

15 |

16 | Mobslide app lets you use your phone as a remote for presentations. 17 | Just grant accessibility permission. 18 |

19 |
20 | 26 |
27 |
28 |
29 | ); 30 | } 31 | -------------------------------------------------------------------------------- /desktop/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "productName": "mobslide", 3 | "identifier": "github.com.mobslide", 4 | "version": "1.0.3", 5 | "build": { 6 | "beforeDevCommand": "bun run dev", 7 | "beforeBuildCommand": "bun run build", 8 | "frontendDist": "../dist", 9 | "devUrl": "http://localhost:1420" 10 | }, 11 | "bundle": { 12 | "macOS": { 13 | "signingIdentity": "-" 14 | }, 15 | "active": true, 16 | "targets": [ 17 | "dmg", 18 | "nsis" 19 | ], 20 | "icon": [ 21 | "icons/32x32.png", 22 | "icons/128x128.png", 23 | "icons/128x128@2x.png", 24 | "icons/icon.icns", 25 | "icons/icon.ico" 26 | ] 27 | }, 28 | "plugins": {}, 29 | "app": { 30 | "withGlobalTauri": false, 31 | "windows": [ 32 | { 33 | "fullscreen": false, 34 | "resizable": true, 35 | "title": "mobslide", 36 | "width": 800, 37 | "height": 600, 38 | "center": true 39 | } 40 | ], 41 | "security": { 42 | "csp": null 43 | } 44 | } 45 | } -------------------------------------------------------------------------------- /desktop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mobslide", 3 | "private": true, 4 | "version": "0.0.2", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "preview": "vite preview", 10 | "tauri": "tauri" 11 | }, 12 | "dependencies": { 13 | "@tauri-apps/api": "2.1.1", 14 | "@tauri-apps/plugin-os": "^2.0.0", 15 | "@tauri-apps/plugin-shell": "^2.0.1", 16 | "@uidotdev/usehooks": "^2.4.1", 17 | "peerjs": "^1.5.4", 18 | "qr-code-styling": "^1.8.4", 19 | "react": "^18.3.1", 20 | "react-dom": "^18.3.1", 21 | "usehooks-ts": "^3.1.0", 22 | "uuid": "^11.0.3" 23 | }, 24 | "devDependencies": { 25 | "@tauri-apps/cli": "^2.1.0", 26 | "@types/react": "^18.3.12", 27 | "@types/react-dom": "^18.3.1", 28 | "@types/uuid": "^10.0.0", 29 | "@vitejs/plugin-react": "^4.3.3", 30 | "autoprefixer": "^10.4.20", 31 | "daisyui": "^4.12.14", 32 | "npm-check-updates": "^17.1.11", 33 | "postcss": "^8.4.49", 34 | "tailwindcss": "^3.4.15", 35 | "typescript": "^5.6.3", 36 | "vite": "^5.4.11" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /docs/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012-2023 Scott Chacon and others 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web", 3 | "private": true, 4 | "version": "0.0.2", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "nosleep.js": "^0.12.0", 14 | "peerjs": "^1.5.4", 15 | "react": "^18.2.0", 16 | "react-dom": "^18.2.0", 17 | "use-long-press": "^3.2.0", 18 | "uuid": "^11.0.3" 19 | }, 20 | "devDependencies": { 21 | "@types/react": "^18.3.12", 22 | "@types/react-dom": "^18.3.1", 23 | "@types/uuid": "^10.0.0", 24 | "@typescript-eslint/eslint-plugin": "^8.15.0", 25 | "@typescript-eslint/parser": "^8.15.0", 26 | "@vitejs/plugin-react-swc": "^3.7.1", 27 | "autoprefixer": "^10.4.20", 28 | "daisyui": "^4.12.14", 29 | "eslint": "^9.15.0", 30 | "eslint-plugin-react-hooks": "^4.6.0", 31 | "eslint-plugin-react-refresh": "^0.4.14", 32 | "npm-check-updates": "^17.1.11", 33 | "postcss": "^8.4.49", 34 | "tailwindcss": "^3.4.15", 35 | "typescript": "^5.6.3", 36 | "vite": "^5.4.11" 37 | } 38 | } -------------------------------------------------------------------------------- /desktop/src/lib/qr.ts: -------------------------------------------------------------------------------- 1 | import QRCodeStyling, { Options } from "qr-code-styling"; 2 | 3 | const options: Options = { 4 | width: 300, 5 | height: 300, 6 | data: "", 7 | margin: 0, 8 | qrOptions: { 9 | mode: "Byte", 10 | errorCorrectionLevel: "Q", 11 | }, 12 | imageOptions: { 13 | hideBackgroundDots: true, 14 | imageSize: 0.4, 15 | margin: 0, 16 | }, 17 | dotsOptions: { 18 | type: "extra-rounded", 19 | color: "#000000", 20 | }, 21 | backgroundOptions: { 22 | color: "transparent", 23 | }, 24 | cornersSquareOptions: { 25 | type: "extra-rounded", 26 | color: "#1FB1E2", 27 | }, 28 | cornersDotOptions: { 29 | type: "square", 30 | color: "#1FB1E2", 31 | }, 32 | }; 33 | 34 | function getOptions(url: string) { 35 | const isDark = window.matchMedia("(prefers-color-scheme: dark)").matches; 36 | return { 37 | ...options, 38 | data: url, 39 | dotsOptions: { 40 | type: "extra-rounded", 41 | color: isDark ? "white" : "black", 42 | }, 43 | } as Options; 44 | } 45 | 46 | export function createQR(data: string) { 47 | return new QRCodeStyling(getOptions(data)); 48 | } 49 | 50 | export function updateQR(url: string, qr: QRCodeStyling) { 51 | qr.update(getOptions(url)); 52 | } 53 | -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- 1 | # React + TypeScript + Vite 2 | 3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. 4 | 5 | Currently, two official plugins are available: 6 | 7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh 8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh 9 | 10 | ## Expanding the ESLint configuration 11 | 12 | If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: 13 | 14 | - Configure the top-level `parserOptions` property like this: 15 | 16 | ```js 17 | export default { 18 | // other rules... 19 | parserOptions: { 20 | ecmaVersion: 'latest', 21 | sourceType: 'module', 22 | project: ['./tsconfig.json', './tsconfig.node.json'], 23 | tsconfigRootDir: __dirname, 24 | }, 25 | } 26 | ``` 27 | 28 | - Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` 29 | - Optionally add `plugin:@typescript-eslint/stylistic-type-checked` 30 | - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list 31 | -------------------------------------------------------------------------------- /desktop/src/useAccessibilityPermission.tsx: -------------------------------------------------------------------------------- 1 | import { invoke } from "@tauri-apps/api/core"; 2 | import * as os from "@tauri-apps/plugin-os"; 3 | import { useEffect, useRef, useState } from "react"; 4 | 5 | export function useAccessibiltyPermission() { 6 | const [isAllowed, setIsAllowed] = useState(true); 7 | const isAllowedOnce = useRef(); 8 | const intervalIdRef = useRef(); 9 | 10 | async function checkPermission(showPrompt = true) { 11 | const platform = await os.platform(); 12 | if (platform === "macos") { 13 | const isAllowed = await await invoke("check_accessibility_permission"); 14 | if (isAllowed) { 15 | isAllowedOnce.current = true; 16 | clearInterval(intervalIdRef.current); 17 | } else if (showPrompt) { 18 | invoke("open_accessibility_permission"); 19 | } 20 | setIsAllowed(isAllowed as boolean); 21 | } 22 | } 23 | 24 | async function init() { 25 | const platform = await os.platform(); 26 | 27 | // update permission state every 1 sec without prompt 28 | if (platform === "macos") { 29 | checkPermission(false); 30 | intervalIdRef.current = setInterval( 31 | async () => checkPermission(false), 32 | 1000 33 | ); 34 | } 35 | } 36 | 37 | useEffect(() => { 38 | init(); 39 | return () => clearInterval(intervalIdRef.current); 40 | }, []); 41 | 42 | return { isAllowed, checkPermission }; 43 | } 44 | -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- 1 | # Build 2 | 3 | ### Prerequisites 4 | 5 | - [Rust](https://www.rust-lang.org/tools/install) 6 | - [Node](https://nodejs.org/en/download/current) 7 | - [tauri.app/start/prerequisites/](https://beta.tauri.app/start/prerequisites/) 8 | - [Enigo#runtime-dependencies](https://github.com/enigo-rs/enigo?tab=readme-ov-file#runtime-dependencies) 9 | 10 | ### Development 11 | 12 | To run in development, 13 | 14 | 1. in both desktop and web folders execute `npm install` 15 | 2. execute `npx tauri dev` in desktop folder 16 | 3. execute `npm run dev` in web folder 17 | 18 | A desktop app will open, 19 | and for the "phone client" a local server will run on localhost:5173 20 | 21 | In case you want to try in your phone execute in web folder: 22 | 23 | ```shell 24 | npm run dev -- --host 0.0.0.0 25 | ``` 26 | 27 | Copy the URL from the desktop app and use URL such as `http://127.0.0.1:5173/mobslide/?id=` (change ID) 28 | 29 | ### Building 30 | 31 | To build for the current platform, execute `cargo tauri build`. On Windows, this will build both NSIS and MSI installers. Both function identically and are located under `src-tauri/target/release/bundle/`. 32 | 33 | ### Debugging 34 | 35 | When developing you can see logging messages by setting ENV variable 36 | 37 | ``` 38 | export RUST_LOG=trace 39 | npx tauri dev 40 | ``` 41 | 42 | For forther exploring, you can even try setting 43 | 44 | ``` 45 | RUST_BACKTRACE=1 46 | ``` 47 | -------------------------------------------------------------------------------- /desktop/public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | title: "[Bug]: " 4 | labels: ["bug"] 5 | assignees: 6 | - octocat 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thanks for taking the time to fill out this bug report! 12 | - type: textarea 13 | id: what-happened 14 | attributes: 15 | label: What happened? 16 | description: Also tell us, what did you expect to happen? 17 | placeholder: Tell us what you see! 18 | value: "A bug happened!" 19 | validations: 20 | required: true 21 | - type: textarea 22 | id: steps-to-reproduce 23 | attributes: 24 | label: Steps to reproduce 25 | description: Also tell us, what did you expect to happen? 26 | placeholder: Tell us what you see! 27 | value: | 28 | 1. step one... 29 | 2. step two... 30 | 31 | validations: 32 | required: true 33 | - type: dropdown 34 | id: Operation-System 35 | attributes: 36 | label: What OS are you running? 37 | multiple: true 38 | options: 39 | - Windows 40 | - Linux 41 | - MacOS 42 | - type: textarea 43 | id: logs 44 | attributes: 45 | label: Relevant log output 46 | description: | 47 | Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. 48 | You can run the program from the command line with 49 | RUST_BACKTRACE=1 RUST_LOG=debug mobslide.exe 50 | 51 | render: shell 52 | -------------------------------------------------------------------------------- /.github/workflows/web.yaml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Web 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | paths: 9 | - "web/**" 10 | 11 | # Allows you to run this workflow manually from the Actions tab 12 | workflow_dispatch: 13 | 14 | # Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages 15 | permissions: 16 | contents: read 17 | pages: write 18 | id-token: write 19 | 20 | # Allow one concurrent deployment 21 | concurrency: 22 | group: "pages" 23 | cancel-in-progress: true 24 | 25 | jobs: 26 | # Single deploy job since we're just deploying 27 | deploy: 28 | environment: 29 | name: github-pages 30 | url: ${{ steps.deployment.outputs.page_url }} 31 | runs-on: ubuntu-latest 32 | defaults: 33 | run: 34 | working-directory: ./web 35 | steps: 36 | - name: Checkout 37 | uses: actions/checkout@v3 38 | 39 | - uses: oven-sh/setup-bun@v2 40 | with: 41 | bun-version: latest 42 | 43 | - name: Install dependencies 44 | run: bun install 45 | 46 | - name: Build 47 | run: bun run build 48 | 49 | - name: Setup Pages 50 | uses: actions/configure-pages@v3 51 | - name: Upload artifact 52 | uses: actions/upload-pages-artifact@v1 53 | with: 54 | # Upload dist repository 55 | path: "./web/dist" 56 | - name: Deploy to GitHub Pages 57 | id: deployment 58 | uses: actions/deploy-pages@v1 59 | -------------------------------------------------------------------------------- /desktop/src-tauri/src/cmd.rs: -------------------------------------------------------------------------------- 1 | use enigo::{Direction, Enigo, Key, Keyboard, Settings}; 2 | use serde_json::Value; 3 | 4 | #[tauri::command] 5 | pub async fn press(key: String) -> Result<(), String> { 6 | let mut enigo = Enigo::new(&Settings::default()).unwrap(); 7 | tracing::debug!("Pressing {}", key); 8 | match key.as_str() { 9 | "VOL_UP" => { 10 | enigo.key(Key::VolumeUp, Direction::Click).unwrap(); 11 | } 12 | "VOL_DN" => { 13 | enigo.key(Key::VolumeDown, Direction::Click).unwrap(); 14 | } 15 | "PG_UP" => { 16 | enigo.key(Key::PageUp, Direction::Click).unwrap(); 17 | } 18 | "PG_DN" => { 19 | enigo.key(Key::PageDown, Direction::Click).unwrap(); 20 | } 21 | "F5" => { 22 | enigo.key(Key::F5, Direction::Click).unwrap(); 23 | } 24 | "ESC" => { 25 | enigo.key(Key::Escape, Direction::Click).unwrap(); 26 | } 27 | _ => {} 28 | } 29 | Ok(()) 30 | } 31 | 32 | #[tauri::command] 33 | pub async fn package_info() -> Result { 34 | let info = 35 | serde_json::json!({"semver": env!("CARGO_PKG_VERSION"), "commit": env!("COMMIT_HASH")}); 36 | Ok(info) 37 | } 38 | 39 | #[cfg(target_os = "macos")] 40 | #[tauri::command] 41 | pub fn check_accessibility_permission() -> Result { 42 | use crate::permissions; 43 | permissions::check_accessibility(false).map_err(|e| e.to_string()) 44 | } 45 | 46 | #[cfg(target_os = "macos")] 47 | #[tauri::command] 48 | pub fn open_accessibility_permission() { 49 | use crate::permissions; 50 | permissions::open_accessibility(); 51 | } 52 | -------------------------------------------------------------------------------- /web/public/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /web/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], 4 | darkMode: ["class", '[data-theme="dark"]'], 5 | theme: { 6 | extend: { 7 | transitionProperty: { 8 | height: "height", 9 | }, 10 | }, 11 | }, 12 | plugins: [require("daisyui")], 13 | daisyui: { 14 | themes: [ 15 | { 16 | dark: { 17 | "color-scheme": "dark", 18 | primary: "#1565c0", 19 | "primary-content": "#fff", 20 | secondary: "#7b1fa2", 21 | "secondary-content": "#fff", 22 | accent: "#1F262E", 23 | "accent-content": "#fff", 24 | neutral: "#556474", 25 | "neutral-content": "#B0B8C4", 26 | "base-100": "#111419", 27 | "base-200": "#1E272E", 28 | "base-300": "#1F272A", 29 | "base-content": "#ffffff", 30 | info: "#01579b", 31 | "info-content": "#ffffff", 32 | success: "#1b5e20", 33 | "success-content": "#ffffff", 34 | warning: "#e65100", 35 | "warning-content": "#ffffff", 36 | error: "#c62828", 37 | "error-content": "#ffffff", 38 | }, 39 | light: { 40 | "color-scheme": "light", 41 | primary: "#2A8DF1", 42 | "primary-content": "#D9E9F8", 43 | secondary: "#7b1fa2", 44 | "secondary-content": "#D9E9F8", 45 | accent: "#0B6BCB", 46 | "accent-content": "#D9E9F8", 47 | neutral: "#303740", 48 | "neutral-content": "#434D5B", 49 | "base-100": "#FEFEFF", 50 | "base-200": "#F5FAFF", 51 | "base-300": "#E5F6FD", 52 | "base-content": "#111419", 53 | info: "#03a9f4", 54 | "info-content": "#ffffff", 55 | success: "#4caf50", 56 | "success-content": "#ffffff", 57 | warning: "#ff9800", 58 | "warning-content": "#ffffff", 59 | error: "#ef5350", 60 | "error-content": "#ffffff", 61 | }, 62 | }, 63 | ], 64 | }, 65 | }; 66 | -------------------------------------------------------------------------------- /desktop/src-tauri/src/permissions.rs: -------------------------------------------------------------------------------- 1 | use std::error::Error; 2 | 3 | pub fn open_accessibility() { 4 | use cocoa::base::id; 5 | use objc::{class, msg_send, sel, sel_impl}; 6 | 7 | let url = "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"; 8 | const UTF8_ENCODING: usize = 4; 9 | unsafe { 10 | let ns_string: id = msg_send![class!(NSString), alloc]; 11 | let ns_string: id = msg_send![ns_string, 12 | initWithBytes: url.as_ptr() 13 | length: url.len() 14 | encoding: UTF8_ENCODING]; 15 | let _: () = msg_send![ns_string, autorelease]; 16 | 17 | let ns_url: id = msg_send![class!(NSURL), alloc]; 18 | let ns_url: id = msg_send![ns_url, initWithString: ns_string]; 19 | let _: () = msg_send![ns_url, autorelease]; 20 | 21 | let shared_workspace: id = msg_send![class!(NSWorkspace), sharedWorkspace]; 22 | let _: bool = msg_send![shared_workspace, openURL: ns_url]; 23 | } 24 | } 25 | 26 | pub fn check_accessibility(ask_if_not_allowed: bool) -> Result> { 27 | use accessibility_sys::{kAXTrustedCheckOptionPrompt, AXIsProcessTrustedWithOptions}; 28 | use core_foundation_sys::base::{CFRelease, TCFTypeRef}; 29 | use core_foundation_sys::dictionary::{CFDictionaryAddValue, CFDictionaryCreateMutable}; 30 | use core_foundation_sys::number::{kCFBooleanFalse, kCFBooleanTrue}; 31 | use std::ptr; 32 | 33 | let is_allowed; 34 | unsafe { 35 | let options = CFDictionaryCreateMutable(ptr::null_mut(), 0, ptr::null(), ptr::null()); 36 | let key = kAXTrustedCheckOptionPrompt; 37 | let value = if ask_if_not_allowed { 38 | kCFBooleanTrue 39 | } else { 40 | kCFBooleanFalse 41 | }; 42 | if !options.is_null() { 43 | CFDictionaryAddValue(options, key.as_void_ptr(), value.as_void_ptr()); 44 | is_allowed = AXIsProcessTrustedWithOptions(options); 45 | CFRelease(options as *const _); 46 | } else { 47 | return Err("options is null".into()); 48 | } 49 | } 50 | Ok(is_allowed) 51 | } 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # mobslide 4 | 5 | Turn your smartphone into presentation remote controller 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | # Install 14 | 15 | 1. Simply Download `mobslide` from [releases](https://github.com/thewh1teagle/mobslide/releases) on your PC and start it 16 | 17 | # I installed, what's now? 18 | 19 | Open some presentation in `Powerpoint` / `Google Slides` 20 | 21 | Scan the `QR` and control it with your phone! 22 | 23 | # Supported plaforms 24 | 25 | Works on MacOS and Windows. 26 | 27 | Tauri for linux doesn't support webrtc so currently Linux isn't supported 28 | 29 | # Presentation platforms 30 | 31 | - [Powerpoint](https://www.microsoft.com/en/microsoft-365/powerpoint) 32 | - [Canva](https://canva.com) 33 | - [Google Slides](https://slides.google.com/) 34 | - [KeyNote](https://www.apple.com/keynote/) 35 | 36 | # Usage 37 | 38 | Scan the QR code with your smartphone and open the link. 39 | 40 | 41 | 42 | # Features 43 | 44 | - Scan the QR code. No installation required 45 | - Lightweight app `~2.5M` 46 | - Minimal and effective design 47 | 48 | # Gotchas 49 | 50 | ### App won't open on Windows 51 | 52 | Click the 3 dot -> then `Run anyway` 53 | 54 | 55 | 56 | 57 | ### App won't open on macOS 58 | 59 | The app signed with developer key. Install it by right click -> open. then you will need to open it once again from applications in finder, with another right click. 60 | 61 | ### Keys doesn't work 62 | 63 | On `macOS` you will need to accept accessibility permission. if it doesn't ask open it from `System settings` -> `Privacy & Security` -> Pick mobslide and enable. 64 | -------------------------------------------------------------------------------- /.github/workflows/desktop.yaml: -------------------------------------------------------------------------------- 1 | name: Desktop 2 | 3 | on: 4 | push: 5 | tags: 6 | - "v*" 7 | workflow_dispatch: 8 | 9 | jobs: 10 | publish-tauri: 11 | permissions: 12 | contents: write 13 | strategy: 14 | fail-fast: false 15 | matrix: 16 | include: 17 | - platform: "macos-latest" # for Arm based macs (M1 and above). 18 | args: "--target aarch64-apple-darwin" 19 | - platform: "macos-latest" # for Intel based macs. 20 | args: "--target x86_64-apple-darwin" 21 | # - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. 22 | # args: '' 23 | - platform: "windows-latest" 24 | args: "" 25 | 26 | runs-on: ${{ matrix.platform }} 27 | steps: 28 | - uses: actions/checkout@v4 29 | 30 | - uses: oven-sh/setup-bun@v2 31 | with: 32 | bun-version: latest 33 | 34 | - name: install Rust stable 35 | uses: dtolnay/rust-toolchain@stable 36 | with: 37 | # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. 38 | targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} 39 | 40 | - name: install dependencies (Linux only) 41 | if: runner.os == 'Linux' 42 | run: | 43 | sudo apt-get update 44 | sudo apt-get install -y libappindicator3-dev librsvg2-dev libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev patchelf 45 | # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. 46 | # You can remove the one that doesn't apply to your app to speed up the workflow a bit. 47 | 48 | - name: install frontend dependencies 49 | run: bun install # change this to npm, pnpm or bun depending on which one you use. 50 | working-directory: ./desktop 51 | 52 | - uses: tauri-apps/tauri-action@v0 53 | env: 54 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 55 | with: 56 | tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. 57 | releaseName: "v__VERSION__" 58 | releaseBody: "See the assets to download this version and install." 59 | releaseDraft: true 60 | projectPath: ./desktop 61 | prerelease: false 62 | args: ${{ matrix.args }} 63 | -------------------------------------------------------------------------------- /desktop/public/tauri.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /web/src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { invoke } from "@tauri-apps/api/core"; 2 | import { open } from "@tauri-apps/plugin-shell"; 3 | import { useLocalStorage } from "@uidotdev/usehooks"; 4 | import { useEffect, useRef, useState } from "react"; 5 | import { v4 as uuidv4 } from "uuid"; 6 | import successSvg from "./assets/success.svg"; 7 | import PermissionModal from "./components/PermissionModal"; 8 | import { BASE_URL } from "./lib/config"; 9 | import { createQR } from "./lib/qr"; 10 | import { Action, usePeer } from "./lib/usePeer"; 11 | import { useAccessibiltyPermission } from "./useAccessibilityPermission"; 12 | 13 | interface PkgInfo { 14 | semver: string; 15 | commit: string; 16 | } 17 | 18 | function App() { 19 | const [id] = useLocalStorage("id", uuidv4()); 20 | const [pkgInfo, setPkgInfo] = useState(null); 21 | console.log("localstorage id => ", id); 22 | const { message, status } = usePeer(id, true); 23 | const qrDiv = useRef(null); 24 | const { isAllowed, checkPermission } = useAccessibiltyPermission(); 25 | 26 | async function getVersion() { 27 | console.log("getting version"); 28 | const resp = await invoke("package_info"); 29 | console.log("version => ", resp); 30 | setPkgInfo(resp as any); 31 | } 32 | async function renderQR() { 33 | const url = `${BASE_URL}?id=${id}`; 34 | if (qrDiv.current) { 35 | qrDiv.current.innerHTML = ""; 36 | } 37 | const newQR = createQR(url); 38 | 39 | const element = await newQR._getElement(); 40 | if (element) { 41 | qrDiv.current?.appendChild(element); 42 | } 43 | } 44 | 45 | useEffect(() => { 46 | getVersion(); 47 | console.log("status => ", status); 48 | if (status === "READY") { 49 | console.log("creating qr"); 50 | const url = `${BASE_URL}?id=${id}`; 51 | console.log("url => ", url); 52 | renderQR(); 53 | } 54 | }, [status]); 55 | 56 | useEffect(() => { 57 | if (message) { 58 | invoke("press", { key: Action[message.action].toString() }); 59 | } 60 | }, [message]); 61 | 62 | function copyURL() { 63 | const url = `${BASE_URL}?id=${id}`; 64 | navigator.clipboard.writeText(url); 65 | } 66 | 67 | if (status === "CONNECTED" && isAllowed) { 68 | return ( 69 |
70 | CONNECTED 71 | 72 |
73 | ); 74 | } 75 | 76 | return ( 77 |
78 | {!isAllowed && ( 79 | 83 | )} 84 | Ready to connect 85 |
86 | {status === "INIT" && ( 87 |
88 | 89 |
90 | )} 91 | 124 | open("https://github.com/thewh1teagle/mobslide")} 126 | className="absolute bottom-2 opacity-50 text-sm cursor-pointer" 127 | > 128 | mobslide {pkgInfo?.semver} 129 | 130 |
131 | ); 132 | } 133 | 134 | export default App; 135 | -------------------------------------------------------------------------------- /web/src/App.tsx: -------------------------------------------------------------------------------- 1 | import NoSleep from "nosleep.js"; 2 | import { useEffect } from "react"; 3 | import { useLongPress } from "use-long-press"; 4 | 5 | import { Action, usePeer } from "./usePeer"; 6 | 7 | const noSleep = new NoSleep(); 8 | 9 | if (!noSleep.isEnabled) { 10 | console.log("No sleep enabled"); 11 | noSleep.enable(); 12 | } 13 | 14 | function App() { 15 | const { connectWrapper, sendMessage, status } = usePeer(); 16 | 17 | useEffect(() => { 18 | async function init() { 19 | const params = new URLSearchParams(window.location.search); 20 | const address = params.get("id"); 21 | if (!address) { 22 | alert("Wrong address, please scan again."); 23 | } else { 24 | connectWrapper(address); 25 | } 26 | } 27 | init(); 28 | // eslint-disable-next-line react-hooks/exhaustive-deps 29 | }, []); 30 | 31 | const nextButtonBind = useLongPress(() => { 32 | sendMessage({ action: Action.F5 }); 33 | }); 34 | 35 | const prevButtonBind = useLongPress(() => { 36 | sendMessage({ action: Action.ESC }); 37 | }); 38 | 39 | if (status !== "CONNECTED") { 40 | return ( 41 |
42 | {status} 43 | 44 |
45 | ); 46 | } 47 | 48 | return ( 49 |
50 |
51 |
52 | 71 | 90 |
91 |
92 | 112 | 132 |
133 |
134 |
135 | ); 136 | } 137 | 138 | export default App; 139 | -------------------------------------------------------------------------------- /desktop/src/lib/usePeer.ts: -------------------------------------------------------------------------------- 1 | import Peer, { DataConnection } from "peerjs"; 2 | import { useEffect, useRef, useState } from "react"; 3 | import { PEERJS_OPTIONS } from "./config"; 4 | 5 | export enum Action { 6 | VOL_UP, 7 | VOL_DN, 8 | PG_UP, 9 | PG_DN, 10 | F5, 11 | ESC, 12 | } 13 | export interface Message { 14 | action: Action; 15 | } 16 | 17 | type Status = "CONNECTING" | "CONNECTED" | "DISCONNECTED" | "INIT" | "READY"; 18 | 19 | export function usePeer(id?: string, listener?: boolean) { 20 | const peerRef = useRef(); 21 | const connRef = useRef(); 22 | const addressRef = useRef(""); 23 | const checkConnectionIntervalRef = useRef(null); 24 | const connectIntervalRef = useRef(null); 25 | const [message, setMessage] = useState(); 26 | 27 | const [status, setStatus] = useState("INIT"); 28 | 29 | function onMessage(message: unknown) { 30 | const data = JSON.parse(message as string) as Message | null; 31 | setMessage(data); 32 | } 33 | 34 | function reconnect() { 35 | if (checkConnectionIntervalRef.current) { 36 | clearInterval(checkConnectionIntervalRef.current); 37 | } 38 | if (connectIntervalRef.current) { 39 | clearInterval(connectIntervalRef.current); 40 | } 41 | // reconnect 42 | peerRef.current?.destroy(); 43 | connRef.current?.close(); 44 | connRef.current = undefined; 45 | peerRef.current = undefined; 46 | setStatus("CONNECTING"); 47 | if (checkConnectionIntervalRef.current) { 48 | clearInterval(checkConnectionIntervalRef.current); 49 | } 50 | connectIntervalRef.current = setInterval(() => connect(), 5000); 51 | } 52 | 53 | function checkConnection() { 54 | if (!connRef.current?.peerConnection) { 55 | // reconnect 56 | reconnect(); 57 | } 58 | } 59 | 60 | async function createConnection() { 61 | setStatus("CONNECTING"); 62 | return new Promise((resolve, reject) => { 63 | console.log("connecting to ", addressRef.current); 64 | if (id) { 65 | peerRef.current = new Peer(id, PEERJS_OPTIONS); 66 | } else { 67 | peerRef.current = new Peer(PEERJS_OPTIONS); 68 | } 69 | 70 | peerRef.current.on("open", () => { 71 | setStatus("READY"); 72 | if (addressRef.current) { 73 | peerRef?.current?.on("error", (error) => reject(error)); 74 | connRef.current = peerRef.current?.connect(addressRef.current); 75 | connRef.current?.on("open", () => resolve()); 76 | } 77 | }); 78 | }); 79 | } 80 | 81 | function listen() { 82 | if (id) { 83 | peerRef.current = new Peer(id, PEERJS_OPTIONS); 84 | } else { 85 | peerRef.current = new Peer(PEERJS_OPTIONS); 86 | } 87 | 88 | peerRef.current?.on("open", () => { 89 | setStatus("READY"); 90 | }); 91 | peerRef.current.on("connection", (conn) => { 92 | setStatus("CONNECTED"); 93 | connRef.current = conn; 94 | connRef.current?.on("data", onMessage); 95 | connRef.current.on("iceStateChanged", (state) => { 96 | if (state === "disconnected" || state === "closed") { 97 | peerRef.current?.destroy(); 98 | connRef.current?.close(); 99 | connRef.current = undefined; 100 | peerRef.current = undefined; 101 | listen(); 102 | setStatus("DISCONNECTED"); 103 | return; 104 | } 105 | }); 106 | }); 107 | } 108 | 109 | if (listener) { 110 | useEffect(() => { 111 | listen(); 112 | }, []); 113 | } 114 | 115 | async function connect() { 116 | try { 117 | await createConnection(); 118 | connRef.current?.on("data", onMessage); 119 | connRef.current?.once("iceStateChanged", (state) => { 120 | if ( 121 | state === "disconnected" || 122 | state == "closed" || 123 | state == "failed" 124 | ) { 125 | reconnect(); 126 | } 127 | }); 128 | if (connectIntervalRef.current) { 129 | clearInterval(connectIntervalRef.current!); 130 | } 131 | checkConnectionIntervalRef.current = setInterval(checkConnection, 1000); 132 | setStatus("CONNECTED"); 133 | } catch (e) { 134 | console.log(e); 135 | } 136 | } 137 | 138 | function sendMessage(data: Message) { 139 | console.log("sending => ", data); 140 | navigator?.vibrate?.(60); 141 | 142 | connRef.current?.send(JSON.stringify(data)); 143 | } 144 | 145 | function connectWrapper(address: string) { 146 | addressRef.current = address; 147 | reconnect(); 148 | } 149 | return { connectWrapper, sendMessage, status, message }; 150 | } 151 | -------------------------------------------------------------------------------- /web/src/usePeer.ts: -------------------------------------------------------------------------------- 1 | import Peer, { DataConnection } from "peerjs"; 2 | import { useEffect, useRef, useState } from "react"; 3 | import { PEERJS_OPTIONS } from "./config"; 4 | 5 | export enum Action { 6 | VOL_UP, 7 | VOL_DN, 8 | PG_UP, 9 | PG_DN, 10 | F5, 11 | ESC, 12 | } 13 | export interface Message { 14 | action: Action; 15 | } 16 | 17 | type Status = "CONNECTING" | "CONNECTED" | "DISCONNECTED" | "INIT" | "READY"; 18 | 19 | export function usePeer(id?: string, listener?: boolean) { 20 | const peerRef = useRef(); 21 | const connRef = useRef(); 22 | const addressRef = useRef(""); 23 | const checkConnectionIntervalRef = useRef(null); 24 | const connectIntervalRef = useRef(null); 25 | const [message, setMessage] = useState(); 26 | 27 | const [status, setStatus] = useState("INIT"); 28 | 29 | function onMessage(message: unknown) { 30 | const data = JSON.parse(message as string) as Message | null; 31 | setMessage(data); 32 | } 33 | 34 | function reconnect() { 35 | if (checkConnectionIntervalRef.current) { 36 | clearInterval(checkConnectionIntervalRef.current); 37 | } 38 | if (connectIntervalRef.current) { 39 | clearInterval(connectIntervalRef.current); 40 | } 41 | // reconnect 42 | peerRef.current?.destroy(); 43 | connRef.current?.close(); 44 | connRef.current = undefined; 45 | peerRef.current = undefined; 46 | setStatus("CONNECTING"); 47 | if (checkConnectionIntervalRef.current) { 48 | clearInterval(checkConnectionIntervalRef.current); 49 | } 50 | connectIntervalRef.current = setInterval(() => connect(), 5000); 51 | } 52 | 53 | function checkConnection() { 54 | if (!connRef.current?.peerConnection) { 55 | // reconnect 56 | reconnect(); 57 | } 58 | } 59 | 60 | async function createConnection() { 61 | setStatus("CONNECTING"); 62 | return new Promise((resolve, reject) => { 63 | console.log("connecting to ", addressRef.current); 64 | if (id) { 65 | peerRef.current = new Peer(id, PEERJS_OPTIONS); 66 | } else { 67 | peerRef.current = new Peer(PEERJS_OPTIONS); 68 | } 69 | 70 | peerRef.current.on("open", () => { 71 | setStatus("READY"); 72 | if (addressRef.current) { 73 | peerRef?.current?.on("error", (error) => reject(error)); 74 | connRef.current = peerRef.current?.connect(addressRef.current); 75 | connRef.current?.on("open", () => resolve()); 76 | } 77 | }); 78 | }); 79 | } 80 | 81 | function listen() { 82 | if (!listener) { 83 | return; 84 | } 85 | if (id) { 86 | peerRef.current = new Peer(id, PEERJS_OPTIONS); 87 | } else { 88 | peerRef.current = new Peer(PEERJS_OPTIONS); 89 | } 90 | 91 | peerRef.current?.on("open", () => { 92 | setStatus("READY"); 93 | }); 94 | peerRef.current.on("connection", (conn) => { 95 | setStatus("CONNECTED"); 96 | connRef.current = conn; 97 | connRef.current?.on("data", onMessage); 98 | connRef.current.on("iceStateChanged", (state) => { 99 | if (state === "disconnected" || state === "closed") { 100 | peerRef.current?.destroy(); 101 | connRef.current?.close(); 102 | connRef.current = undefined; 103 | peerRef.current = undefined; 104 | listen(); 105 | setStatus("DISCONNECTED"); 106 | return; 107 | } 108 | }); 109 | }); 110 | } 111 | 112 | useEffect(() => { 113 | listen(); 114 | // eslint-disable-next-line react-hooks/exhaustive-deps 115 | }, []); 116 | 117 | async function connect() { 118 | try { 119 | await createConnection(); 120 | connRef.current?.on("data", onMessage); 121 | connRef.current?.once("iceStateChanged", (state) => { 122 | if ( 123 | state === "disconnected" || 124 | state == "closed" || 125 | state == "failed" 126 | ) { 127 | reconnect(); 128 | } 129 | }); 130 | if (connectIntervalRef.current) { 131 | clearInterval(connectIntervalRef.current!); 132 | } 133 | checkConnectionIntervalRef.current = setInterval(checkConnection, 1000); 134 | setStatus("CONNECTED"); 135 | } catch (e) { 136 | console.log(e); 137 | } 138 | } 139 | 140 | function sendMessage(data: Message) { 141 | console.log("sending => ", data); 142 | navigator?.vibrate?.(60); 143 | 144 | connRef.current?.send(JSON.stringify(data)); 145 | } 146 | 147 | function connectWrapper(address: string) { 148 | addressRef.current = address; 149 | reconnect(); 150 | } 151 | return { connectWrapper, sendMessage, status, message }; 152 | } 153 | -------------------------------------------------------------------------------- /desktop/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "addr2line" 7 | version = "0.21.0" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 | dependencies = [ 11 | "gimli", 12 | ] 13 | 14 | [[package]] 15 | name = "adler" 16 | version = "1.0.2" 17 | source = "registry+https://github.com/rust-lang/crates.io-index" 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 | 20 | [[package]] 21 | name = "aho-corasick" 22 | version = "1.1.2" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 25 | dependencies = [ 26 | "memchr", 27 | ] 28 | 29 | [[package]] 30 | name = "alloc-no-stdlib" 31 | version = "2.0.4" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 34 | 35 | [[package]] 36 | name = "alloc-stdlib" 37 | version = "0.2.2" 38 | source = "registry+https://github.com/rust-lang/crates.io-index" 39 | checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 40 | dependencies = [ 41 | "alloc-no-stdlib", 42 | ] 43 | 44 | [[package]] 45 | name = "android-tzdata" 46 | version = "0.1.1" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 49 | 50 | [[package]] 51 | name = "android_system_properties" 52 | version = "0.1.5" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 55 | dependencies = [ 56 | "libc", 57 | ] 58 | 59 | [[package]] 60 | name = "anyhow" 61 | version = "1.0.75" 62 | source = "registry+https://github.com/rust-lang/crates.io-index" 63 | checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 64 | 65 | [[package]] 66 | name = "atk" 67 | version = "0.15.1" 68 | source = "registry+https://github.com/rust-lang/crates.io-index" 69 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 70 | dependencies = [ 71 | "atk-sys", 72 | "bitflags 1.3.2", 73 | "glib", 74 | "libc", 75 | ] 76 | 77 | [[package]] 78 | name = "atk-sys" 79 | version = "0.15.1" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 82 | dependencies = [ 83 | "glib-sys", 84 | "gobject-sys", 85 | "libc", 86 | "system-deps 6.2.0", 87 | ] 88 | 89 | [[package]] 90 | name = "autocfg" 91 | version = "1.1.0" 92 | source = "registry+https://github.com/rust-lang/crates.io-index" 93 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 94 | 95 | [[package]] 96 | name = "backtrace" 97 | version = "0.3.69" 98 | source = "registry+https://github.com/rust-lang/crates.io-index" 99 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 100 | dependencies = [ 101 | "addr2line", 102 | "cc", 103 | "cfg-if", 104 | "libc", 105 | "miniz_oxide", 106 | "object", 107 | "rustc-demangle", 108 | ] 109 | 110 | [[package]] 111 | name = "base64" 112 | version = "0.13.1" 113 | source = "registry+https://github.com/rust-lang/crates.io-index" 114 | checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 115 | 116 | [[package]] 117 | name = "base64" 118 | version = "0.21.5" 119 | source = "registry+https://github.com/rust-lang/crates.io-index" 120 | checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 121 | 122 | [[package]] 123 | name = "bitflags" 124 | version = "1.3.2" 125 | source = "registry+https://github.com/rust-lang/crates.io-index" 126 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 127 | 128 | [[package]] 129 | name = "bitflags" 130 | version = "2.4.1" 131 | source = "registry+https://github.com/rust-lang/crates.io-index" 132 | checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 133 | 134 | [[package]] 135 | name = "block" 136 | version = "0.1.6" 137 | source = "registry+https://github.com/rust-lang/crates.io-index" 138 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 139 | 140 | [[package]] 141 | name = "block-buffer" 142 | version = "0.10.4" 143 | source = "registry+https://github.com/rust-lang/crates.io-index" 144 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 145 | dependencies = [ 146 | "generic-array", 147 | ] 148 | 149 | [[package]] 150 | name = "brotli" 151 | version = "3.4.0" 152 | source = "registry+https://github.com/rust-lang/crates.io-index" 153 | checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 154 | dependencies = [ 155 | "alloc-no-stdlib", 156 | "alloc-stdlib", 157 | "brotli-decompressor", 158 | ] 159 | 160 | [[package]] 161 | name = "brotli-decompressor" 162 | version = "2.5.1" 163 | source = "registry+https://github.com/rust-lang/crates.io-index" 164 | checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 165 | dependencies = [ 166 | "alloc-no-stdlib", 167 | "alloc-stdlib", 168 | ] 169 | 170 | [[package]] 171 | name = "bstr" 172 | version = "1.8.0" 173 | source = "registry+https://github.com/rust-lang/crates.io-index" 174 | checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 175 | dependencies = [ 176 | "memchr", 177 | "serde", 178 | ] 179 | 180 | [[package]] 181 | name = "bumpalo" 182 | version = "3.14.0" 183 | source = "registry+https://github.com/rust-lang/crates.io-index" 184 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 185 | 186 | [[package]] 187 | name = "bytemuck" 188 | version = "1.14.0" 189 | source = "registry+https://github.com/rust-lang/crates.io-index" 190 | checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 191 | 192 | [[package]] 193 | name = "byteorder" 194 | version = "1.5.0" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 197 | 198 | [[package]] 199 | name = "bytes" 200 | version = "1.5.0" 201 | source = "registry+https://github.com/rust-lang/crates.io-index" 202 | checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 203 | 204 | [[package]] 205 | name = "cairo-rs" 206 | version = "0.15.12" 207 | source = "registry+https://github.com/rust-lang/crates.io-index" 208 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 209 | dependencies = [ 210 | "bitflags 1.3.2", 211 | "cairo-sys-rs", 212 | "glib", 213 | "libc", 214 | "thiserror", 215 | ] 216 | 217 | [[package]] 218 | name = "cairo-sys-rs" 219 | version = "0.15.1" 220 | source = "registry+https://github.com/rust-lang/crates.io-index" 221 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 222 | dependencies = [ 223 | "glib-sys", 224 | "libc", 225 | "system-deps 6.2.0", 226 | ] 227 | 228 | [[package]] 229 | name = "cargo_toml" 230 | version = "0.15.3" 231 | source = "registry+https://github.com/rust-lang/crates.io-index" 232 | checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 233 | dependencies = [ 234 | "serde", 235 | "toml 0.7.8", 236 | ] 237 | 238 | [[package]] 239 | name = "cc" 240 | version = "1.0.83" 241 | source = "registry+https://github.com/rust-lang/crates.io-index" 242 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 243 | dependencies = [ 244 | "libc", 245 | ] 246 | 247 | [[package]] 248 | name = "cesu8" 249 | version = "1.1.0" 250 | source = "registry+https://github.com/rust-lang/crates.io-index" 251 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 252 | 253 | [[package]] 254 | name = "cfb" 255 | version = "0.7.3" 256 | source = "registry+https://github.com/rust-lang/crates.io-index" 257 | checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 258 | dependencies = [ 259 | "byteorder", 260 | "fnv", 261 | "uuid", 262 | ] 263 | 264 | [[package]] 265 | name = "cfg-expr" 266 | version = "0.9.1" 267 | source = "registry+https://github.com/rust-lang/crates.io-index" 268 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 269 | dependencies = [ 270 | "smallvec", 271 | ] 272 | 273 | [[package]] 274 | name = "cfg-expr" 275 | version = "0.15.5" 276 | source = "registry+https://github.com/rust-lang/crates.io-index" 277 | checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 278 | dependencies = [ 279 | "smallvec", 280 | "target-lexicon", 281 | ] 282 | 283 | [[package]] 284 | name = "cfg-if" 285 | version = "1.0.0" 286 | source = "registry+https://github.com/rust-lang/crates.io-index" 287 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 288 | 289 | [[package]] 290 | name = "chrono" 291 | version = "0.4.31" 292 | source = "registry+https://github.com/rust-lang/crates.io-index" 293 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 294 | dependencies = [ 295 | "android-tzdata", 296 | "iana-time-zone", 297 | "num-traits", 298 | "serde", 299 | "windows-targets", 300 | ] 301 | 302 | [[package]] 303 | name = "cocoa" 304 | version = "0.24.1" 305 | source = "registry+https://github.com/rust-lang/crates.io-index" 306 | checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 307 | dependencies = [ 308 | "bitflags 1.3.2", 309 | "block", 310 | "cocoa-foundation", 311 | "core-foundation", 312 | "core-graphics 0.22.3", 313 | "foreign-types 0.3.2", 314 | "libc", 315 | "objc", 316 | ] 317 | 318 | [[package]] 319 | name = "cocoa" 320 | version = "0.25.0" 321 | source = "registry+https://github.com/rust-lang/crates.io-index" 322 | checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 323 | dependencies = [ 324 | "bitflags 1.3.2", 325 | "block", 326 | "cocoa-foundation", 327 | "core-foundation", 328 | "core-graphics 0.23.1", 329 | "foreign-types 0.5.0", 330 | "libc", 331 | "objc", 332 | ] 333 | 334 | [[package]] 335 | name = "cocoa-foundation" 336 | version = "0.1.2" 337 | source = "registry+https://github.com/rust-lang/crates.io-index" 338 | checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 339 | dependencies = [ 340 | "bitflags 1.3.2", 341 | "block", 342 | "core-foundation", 343 | "core-graphics-types", 344 | "libc", 345 | "objc", 346 | ] 347 | 348 | [[package]] 349 | name = "color_quant" 350 | version = "1.1.0" 351 | source = "registry+https://github.com/rust-lang/crates.io-index" 352 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 353 | 354 | [[package]] 355 | name = "combine" 356 | version = "4.6.6" 357 | source = "registry+https://github.com/rust-lang/crates.io-index" 358 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 359 | dependencies = [ 360 | "bytes", 361 | "memchr", 362 | ] 363 | 364 | [[package]] 365 | name = "convert_case" 366 | version = "0.4.0" 367 | source = "registry+https://github.com/rust-lang/crates.io-index" 368 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 369 | 370 | [[package]] 371 | name = "core-foundation" 372 | version = "0.9.3" 373 | source = "registry+https://github.com/rust-lang/crates.io-index" 374 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 375 | dependencies = [ 376 | "core-foundation-sys", 377 | "libc", 378 | ] 379 | 380 | [[package]] 381 | name = "core-foundation-sys" 382 | version = "0.8.4" 383 | source = "registry+https://github.com/rust-lang/crates.io-index" 384 | checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 385 | 386 | [[package]] 387 | name = "core-graphics" 388 | version = "0.22.3" 389 | source = "registry+https://github.com/rust-lang/crates.io-index" 390 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 391 | dependencies = [ 392 | "bitflags 1.3.2", 393 | "core-foundation", 394 | "core-graphics-types", 395 | "foreign-types 0.3.2", 396 | "libc", 397 | ] 398 | 399 | [[package]] 400 | name = "core-graphics" 401 | version = "0.23.1" 402 | source = "registry+https://github.com/rust-lang/crates.io-index" 403 | checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 404 | dependencies = [ 405 | "bitflags 1.3.2", 406 | "core-foundation", 407 | "core-graphics-types", 408 | "foreign-types 0.5.0", 409 | "libc", 410 | ] 411 | 412 | [[package]] 413 | name = "core-graphics-types" 414 | version = "0.1.2" 415 | source = "registry+https://github.com/rust-lang/crates.io-index" 416 | checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 417 | dependencies = [ 418 | "bitflags 1.3.2", 419 | "core-foundation", 420 | "libc", 421 | ] 422 | 423 | [[package]] 424 | name = "cpufeatures" 425 | version = "0.2.11" 426 | source = "registry+https://github.com/rust-lang/crates.io-index" 427 | checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 428 | dependencies = [ 429 | "libc", 430 | ] 431 | 432 | [[package]] 433 | name = "crc32fast" 434 | version = "1.3.2" 435 | source = "registry+https://github.com/rust-lang/crates.io-index" 436 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 437 | dependencies = [ 438 | "cfg-if", 439 | ] 440 | 441 | [[package]] 442 | name = "crossbeam-channel" 443 | version = "0.5.8" 444 | source = "registry+https://github.com/rust-lang/crates.io-index" 445 | checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 446 | dependencies = [ 447 | "cfg-if", 448 | "crossbeam-utils", 449 | ] 450 | 451 | [[package]] 452 | name = "crossbeam-utils" 453 | version = "0.8.16" 454 | source = "registry+https://github.com/rust-lang/crates.io-index" 455 | checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 456 | dependencies = [ 457 | "cfg-if", 458 | ] 459 | 460 | [[package]] 461 | name = "crypto-common" 462 | version = "0.1.6" 463 | source = "registry+https://github.com/rust-lang/crates.io-index" 464 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 465 | dependencies = [ 466 | "generic-array", 467 | "typenum", 468 | ] 469 | 470 | [[package]] 471 | name = "cssparser" 472 | version = "0.27.2" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 475 | dependencies = [ 476 | "cssparser-macros", 477 | "dtoa-short", 478 | "itoa 0.4.8", 479 | "matches", 480 | "phf 0.8.0", 481 | "proc-macro2", 482 | "quote", 483 | "smallvec", 484 | "syn 1.0.109", 485 | ] 486 | 487 | [[package]] 488 | name = "cssparser-macros" 489 | version = "0.6.1" 490 | source = "registry+https://github.com/rust-lang/crates.io-index" 491 | checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 492 | dependencies = [ 493 | "quote", 494 | "syn 2.0.39", 495 | ] 496 | 497 | [[package]] 498 | name = "ctor" 499 | version = "0.1.26" 500 | source = "registry+https://github.com/rust-lang/crates.io-index" 501 | checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 502 | dependencies = [ 503 | "quote", 504 | "syn 1.0.109", 505 | ] 506 | 507 | [[package]] 508 | name = "darling" 509 | version = "0.20.3" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 512 | dependencies = [ 513 | "darling_core", 514 | "darling_macro", 515 | ] 516 | 517 | [[package]] 518 | name = "darling_core" 519 | version = "0.20.3" 520 | source = "registry+https://github.com/rust-lang/crates.io-index" 521 | checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 522 | dependencies = [ 523 | "fnv", 524 | "ident_case", 525 | "proc-macro2", 526 | "quote", 527 | "strsim", 528 | "syn 2.0.39", 529 | ] 530 | 531 | [[package]] 532 | name = "darling_macro" 533 | version = "0.20.3" 534 | source = "registry+https://github.com/rust-lang/crates.io-index" 535 | checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 536 | dependencies = [ 537 | "darling_core", 538 | "quote", 539 | "syn 2.0.39", 540 | ] 541 | 542 | [[package]] 543 | name = "deranged" 544 | version = "0.3.9" 545 | source = "registry+https://github.com/rust-lang/crates.io-index" 546 | checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 547 | dependencies = [ 548 | "powerfmt", 549 | "serde", 550 | ] 551 | 552 | [[package]] 553 | name = "derive_more" 554 | version = "0.99.17" 555 | source = "registry+https://github.com/rust-lang/crates.io-index" 556 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 557 | dependencies = [ 558 | "convert_case", 559 | "proc-macro2", 560 | "quote", 561 | "rustc_version", 562 | "syn 1.0.109", 563 | ] 564 | 565 | [[package]] 566 | name = "digest" 567 | version = "0.10.7" 568 | source = "registry+https://github.com/rust-lang/crates.io-index" 569 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 570 | dependencies = [ 571 | "block-buffer", 572 | "crypto-common", 573 | ] 574 | 575 | [[package]] 576 | name = "dirs-next" 577 | version = "2.0.0" 578 | source = "registry+https://github.com/rust-lang/crates.io-index" 579 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 580 | dependencies = [ 581 | "cfg-if", 582 | "dirs-sys-next", 583 | ] 584 | 585 | [[package]] 586 | name = "dirs-sys-next" 587 | version = "0.1.2" 588 | source = "registry+https://github.com/rust-lang/crates.io-index" 589 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 590 | dependencies = [ 591 | "libc", 592 | "redox_users", 593 | "winapi", 594 | ] 595 | 596 | [[package]] 597 | name = "dispatch" 598 | version = "0.2.0" 599 | source = "registry+https://github.com/rust-lang/crates.io-index" 600 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 601 | 602 | [[package]] 603 | name = "dtoa" 604 | version = "1.0.9" 605 | source = "registry+https://github.com/rust-lang/crates.io-index" 606 | checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 607 | 608 | [[package]] 609 | name = "dtoa-short" 610 | version = "0.3.4" 611 | source = "registry+https://github.com/rust-lang/crates.io-index" 612 | checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" 613 | dependencies = [ 614 | "dtoa", 615 | ] 616 | 617 | [[package]] 618 | name = "dunce" 619 | version = "1.0.4" 620 | source = "registry+https://github.com/rust-lang/crates.io-index" 621 | checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 622 | 623 | [[package]] 624 | name = "embed-resource" 625 | version = "2.4.0" 626 | source = "registry+https://github.com/rust-lang/crates.io-index" 627 | checksum = "f54cc3e827ee1c3812239a9a41dede7b4d7d5d5464faa32d71bd7cba28ce2cb2" 628 | dependencies = [ 629 | "cc", 630 | "rustc_version", 631 | "toml 0.8.8", 632 | "vswhom", 633 | "winreg", 634 | ] 635 | 636 | [[package]] 637 | name = "embed_plist" 638 | version = "1.2.2" 639 | source = "registry+https://github.com/rust-lang/crates.io-index" 640 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 641 | 642 | [[package]] 643 | name = "encoding_rs" 644 | version = "0.8.33" 645 | source = "registry+https://github.com/rust-lang/crates.io-index" 646 | checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 647 | dependencies = [ 648 | "cfg-if", 649 | ] 650 | 651 | [[package]] 652 | name = "enigo" 653 | version = "0.1.3" 654 | source = "registry+https://github.com/rust-lang/crates.io-index" 655 | checksum = "802e4b2ae123615659085369b453cba87c5562e46ed8050a909fee18a9bc3157" 656 | dependencies = [ 657 | "core-graphics 0.23.1", 658 | "libc", 659 | "objc", 660 | "pkg-config", 661 | "windows 0.51.1", 662 | ] 663 | 664 | [[package]] 665 | name = "equivalent" 666 | version = "1.0.1" 667 | source = "registry+https://github.com/rust-lang/crates.io-index" 668 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 669 | 670 | [[package]] 671 | name = "errno" 672 | version = "0.3.7" 673 | source = "registry+https://github.com/rust-lang/crates.io-index" 674 | checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" 675 | dependencies = [ 676 | "libc", 677 | "windows-sys 0.48.0", 678 | ] 679 | 680 | [[package]] 681 | name = "fastrand" 682 | version = "2.0.1" 683 | source = "registry+https://github.com/rust-lang/crates.io-index" 684 | checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 685 | 686 | [[package]] 687 | name = "fdeflate" 688 | version = "0.3.1" 689 | source = "registry+https://github.com/rust-lang/crates.io-index" 690 | checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 691 | dependencies = [ 692 | "simd-adler32", 693 | ] 694 | 695 | [[package]] 696 | name = "field-offset" 697 | version = "0.3.6" 698 | source = "registry+https://github.com/rust-lang/crates.io-index" 699 | checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 700 | dependencies = [ 701 | "memoffset", 702 | "rustc_version", 703 | ] 704 | 705 | [[package]] 706 | name = "filetime" 707 | version = "0.2.22" 708 | source = "registry+https://github.com/rust-lang/crates.io-index" 709 | checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 710 | dependencies = [ 711 | "cfg-if", 712 | "libc", 713 | "redox_syscall 0.3.5", 714 | "windows-sys 0.48.0", 715 | ] 716 | 717 | [[package]] 718 | name = "flate2" 719 | version = "1.0.28" 720 | source = "registry+https://github.com/rust-lang/crates.io-index" 721 | checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 722 | dependencies = [ 723 | "crc32fast", 724 | "miniz_oxide", 725 | ] 726 | 727 | [[package]] 728 | name = "fnv" 729 | version = "1.0.7" 730 | source = "registry+https://github.com/rust-lang/crates.io-index" 731 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 732 | 733 | [[package]] 734 | name = "foreign-types" 735 | version = "0.3.2" 736 | source = "registry+https://github.com/rust-lang/crates.io-index" 737 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 738 | dependencies = [ 739 | "foreign-types-shared 0.1.1", 740 | ] 741 | 742 | [[package]] 743 | name = "foreign-types" 744 | version = "0.5.0" 745 | source = "registry+https://github.com/rust-lang/crates.io-index" 746 | checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 747 | dependencies = [ 748 | "foreign-types-macros", 749 | "foreign-types-shared 0.3.1", 750 | ] 751 | 752 | [[package]] 753 | name = "foreign-types-macros" 754 | version = "0.2.3" 755 | source = "registry+https://github.com/rust-lang/crates.io-index" 756 | checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 757 | dependencies = [ 758 | "proc-macro2", 759 | "quote", 760 | "syn 2.0.39", 761 | ] 762 | 763 | [[package]] 764 | name = "foreign-types-shared" 765 | version = "0.1.1" 766 | source = "registry+https://github.com/rust-lang/crates.io-index" 767 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 768 | 769 | [[package]] 770 | name = "foreign-types-shared" 771 | version = "0.3.1" 772 | source = "registry+https://github.com/rust-lang/crates.io-index" 773 | checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 774 | 775 | [[package]] 776 | name = "form_urlencoded" 777 | version = "1.2.0" 778 | source = "registry+https://github.com/rust-lang/crates.io-index" 779 | checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 780 | dependencies = [ 781 | "percent-encoding", 782 | ] 783 | 784 | [[package]] 785 | name = "futf" 786 | version = "0.1.5" 787 | source = "registry+https://github.com/rust-lang/crates.io-index" 788 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 789 | dependencies = [ 790 | "mac", 791 | "new_debug_unreachable", 792 | ] 793 | 794 | [[package]] 795 | name = "futures-channel" 796 | version = "0.3.29" 797 | source = "registry+https://github.com/rust-lang/crates.io-index" 798 | checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 799 | dependencies = [ 800 | "futures-core", 801 | ] 802 | 803 | [[package]] 804 | name = "futures-core" 805 | version = "0.3.29" 806 | source = "registry+https://github.com/rust-lang/crates.io-index" 807 | checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 808 | 809 | [[package]] 810 | name = "futures-executor" 811 | version = "0.3.29" 812 | source = "registry+https://github.com/rust-lang/crates.io-index" 813 | checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 814 | dependencies = [ 815 | "futures-core", 816 | "futures-task", 817 | "futures-util", 818 | ] 819 | 820 | [[package]] 821 | name = "futures-io" 822 | version = "0.3.29" 823 | source = "registry+https://github.com/rust-lang/crates.io-index" 824 | checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 825 | 826 | [[package]] 827 | name = "futures-macro" 828 | version = "0.3.29" 829 | source = "registry+https://github.com/rust-lang/crates.io-index" 830 | checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 831 | dependencies = [ 832 | "proc-macro2", 833 | "quote", 834 | "syn 2.0.39", 835 | ] 836 | 837 | [[package]] 838 | name = "futures-task" 839 | version = "0.3.29" 840 | source = "registry+https://github.com/rust-lang/crates.io-index" 841 | checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 842 | 843 | [[package]] 844 | name = "futures-util" 845 | version = "0.3.29" 846 | source = "registry+https://github.com/rust-lang/crates.io-index" 847 | checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 848 | dependencies = [ 849 | "futures-core", 850 | "futures-macro", 851 | "futures-task", 852 | "pin-project-lite", 853 | "pin-utils", 854 | "slab", 855 | ] 856 | 857 | [[package]] 858 | name = "fxhash" 859 | version = "0.2.1" 860 | source = "registry+https://github.com/rust-lang/crates.io-index" 861 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 862 | dependencies = [ 863 | "byteorder", 864 | ] 865 | 866 | [[package]] 867 | name = "gdk" 868 | version = "0.15.4" 869 | source = "registry+https://github.com/rust-lang/crates.io-index" 870 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 871 | dependencies = [ 872 | "bitflags 1.3.2", 873 | "cairo-rs", 874 | "gdk-pixbuf", 875 | "gdk-sys", 876 | "gio", 877 | "glib", 878 | "libc", 879 | "pango", 880 | ] 881 | 882 | [[package]] 883 | name = "gdk-pixbuf" 884 | version = "0.15.11" 885 | source = "registry+https://github.com/rust-lang/crates.io-index" 886 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 887 | dependencies = [ 888 | "bitflags 1.3.2", 889 | "gdk-pixbuf-sys", 890 | "gio", 891 | "glib", 892 | "libc", 893 | ] 894 | 895 | [[package]] 896 | name = "gdk-pixbuf-sys" 897 | version = "0.15.10" 898 | source = "registry+https://github.com/rust-lang/crates.io-index" 899 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 900 | dependencies = [ 901 | "gio-sys", 902 | "glib-sys", 903 | "gobject-sys", 904 | "libc", 905 | "system-deps 6.2.0", 906 | ] 907 | 908 | [[package]] 909 | name = "gdk-sys" 910 | version = "0.15.1" 911 | source = "registry+https://github.com/rust-lang/crates.io-index" 912 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 913 | dependencies = [ 914 | "cairo-sys-rs", 915 | "gdk-pixbuf-sys", 916 | "gio-sys", 917 | "glib-sys", 918 | "gobject-sys", 919 | "libc", 920 | "pango-sys", 921 | "pkg-config", 922 | "system-deps 6.2.0", 923 | ] 924 | 925 | [[package]] 926 | name = "gdkwayland-sys" 927 | version = "0.15.3" 928 | source = "registry+https://github.com/rust-lang/crates.io-index" 929 | checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2" 930 | dependencies = [ 931 | "gdk-sys", 932 | "glib-sys", 933 | "gobject-sys", 934 | "libc", 935 | "pkg-config", 936 | "system-deps 6.2.0", 937 | ] 938 | 939 | [[package]] 940 | name = "gdkx11-sys" 941 | version = "0.15.1" 942 | source = "registry+https://github.com/rust-lang/crates.io-index" 943 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 944 | dependencies = [ 945 | "gdk-sys", 946 | "glib-sys", 947 | "libc", 948 | "system-deps 6.2.0", 949 | "x11", 950 | ] 951 | 952 | [[package]] 953 | name = "generator" 954 | version = "0.7.5" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e" 957 | dependencies = [ 958 | "cc", 959 | "libc", 960 | "log", 961 | "rustversion", 962 | "windows 0.48.0", 963 | ] 964 | 965 | [[package]] 966 | name = "generic-array" 967 | version = "0.14.7" 968 | source = "registry+https://github.com/rust-lang/crates.io-index" 969 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 970 | dependencies = [ 971 | "typenum", 972 | "version_check", 973 | ] 974 | 975 | [[package]] 976 | name = "getrandom" 977 | version = "0.1.16" 978 | source = "registry+https://github.com/rust-lang/crates.io-index" 979 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 980 | dependencies = [ 981 | "cfg-if", 982 | "libc", 983 | "wasi 0.9.0+wasi-snapshot-preview1", 984 | ] 985 | 986 | [[package]] 987 | name = "getrandom" 988 | version = "0.2.11" 989 | source = "registry+https://github.com/rust-lang/crates.io-index" 990 | checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 991 | dependencies = [ 992 | "cfg-if", 993 | "libc", 994 | "wasi 0.11.0+wasi-snapshot-preview1", 995 | ] 996 | 997 | [[package]] 998 | name = "gimli" 999 | version = "0.28.0" 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" 1001 | checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1002 | 1003 | [[package]] 1004 | name = "gio" 1005 | version = "0.15.12" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 1008 | dependencies = [ 1009 | "bitflags 1.3.2", 1010 | "futures-channel", 1011 | "futures-core", 1012 | "futures-io", 1013 | "gio-sys", 1014 | "glib", 1015 | "libc", 1016 | "once_cell", 1017 | "thiserror", 1018 | ] 1019 | 1020 | [[package]] 1021 | name = "gio-sys" 1022 | version = "0.15.10" 1023 | source = "registry+https://github.com/rust-lang/crates.io-index" 1024 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 1025 | dependencies = [ 1026 | "glib-sys", 1027 | "gobject-sys", 1028 | "libc", 1029 | "system-deps 6.2.0", 1030 | "winapi", 1031 | ] 1032 | 1033 | [[package]] 1034 | name = "glib" 1035 | version = "0.15.12" 1036 | source = "registry+https://github.com/rust-lang/crates.io-index" 1037 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 1038 | dependencies = [ 1039 | "bitflags 1.3.2", 1040 | "futures-channel", 1041 | "futures-core", 1042 | "futures-executor", 1043 | "futures-task", 1044 | "glib-macros", 1045 | "glib-sys", 1046 | "gobject-sys", 1047 | "libc", 1048 | "once_cell", 1049 | "smallvec", 1050 | "thiserror", 1051 | ] 1052 | 1053 | [[package]] 1054 | name = "glib-macros" 1055 | version = "0.15.13" 1056 | source = "registry+https://github.com/rust-lang/crates.io-index" 1057 | checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a" 1058 | dependencies = [ 1059 | "anyhow", 1060 | "heck 0.4.1", 1061 | "proc-macro-crate", 1062 | "proc-macro-error", 1063 | "proc-macro2", 1064 | "quote", 1065 | "syn 1.0.109", 1066 | ] 1067 | 1068 | [[package]] 1069 | name = "glib-sys" 1070 | version = "0.15.10" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1073 | dependencies = [ 1074 | "libc", 1075 | "system-deps 6.2.0", 1076 | ] 1077 | 1078 | [[package]] 1079 | name = "glob" 1080 | version = "0.3.1" 1081 | source = "registry+https://github.com/rust-lang/crates.io-index" 1082 | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1083 | 1084 | [[package]] 1085 | name = "globset" 1086 | version = "0.4.13" 1087 | source = "registry+https://github.com/rust-lang/crates.io-index" 1088 | checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 1089 | dependencies = [ 1090 | "aho-corasick", 1091 | "bstr", 1092 | "fnv", 1093 | "log", 1094 | "regex", 1095 | ] 1096 | 1097 | [[package]] 1098 | name = "gobject-sys" 1099 | version = "0.15.10" 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" 1101 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1102 | dependencies = [ 1103 | "glib-sys", 1104 | "libc", 1105 | "system-deps 6.2.0", 1106 | ] 1107 | 1108 | [[package]] 1109 | name = "gtk" 1110 | version = "0.15.5" 1111 | source = "registry+https://github.com/rust-lang/crates.io-index" 1112 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1113 | dependencies = [ 1114 | "atk", 1115 | "bitflags 1.3.2", 1116 | "cairo-rs", 1117 | "field-offset", 1118 | "futures-channel", 1119 | "gdk", 1120 | "gdk-pixbuf", 1121 | "gio", 1122 | "glib", 1123 | "gtk-sys", 1124 | "gtk3-macros", 1125 | "libc", 1126 | "once_cell", 1127 | "pango", 1128 | "pkg-config", 1129 | ] 1130 | 1131 | [[package]] 1132 | name = "gtk-sys" 1133 | version = "0.15.3" 1134 | source = "registry+https://github.com/rust-lang/crates.io-index" 1135 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1136 | dependencies = [ 1137 | "atk-sys", 1138 | "cairo-sys-rs", 1139 | "gdk-pixbuf-sys", 1140 | "gdk-sys", 1141 | "gio-sys", 1142 | "glib-sys", 1143 | "gobject-sys", 1144 | "libc", 1145 | "pango-sys", 1146 | "system-deps 6.2.0", 1147 | ] 1148 | 1149 | [[package]] 1150 | name = "gtk3-macros" 1151 | version = "0.15.6" 1152 | source = "registry+https://github.com/rust-lang/crates.io-index" 1153 | checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d" 1154 | dependencies = [ 1155 | "anyhow", 1156 | "proc-macro-crate", 1157 | "proc-macro-error", 1158 | "proc-macro2", 1159 | "quote", 1160 | "syn 1.0.109", 1161 | ] 1162 | 1163 | [[package]] 1164 | name = "hashbrown" 1165 | version = "0.12.3" 1166 | source = "registry+https://github.com/rust-lang/crates.io-index" 1167 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1168 | 1169 | [[package]] 1170 | name = "hashbrown" 1171 | version = "0.14.2" 1172 | source = "registry+https://github.com/rust-lang/crates.io-index" 1173 | checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 1174 | 1175 | [[package]] 1176 | name = "heck" 1177 | version = "0.3.3" 1178 | source = "registry+https://github.com/rust-lang/crates.io-index" 1179 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1180 | dependencies = [ 1181 | "unicode-segmentation", 1182 | ] 1183 | 1184 | [[package]] 1185 | name = "heck" 1186 | version = "0.4.1" 1187 | source = "registry+https://github.com/rust-lang/crates.io-index" 1188 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1189 | 1190 | [[package]] 1191 | name = "hermit-abi" 1192 | version = "0.3.3" 1193 | source = "registry+https://github.com/rust-lang/crates.io-index" 1194 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1195 | 1196 | [[package]] 1197 | name = "hex" 1198 | version = "0.4.3" 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" 1200 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1201 | 1202 | [[package]] 1203 | name = "html5ever" 1204 | version = "0.25.2" 1205 | source = "registry+https://github.com/rust-lang/crates.io-index" 1206 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1207 | dependencies = [ 1208 | "log", 1209 | "mac", 1210 | "markup5ever 0.10.1", 1211 | "proc-macro2", 1212 | "quote", 1213 | "syn 1.0.109", 1214 | ] 1215 | 1216 | [[package]] 1217 | name = "html5ever" 1218 | version = "0.26.0" 1219 | source = "registry+https://github.com/rust-lang/crates.io-index" 1220 | checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1221 | dependencies = [ 1222 | "log", 1223 | "mac", 1224 | "markup5ever 0.11.0", 1225 | "proc-macro2", 1226 | "quote", 1227 | "syn 1.0.109", 1228 | ] 1229 | 1230 | [[package]] 1231 | name = "http" 1232 | version = "0.2.11" 1233 | source = "registry+https://github.com/rust-lang/crates.io-index" 1234 | checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1235 | dependencies = [ 1236 | "bytes", 1237 | "fnv", 1238 | "itoa 1.0.9", 1239 | ] 1240 | 1241 | [[package]] 1242 | name = "http-range" 1243 | version = "0.1.5" 1244 | source = "registry+https://github.com/rust-lang/crates.io-index" 1245 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1246 | 1247 | [[package]] 1248 | name = "iana-time-zone" 1249 | version = "0.1.58" 1250 | source = "registry+https://github.com/rust-lang/crates.io-index" 1251 | checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1252 | dependencies = [ 1253 | "android_system_properties", 1254 | "core-foundation-sys", 1255 | "iana-time-zone-haiku", 1256 | "js-sys", 1257 | "wasm-bindgen", 1258 | "windows-core", 1259 | ] 1260 | 1261 | [[package]] 1262 | name = "iana-time-zone-haiku" 1263 | version = "0.1.2" 1264 | source = "registry+https://github.com/rust-lang/crates.io-index" 1265 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1266 | dependencies = [ 1267 | "cc", 1268 | ] 1269 | 1270 | [[package]] 1271 | name = "ico" 1272 | version = "0.3.0" 1273 | source = "registry+https://github.com/rust-lang/crates.io-index" 1274 | checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" 1275 | dependencies = [ 1276 | "byteorder", 1277 | "png", 1278 | ] 1279 | 1280 | [[package]] 1281 | name = "ident_case" 1282 | version = "1.0.1" 1283 | source = "registry+https://github.com/rust-lang/crates.io-index" 1284 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1285 | 1286 | [[package]] 1287 | name = "idna" 1288 | version = "0.4.0" 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" 1290 | checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1291 | dependencies = [ 1292 | "unicode-bidi", 1293 | "unicode-normalization", 1294 | ] 1295 | 1296 | [[package]] 1297 | name = "ignore" 1298 | version = "0.4.20" 1299 | source = "registry+https://github.com/rust-lang/crates.io-index" 1300 | checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 1301 | dependencies = [ 1302 | "globset", 1303 | "lazy_static", 1304 | "log", 1305 | "memchr", 1306 | "regex", 1307 | "same-file", 1308 | "thread_local", 1309 | "walkdir", 1310 | "winapi-util", 1311 | ] 1312 | 1313 | [[package]] 1314 | name = "image" 1315 | version = "0.24.7" 1316 | source = "registry+https://github.com/rust-lang/crates.io-index" 1317 | checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1318 | dependencies = [ 1319 | "bytemuck", 1320 | "byteorder", 1321 | "color_quant", 1322 | "num-rational", 1323 | "num-traits", 1324 | ] 1325 | 1326 | [[package]] 1327 | name = "indexmap" 1328 | version = "1.9.3" 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" 1330 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1331 | dependencies = [ 1332 | "autocfg", 1333 | "hashbrown 0.12.3", 1334 | "serde", 1335 | ] 1336 | 1337 | [[package]] 1338 | name = "indexmap" 1339 | version = "2.1.0" 1340 | source = "registry+https://github.com/rust-lang/crates.io-index" 1341 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1342 | dependencies = [ 1343 | "equivalent", 1344 | "hashbrown 0.14.2", 1345 | "serde", 1346 | ] 1347 | 1348 | [[package]] 1349 | name = "infer" 1350 | version = "0.12.0" 1351 | source = "registry+https://github.com/rust-lang/crates.io-index" 1352 | checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 1353 | dependencies = [ 1354 | "cfb", 1355 | ] 1356 | 1357 | [[package]] 1358 | name = "instant" 1359 | version = "0.1.12" 1360 | source = "registry+https://github.com/rust-lang/crates.io-index" 1361 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1362 | dependencies = [ 1363 | "cfg-if", 1364 | ] 1365 | 1366 | [[package]] 1367 | name = "itoa" 1368 | version = "0.4.8" 1369 | source = "registry+https://github.com/rust-lang/crates.io-index" 1370 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1371 | 1372 | [[package]] 1373 | name = "itoa" 1374 | version = "1.0.9" 1375 | source = "registry+https://github.com/rust-lang/crates.io-index" 1376 | checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1377 | 1378 | [[package]] 1379 | name = "javascriptcore-rs" 1380 | version = "0.16.0" 1381 | source = "registry+https://github.com/rust-lang/crates.io-index" 1382 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1383 | dependencies = [ 1384 | "bitflags 1.3.2", 1385 | "glib", 1386 | "javascriptcore-rs-sys", 1387 | ] 1388 | 1389 | [[package]] 1390 | name = "javascriptcore-rs-sys" 1391 | version = "0.4.0" 1392 | source = "registry+https://github.com/rust-lang/crates.io-index" 1393 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1394 | dependencies = [ 1395 | "glib-sys", 1396 | "gobject-sys", 1397 | "libc", 1398 | "system-deps 5.0.0", 1399 | ] 1400 | 1401 | [[package]] 1402 | name = "jni" 1403 | version = "0.20.0" 1404 | source = "registry+https://github.com/rust-lang/crates.io-index" 1405 | checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 1406 | dependencies = [ 1407 | "cesu8", 1408 | "combine", 1409 | "jni-sys", 1410 | "log", 1411 | "thiserror", 1412 | "walkdir", 1413 | ] 1414 | 1415 | [[package]] 1416 | name = "jni-sys" 1417 | version = "0.3.0" 1418 | source = "registry+https://github.com/rust-lang/crates.io-index" 1419 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1420 | 1421 | [[package]] 1422 | name = "js-sys" 1423 | version = "0.3.65" 1424 | source = "registry+https://github.com/rust-lang/crates.io-index" 1425 | checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 1426 | dependencies = [ 1427 | "wasm-bindgen", 1428 | ] 1429 | 1430 | [[package]] 1431 | name = "json-patch" 1432 | version = "1.2.0" 1433 | source = "registry+https://github.com/rust-lang/crates.io-index" 1434 | checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6" 1435 | dependencies = [ 1436 | "serde", 1437 | "serde_json", 1438 | "thiserror", 1439 | "treediff", 1440 | ] 1441 | 1442 | [[package]] 1443 | name = "kuchiki" 1444 | version = "0.8.1" 1445 | source = "registry+https://github.com/rust-lang/crates.io-index" 1446 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1447 | dependencies = [ 1448 | "cssparser", 1449 | "html5ever 0.25.2", 1450 | "matches", 1451 | "selectors", 1452 | ] 1453 | 1454 | [[package]] 1455 | name = "kuchikiki" 1456 | version = "0.8.2" 1457 | source = "registry+https://github.com/rust-lang/crates.io-index" 1458 | checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 1459 | dependencies = [ 1460 | "cssparser", 1461 | "html5ever 0.26.0", 1462 | "indexmap 1.9.3", 1463 | "matches", 1464 | "selectors", 1465 | ] 1466 | 1467 | [[package]] 1468 | name = "lazy_static" 1469 | version = "1.4.0" 1470 | source = "registry+https://github.com/rust-lang/crates.io-index" 1471 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1472 | 1473 | [[package]] 1474 | name = "libc" 1475 | version = "0.2.150" 1476 | source = "registry+https://github.com/rust-lang/crates.io-index" 1477 | checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 1478 | 1479 | [[package]] 1480 | name = "libredox" 1481 | version = "0.0.1" 1482 | source = "registry+https://github.com/rust-lang/crates.io-index" 1483 | checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1484 | dependencies = [ 1485 | "bitflags 2.4.1", 1486 | "libc", 1487 | "redox_syscall 0.4.1", 1488 | ] 1489 | 1490 | [[package]] 1491 | name = "line-wrap" 1492 | version = "0.1.1" 1493 | source = "registry+https://github.com/rust-lang/crates.io-index" 1494 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1495 | dependencies = [ 1496 | "safemem", 1497 | ] 1498 | 1499 | [[package]] 1500 | name = "linux-raw-sys" 1501 | version = "0.4.11" 1502 | source = "registry+https://github.com/rust-lang/crates.io-index" 1503 | checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 1504 | 1505 | [[package]] 1506 | name = "lock_api" 1507 | version = "0.4.11" 1508 | source = "registry+https://github.com/rust-lang/crates.io-index" 1509 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1510 | dependencies = [ 1511 | "autocfg", 1512 | "scopeguard", 1513 | ] 1514 | 1515 | [[package]] 1516 | name = "log" 1517 | version = "0.4.20" 1518 | source = "registry+https://github.com/rust-lang/crates.io-index" 1519 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1520 | 1521 | [[package]] 1522 | name = "loom" 1523 | version = "0.5.6" 1524 | source = "registry+https://github.com/rust-lang/crates.io-index" 1525 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1526 | dependencies = [ 1527 | "cfg-if", 1528 | "generator", 1529 | "scoped-tls", 1530 | "serde", 1531 | "serde_json", 1532 | "tracing", 1533 | "tracing-subscriber", 1534 | ] 1535 | 1536 | [[package]] 1537 | name = "mac" 1538 | version = "0.1.1" 1539 | source = "registry+https://github.com/rust-lang/crates.io-index" 1540 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1541 | 1542 | [[package]] 1543 | name = "malloc_buf" 1544 | version = "0.0.6" 1545 | source = "registry+https://github.com/rust-lang/crates.io-index" 1546 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1547 | dependencies = [ 1548 | "libc", 1549 | ] 1550 | 1551 | [[package]] 1552 | name = "markup5ever" 1553 | version = "0.10.1" 1554 | source = "registry+https://github.com/rust-lang/crates.io-index" 1555 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1556 | dependencies = [ 1557 | "log", 1558 | "phf 0.8.0", 1559 | "phf_codegen 0.8.0", 1560 | "string_cache", 1561 | "string_cache_codegen", 1562 | "tendril", 1563 | ] 1564 | 1565 | [[package]] 1566 | name = "markup5ever" 1567 | version = "0.11.0" 1568 | source = "registry+https://github.com/rust-lang/crates.io-index" 1569 | checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 1570 | dependencies = [ 1571 | "log", 1572 | "phf 0.10.1", 1573 | "phf_codegen 0.10.0", 1574 | "string_cache", 1575 | "string_cache_codegen", 1576 | "tendril", 1577 | ] 1578 | 1579 | [[package]] 1580 | name = "matchers" 1581 | version = "0.1.0" 1582 | source = "registry+https://github.com/rust-lang/crates.io-index" 1583 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1584 | dependencies = [ 1585 | "regex-automata 0.1.10", 1586 | ] 1587 | 1588 | [[package]] 1589 | name = "matches" 1590 | version = "0.1.10" 1591 | source = "registry+https://github.com/rust-lang/crates.io-index" 1592 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1593 | 1594 | [[package]] 1595 | name = "memchr" 1596 | version = "2.6.4" 1597 | source = "registry+https://github.com/rust-lang/crates.io-index" 1598 | checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1599 | 1600 | [[package]] 1601 | name = "memoffset" 1602 | version = "0.9.0" 1603 | source = "registry+https://github.com/rust-lang/crates.io-index" 1604 | checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1605 | dependencies = [ 1606 | "autocfg", 1607 | ] 1608 | 1609 | [[package]] 1610 | name = "miniz_oxide" 1611 | version = "0.7.1" 1612 | source = "registry+https://github.com/rust-lang/crates.io-index" 1613 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1614 | dependencies = [ 1615 | "adler", 1616 | "simd-adler32", 1617 | ] 1618 | 1619 | [[package]] 1620 | name = "mobslide" 1621 | version = "0.0.0" 1622 | dependencies = [ 1623 | "enigo", 1624 | "tauri", 1625 | "tauri-build", 1626 | "window-shadows", 1627 | ] 1628 | 1629 | [[package]] 1630 | name = "ndk" 1631 | version = "0.6.0" 1632 | source = "registry+https://github.com/rust-lang/crates.io-index" 1633 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1634 | dependencies = [ 1635 | "bitflags 1.3.2", 1636 | "jni-sys", 1637 | "ndk-sys", 1638 | "num_enum", 1639 | "thiserror", 1640 | ] 1641 | 1642 | [[package]] 1643 | name = "ndk-context" 1644 | version = "0.1.1" 1645 | source = "registry+https://github.com/rust-lang/crates.io-index" 1646 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1647 | 1648 | [[package]] 1649 | name = "ndk-sys" 1650 | version = "0.3.0" 1651 | source = "registry+https://github.com/rust-lang/crates.io-index" 1652 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1653 | dependencies = [ 1654 | "jni-sys", 1655 | ] 1656 | 1657 | [[package]] 1658 | name = "new_debug_unreachable" 1659 | version = "1.0.4" 1660 | source = "registry+https://github.com/rust-lang/crates.io-index" 1661 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1662 | 1663 | [[package]] 1664 | name = "nodrop" 1665 | version = "0.1.14" 1666 | source = "registry+https://github.com/rust-lang/crates.io-index" 1667 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1668 | 1669 | [[package]] 1670 | name = "nu-ansi-term" 1671 | version = "0.46.0" 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" 1673 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1674 | dependencies = [ 1675 | "overload", 1676 | "winapi", 1677 | ] 1678 | 1679 | [[package]] 1680 | name = "num-integer" 1681 | version = "0.1.45" 1682 | source = "registry+https://github.com/rust-lang/crates.io-index" 1683 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1684 | dependencies = [ 1685 | "autocfg", 1686 | "num-traits", 1687 | ] 1688 | 1689 | [[package]] 1690 | name = "num-rational" 1691 | version = "0.4.1" 1692 | source = "registry+https://github.com/rust-lang/crates.io-index" 1693 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1694 | dependencies = [ 1695 | "autocfg", 1696 | "num-integer", 1697 | "num-traits", 1698 | ] 1699 | 1700 | [[package]] 1701 | name = "num-traits" 1702 | version = "0.2.17" 1703 | source = "registry+https://github.com/rust-lang/crates.io-index" 1704 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1705 | dependencies = [ 1706 | "autocfg", 1707 | ] 1708 | 1709 | [[package]] 1710 | name = "num_cpus" 1711 | version = "1.16.0" 1712 | source = "registry+https://github.com/rust-lang/crates.io-index" 1713 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1714 | dependencies = [ 1715 | "hermit-abi", 1716 | "libc", 1717 | ] 1718 | 1719 | [[package]] 1720 | name = "num_enum" 1721 | version = "0.5.11" 1722 | source = "registry+https://github.com/rust-lang/crates.io-index" 1723 | checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 1724 | dependencies = [ 1725 | "num_enum_derive", 1726 | ] 1727 | 1728 | [[package]] 1729 | name = "num_enum_derive" 1730 | version = "0.5.11" 1731 | source = "registry+https://github.com/rust-lang/crates.io-index" 1732 | checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 1733 | dependencies = [ 1734 | "proc-macro-crate", 1735 | "proc-macro2", 1736 | "quote", 1737 | "syn 1.0.109", 1738 | ] 1739 | 1740 | [[package]] 1741 | name = "objc" 1742 | version = "0.2.7" 1743 | source = "registry+https://github.com/rust-lang/crates.io-index" 1744 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1745 | dependencies = [ 1746 | "malloc_buf", 1747 | "objc_exception", 1748 | ] 1749 | 1750 | [[package]] 1751 | name = "objc_exception" 1752 | version = "0.1.2" 1753 | source = "registry+https://github.com/rust-lang/crates.io-index" 1754 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1755 | dependencies = [ 1756 | "cc", 1757 | ] 1758 | 1759 | [[package]] 1760 | name = "objc_id" 1761 | version = "0.1.1" 1762 | source = "registry+https://github.com/rust-lang/crates.io-index" 1763 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1764 | dependencies = [ 1765 | "objc", 1766 | ] 1767 | 1768 | [[package]] 1769 | name = "object" 1770 | version = "0.32.1" 1771 | source = "registry+https://github.com/rust-lang/crates.io-index" 1772 | checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1773 | dependencies = [ 1774 | "memchr", 1775 | ] 1776 | 1777 | [[package]] 1778 | name = "once_cell" 1779 | version = "1.18.0" 1780 | source = "registry+https://github.com/rust-lang/crates.io-index" 1781 | checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1782 | 1783 | [[package]] 1784 | name = "open" 1785 | version = "3.2.0" 1786 | source = "registry+https://github.com/rust-lang/crates.io-index" 1787 | checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 1788 | dependencies = [ 1789 | "pathdiff", 1790 | "windows-sys 0.42.0", 1791 | ] 1792 | 1793 | [[package]] 1794 | name = "overload" 1795 | version = "0.1.1" 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" 1797 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1798 | 1799 | [[package]] 1800 | name = "pango" 1801 | version = "0.15.10" 1802 | source = "registry+https://github.com/rust-lang/crates.io-index" 1803 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1804 | dependencies = [ 1805 | "bitflags 1.3.2", 1806 | "glib", 1807 | "libc", 1808 | "once_cell", 1809 | "pango-sys", 1810 | ] 1811 | 1812 | [[package]] 1813 | name = "pango-sys" 1814 | version = "0.15.10" 1815 | source = "registry+https://github.com/rust-lang/crates.io-index" 1816 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1817 | dependencies = [ 1818 | "glib-sys", 1819 | "gobject-sys", 1820 | "libc", 1821 | "system-deps 6.2.0", 1822 | ] 1823 | 1824 | [[package]] 1825 | name = "parking_lot" 1826 | version = "0.12.1" 1827 | source = "registry+https://github.com/rust-lang/crates.io-index" 1828 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1829 | dependencies = [ 1830 | "lock_api", 1831 | "parking_lot_core", 1832 | ] 1833 | 1834 | [[package]] 1835 | name = "parking_lot_core" 1836 | version = "0.9.9" 1837 | source = "registry+https://github.com/rust-lang/crates.io-index" 1838 | checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 1839 | dependencies = [ 1840 | "cfg-if", 1841 | "libc", 1842 | "redox_syscall 0.4.1", 1843 | "smallvec", 1844 | "windows-targets", 1845 | ] 1846 | 1847 | [[package]] 1848 | name = "pathdiff" 1849 | version = "0.2.1" 1850 | source = "registry+https://github.com/rust-lang/crates.io-index" 1851 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1852 | 1853 | [[package]] 1854 | name = "percent-encoding" 1855 | version = "2.3.0" 1856 | source = "registry+https://github.com/rust-lang/crates.io-index" 1857 | checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1858 | 1859 | [[package]] 1860 | name = "phf" 1861 | version = "0.8.0" 1862 | source = "registry+https://github.com/rust-lang/crates.io-index" 1863 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1864 | dependencies = [ 1865 | "phf_macros 0.8.0", 1866 | "phf_shared 0.8.0", 1867 | "proc-macro-hack", 1868 | ] 1869 | 1870 | [[package]] 1871 | name = "phf" 1872 | version = "0.10.1" 1873 | source = "registry+https://github.com/rust-lang/crates.io-index" 1874 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1875 | dependencies = [ 1876 | "phf_macros 0.10.0", 1877 | "phf_shared 0.10.0", 1878 | "proc-macro-hack", 1879 | ] 1880 | 1881 | [[package]] 1882 | name = "phf_codegen" 1883 | version = "0.8.0" 1884 | source = "registry+https://github.com/rust-lang/crates.io-index" 1885 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1886 | dependencies = [ 1887 | "phf_generator 0.8.0", 1888 | "phf_shared 0.8.0", 1889 | ] 1890 | 1891 | [[package]] 1892 | name = "phf_codegen" 1893 | version = "0.10.0" 1894 | source = "registry+https://github.com/rust-lang/crates.io-index" 1895 | checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 1896 | dependencies = [ 1897 | "phf_generator 0.10.0", 1898 | "phf_shared 0.10.0", 1899 | ] 1900 | 1901 | [[package]] 1902 | name = "phf_generator" 1903 | version = "0.8.0" 1904 | source = "registry+https://github.com/rust-lang/crates.io-index" 1905 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1906 | dependencies = [ 1907 | "phf_shared 0.8.0", 1908 | "rand 0.7.3", 1909 | ] 1910 | 1911 | [[package]] 1912 | name = "phf_generator" 1913 | version = "0.10.0" 1914 | source = "registry+https://github.com/rust-lang/crates.io-index" 1915 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1916 | dependencies = [ 1917 | "phf_shared 0.10.0", 1918 | "rand 0.8.5", 1919 | ] 1920 | 1921 | [[package]] 1922 | name = "phf_macros" 1923 | version = "0.8.0" 1924 | source = "registry+https://github.com/rust-lang/crates.io-index" 1925 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1926 | dependencies = [ 1927 | "phf_generator 0.8.0", 1928 | "phf_shared 0.8.0", 1929 | "proc-macro-hack", 1930 | "proc-macro2", 1931 | "quote", 1932 | "syn 1.0.109", 1933 | ] 1934 | 1935 | [[package]] 1936 | name = "phf_macros" 1937 | version = "0.10.0" 1938 | source = "registry+https://github.com/rust-lang/crates.io-index" 1939 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1940 | dependencies = [ 1941 | "phf_generator 0.10.0", 1942 | "phf_shared 0.10.0", 1943 | "proc-macro-hack", 1944 | "proc-macro2", 1945 | "quote", 1946 | "syn 1.0.109", 1947 | ] 1948 | 1949 | [[package]] 1950 | name = "phf_shared" 1951 | version = "0.8.0" 1952 | source = "registry+https://github.com/rust-lang/crates.io-index" 1953 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1954 | dependencies = [ 1955 | "siphasher", 1956 | ] 1957 | 1958 | [[package]] 1959 | name = "phf_shared" 1960 | version = "0.10.0" 1961 | source = "registry+https://github.com/rust-lang/crates.io-index" 1962 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1963 | dependencies = [ 1964 | "siphasher", 1965 | ] 1966 | 1967 | [[package]] 1968 | name = "pin-project-lite" 1969 | version = "0.2.13" 1970 | source = "registry+https://github.com/rust-lang/crates.io-index" 1971 | checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1972 | 1973 | [[package]] 1974 | name = "pin-utils" 1975 | version = "0.1.0" 1976 | source = "registry+https://github.com/rust-lang/crates.io-index" 1977 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1978 | 1979 | [[package]] 1980 | name = "pkg-config" 1981 | version = "0.3.27" 1982 | source = "registry+https://github.com/rust-lang/crates.io-index" 1983 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1984 | 1985 | [[package]] 1986 | name = "plist" 1987 | version = "1.6.0" 1988 | source = "registry+https://github.com/rust-lang/crates.io-index" 1989 | checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 1990 | dependencies = [ 1991 | "base64 0.21.5", 1992 | "indexmap 2.1.0", 1993 | "line-wrap", 1994 | "quick-xml", 1995 | "serde", 1996 | "time", 1997 | ] 1998 | 1999 | [[package]] 2000 | name = "png" 2001 | version = "0.17.10" 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" 2003 | checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 2004 | dependencies = [ 2005 | "bitflags 1.3.2", 2006 | "crc32fast", 2007 | "fdeflate", 2008 | "flate2", 2009 | "miniz_oxide", 2010 | ] 2011 | 2012 | [[package]] 2013 | name = "powerfmt" 2014 | version = "0.2.0" 2015 | source = "registry+https://github.com/rust-lang/crates.io-index" 2016 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2017 | 2018 | [[package]] 2019 | name = "ppv-lite86" 2020 | version = "0.2.17" 2021 | source = "registry+https://github.com/rust-lang/crates.io-index" 2022 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2023 | 2024 | [[package]] 2025 | name = "precomputed-hash" 2026 | version = "0.1.1" 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" 2028 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2029 | 2030 | [[package]] 2031 | name = "proc-macro-crate" 2032 | version = "1.3.1" 2033 | source = "registry+https://github.com/rust-lang/crates.io-index" 2034 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2035 | dependencies = [ 2036 | "once_cell", 2037 | "toml_edit 0.19.15", 2038 | ] 2039 | 2040 | [[package]] 2041 | name = "proc-macro-error" 2042 | version = "1.0.4" 2043 | source = "registry+https://github.com/rust-lang/crates.io-index" 2044 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2045 | dependencies = [ 2046 | "proc-macro-error-attr", 2047 | "proc-macro2", 2048 | "quote", 2049 | "syn 1.0.109", 2050 | "version_check", 2051 | ] 2052 | 2053 | [[package]] 2054 | name = "proc-macro-error-attr" 2055 | version = "1.0.4" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2058 | dependencies = [ 2059 | "proc-macro2", 2060 | "quote", 2061 | "version_check", 2062 | ] 2063 | 2064 | [[package]] 2065 | name = "proc-macro-hack" 2066 | version = "0.5.20+deprecated" 2067 | source = "registry+https://github.com/rust-lang/crates.io-index" 2068 | checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2069 | 2070 | [[package]] 2071 | name = "proc-macro2" 2072 | version = "1.0.69" 2073 | source = "registry+https://github.com/rust-lang/crates.io-index" 2074 | checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 2075 | dependencies = [ 2076 | "unicode-ident", 2077 | ] 2078 | 2079 | [[package]] 2080 | name = "quick-xml" 2081 | version = "0.31.0" 2082 | source = "registry+https://github.com/rust-lang/crates.io-index" 2083 | checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2084 | dependencies = [ 2085 | "memchr", 2086 | ] 2087 | 2088 | [[package]] 2089 | name = "quote" 2090 | version = "1.0.33" 2091 | source = "registry+https://github.com/rust-lang/crates.io-index" 2092 | checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2093 | dependencies = [ 2094 | "proc-macro2", 2095 | ] 2096 | 2097 | [[package]] 2098 | name = "rand" 2099 | version = "0.7.3" 2100 | source = "registry+https://github.com/rust-lang/crates.io-index" 2101 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2102 | dependencies = [ 2103 | "getrandom 0.1.16", 2104 | "libc", 2105 | "rand_chacha 0.2.2", 2106 | "rand_core 0.5.1", 2107 | "rand_hc", 2108 | "rand_pcg", 2109 | ] 2110 | 2111 | [[package]] 2112 | name = "rand" 2113 | version = "0.8.5" 2114 | source = "registry+https://github.com/rust-lang/crates.io-index" 2115 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2116 | dependencies = [ 2117 | "libc", 2118 | "rand_chacha 0.3.1", 2119 | "rand_core 0.6.4", 2120 | ] 2121 | 2122 | [[package]] 2123 | name = "rand_chacha" 2124 | version = "0.2.2" 2125 | source = "registry+https://github.com/rust-lang/crates.io-index" 2126 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2127 | dependencies = [ 2128 | "ppv-lite86", 2129 | "rand_core 0.5.1", 2130 | ] 2131 | 2132 | [[package]] 2133 | name = "rand_chacha" 2134 | version = "0.3.1" 2135 | source = "registry+https://github.com/rust-lang/crates.io-index" 2136 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2137 | dependencies = [ 2138 | "ppv-lite86", 2139 | "rand_core 0.6.4", 2140 | ] 2141 | 2142 | [[package]] 2143 | name = "rand_core" 2144 | version = "0.5.1" 2145 | source = "registry+https://github.com/rust-lang/crates.io-index" 2146 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2147 | dependencies = [ 2148 | "getrandom 0.1.16", 2149 | ] 2150 | 2151 | [[package]] 2152 | name = "rand_core" 2153 | version = "0.6.4" 2154 | source = "registry+https://github.com/rust-lang/crates.io-index" 2155 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2156 | dependencies = [ 2157 | "getrandom 0.2.11", 2158 | ] 2159 | 2160 | [[package]] 2161 | name = "rand_hc" 2162 | version = "0.2.0" 2163 | source = "registry+https://github.com/rust-lang/crates.io-index" 2164 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2165 | dependencies = [ 2166 | "rand_core 0.5.1", 2167 | ] 2168 | 2169 | [[package]] 2170 | name = "rand_pcg" 2171 | version = "0.2.1" 2172 | source = "registry+https://github.com/rust-lang/crates.io-index" 2173 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2174 | dependencies = [ 2175 | "rand_core 0.5.1", 2176 | ] 2177 | 2178 | [[package]] 2179 | name = "raw-window-handle" 2180 | version = "0.5.2" 2181 | source = "registry+https://github.com/rust-lang/crates.io-index" 2182 | checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 2183 | 2184 | [[package]] 2185 | name = "redox_syscall" 2186 | version = "0.3.5" 2187 | source = "registry+https://github.com/rust-lang/crates.io-index" 2188 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2189 | dependencies = [ 2190 | "bitflags 1.3.2", 2191 | ] 2192 | 2193 | [[package]] 2194 | name = "redox_syscall" 2195 | version = "0.4.1" 2196 | source = "registry+https://github.com/rust-lang/crates.io-index" 2197 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2198 | dependencies = [ 2199 | "bitflags 1.3.2", 2200 | ] 2201 | 2202 | [[package]] 2203 | name = "redox_users" 2204 | version = "0.4.4" 2205 | source = "registry+https://github.com/rust-lang/crates.io-index" 2206 | checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 2207 | dependencies = [ 2208 | "getrandom 0.2.11", 2209 | "libredox", 2210 | "thiserror", 2211 | ] 2212 | 2213 | [[package]] 2214 | name = "regex" 2215 | version = "1.10.2" 2216 | source = "registry+https://github.com/rust-lang/crates.io-index" 2217 | checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 2218 | dependencies = [ 2219 | "aho-corasick", 2220 | "memchr", 2221 | "regex-automata 0.4.3", 2222 | "regex-syntax 0.8.2", 2223 | ] 2224 | 2225 | [[package]] 2226 | name = "regex-automata" 2227 | version = "0.1.10" 2228 | source = "registry+https://github.com/rust-lang/crates.io-index" 2229 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2230 | dependencies = [ 2231 | "regex-syntax 0.6.29", 2232 | ] 2233 | 2234 | [[package]] 2235 | name = "regex-automata" 2236 | version = "0.4.3" 2237 | source = "registry+https://github.com/rust-lang/crates.io-index" 2238 | checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 2239 | dependencies = [ 2240 | "aho-corasick", 2241 | "memchr", 2242 | "regex-syntax 0.8.2", 2243 | ] 2244 | 2245 | [[package]] 2246 | name = "regex-syntax" 2247 | version = "0.6.29" 2248 | source = "registry+https://github.com/rust-lang/crates.io-index" 2249 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2250 | 2251 | [[package]] 2252 | name = "regex-syntax" 2253 | version = "0.8.2" 2254 | source = "registry+https://github.com/rust-lang/crates.io-index" 2255 | checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2256 | 2257 | [[package]] 2258 | name = "rustc-demangle" 2259 | version = "0.1.23" 2260 | source = "registry+https://github.com/rust-lang/crates.io-index" 2261 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2262 | 2263 | [[package]] 2264 | name = "rustc_version" 2265 | version = "0.4.0" 2266 | source = "registry+https://github.com/rust-lang/crates.io-index" 2267 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2268 | dependencies = [ 2269 | "semver", 2270 | ] 2271 | 2272 | [[package]] 2273 | name = "rustix" 2274 | version = "0.38.24" 2275 | source = "registry+https://github.com/rust-lang/crates.io-index" 2276 | checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234" 2277 | dependencies = [ 2278 | "bitflags 2.4.1", 2279 | "errno", 2280 | "libc", 2281 | "linux-raw-sys", 2282 | "windows-sys 0.48.0", 2283 | ] 2284 | 2285 | [[package]] 2286 | name = "rustversion" 2287 | version = "1.0.14" 2288 | source = "registry+https://github.com/rust-lang/crates.io-index" 2289 | checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2290 | 2291 | [[package]] 2292 | name = "ryu" 2293 | version = "1.0.15" 2294 | source = "registry+https://github.com/rust-lang/crates.io-index" 2295 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2296 | 2297 | [[package]] 2298 | name = "safemem" 2299 | version = "0.3.3" 2300 | source = "registry+https://github.com/rust-lang/crates.io-index" 2301 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2302 | 2303 | [[package]] 2304 | name = "same-file" 2305 | version = "1.0.6" 2306 | source = "registry+https://github.com/rust-lang/crates.io-index" 2307 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2308 | dependencies = [ 2309 | "winapi-util", 2310 | ] 2311 | 2312 | [[package]] 2313 | name = "scoped-tls" 2314 | version = "1.0.1" 2315 | source = "registry+https://github.com/rust-lang/crates.io-index" 2316 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2317 | 2318 | [[package]] 2319 | name = "scopeguard" 2320 | version = "1.2.0" 2321 | source = "registry+https://github.com/rust-lang/crates.io-index" 2322 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2323 | 2324 | [[package]] 2325 | name = "selectors" 2326 | version = "0.22.0" 2327 | source = "registry+https://github.com/rust-lang/crates.io-index" 2328 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2329 | dependencies = [ 2330 | "bitflags 1.3.2", 2331 | "cssparser", 2332 | "derive_more", 2333 | "fxhash", 2334 | "log", 2335 | "matches", 2336 | "phf 0.8.0", 2337 | "phf_codegen 0.8.0", 2338 | "precomputed-hash", 2339 | "servo_arc", 2340 | "smallvec", 2341 | "thin-slice", 2342 | ] 2343 | 2344 | [[package]] 2345 | name = "semver" 2346 | version = "1.0.20" 2347 | source = "registry+https://github.com/rust-lang/crates.io-index" 2348 | checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 2349 | dependencies = [ 2350 | "serde", 2351 | ] 2352 | 2353 | [[package]] 2354 | name = "serde" 2355 | version = "1.0.192" 2356 | source = "registry+https://github.com/rust-lang/crates.io-index" 2357 | checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 2358 | dependencies = [ 2359 | "serde_derive", 2360 | ] 2361 | 2362 | [[package]] 2363 | name = "serde_derive" 2364 | version = "1.0.192" 2365 | source = "registry+https://github.com/rust-lang/crates.io-index" 2366 | checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 2367 | dependencies = [ 2368 | "proc-macro2", 2369 | "quote", 2370 | "syn 2.0.39", 2371 | ] 2372 | 2373 | [[package]] 2374 | name = "serde_json" 2375 | version = "1.0.108" 2376 | source = "registry+https://github.com/rust-lang/crates.io-index" 2377 | checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 2378 | dependencies = [ 2379 | "itoa 1.0.9", 2380 | "ryu", 2381 | "serde", 2382 | ] 2383 | 2384 | [[package]] 2385 | name = "serde_repr" 2386 | version = "0.1.17" 2387 | source = "registry+https://github.com/rust-lang/crates.io-index" 2388 | checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 2389 | dependencies = [ 2390 | "proc-macro2", 2391 | "quote", 2392 | "syn 2.0.39", 2393 | ] 2394 | 2395 | [[package]] 2396 | name = "serde_spanned" 2397 | version = "0.6.4" 2398 | source = "registry+https://github.com/rust-lang/crates.io-index" 2399 | checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 2400 | dependencies = [ 2401 | "serde", 2402 | ] 2403 | 2404 | [[package]] 2405 | name = "serde_with" 2406 | version = "3.4.0" 2407 | source = "registry+https://github.com/rust-lang/crates.io-index" 2408 | checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 2409 | dependencies = [ 2410 | "base64 0.21.5", 2411 | "chrono", 2412 | "hex", 2413 | "indexmap 1.9.3", 2414 | "indexmap 2.1.0", 2415 | "serde", 2416 | "serde_json", 2417 | "serde_with_macros", 2418 | "time", 2419 | ] 2420 | 2421 | [[package]] 2422 | name = "serde_with_macros" 2423 | version = "3.4.0" 2424 | source = "registry+https://github.com/rust-lang/crates.io-index" 2425 | checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 2426 | dependencies = [ 2427 | "darling", 2428 | "proc-macro2", 2429 | "quote", 2430 | "syn 2.0.39", 2431 | ] 2432 | 2433 | [[package]] 2434 | name = "serialize-to-javascript" 2435 | version = "0.1.1" 2436 | source = "registry+https://github.com/rust-lang/crates.io-index" 2437 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2438 | dependencies = [ 2439 | "serde", 2440 | "serde_json", 2441 | "serialize-to-javascript-impl", 2442 | ] 2443 | 2444 | [[package]] 2445 | name = "serialize-to-javascript-impl" 2446 | version = "0.1.1" 2447 | source = "registry+https://github.com/rust-lang/crates.io-index" 2448 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2449 | dependencies = [ 2450 | "proc-macro2", 2451 | "quote", 2452 | "syn 1.0.109", 2453 | ] 2454 | 2455 | [[package]] 2456 | name = "servo_arc" 2457 | version = "0.1.1" 2458 | source = "registry+https://github.com/rust-lang/crates.io-index" 2459 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2460 | dependencies = [ 2461 | "nodrop", 2462 | "stable_deref_trait", 2463 | ] 2464 | 2465 | [[package]] 2466 | name = "sha2" 2467 | version = "0.10.8" 2468 | source = "registry+https://github.com/rust-lang/crates.io-index" 2469 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2470 | dependencies = [ 2471 | "cfg-if", 2472 | "cpufeatures", 2473 | "digest", 2474 | ] 2475 | 2476 | [[package]] 2477 | name = "sharded-slab" 2478 | version = "0.1.7" 2479 | source = "registry+https://github.com/rust-lang/crates.io-index" 2480 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2481 | dependencies = [ 2482 | "lazy_static", 2483 | ] 2484 | 2485 | [[package]] 2486 | name = "simd-adler32" 2487 | version = "0.3.7" 2488 | source = "registry+https://github.com/rust-lang/crates.io-index" 2489 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2490 | 2491 | [[package]] 2492 | name = "siphasher" 2493 | version = "0.3.11" 2494 | source = "registry+https://github.com/rust-lang/crates.io-index" 2495 | checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2496 | 2497 | [[package]] 2498 | name = "slab" 2499 | version = "0.4.9" 2500 | source = "registry+https://github.com/rust-lang/crates.io-index" 2501 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2502 | dependencies = [ 2503 | "autocfg", 2504 | ] 2505 | 2506 | [[package]] 2507 | name = "smallvec" 2508 | version = "1.11.2" 2509 | source = "registry+https://github.com/rust-lang/crates.io-index" 2510 | checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2511 | 2512 | [[package]] 2513 | name = "soup2" 2514 | version = "0.2.1" 2515 | source = "registry+https://github.com/rust-lang/crates.io-index" 2516 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2517 | dependencies = [ 2518 | "bitflags 1.3.2", 2519 | "gio", 2520 | "glib", 2521 | "libc", 2522 | "once_cell", 2523 | "soup2-sys", 2524 | ] 2525 | 2526 | [[package]] 2527 | name = "soup2-sys" 2528 | version = "0.2.0" 2529 | source = "registry+https://github.com/rust-lang/crates.io-index" 2530 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2531 | dependencies = [ 2532 | "bitflags 1.3.2", 2533 | "gio-sys", 2534 | "glib-sys", 2535 | "gobject-sys", 2536 | "libc", 2537 | "system-deps 5.0.0", 2538 | ] 2539 | 2540 | [[package]] 2541 | name = "stable_deref_trait" 2542 | version = "1.2.0" 2543 | source = "registry+https://github.com/rust-lang/crates.io-index" 2544 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2545 | 2546 | [[package]] 2547 | name = "state" 2548 | version = "0.5.3" 2549 | source = "registry+https://github.com/rust-lang/crates.io-index" 2550 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2551 | dependencies = [ 2552 | "loom", 2553 | ] 2554 | 2555 | [[package]] 2556 | name = "string_cache" 2557 | version = "0.8.7" 2558 | source = "registry+https://github.com/rust-lang/crates.io-index" 2559 | checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 2560 | dependencies = [ 2561 | "new_debug_unreachable", 2562 | "once_cell", 2563 | "parking_lot", 2564 | "phf_shared 0.10.0", 2565 | "precomputed-hash", 2566 | "serde", 2567 | ] 2568 | 2569 | [[package]] 2570 | name = "string_cache_codegen" 2571 | version = "0.5.2" 2572 | source = "registry+https://github.com/rust-lang/crates.io-index" 2573 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2574 | dependencies = [ 2575 | "phf_generator 0.10.0", 2576 | "phf_shared 0.10.0", 2577 | "proc-macro2", 2578 | "quote", 2579 | ] 2580 | 2581 | [[package]] 2582 | name = "strsim" 2583 | version = "0.10.0" 2584 | source = "registry+https://github.com/rust-lang/crates.io-index" 2585 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2586 | 2587 | [[package]] 2588 | name = "syn" 2589 | version = "1.0.109" 2590 | source = "registry+https://github.com/rust-lang/crates.io-index" 2591 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2592 | dependencies = [ 2593 | "proc-macro2", 2594 | "quote", 2595 | "unicode-ident", 2596 | ] 2597 | 2598 | [[package]] 2599 | name = "syn" 2600 | version = "2.0.39" 2601 | source = "registry+https://github.com/rust-lang/crates.io-index" 2602 | checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 2603 | dependencies = [ 2604 | "proc-macro2", 2605 | "quote", 2606 | "unicode-ident", 2607 | ] 2608 | 2609 | [[package]] 2610 | name = "system-deps" 2611 | version = "5.0.0" 2612 | source = "registry+https://github.com/rust-lang/crates.io-index" 2613 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2614 | dependencies = [ 2615 | "cfg-expr 0.9.1", 2616 | "heck 0.3.3", 2617 | "pkg-config", 2618 | "toml 0.5.11", 2619 | "version-compare 0.0.11", 2620 | ] 2621 | 2622 | [[package]] 2623 | name = "system-deps" 2624 | version = "6.2.0" 2625 | source = "registry+https://github.com/rust-lang/crates.io-index" 2626 | checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 2627 | dependencies = [ 2628 | "cfg-expr 0.15.5", 2629 | "heck 0.4.1", 2630 | "pkg-config", 2631 | "toml 0.8.8", 2632 | "version-compare 0.1.1", 2633 | ] 2634 | 2635 | [[package]] 2636 | name = "tao" 2637 | version = "0.16.5" 2638 | source = "registry+https://github.com/rust-lang/crates.io-index" 2639 | checksum = "75f5aefd6be4cd3ad3f047442242fd9f57cbfb3e565379f66b5e14749364fa4f" 2640 | dependencies = [ 2641 | "bitflags 1.3.2", 2642 | "cairo-rs", 2643 | "cc", 2644 | "cocoa 0.24.1", 2645 | "core-foundation", 2646 | "core-graphics 0.22.3", 2647 | "crossbeam-channel", 2648 | "dispatch", 2649 | "gdk", 2650 | "gdk-pixbuf", 2651 | "gdk-sys", 2652 | "gdkwayland-sys", 2653 | "gdkx11-sys", 2654 | "gio", 2655 | "glib", 2656 | "glib-sys", 2657 | "gtk", 2658 | "image", 2659 | "instant", 2660 | "jni", 2661 | "lazy_static", 2662 | "libc", 2663 | "log", 2664 | "ndk", 2665 | "ndk-context", 2666 | "ndk-sys", 2667 | "objc", 2668 | "once_cell", 2669 | "parking_lot", 2670 | "png", 2671 | "raw-window-handle", 2672 | "scopeguard", 2673 | "serde", 2674 | "tao-macros", 2675 | "unicode-segmentation", 2676 | "uuid", 2677 | "windows 0.39.0", 2678 | "windows-implement", 2679 | "x11-dl", 2680 | ] 2681 | 2682 | [[package]] 2683 | name = "tao-macros" 2684 | version = "0.1.2" 2685 | source = "registry+https://github.com/rust-lang/crates.io-index" 2686 | checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2" 2687 | dependencies = [ 2688 | "proc-macro2", 2689 | "quote", 2690 | "syn 1.0.109", 2691 | ] 2692 | 2693 | [[package]] 2694 | name = "tar" 2695 | version = "0.4.40" 2696 | source = "registry+https://github.com/rust-lang/crates.io-index" 2697 | checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 2698 | dependencies = [ 2699 | "filetime", 2700 | "libc", 2701 | "xattr", 2702 | ] 2703 | 2704 | [[package]] 2705 | name = "target-lexicon" 2706 | version = "0.12.12" 2707 | source = "registry+https://github.com/rust-lang/crates.io-index" 2708 | checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 2709 | 2710 | [[package]] 2711 | name = "tauri" 2712 | version = "1.5.2" 2713 | source = "registry+https://github.com/rust-lang/crates.io-index" 2714 | checksum = "9bfe673cf125ef364d6f56b15e8ce7537d9ca7e4dae1cf6fbbdeed2e024db3d9" 2715 | dependencies = [ 2716 | "anyhow", 2717 | "cocoa 0.24.1", 2718 | "dirs-next", 2719 | "embed_plist", 2720 | "encoding_rs", 2721 | "flate2", 2722 | "futures-util", 2723 | "glib", 2724 | "glob", 2725 | "gtk", 2726 | "heck 0.4.1", 2727 | "http", 2728 | "ignore", 2729 | "objc", 2730 | "once_cell", 2731 | "open", 2732 | "percent-encoding", 2733 | "rand 0.8.5", 2734 | "raw-window-handle", 2735 | "regex", 2736 | "semver", 2737 | "serde", 2738 | "serde_json", 2739 | "serde_repr", 2740 | "serialize-to-javascript", 2741 | "state", 2742 | "tar", 2743 | "tauri-macros", 2744 | "tauri-runtime", 2745 | "tauri-runtime-wry", 2746 | "tauri-utils", 2747 | "tempfile", 2748 | "thiserror", 2749 | "tokio", 2750 | "url", 2751 | "uuid", 2752 | "webkit2gtk", 2753 | "webview2-com", 2754 | "windows 0.39.0", 2755 | ] 2756 | 2757 | [[package]] 2758 | name = "tauri-build" 2759 | version = "1.5.0" 2760 | source = "registry+https://github.com/rust-lang/crates.io-index" 2761 | checksum = "defbfc551bd38ab997e5f8e458f87396d2559d05ce32095076ad6c30f7fc5f9c" 2762 | dependencies = [ 2763 | "anyhow", 2764 | "cargo_toml", 2765 | "dirs-next", 2766 | "heck 0.4.1", 2767 | "json-patch", 2768 | "semver", 2769 | "serde", 2770 | "serde_json", 2771 | "tauri-utils", 2772 | "tauri-winres", 2773 | "walkdir", 2774 | ] 2775 | 2776 | [[package]] 2777 | name = "tauri-codegen" 2778 | version = "1.4.1" 2779 | source = "registry+https://github.com/rust-lang/crates.io-index" 2780 | checksum = "7b3475e55acec0b4a50fb96435f19631fb58cbcd31923e1a213de5c382536bbb" 2781 | dependencies = [ 2782 | "base64 0.21.5", 2783 | "brotli", 2784 | "ico", 2785 | "json-patch", 2786 | "plist", 2787 | "png", 2788 | "proc-macro2", 2789 | "quote", 2790 | "regex", 2791 | "semver", 2792 | "serde", 2793 | "serde_json", 2794 | "sha2", 2795 | "tauri-utils", 2796 | "thiserror", 2797 | "time", 2798 | "uuid", 2799 | "walkdir", 2800 | ] 2801 | 2802 | [[package]] 2803 | name = "tauri-macros" 2804 | version = "1.4.1" 2805 | source = "registry+https://github.com/rust-lang/crates.io-index" 2806 | checksum = "613740228de92d9196b795ac455091d3a5fbdac2654abb8bb07d010b62ab43af" 2807 | dependencies = [ 2808 | "heck 0.4.1", 2809 | "proc-macro2", 2810 | "quote", 2811 | "syn 1.0.109", 2812 | "tauri-codegen", 2813 | "tauri-utils", 2814 | ] 2815 | 2816 | [[package]] 2817 | name = "tauri-runtime" 2818 | version = "0.14.1" 2819 | source = "registry+https://github.com/rust-lang/crates.io-index" 2820 | checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43" 2821 | dependencies = [ 2822 | "gtk", 2823 | "http", 2824 | "http-range", 2825 | "rand 0.8.5", 2826 | "raw-window-handle", 2827 | "serde", 2828 | "serde_json", 2829 | "tauri-utils", 2830 | "thiserror", 2831 | "url", 2832 | "uuid", 2833 | "webview2-com", 2834 | "windows 0.39.0", 2835 | ] 2836 | 2837 | [[package]] 2838 | name = "tauri-runtime-wry" 2839 | version = "0.14.1" 2840 | source = "registry+https://github.com/rust-lang/crates.io-index" 2841 | checksum = "8141d72b6b65f2008911e9ef5b98a68d1e3413b7a1464e8f85eb3673bb19a895" 2842 | dependencies = [ 2843 | "cocoa 0.24.1", 2844 | "gtk", 2845 | "percent-encoding", 2846 | "rand 0.8.5", 2847 | "raw-window-handle", 2848 | "tauri-runtime", 2849 | "tauri-utils", 2850 | "uuid", 2851 | "webkit2gtk", 2852 | "webview2-com", 2853 | "windows 0.39.0", 2854 | "wry", 2855 | ] 2856 | 2857 | [[package]] 2858 | name = "tauri-utils" 2859 | version = "1.5.0" 2860 | source = "registry+https://github.com/rust-lang/crates.io-index" 2861 | checksum = "34d55e185904a84a419308d523c2c6891d5e2dbcee740c4997eb42e75a7b0f46" 2862 | dependencies = [ 2863 | "brotli", 2864 | "ctor", 2865 | "dunce", 2866 | "glob", 2867 | "heck 0.4.1", 2868 | "html5ever 0.26.0", 2869 | "infer", 2870 | "json-patch", 2871 | "kuchikiki", 2872 | "log", 2873 | "memchr", 2874 | "phf 0.10.1", 2875 | "proc-macro2", 2876 | "quote", 2877 | "semver", 2878 | "serde", 2879 | "serde_json", 2880 | "serde_with", 2881 | "thiserror", 2882 | "url", 2883 | "walkdir", 2884 | "windows 0.39.0", 2885 | ] 2886 | 2887 | [[package]] 2888 | name = "tauri-winres" 2889 | version = "0.1.1" 2890 | source = "registry+https://github.com/rust-lang/crates.io-index" 2891 | checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 2892 | dependencies = [ 2893 | "embed-resource", 2894 | "toml 0.7.8", 2895 | ] 2896 | 2897 | [[package]] 2898 | name = "tempfile" 2899 | version = "3.8.1" 2900 | source = "registry+https://github.com/rust-lang/crates.io-index" 2901 | checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2902 | dependencies = [ 2903 | "cfg-if", 2904 | "fastrand", 2905 | "redox_syscall 0.4.1", 2906 | "rustix", 2907 | "windows-sys 0.48.0", 2908 | ] 2909 | 2910 | [[package]] 2911 | name = "tendril" 2912 | version = "0.4.3" 2913 | source = "registry+https://github.com/rust-lang/crates.io-index" 2914 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2915 | dependencies = [ 2916 | "futf", 2917 | "mac", 2918 | "utf-8", 2919 | ] 2920 | 2921 | [[package]] 2922 | name = "thin-slice" 2923 | version = "0.1.1" 2924 | source = "registry+https://github.com/rust-lang/crates.io-index" 2925 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2926 | 2927 | [[package]] 2928 | name = "thiserror" 2929 | version = "1.0.50" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 2932 | dependencies = [ 2933 | "thiserror-impl", 2934 | ] 2935 | 2936 | [[package]] 2937 | name = "thiserror-impl" 2938 | version = "1.0.50" 2939 | source = "registry+https://github.com/rust-lang/crates.io-index" 2940 | checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 2941 | dependencies = [ 2942 | "proc-macro2", 2943 | "quote", 2944 | "syn 2.0.39", 2945 | ] 2946 | 2947 | [[package]] 2948 | name = "thread_local" 2949 | version = "1.1.7" 2950 | source = "registry+https://github.com/rust-lang/crates.io-index" 2951 | checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2952 | dependencies = [ 2953 | "cfg-if", 2954 | "once_cell", 2955 | ] 2956 | 2957 | [[package]] 2958 | name = "time" 2959 | version = "0.3.30" 2960 | source = "registry+https://github.com/rust-lang/crates.io-index" 2961 | checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 2962 | dependencies = [ 2963 | "deranged", 2964 | "itoa 1.0.9", 2965 | "powerfmt", 2966 | "serde", 2967 | "time-core", 2968 | "time-macros", 2969 | ] 2970 | 2971 | [[package]] 2972 | name = "time-core" 2973 | version = "0.1.2" 2974 | source = "registry+https://github.com/rust-lang/crates.io-index" 2975 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2976 | 2977 | [[package]] 2978 | name = "time-macros" 2979 | version = "0.2.15" 2980 | source = "registry+https://github.com/rust-lang/crates.io-index" 2981 | checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 2982 | dependencies = [ 2983 | "time-core", 2984 | ] 2985 | 2986 | [[package]] 2987 | name = "tinyvec" 2988 | version = "1.6.0" 2989 | source = "registry+https://github.com/rust-lang/crates.io-index" 2990 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2991 | dependencies = [ 2992 | "tinyvec_macros", 2993 | ] 2994 | 2995 | [[package]] 2996 | name = "tinyvec_macros" 2997 | version = "0.1.1" 2998 | source = "registry+https://github.com/rust-lang/crates.io-index" 2999 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3000 | 3001 | [[package]] 3002 | name = "tokio" 3003 | version = "1.34.0" 3004 | source = "registry+https://github.com/rust-lang/crates.io-index" 3005 | checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 3006 | dependencies = [ 3007 | "backtrace", 3008 | "bytes", 3009 | "num_cpus", 3010 | "pin-project-lite", 3011 | ] 3012 | 3013 | [[package]] 3014 | name = "toml" 3015 | version = "0.5.11" 3016 | source = "registry+https://github.com/rust-lang/crates.io-index" 3017 | checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 3018 | dependencies = [ 3019 | "serde", 3020 | ] 3021 | 3022 | [[package]] 3023 | name = "toml" 3024 | version = "0.7.8" 3025 | source = "registry+https://github.com/rust-lang/crates.io-index" 3026 | checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 3027 | dependencies = [ 3028 | "serde", 3029 | "serde_spanned", 3030 | "toml_datetime", 3031 | "toml_edit 0.19.15", 3032 | ] 3033 | 3034 | [[package]] 3035 | name = "toml" 3036 | version = "0.8.8" 3037 | source = "registry+https://github.com/rust-lang/crates.io-index" 3038 | checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 3039 | dependencies = [ 3040 | "serde", 3041 | "serde_spanned", 3042 | "toml_datetime", 3043 | "toml_edit 0.21.0", 3044 | ] 3045 | 3046 | [[package]] 3047 | name = "toml_datetime" 3048 | version = "0.6.5" 3049 | source = "registry+https://github.com/rust-lang/crates.io-index" 3050 | checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 3051 | dependencies = [ 3052 | "serde", 3053 | ] 3054 | 3055 | [[package]] 3056 | name = "toml_edit" 3057 | version = "0.19.15" 3058 | source = "registry+https://github.com/rust-lang/crates.io-index" 3059 | checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3060 | dependencies = [ 3061 | "indexmap 2.1.0", 3062 | "serde", 3063 | "serde_spanned", 3064 | "toml_datetime", 3065 | "winnow", 3066 | ] 3067 | 3068 | [[package]] 3069 | name = "toml_edit" 3070 | version = "0.21.0" 3071 | source = "registry+https://github.com/rust-lang/crates.io-index" 3072 | checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 3073 | dependencies = [ 3074 | "indexmap 2.1.0", 3075 | "serde", 3076 | "serde_spanned", 3077 | "toml_datetime", 3078 | "winnow", 3079 | ] 3080 | 3081 | [[package]] 3082 | name = "tracing" 3083 | version = "0.1.40" 3084 | source = "registry+https://github.com/rust-lang/crates.io-index" 3085 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3086 | dependencies = [ 3087 | "pin-project-lite", 3088 | "tracing-attributes", 3089 | "tracing-core", 3090 | ] 3091 | 3092 | [[package]] 3093 | name = "tracing-attributes" 3094 | version = "0.1.27" 3095 | source = "registry+https://github.com/rust-lang/crates.io-index" 3096 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3097 | dependencies = [ 3098 | "proc-macro2", 3099 | "quote", 3100 | "syn 2.0.39", 3101 | ] 3102 | 3103 | [[package]] 3104 | name = "tracing-core" 3105 | version = "0.1.32" 3106 | source = "registry+https://github.com/rust-lang/crates.io-index" 3107 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3108 | dependencies = [ 3109 | "once_cell", 3110 | "valuable", 3111 | ] 3112 | 3113 | [[package]] 3114 | name = "tracing-log" 3115 | version = "0.2.0" 3116 | source = "registry+https://github.com/rust-lang/crates.io-index" 3117 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3118 | dependencies = [ 3119 | "log", 3120 | "once_cell", 3121 | "tracing-core", 3122 | ] 3123 | 3124 | [[package]] 3125 | name = "tracing-subscriber" 3126 | version = "0.3.18" 3127 | source = "registry+https://github.com/rust-lang/crates.io-index" 3128 | checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 3129 | dependencies = [ 3130 | "matchers", 3131 | "nu-ansi-term", 3132 | "once_cell", 3133 | "regex", 3134 | "sharded-slab", 3135 | "smallvec", 3136 | "thread_local", 3137 | "tracing", 3138 | "tracing-core", 3139 | "tracing-log", 3140 | ] 3141 | 3142 | [[package]] 3143 | name = "treediff" 3144 | version = "4.0.2" 3145 | source = "registry+https://github.com/rust-lang/crates.io-index" 3146 | checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303" 3147 | dependencies = [ 3148 | "serde_json", 3149 | ] 3150 | 3151 | [[package]] 3152 | name = "typenum" 3153 | version = "1.17.0" 3154 | source = "registry+https://github.com/rust-lang/crates.io-index" 3155 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3156 | 3157 | [[package]] 3158 | name = "unicode-bidi" 3159 | version = "0.3.13" 3160 | source = "registry+https://github.com/rust-lang/crates.io-index" 3161 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3162 | 3163 | [[package]] 3164 | name = "unicode-ident" 3165 | version = "1.0.12" 3166 | source = "registry+https://github.com/rust-lang/crates.io-index" 3167 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3168 | 3169 | [[package]] 3170 | name = "unicode-normalization" 3171 | version = "0.1.22" 3172 | source = "registry+https://github.com/rust-lang/crates.io-index" 3173 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3174 | dependencies = [ 3175 | "tinyvec", 3176 | ] 3177 | 3178 | [[package]] 3179 | name = "unicode-segmentation" 3180 | version = "1.10.1" 3181 | source = "registry+https://github.com/rust-lang/crates.io-index" 3182 | checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3183 | 3184 | [[package]] 3185 | name = "url" 3186 | version = "2.4.1" 3187 | source = "registry+https://github.com/rust-lang/crates.io-index" 3188 | checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 3189 | dependencies = [ 3190 | "form_urlencoded", 3191 | "idna", 3192 | "percent-encoding", 3193 | "serde", 3194 | ] 3195 | 3196 | [[package]] 3197 | name = "utf-8" 3198 | version = "0.7.6" 3199 | source = "registry+https://github.com/rust-lang/crates.io-index" 3200 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3201 | 3202 | [[package]] 3203 | name = "uuid" 3204 | version = "1.5.0" 3205 | source = "registry+https://github.com/rust-lang/crates.io-index" 3206 | checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 3207 | dependencies = [ 3208 | "getrandom 0.2.11", 3209 | ] 3210 | 3211 | [[package]] 3212 | name = "valuable" 3213 | version = "0.1.0" 3214 | source = "registry+https://github.com/rust-lang/crates.io-index" 3215 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3216 | 3217 | [[package]] 3218 | name = "version-compare" 3219 | version = "0.0.11" 3220 | source = "registry+https://github.com/rust-lang/crates.io-index" 3221 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3222 | 3223 | [[package]] 3224 | name = "version-compare" 3225 | version = "0.1.1" 3226 | source = "registry+https://github.com/rust-lang/crates.io-index" 3227 | checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 3228 | 3229 | [[package]] 3230 | name = "version_check" 3231 | version = "0.9.4" 3232 | source = "registry+https://github.com/rust-lang/crates.io-index" 3233 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3234 | 3235 | [[package]] 3236 | name = "vswhom" 3237 | version = "0.1.0" 3238 | source = "registry+https://github.com/rust-lang/crates.io-index" 3239 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 3240 | dependencies = [ 3241 | "libc", 3242 | "vswhom-sys", 3243 | ] 3244 | 3245 | [[package]] 3246 | name = "vswhom-sys" 3247 | version = "0.1.2" 3248 | source = "registry+https://github.com/rust-lang/crates.io-index" 3249 | checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" 3250 | dependencies = [ 3251 | "cc", 3252 | "libc", 3253 | ] 3254 | 3255 | [[package]] 3256 | name = "walkdir" 3257 | version = "2.4.0" 3258 | source = "registry+https://github.com/rust-lang/crates.io-index" 3259 | checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3260 | dependencies = [ 3261 | "same-file", 3262 | "winapi-util", 3263 | ] 3264 | 3265 | [[package]] 3266 | name = "wasi" 3267 | version = "0.9.0+wasi-snapshot-preview1" 3268 | source = "registry+https://github.com/rust-lang/crates.io-index" 3269 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3270 | 3271 | [[package]] 3272 | name = "wasi" 3273 | version = "0.11.0+wasi-snapshot-preview1" 3274 | source = "registry+https://github.com/rust-lang/crates.io-index" 3275 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3276 | 3277 | [[package]] 3278 | name = "wasm-bindgen" 3279 | version = "0.2.88" 3280 | source = "registry+https://github.com/rust-lang/crates.io-index" 3281 | checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 3282 | dependencies = [ 3283 | "cfg-if", 3284 | "wasm-bindgen-macro", 3285 | ] 3286 | 3287 | [[package]] 3288 | name = "wasm-bindgen-backend" 3289 | version = "0.2.88" 3290 | source = "registry+https://github.com/rust-lang/crates.io-index" 3291 | checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 3292 | dependencies = [ 3293 | "bumpalo", 3294 | "log", 3295 | "once_cell", 3296 | "proc-macro2", 3297 | "quote", 3298 | "syn 2.0.39", 3299 | "wasm-bindgen-shared", 3300 | ] 3301 | 3302 | [[package]] 3303 | name = "wasm-bindgen-macro" 3304 | version = "0.2.88" 3305 | source = "registry+https://github.com/rust-lang/crates.io-index" 3306 | checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 3307 | dependencies = [ 3308 | "quote", 3309 | "wasm-bindgen-macro-support", 3310 | ] 3311 | 3312 | [[package]] 3313 | name = "wasm-bindgen-macro-support" 3314 | version = "0.2.88" 3315 | source = "registry+https://github.com/rust-lang/crates.io-index" 3316 | checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 3317 | dependencies = [ 3318 | "proc-macro2", 3319 | "quote", 3320 | "syn 2.0.39", 3321 | "wasm-bindgen-backend", 3322 | "wasm-bindgen-shared", 3323 | ] 3324 | 3325 | [[package]] 3326 | name = "wasm-bindgen-shared" 3327 | version = "0.2.88" 3328 | source = "registry+https://github.com/rust-lang/crates.io-index" 3329 | checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 3330 | 3331 | [[package]] 3332 | name = "webkit2gtk" 3333 | version = "0.18.2" 3334 | source = "registry+https://github.com/rust-lang/crates.io-index" 3335 | checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370" 3336 | dependencies = [ 3337 | "bitflags 1.3.2", 3338 | "cairo-rs", 3339 | "gdk", 3340 | "gdk-sys", 3341 | "gio", 3342 | "gio-sys", 3343 | "glib", 3344 | "glib-sys", 3345 | "gobject-sys", 3346 | "gtk", 3347 | "gtk-sys", 3348 | "javascriptcore-rs", 3349 | "libc", 3350 | "once_cell", 3351 | "soup2", 3352 | "webkit2gtk-sys", 3353 | ] 3354 | 3355 | [[package]] 3356 | name = "webkit2gtk-sys" 3357 | version = "0.18.0" 3358 | source = "registry+https://github.com/rust-lang/crates.io-index" 3359 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3360 | dependencies = [ 3361 | "atk-sys", 3362 | "bitflags 1.3.2", 3363 | "cairo-sys-rs", 3364 | "gdk-pixbuf-sys", 3365 | "gdk-sys", 3366 | "gio-sys", 3367 | "glib-sys", 3368 | "gobject-sys", 3369 | "gtk-sys", 3370 | "javascriptcore-rs-sys", 3371 | "libc", 3372 | "pango-sys", 3373 | "pkg-config", 3374 | "soup2-sys", 3375 | "system-deps 6.2.0", 3376 | ] 3377 | 3378 | [[package]] 3379 | name = "webview2-com" 3380 | version = "0.19.1" 3381 | source = "registry+https://github.com/rust-lang/crates.io-index" 3382 | checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178" 3383 | dependencies = [ 3384 | "webview2-com-macros", 3385 | "webview2-com-sys", 3386 | "windows 0.39.0", 3387 | "windows-implement", 3388 | ] 3389 | 3390 | [[package]] 3391 | name = "webview2-com-macros" 3392 | version = "0.6.0" 3393 | source = "registry+https://github.com/rust-lang/crates.io-index" 3394 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3395 | dependencies = [ 3396 | "proc-macro2", 3397 | "quote", 3398 | "syn 1.0.109", 3399 | ] 3400 | 3401 | [[package]] 3402 | name = "webview2-com-sys" 3403 | version = "0.19.0" 3404 | source = "registry+https://github.com/rust-lang/crates.io-index" 3405 | checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7" 3406 | dependencies = [ 3407 | "regex", 3408 | "serde", 3409 | "serde_json", 3410 | "thiserror", 3411 | "windows 0.39.0", 3412 | "windows-bindgen", 3413 | "windows-metadata", 3414 | ] 3415 | 3416 | [[package]] 3417 | name = "winapi" 3418 | version = "0.3.9" 3419 | source = "registry+https://github.com/rust-lang/crates.io-index" 3420 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3421 | dependencies = [ 3422 | "winapi-i686-pc-windows-gnu", 3423 | "winapi-x86_64-pc-windows-gnu", 3424 | ] 3425 | 3426 | [[package]] 3427 | name = "winapi-i686-pc-windows-gnu" 3428 | version = "0.4.0" 3429 | source = "registry+https://github.com/rust-lang/crates.io-index" 3430 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3431 | 3432 | [[package]] 3433 | name = "winapi-util" 3434 | version = "0.1.6" 3435 | source = "registry+https://github.com/rust-lang/crates.io-index" 3436 | checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 3437 | dependencies = [ 3438 | "winapi", 3439 | ] 3440 | 3441 | [[package]] 3442 | name = "winapi-x86_64-pc-windows-gnu" 3443 | version = "0.4.0" 3444 | source = "registry+https://github.com/rust-lang/crates.io-index" 3445 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3446 | 3447 | [[package]] 3448 | name = "window-shadows" 3449 | version = "0.2.2" 3450 | source = "registry+https://github.com/rust-lang/crates.io-index" 3451 | checksum = "67ff424735b1ac21293b0492b069394b0a189c8a463fb015a16dea7c2e221c08" 3452 | dependencies = [ 3453 | "cocoa 0.25.0", 3454 | "objc", 3455 | "raw-window-handle", 3456 | "windows-sys 0.48.0", 3457 | ] 3458 | 3459 | [[package]] 3460 | name = "windows" 3461 | version = "0.39.0" 3462 | source = "registry+https://github.com/rust-lang/crates.io-index" 3463 | checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3464 | dependencies = [ 3465 | "windows-implement", 3466 | "windows_aarch64_msvc 0.39.0", 3467 | "windows_i686_gnu 0.39.0", 3468 | "windows_i686_msvc 0.39.0", 3469 | "windows_x86_64_gnu 0.39.0", 3470 | "windows_x86_64_msvc 0.39.0", 3471 | ] 3472 | 3473 | [[package]] 3474 | name = "windows" 3475 | version = "0.48.0" 3476 | source = "registry+https://github.com/rust-lang/crates.io-index" 3477 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 3478 | dependencies = [ 3479 | "windows-targets", 3480 | ] 3481 | 3482 | [[package]] 3483 | name = "windows" 3484 | version = "0.51.1" 3485 | source = "registry+https://github.com/rust-lang/crates.io-index" 3486 | checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 3487 | dependencies = [ 3488 | "windows-core", 3489 | "windows-targets", 3490 | ] 3491 | 3492 | [[package]] 3493 | name = "windows-bindgen" 3494 | version = "0.39.0" 3495 | source = "registry+https://github.com/rust-lang/crates.io-index" 3496 | checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41" 3497 | dependencies = [ 3498 | "windows-metadata", 3499 | "windows-tokens", 3500 | ] 3501 | 3502 | [[package]] 3503 | name = "windows-core" 3504 | version = "0.51.1" 3505 | source = "registry+https://github.com/rust-lang/crates.io-index" 3506 | checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 3507 | dependencies = [ 3508 | "windows-targets", 3509 | ] 3510 | 3511 | [[package]] 3512 | name = "windows-implement" 3513 | version = "0.39.0" 3514 | source = "registry+https://github.com/rust-lang/crates.io-index" 3515 | checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7" 3516 | dependencies = [ 3517 | "syn 1.0.109", 3518 | "windows-tokens", 3519 | ] 3520 | 3521 | [[package]] 3522 | name = "windows-metadata" 3523 | version = "0.39.0" 3524 | source = "registry+https://github.com/rust-lang/crates.io-index" 3525 | checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 3526 | 3527 | [[package]] 3528 | name = "windows-sys" 3529 | version = "0.42.0" 3530 | source = "registry+https://github.com/rust-lang/crates.io-index" 3531 | checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3532 | dependencies = [ 3533 | "windows_aarch64_gnullvm 0.42.2", 3534 | "windows_aarch64_msvc 0.42.2", 3535 | "windows_i686_gnu 0.42.2", 3536 | "windows_i686_msvc 0.42.2", 3537 | "windows_x86_64_gnu 0.42.2", 3538 | "windows_x86_64_gnullvm 0.42.2", 3539 | "windows_x86_64_msvc 0.42.2", 3540 | ] 3541 | 3542 | [[package]] 3543 | name = "windows-sys" 3544 | version = "0.48.0" 3545 | source = "registry+https://github.com/rust-lang/crates.io-index" 3546 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3547 | dependencies = [ 3548 | "windows-targets", 3549 | ] 3550 | 3551 | [[package]] 3552 | name = "windows-targets" 3553 | version = "0.48.5" 3554 | source = "registry+https://github.com/rust-lang/crates.io-index" 3555 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3556 | dependencies = [ 3557 | "windows_aarch64_gnullvm 0.48.5", 3558 | "windows_aarch64_msvc 0.48.5", 3559 | "windows_i686_gnu 0.48.5", 3560 | "windows_i686_msvc 0.48.5", 3561 | "windows_x86_64_gnu 0.48.5", 3562 | "windows_x86_64_gnullvm 0.48.5", 3563 | "windows_x86_64_msvc 0.48.5", 3564 | ] 3565 | 3566 | [[package]] 3567 | name = "windows-tokens" 3568 | version = "0.39.0" 3569 | source = "registry+https://github.com/rust-lang/crates.io-index" 3570 | checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 3571 | 3572 | [[package]] 3573 | name = "windows_aarch64_gnullvm" 3574 | version = "0.42.2" 3575 | source = "registry+https://github.com/rust-lang/crates.io-index" 3576 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3577 | 3578 | [[package]] 3579 | name = "windows_aarch64_gnullvm" 3580 | version = "0.48.5" 3581 | source = "registry+https://github.com/rust-lang/crates.io-index" 3582 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3583 | 3584 | [[package]] 3585 | name = "windows_aarch64_msvc" 3586 | version = "0.39.0" 3587 | source = "registry+https://github.com/rust-lang/crates.io-index" 3588 | checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3589 | 3590 | [[package]] 3591 | name = "windows_aarch64_msvc" 3592 | version = "0.42.2" 3593 | source = "registry+https://github.com/rust-lang/crates.io-index" 3594 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3595 | 3596 | [[package]] 3597 | name = "windows_aarch64_msvc" 3598 | version = "0.48.5" 3599 | source = "registry+https://github.com/rust-lang/crates.io-index" 3600 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3601 | 3602 | [[package]] 3603 | name = "windows_i686_gnu" 3604 | version = "0.39.0" 3605 | source = "registry+https://github.com/rust-lang/crates.io-index" 3606 | checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3607 | 3608 | [[package]] 3609 | name = "windows_i686_gnu" 3610 | version = "0.42.2" 3611 | source = "registry+https://github.com/rust-lang/crates.io-index" 3612 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3613 | 3614 | [[package]] 3615 | name = "windows_i686_gnu" 3616 | version = "0.48.5" 3617 | source = "registry+https://github.com/rust-lang/crates.io-index" 3618 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3619 | 3620 | [[package]] 3621 | name = "windows_i686_msvc" 3622 | version = "0.39.0" 3623 | source = "registry+https://github.com/rust-lang/crates.io-index" 3624 | checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3625 | 3626 | [[package]] 3627 | name = "windows_i686_msvc" 3628 | version = "0.42.2" 3629 | source = "registry+https://github.com/rust-lang/crates.io-index" 3630 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3631 | 3632 | [[package]] 3633 | name = "windows_i686_msvc" 3634 | version = "0.48.5" 3635 | source = "registry+https://github.com/rust-lang/crates.io-index" 3636 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3637 | 3638 | [[package]] 3639 | name = "windows_x86_64_gnu" 3640 | version = "0.39.0" 3641 | source = "registry+https://github.com/rust-lang/crates.io-index" 3642 | checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3643 | 3644 | [[package]] 3645 | name = "windows_x86_64_gnu" 3646 | version = "0.42.2" 3647 | source = "registry+https://github.com/rust-lang/crates.io-index" 3648 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3649 | 3650 | [[package]] 3651 | name = "windows_x86_64_gnu" 3652 | version = "0.48.5" 3653 | source = "registry+https://github.com/rust-lang/crates.io-index" 3654 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3655 | 3656 | [[package]] 3657 | name = "windows_x86_64_gnullvm" 3658 | version = "0.42.2" 3659 | source = "registry+https://github.com/rust-lang/crates.io-index" 3660 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3661 | 3662 | [[package]] 3663 | name = "windows_x86_64_gnullvm" 3664 | version = "0.48.5" 3665 | source = "registry+https://github.com/rust-lang/crates.io-index" 3666 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3667 | 3668 | [[package]] 3669 | name = "windows_x86_64_msvc" 3670 | version = "0.39.0" 3671 | source = "registry+https://github.com/rust-lang/crates.io-index" 3672 | checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3673 | 3674 | [[package]] 3675 | name = "windows_x86_64_msvc" 3676 | version = "0.42.2" 3677 | source = "registry+https://github.com/rust-lang/crates.io-index" 3678 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3679 | 3680 | [[package]] 3681 | name = "windows_x86_64_msvc" 3682 | version = "0.48.5" 3683 | source = "registry+https://github.com/rust-lang/crates.io-index" 3684 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3685 | 3686 | [[package]] 3687 | name = "winnow" 3688 | version = "0.5.19" 3689 | source = "registry+https://github.com/rust-lang/crates.io-index" 3690 | checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 3691 | dependencies = [ 3692 | "memchr", 3693 | ] 3694 | 3695 | [[package]] 3696 | name = "winreg" 3697 | version = "0.51.0" 3698 | source = "registry+https://github.com/rust-lang/crates.io-index" 3699 | checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" 3700 | dependencies = [ 3701 | "cfg-if", 3702 | "windows-sys 0.48.0", 3703 | ] 3704 | 3705 | [[package]] 3706 | name = "wry" 3707 | version = "0.24.4" 3708 | source = "registry+https://github.com/rust-lang/crates.io-index" 3709 | checksum = "88ef04bdad49eba2e01f06e53688c8413bd6a87b0bc14b72284465cf96e3578e" 3710 | dependencies = [ 3711 | "base64 0.13.1", 3712 | "block", 3713 | "cocoa 0.24.1", 3714 | "core-graphics 0.22.3", 3715 | "crossbeam-channel", 3716 | "dunce", 3717 | "gdk", 3718 | "gio", 3719 | "glib", 3720 | "gtk", 3721 | "html5ever 0.25.2", 3722 | "http", 3723 | "kuchiki", 3724 | "libc", 3725 | "log", 3726 | "objc", 3727 | "objc_id", 3728 | "once_cell", 3729 | "serde", 3730 | "serde_json", 3731 | "sha2", 3732 | "soup2", 3733 | "tao", 3734 | "thiserror", 3735 | "url", 3736 | "webkit2gtk", 3737 | "webkit2gtk-sys", 3738 | "webview2-com", 3739 | "windows 0.39.0", 3740 | "windows-implement", 3741 | ] 3742 | 3743 | [[package]] 3744 | name = "x11" 3745 | version = "2.21.0" 3746 | source = "registry+https://github.com/rust-lang/crates.io-index" 3747 | checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 3748 | dependencies = [ 3749 | "libc", 3750 | "pkg-config", 3751 | ] 3752 | 3753 | [[package]] 3754 | name = "x11-dl" 3755 | version = "2.21.0" 3756 | source = "registry+https://github.com/rust-lang/crates.io-index" 3757 | checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 3758 | dependencies = [ 3759 | "libc", 3760 | "once_cell", 3761 | "pkg-config", 3762 | ] 3763 | 3764 | [[package]] 3765 | name = "xattr" 3766 | version = "1.0.1" 3767 | source = "registry+https://github.com/rust-lang/crates.io-index" 3768 | checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 3769 | dependencies = [ 3770 | "libc", 3771 | ] 3772 | --------------------------------------------------------------------------------