├── src ├── index.css ├── setupTests.js ├── App.test.js ├── index.js ├── App.js ├── logo.svg ├── serviceWorker.js └── App.css ├── src-tauri ├── src │ ├── build.rs │ └── main.rs ├── icons │ ├── icon.ico │ ├── icon.png │ ├── 128x128.png │ ├── 32x32.png │ ├── icon.icns │ ├── StoreLogo.png │ ├── 128x128@2x.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ └── Square89x89Logo.png ├── .gitignore ├── rustfmt.toml ├── Cargo.toml ├── tauri.conf.json └── Cargo.lock ├── public ├── favicon.ico ├── logo192.png ├── logo512.png ├── robots.txt ├── manifest.json └── index.html ├── .gitignore ├── LICENSE ├── README.md └── package.json /src/index.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src-tauri/src/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | WixTools 5 | -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdtanrikulu/react-tauri/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom/extend-expect'; 6 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | fn main() { 7 | tauri::Builder::default() 8 | .run(tauri::generate_context!()) 9 | .expect("error while running tauri application"); 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | /node_modules 3 | /.pnp 4 | .pnp.js 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from '@testing-library/react'; 3 | import App from './App'; 4 | 5 | test('renders learn react link', () => { 6 | const { getByText } = render(); 7 | const linkElement = getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); 10 | -------------------------------------------------------------------------------- /src-tauri/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 2 | hard_tabs = false 3 | tab_spaces = 2 4 | newline_style = "Auto" 5 | use_small_heuristics = "Default" 6 | reorder_imports = true 7 | reorder_modules = true 8 | remove_nested_parens = true 9 | edition = "2018" 10 | merge_derives = true 11 | use_try_shorthand = false 12 | use_field_init_shorthand = false 13 | force_explicit_abi = true 14 | imports_granularity = "Crate" 15 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import * as serviceWorker from './serviceWorker'; 6 | 7 | ReactDOM.render(, document.getElementById('root')); 8 | 9 | // If you want your app to work offline and load faster, you can change 10 | // unregister() to register() below. Note this comes with some pitfalls. 11 | // Learn more about service workers: https://bit.ly/CRA-PWA 12 | serviceWorker.unregister(); 13 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "react-tauri" 3 | version = "0.1.0" 4 | description = "React Tauri Cross Platform App" 5 | license = "" 6 | repository = "" 7 | default-run = "react-tauri" 8 | edition = "2018" 9 | build = "src/build.rs" 10 | 11 | [build-dependencies] 12 | tauri-build = { version = "1.0.0-beta.3" } 13 | 14 | [dependencies] 15 | serde_json = "1.0" 16 | serde = { version = "1.0", features = [ "derive" ] } 17 | 18 | [dependencies.tauri] 19 | version = "1.0.0-beta" 20 | features = ["api-all"] 21 | 22 | [features] 23 | default = [ "custom-protocol" ] 24 | custom-protocol = [ "tauri/custom-protocol" ] 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Muhammed Tanrıkulu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |
4 |

5 | 6 | ## React Tauri 7 | 8 | It's an example of Tauri based Cross-Platform React Application. Way smaller than Electron. It uses system web engines to render, backend is based on Rust. 9 | 10 | ## Prerequests to run source 11 | 12 | Install Rustc, cargo, nodejs, yarn as in following guides 13 | 14 | - Windows: https://github.com/tauri-apps/tauri/wiki/04.-MS-Windows-Setup 15 | - MacOS: https://github.com/tauri-apps/tauri/wiki/03.-MacOS-Setup 16 | - Linux: https://github.com/tauri-apps/tauri/wiki/02.-Linux-Setup 17 | 18 | Install Tauri-cli with `npm install tauri -g` or `yarn global tauri` 19 | 20 | ## Running 21 | 22 | In main folder run `npm i` or `yarn` 23 | After installation is done run `npm start` 24 | 25 | Then in another terminal tab/window run `tauri dev` 26 | 27 | ## Demo 28 | https://github.com/mdtanrikulu/react-tauri/releases/tag/demo 29 | 30 | ## Preview 31 | ![react-tauri](https://user-images.githubusercontent.com/2774845/75100387-44d9c300-55cd-11ea-90fa-83a516183531.gif) 32 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-tauri", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@tauri-apps/api": "^1.0.0-beta.4", 7 | "@testing-library/jest-dom": "^4.2.4", 8 | "@testing-library/react": "^9.3.2", 9 | "@testing-library/user-event": "^7.1.2", 10 | "lodash-es": "^4.17.15", 11 | "react": "^16.12.0", 12 | "react-dom": "^16.12.0", 13 | "react-scripts": "3.4.0", 14 | "react-spring": "^8.0.27", 15 | "react-with-gesture": "^4.0.8" 16 | }, 17 | "scripts": { 18 | "start": "react-scripts start", 19 | "build": "react-scripts build", 20 | "bundle": "react-scripts build && tauri build", 21 | "test": "react-scripts test", 22 | "eject": "react-scripts eject" 23 | }, 24 | "eslintConfig": { 25 | "extends": "react-app" 26 | }, 27 | "browserslist": { 28 | "production": [ 29 | ">0.2%", 30 | "not dead", 31 | "not op_mini all" 32 | ], 33 | "development": [ 34 | "last 1 chrome version", 35 | "last 1 firefox version", 36 | "last 1 safari version" 37 | ] 38 | }, 39 | "devDependencies": { 40 | "@tauri-apps/cli": "^1.0.0-beta.5" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react'; 2 | import clamp from 'lodash-es/clamp'; 3 | import { useSpring, animated } from 'react-spring'; 4 | import { useGesture } from 'react-with-gesture'; 5 | 6 | import './App.css'; 7 | 8 | function App() { 9 | const [clicked, setClick] = useState(false); 10 | const [{ xy }, set] = useSpring(() => ({ xy: [0, 0] })); 11 | const bind = useGesture(({ down, delta, velocity }) => { 12 | velocity = clamp(velocity, 1, 8); 13 | set({ 14 | xy: down ? delta : [0, 0], 15 | config: { mass: velocity, tension: 500 * velocity, friction: 50 } 16 | }); 17 | }); 18 | 19 | const _onClick = _ => setClick(!clicked); 20 | 21 | return ( 22 |
23 |
24 |
25 |
26 | `translate3d(${x}px,${y}px,0)` 31 | ) 32 | }}> 33 | 34 | {!clicked ? 'React-Tauri' : 'Hellö!'} 35 | 36 | 37 |
38 |
39 |
40 |
41 |
42 | ); 43 | } 44 | 45 | export default App; 46 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "package": { 3 | "productName": "react-tauri", 4 | "version": "0.1.0" 5 | }, 6 | "build": { 7 | "distDir": "../build", 8 | "devPath": "http://localhost:3000", 9 | "beforeDevCommand": "", 10 | "beforeBuildCommand": "" 11 | }, 12 | "tauri": { 13 | "bundle": { 14 | "active": true, 15 | "targets": "all", 16 | "identifier": "com.tauri.dev", 17 | "icon": [ 18 | "icons/32x32.png", 19 | "icons/128x128.png", 20 | "icons/128x128@2x.png", 21 | "icons/icon.icns", 22 | "icons/icon.ico" 23 | ], 24 | "resources": [], 25 | "externalBin": [], 26 | "copyright": "", 27 | "category": "DeveloperTool", 28 | "shortDescription": "", 29 | "longDescription": "", 30 | "deb": { 31 | "depends": [], 32 | "useBootstrapper": false 33 | }, 34 | "macOS": { 35 | "frameworks": [], 36 | "minimumSystemVersion": "", 37 | "useBootstrapper": false, 38 | "exceptionDomain": "", 39 | "signingIdentity": null, 40 | "entitlements": null 41 | }, 42 | "windows": { 43 | "certificateThumbprint": null, 44 | "digestAlgorithm": "sha256", 45 | "timestampUrl": "" 46 | } 47 | }, 48 | "updater": { 49 | "active": false 50 | }, 51 | "allowlist": { 52 | "all": true 53 | }, 54 | "windows": [ 55 | { 56 | "title": "React Tauri", 57 | "width": 800, 58 | "height": 600, 59 | "resizable": true, 60 | "fullscreen": false 61 | } 62 | ], 63 | "security": { 64 | "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" 65 | } 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read https://bit.ly/CRA-PWA 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.0/8 are considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | if (installingWorker == null) { 64 | return; 65 | } 66 | installingWorker.onstatechange = () => { 67 | if (installingWorker.state === 'installed') { 68 | if (navigator.serviceWorker.controller) { 69 | // At this point, the updated precached content has been fetched, 70 | // but the previous service worker will still serve the older 71 | // content until all client tabs are closed. 72 | console.log( 73 | 'New content is available and will be used when all ' + 74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75 | ); 76 | 77 | // Execute callback 78 | if (config && config.onUpdate) { 79 | config.onUpdate(registration); 80 | } 81 | } else { 82 | // At this point, everything has been precached. 83 | // It's the perfect time to display a 84 | // "Content is cached for offline use." message. 85 | console.log('Content is cached for offline use.'); 86 | 87 | // Execute callback 88 | if (config && config.onSuccess) { 89 | config.onSuccess(registration); 90 | } 91 | } 92 | } 93 | }; 94 | }; 95 | }) 96 | .catch(error => { 97 | console.error('Error during service worker registration:', error); 98 | }); 99 | } 100 | 101 | function checkValidServiceWorker(swUrl, config) { 102 | // Check if the service worker can be found. If it can't reload the page. 103 | fetch(swUrl, { 104 | headers: { 'Service-Worker': 'script' } 105 | }) 106 | .then(response => { 107 | // Ensure service worker exists, and that we really are getting a JS file. 108 | const contentType = response.headers.get('content-type'); 109 | if ( 110 | response.status === 404 || 111 | (contentType != null && contentType.indexOf('javascript') === -1) 112 | ) { 113 | // No service worker found. Probably a different app. Reload the page. 114 | navigator.serviceWorker.ready.then(registration => { 115 | registration.unregister().then(() => { 116 | window.location.reload(); 117 | }); 118 | }); 119 | } else { 120 | // Service worker found. Proceed as normal. 121 | registerValidSW(swUrl, config); 122 | } 123 | }) 124 | .catch(() => { 125 | console.log( 126 | 'No internet connection found. App is running in offline mode.' 127 | ); 128 | }); 129 | } 130 | 131 | export function unregister() { 132 | if ('serviceWorker' in navigator) { 133 | navigator.serviceWorker.ready 134 | .then(registration => { 135 | registration.unregister(); 136 | }) 137 | .catch(error => { 138 | console.error(error.message); 139 | }); 140 | } 141 | } 142 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | background-color: #6223d2; 4 | height: 100vh; 5 | width: 100vw; 6 | position: relative; 7 | overflow: hidden; 8 | -webkit-touch-callout: none; /* iOS Safari */ 9 | -webkit-user-select: none; /* Safari */ 10 | -khtml-user-select: none; /* Konqueror HTML */ 11 | -moz-user-select: none; /* Firefox */ 12 | -ms-user-select: none; /* Internet Explorer/Edge */ 13 | user-select: none; 14 | font-family: Tahoma, Geneva, serif; 15 | } 16 | .overlay { 17 | width: 100vw; 18 | height: 100vh; 19 | position: absolute; 20 | z-index: 2; 21 | background: radial-gradient( 22 | circle, 23 | transparent 0%, 24 | rgba(98, 35, 210, 0.85) 100% 25 | ); 26 | } 27 | .sticker { 28 | position: absolute; 29 | height: 100vh; 30 | width: 100vw; 31 | background: transparent; 32 | display: flex; 33 | justify-content: center; 34 | align-items: center; 35 | font-size: 60pt; 36 | color: white; 37 | z-index: 2; 38 | } 39 | .sticker > div { 40 | background: rgba(120, 120, 120, 0.9); 41 | padding: 0 20px; 42 | border-radius: 7px; 43 | cursor: pointer; 44 | } 45 | .sticker > div:active { 46 | cursor: -webkit-grabbing; 47 | } 48 | .container { 49 | display: grid; 50 | grid-template-columns: repeat(10, 200px); 51 | grid-template-rows: repeat(6, 230px); 52 | transform: translate(-3%, -4%); 53 | will-change: transform; 54 | } 55 | .shape { 56 | width: 200px; 57 | height: 230px; 58 | -webkit-clip-path: polygon( 59 | 50% 0%, 60 | 100% 25%, 61 | 100% 75%, 62 | 50% 100%, 63 | 0 75%, 64 | 0 25% 65 | ); 66 | clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); 67 | } 68 | .shape:nth-child(11) { 69 | transform: translate(-50%, -25%); 70 | } 71 | .shape:nth-child(12) { 72 | transform: translate(-50%, -25%); 73 | } 74 | .shape:nth-child(13) { 75 | transform: translate(-50%, -25%); 76 | } 77 | .shape:nth-child(14) { 78 | transform: translate(-50%, -25%); 79 | } 80 | .shape:nth-child(15) { 81 | transform: translate(-50%, -25%); 82 | } 83 | .shape:nth-child(16) { 84 | transform: translate(-50%, -25%); 85 | } 86 | .shape:nth-child(17) { 87 | transform: translate(-50%, -25%); 88 | } 89 | .shape:nth-child(18) { 90 | transform: translate(-50%, -25%); 91 | } 92 | .shape:nth-child(19) { 93 | transform: translate(-50%, -25%); 94 | } 95 | .shape:nth-child(20) { 96 | transform: translate(-50%, -25%); 97 | } 98 | .shape:nth-child(21) { 99 | transform: translate(-50%, -25%); 100 | } 101 | .shape:nth-child(21) { 102 | transform: translate(0%, -50%); 103 | } 104 | .shape:nth-child(22) { 105 | transform: translate(-50%, -25%); 106 | } 107 | .shape:nth-child(22) { 108 | transform: translate(0%, -50%); 109 | } 110 | .shape:nth-child(23) { 111 | transform: translate(-50%, -25%); 112 | } 113 | .shape:nth-child(23) { 114 | transform: translate(0%, -50%); 115 | } 116 | .shape:nth-child(24) { 117 | transform: translate(-50%, -25%); 118 | } 119 | .shape:nth-child(24) { 120 | transform: translate(0%, -50%); 121 | } 122 | .shape:nth-child(25) { 123 | transform: translate(-50%, -25%); 124 | } 125 | .shape:nth-child(25) { 126 | transform: translate(0%, -50%); 127 | } 128 | .shape:nth-child(26) { 129 | transform: translate(-50%, -25%); 130 | } 131 | .shape:nth-child(26) { 132 | transform: translate(0%, -50%); 133 | } 134 | .shape:nth-child(27) { 135 | transform: translate(-50%, -25%); 136 | } 137 | .shape:nth-child(27) { 138 | transform: translate(0%, -50%); 139 | } 140 | .shape:nth-child(28) { 141 | transform: translate(-50%, -25%); 142 | } 143 | .shape:nth-child(28) { 144 | transform: translate(0%, -50%); 145 | } 146 | .shape:nth-child(29) { 147 | transform: translate(-50%, -25%); 148 | } 149 | .shape:nth-child(29) { 150 | transform: translate(0%, -50%); 151 | } 152 | .shape:nth-child(30) { 153 | transform: translate(-50%, -25%); 154 | } 155 | .shape:nth-child(30) { 156 | transform: translate(0%, -50%); 157 | } 158 | .shape:nth-child(31) { 159 | transform: translate(-50%, -25%); 160 | } 161 | .shape:nth-child(31) { 162 | transform: translate(0%, -50%); 163 | } 164 | .shape:nth-child(31) { 165 | transform: translate(-50%, -75%); 166 | } 167 | .shape:nth-child(32) { 168 | transform: translate(-50%, -25%); 169 | } 170 | .shape:nth-child(32) { 171 | transform: translate(0%, -50%); 172 | } 173 | .shape:nth-child(32) { 174 | transform: translate(-50%, -75%); 175 | } 176 | .shape:nth-child(33) { 177 | transform: translate(-50%, -25%); 178 | } 179 | .shape:nth-child(33) { 180 | transform: translate(0%, -50%); 181 | } 182 | .shape:nth-child(33) { 183 | transform: translate(-50%, -75%); 184 | } 185 | .shape:nth-child(34) { 186 | transform: translate(-50%, -25%); 187 | } 188 | .shape:nth-child(34) { 189 | transform: translate(0%, -50%); 190 | } 191 | .shape:nth-child(34) { 192 | transform: translate(-50%, -75%); 193 | } 194 | .shape:nth-child(35) { 195 | transform: translate(-50%, -25%); 196 | } 197 | .shape:nth-child(35) { 198 | transform: translate(0%, -50%); 199 | } 200 | .shape:nth-child(35) { 201 | transform: translate(-50%, -75%); 202 | } 203 | .shape:nth-child(36) { 204 | transform: translate(-50%, -25%); 205 | } 206 | .shape:nth-child(36) { 207 | transform: translate(0%, -50%); 208 | } 209 | .shape:nth-child(36) { 210 | transform: translate(-50%, -75%); 211 | } 212 | .shape:nth-child(37) { 213 | transform: translate(-50%, -25%); 214 | } 215 | .shape:nth-child(37) { 216 | transform: translate(0%, -50%); 217 | } 218 | .shape:nth-child(37) { 219 | transform: translate(-50%, -75%); 220 | } 221 | .shape:nth-child(38) { 222 | transform: translate(-50%, -25%); 223 | } 224 | .shape:nth-child(38) { 225 | transform: translate(0%, -50%); 226 | } 227 | .shape:nth-child(38) { 228 | transform: translate(-50%, -75%); 229 | } 230 | .shape:nth-child(39) { 231 | transform: translate(-50%, -25%); 232 | } 233 | .shape:nth-child(39) { 234 | transform: translate(0%, -50%); 235 | } 236 | .shape:nth-child(39) { 237 | transform: translate(-50%, -75%); 238 | } 239 | .shape:nth-child(40) { 240 | transform: translate(-50%, -25%); 241 | } 242 | .shape:nth-child(40) { 243 | transform: translate(0%, -50%); 244 | } 245 | .shape:nth-child(40) { 246 | transform: translate(-50%, -75%); 247 | } 248 | .shape:nth-child(41) { 249 | transform: translate(-50%, -25%); 250 | } 251 | .shape:nth-child(41) { 252 | transform: translate(0%, -50%); 253 | } 254 | .shape:nth-child(41) { 255 | transform: translate(-50%, -75%); 256 | } 257 | .shape:nth-child(41) { 258 | transform: translate(0%, -100%); 259 | } 260 | .shape:nth-child(42) { 261 | transform: translate(-50%, -25%); 262 | } 263 | .shape:nth-child(42) { 264 | transform: translate(0%, -50%); 265 | } 266 | .shape:nth-child(42) { 267 | transform: translate(-50%, -75%); 268 | } 269 | .shape:nth-child(42) { 270 | transform: translate(0%, -100%); 271 | } 272 | .shape:nth-child(43) { 273 | transform: translate(-50%, -25%); 274 | } 275 | .shape:nth-child(43) { 276 | transform: translate(0%, -50%); 277 | } 278 | .shape:nth-child(43) { 279 | transform: translate(-50%, -75%); 280 | } 281 | .shape:nth-child(43) { 282 | transform: translate(0%, -100%); 283 | } 284 | .shape:nth-child(44) { 285 | transform: translate(-50%, -25%); 286 | } 287 | .shape:nth-child(44) { 288 | transform: translate(0%, -50%); 289 | } 290 | .shape:nth-child(44) { 291 | transform: translate(-50%, -75%); 292 | } 293 | .shape:nth-child(44) { 294 | transform: translate(0%, -100%); 295 | } 296 | .shape:nth-child(45) { 297 | transform: translate(-50%, -25%); 298 | } 299 | .shape:nth-child(45) { 300 | transform: translate(0%, -50%); 301 | } 302 | .shape:nth-child(45) { 303 | transform: translate(-50%, -75%); 304 | } 305 | .shape:nth-child(45) { 306 | transform: translate(0%, -100%); 307 | } 308 | .shape:nth-child(46) { 309 | transform: translate(-50%, -25%); 310 | } 311 | .shape:nth-child(46) { 312 | transform: translate(0%, -50%); 313 | } 314 | .shape:nth-child(46) { 315 | transform: translate(-50%, -75%); 316 | } 317 | .shape:nth-child(46) { 318 | transform: translate(0%, -100%); 319 | } 320 | .shape:nth-child(47) { 321 | transform: translate(-50%, -25%); 322 | } 323 | .shape:nth-child(47) { 324 | transform: translate(0%, -50%); 325 | } 326 | .shape:nth-child(47) { 327 | transform: translate(-50%, -75%); 328 | } 329 | .shape:nth-child(47) { 330 | transform: translate(0%, -100%); 331 | } 332 | .shape:nth-child(48) { 333 | transform: translate(-50%, -25%); 334 | } 335 | .shape:nth-child(48) { 336 | transform: translate(0%, -50%); 337 | } 338 | .shape:nth-child(48) { 339 | transform: translate(-50%, -75%); 340 | } 341 | .shape:nth-child(48) { 342 | transform: translate(0%, -100%); 343 | } 344 | .shape:nth-child(49) { 345 | transform: translate(-50%, -25%); 346 | } 347 | .shape:nth-child(49) { 348 | transform: translate(0%, -50%); 349 | } 350 | .shape:nth-child(49) { 351 | transform: translate(-50%, -75%); 352 | } 353 | .shape:nth-child(49) { 354 | transform: translate(0%, -100%); 355 | } 356 | .shape:nth-child(50) { 357 | transform: translate(-50%, -25%); 358 | } 359 | .shape:nth-child(50) { 360 | transform: translate(0%, -50%); 361 | } 362 | .shape:nth-child(50) { 363 | transform: translate(-50%, -75%); 364 | } 365 | .shape:nth-child(50) { 366 | transform: translate(0%, -100%); 367 | } 368 | .shape:nth-child(51) { 369 | transform: translate(-50%, -25%); 370 | } 371 | .shape:nth-child(51) { 372 | transform: translate(0%, -50%); 373 | } 374 | .shape:nth-child(51) { 375 | transform: translate(-50%, -75%); 376 | } 377 | .shape:nth-child(51) { 378 | transform: translate(0%, -100%); 379 | } 380 | .shape:nth-child(51) { 381 | transform: translate(-50%, -125%); 382 | } 383 | .shape:nth-child(52) { 384 | transform: translate(-50%, -25%); 385 | } 386 | .shape:nth-child(52) { 387 | transform: translate(0%, -50%); 388 | } 389 | .shape:nth-child(52) { 390 | transform: translate(-50%, -75%); 391 | } 392 | .shape:nth-child(52) { 393 | transform: translate(0%, -100%); 394 | } 395 | .shape:nth-child(52) { 396 | transform: translate(-50%, -125%); 397 | } 398 | .shape:nth-child(53) { 399 | transform: translate(-50%, -25%); 400 | } 401 | .shape:nth-child(53) { 402 | transform: translate(0%, -50%); 403 | } 404 | .shape:nth-child(53) { 405 | transform: translate(-50%, -75%); 406 | } 407 | .shape:nth-child(53) { 408 | transform: translate(0%, -100%); 409 | } 410 | .shape:nth-child(53) { 411 | transform: translate(-50%, -125%); 412 | } 413 | .shape:nth-child(54) { 414 | transform: translate(-50%, -25%); 415 | } 416 | .shape:nth-child(54) { 417 | transform: translate(0%, -50%); 418 | } 419 | .shape:nth-child(54) { 420 | transform: translate(-50%, -75%); 421 | } 422 | .shape:nth-child(54) { 423 | transform: translate(0%, -100%); 424 | } 425 | .shape:nth-child(54) { 426 | transform: translate(-50%, -125%); 427 | } 428 | .shape:nth-child(55) { 429 | transform: translate(-50%, -25%); 430 | } 431 | .shape:nth-child(55) { 432 | transform: translate(0%, -50%); 433 | } 434 | .shape:nth-child(55) { 435 | transform: translate(-50%, -75%); 436 | } 437 | .shape:nth-child(55) { 438 | transform: translate(0%, -100%); 439 | } 440 | .shape:nth-child(55) { 441 | transform: translate(-50%, -125%); 442 | } 443 | .shape:nth-child(56) { 444 | transform: translate(-50%, -25%); 445 | } 446 | .shape:nth-child(56) { 447 | transform: translate(0%, -50%); 448 | } 449 | .shape:nth-child(56) { 450 | transform: translate(-50%, -75%); 451 | } 452 | .shape:nth-child(56) { 453 | transform: translate(0%, -100%); 454 | } 455 | .shape:nth-child(56) { 456 | transform: translate(-50%, -125%); 457 | } 458 | .shape:nth-child(57) { 459 | transform: translate(-50%, -25%); 460 | } 461 | .shape:nth-child(57) { 462 | transform: translate(0%, -50%); 463 | } 464 | .shape:nth-child(57) { 465 | transform: translate(-50%, -75%); 466 | } 467 | .shape:nth-child(57) { 468 | transform: translate(0%, -100%); 469 | } 470 | .shape:nth-child(57) { 471 | transform: translate(-50%, -125%); 472 | } 473 | .shape:nth-child(58) { 474 | transform: translate(-50%, -25%); 475 | } 476 | .shape:nth-child(58) { 477 | transform: translate(0%, -50%); 478 | } 479 | .shape:nth-child(58) { 480 | transform: translate(-50%, -75%); 481 | } 482 | .shape:nth-child(58) { 483 | transform: translate(0%, -100%); 484 | } 485 | .shape:nth-child(58) { 486 | transform: translate(-50%, -125%); 487 | } 488 | .shape:nth-child(59) { 489 | transform: translate(-50%, -25%); 490 | } 491 | .shape:nth-child(59) { 492 | transform: translate(0%, -50%); 493 | } 494 | .shape:nth-child(59) { 495 | transform: translate(-50%, -75%); 496 | } 497 | .shape:nth-child(59) { 498 | transform: translate(0%, -100%); 499 | } 500 | .shape:nth-child(59) { 501 | transform: translate(-50%, -125%); 502 | } 503 | .shape:nth-child(60) { 504 | transform: translate(-50%, -25%); 505 | } 506 | .shape:nth-child(60) { 507 | transform: translate(0%, -50%); 508 | } 509 | .shape:nth-child(60) { 510 | transform: translate(-50%, -75%); 511 | } 512 | .shape:nth-child(60) { 513 | transform: translate(0%, -100%); 514 | } 515 | .shape:nth-child(60) { 516 | transform: translate(-50%, -125%); 517 | } 518 | -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "adler" 7 | version = "1.0.2" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 | 11 | [[package]] 12 | name = "adler32" 13 | version = "1.2.0" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 16 | 17 | [[package]] 18 | name = "aho-corasick" 19 | version = "0.7.18" 20 | source = "registry+https://github.com/rust-lang/crates.io-index" 21 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 22 | dependencies = [ 23 | "memchr", 24 | ] 25 | 26 | [[package]] 27 | name = "anyhow" 28 | version = "1.0.42" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486" 31 | 32 | [[package]] 33 | name = "arrayref" 34 | version = "0.3.6" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 37 | 38 | [[package]] 39 | name = "arrayvec" 40 | version = "0.5.2" 41 | source = "registry+https://github.com/rust-lang/crates.io-index" 42 | checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 43 | 44 | [[package]] 45 | name = "async-io" 46 | version = "1.6.0" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b" 49 | dependencies = [ 50 | "concurrent-queue", 51 | "futures-lite", 52 | "libc", 53 | "log", 54 | "once_cell", 55 | "parking", 56 | "polling", 57 | "slab", 58 | "socket2", 59 | "waker-fn", 60 | "winapi", 61 | ] 62 | 63 | [[package]] 64 | name = "atk" 65 | version = "0.9.0" 66 | source = "registry+https://github.com/rust-lang/crates.io-index" 67 | checksum = "812b4911e210bd51b24596244523c856ca749e6223c50a7fbbba3f89ee37c426" 68 | dependencies = [ 69 | "atk-sys", 70 | "bitflags 1.2.1", 71 | "glib", 72 | "glib-sys", 73 | "gobject-sys", 74 | "libc", 75 | ] 76 | 77 | [[package]] 78 | name = "atk-sys" 79 | version = "0.10.0" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | checksum = "f530e4af131d94cc4fa15c5c9d0348f0ef28bac64ba660b6b2a1cf2605dedfce" 82 | dependencies = [ 83 | "glib-sys", 84 | "gobject-sys", 85 | "libc", 86 | "system-deps", 87 | ] 88 | 89 | [[package]] 90 | name = "attohttpc" 91 | version = "0.17.0" 92 | source = "registry+https://github.com/rust-lang/crates.io-index" 93 | checksum = "9a8bda305457262b339322106c776e3fd21df860018e566eb6a5b1aa4b6ae02d" 94 | dependencies = [ 95 | "flate2", 96 | "http", 97 | "log", 98 | "native-tls", 99 | "openssl", 100 | "serde", 101 | "serde_json", 102 | "serde_urlencoded", 103 | "url", 104 | "wildmatch", 105 | ] 106 | 107 | [[package]] 108 | name = "autocfg" 109 | version = "1.0.1" 110 | source = "registry+https://github.com/rust-lang/crates.io-index" 111 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 112 | 113 | [[package]] 114 | name = "base64" 115 | version = "0.13.0" 116 | source = "registry+https://github.com/rust-lang/crates.io-index" 117 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 118 | 119 | [[package]] 120 | name = "bincode" 121 | version = "1.3.3" 122 | source = "registry+https://github.com/rust-lang/crates.io-index" 123 | checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 124 | dependencies = [ 125 | "serde", 126 | ] 127 | 128 | [[package]] 129 | name = "bitflags" 130 | version = "0.9.1" 131 | source = "registry+https://github.com/rust-lang/crates.io-index" 132 | checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" 133 | 134 | [[package]] 135 | name = "bitflags" 136 | version = "1.2.1" 137 | source = "registry+https://github.com/rust-lang/crates.io-index" 138 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 139 | 140 | [[package]] 141 | name = "blake2b_simd" 142 | version = "0.5.11" 143 | source = "registry+https://github.com/rust-lang/crates.io-index" 144 | checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" 145 | dependencies = [ 146 | "arrayref", 147 | "arrayvec", 148 | "constant_time_eq", 149 | ] 150 | 151 | [[package]] 152 | name = "blake3" 153 | version = "0.3.8" 154 | source = "registry+https://github.com/rust-lang/crates.io-index" 155 | checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3" 156 | dependencies = [ 157 | "arrayref", 158 | "arrayvec", 159 | "cc", 160 | "cfg-if 0.1.10", 161 | "constant_time_eq", 162 | "crypto-mac", 163 | "digest", 164 | "rayon", 165 | ] 166 | 167 | [[package]] 168 | name = "block" 169 | version = "0.1.6" 170 | source = "registry+https://github.com/rust-lang/crates.io-index" 171 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 172 | 173 | [[package]] 174 | name = "bstr" 175 | version = "0.2.16" 176 | source = "registry+https://github.com/rust-lang/crates.io-index" 177 | checksum = "90682c8d613ad3373e66de8c6411e0ae2ab2571e879d2efbf73558cc66f21279" 178 | dependencies = [ 179 | "memchr", 180 | ] 181 | 182 | [[package]] 183 | name = "bumpalo" 184 | version = "3.7.0" 185 | source = "registry+https://github.com/rust-lang/crates.io-index" 186 | checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631" 187 | 188 | [[package]] 189 | name = "byteorder" 190 | version = "1.4.3" 191 | source = "registry+https://github.com/rust-lang/crates.io-index" 192 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 193 | 194 | [[package]] 195 | name = "bytes" 196 | version = "1.0.1" 197 | source = "registry+https://github.com/rust-lang/crates.io-index" 198 | checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" 199 | 200 | [[package]] 201 | name = "bzip2" 202 | version = "0.4.3" 203 | source = "registry+https://github.com/rust-lang/crates.io-index" 204 | checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 205 | dependencies = [ 206 | "bzip2-sys", 207 | "libc", 208 | ] 209 | 210 | [[package]] 211 | name = "bzip2-sys" 212 | version = "0.1.11+1.0.8" 213 | source = "registry+https://github.com/rust-lang/crates.io-index" 214 | checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 215 | dependencies = [ 216 | "cc", 217 | "libc", 218 | "pkg-config", 219 | ] 220 | 221 | [[package]] 222 | name = "cache-padded" 223 | version = "1.1.1" 224 | source = "registry+https://github.com/rust-lang/crates.io-index" 225 | checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" 226 | 227 | [[package]] 228 | name = "cairo-rs" 229 | version = "0.9.1" 230 | source = "registry+https://github.com/rust-lang/crates.io-index" 231 | checksum = "c5c0f2e047e8ca53d0ff249c54ae047931d7a6ebe05d00af73e0ffeb6e34bdb8" 232 | dependencies = [ 233 | "bitflags 1.2.1", 234 | "cairo-sys-rs", 235 | "glib", 236 | "glib-sys", 237 | "gobject-sys", 238 | "libc", 239 | "thiserror", 240 | ] 241 | 242 | [[package]] 243 | name = "cairo-sys-rs" 244 | version = "0.10.0" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7" 247 | dependencies = [ 248 | "glib-sys", 249 | "libc", 250 | "system-deps", 251 | ] 252 | 253 | [[package]] 254 | name = "cc" 255 | version = "1.0.68" 256 | source = "registry+https://github.com/rust-lang/crates.io-index" 257 | checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" 258 | dependencies = [ 259 | "jobserver", 260 | ] 261 | 262 | [[package]] 263 | name = "cfb" 264 | version = "0.4.0" 265 | source = "registry+https://github.com/rust-lang/crates.io-index" 266 | checksum = "ca453e8624711b2f0f4eb47076a318feda166252a827ee25d067b43de83dcba0" 267 | dependencies = [ 268 | "byteorder", 269 | "uuid", 270 | ] 271 | 272 | [[package]] 273 | name = "cfg-if" 274 | version = "0.1.10" 275 | source = "registry+https://github.com/rust-lang/crates.io-index" 276 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 277 | 278 | [[package]] 279 | name = "cfg-if" 280 | version = "1.0.0" 281 | source = "registry+https://github.com/rust-lang/crates.io-index" 282 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 283 | 284 | [[package]] 285 | name = "cfg_aliases" 286 | version = "0.1.1" 287 | source = "registry+https://github.com/rust-lang/crates.io-index" 288 | checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 289 | 290 | [[package]] 291 | name = "chrono" 292 | version = "0.4.19" 293 | source = "registry+https://github.com/rust-lang/crates.io-index" 294 | checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 295 | dependencies = [ 296 | "libc", 297 | "num-integer", 298 | "num-traits", 299 | "time", 300 | "winapi", 301 | ] 302 | 303 | [[package]] 304 | name = "cocoa" 305 | version = "0.24.0" 306 | source = "registry+https://github.com/rust-lang/crates.io-index" 307 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832" 308 | dependencies = [ 309 | "bitflags 1.2.1", 310 | "block", 311 | "cocoa-foundation", 312 | "core-foundation 0.9.1", 313 | "core-graphics 0.22.2", 314 | "foreign-types", 315 | "libc", 316 | "objc", 317 | ] 318 | 319 | [[package]] 320 | name = "cocoa-foundation" 321 | version = "0.1.0" 322 | source = "registry+https://github.com/rust-lang/crates.io-index" 323 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 324 | dependencies = [ 325 | "bitflags 1.2.1", 326 | "block", 327 | "core-foundation 0.9.1", 328 | "core-graphics-types", 329 | "foreign-types", 330 | "libc", 331 | "objc", 332 | ] 333 | 334 | [[package]] 335 | name = "com" 336 | version = "0.2.0" 337 | source = "registry+https://github.com/rust-lang/crates.io-index" 338 | checksum = "5a30a2b2a013da986dc5cc3eda3d19c0d59d53f835be1b2356eb8d00f000c793" 339 | dependencies = [ 340 | "com_macros", 341 | ] 342 | 343 | [[package]] 344 | name = "com_macros" 345 | version = "0.2.0" 346 | source = "registry+https://github.com/rust-lang/crates.io-index" 347 | checksum = "7606b05842fea68ddcc89e8053b8860ebcb2a0ba8d6abfe3a148e5d5a8d3f0c1" 348 | dependencies = [ 349 | "com_macros_support", 350 | "proc-macro2", 351 | "syn 1.0.73", 352 | ] 353 | 354 | [[package]] 355 | name = "com_macros_support" 356 | version = "0.2.0" 357 | source = "registry+https://github.com/rust-lang/crates.io-index" 358 | checksum = "97e9a6d20f4ac8830e309a455d7e9416e65c6af5a97c88c55fbb4c2012e107da" 359 | dependencies = [ 360 | "proc-macro2", 361 | "quote 1.0.9", 362 | "syn 1.0.73", 363 | ] 364 | 365 | [[package]] 366 | name = "concurrent-queue" 367 | version = "1.2.2" 368 | source = "registry+https://github.com/rust-lang/crates.io-index" 369 | checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3" 370 | dependencies = [ 371 | "cache-padded", 372 | ] 373 | 374 | [[package]] 375 | name = "constant_time_eq" 376 | version = "0.1.5" 377 | source = "registry+https://github.com/rust-lang/crates.io-index" 378 | checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 379 | 380 | [[package]] 381 | name = "convert_case" 382 | version = "0.4.0" 383 | source = "registry+https://github.com/rust-lang/crates.io-index" 384 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 385 | 386 | [[package]] 387 | name = "core-foundation" 388 | version = "0.7.0" 389 | source = "registry+https://github.com/rust-lang/crates.io-index" 390 | checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" 391 | dependencies = [ 392 | "core-foundation-sys 0.7.0", 393 | "libc", 394 | ] 395 | 396 | [[package]] 397 | name = "core-foundation" 398 | version = "0.9.1" 399 | source = "registry+https://github.com/rust-lang/crates.io-index" 400 | checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62" 401 | dependencies = [ 402 | "core-foundation-sys 0.8.2", 403 | "libc", 404 | ] 405 | 406 | [[package]] 407 | name = "core-foundation-sys" 408 | version = "0.7.0" 409 | source = "registry+https://github.com/rust-lang/crates.io-index" 410 | checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" 411 | 412 | [[package]] 413 | name = "core-foundation-sys" 414 | version = "0.8.2" 415 | source = "registry+https://github.com/rust-lang/crates.io-index" 416 | checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" 417 | 418 | [[package]] 419 | name = "core-graphics" 420 | version = "0.19.2" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | checksum = "b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923" 423 | dependencies = [ 424 | "bitflags 1.2.1", 425 | "core-foundation 0.7.0", 426 | "foreign-types", 427 | "libc", 428 | ] 429 | 430 | [[package]] 431 | name = "core-graphics" 432 | version = "0.22.2" 433 | source = "registry+https://github.com/rust-lang/crates.io-index" 434 | checksum = "269f35f69b542b80e736a20a89a05215c0ce80c2c03c514abb2e318b78379d86" 435 | dependencies = [ 436 | "bitflags 1.2.1", 437 | "core-foundation 0.9.1", 438 | "core-graphics-types", 439 | "foreign-types", 440 | "libc", 441 | ] 442 | 443 | [[package]] 444 | name = "core-graphics-types" 445 | version = "0.1.1" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 448 | dependencies = [ 449 | "bitflags 1.2.1", 450 | "core-foundation 0.9.1", 451 | "foreign-types", 452 | "libc", 453 | ] 454 | 455 | [[package]] 456 | name = "core-video-sys" 457 | version = "0.1.4" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "34ecad23610ad9757664d644e369246edde1803fcb43ed72876565098a5d3828" 460 | dependencies = [ 461 | "cfg-if 0.1.10", 462 | "core-foundation-sys 0.7.0", 463 | "core-graphics 0.19.2", 464 | "libc", 465 | "objc", 466 | ] 467 | 468 | [[package]] 469 | name = "crc32fast" 470 | version = "1.2.1" 471 | source = "registry+https://github.com/rust-lang/crates.io-index" 472 | checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" 473 | dependencies = [ 474 | "cfg-if 1.0.0", 475 | ] 476 | 477 | [[package]] 478 | name = "crossbeam-channel" 479 | version = "0.5.1" 480 | source = "registry+https://github.com/rust-lang/crates.io-index" 481 | checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" 482 | dependencies = [ 483 | "cfg-if 1.0.0", 484 | "crossbeam-utils", 485 | ] 486 | 487 | [[package]] 488 | name = "crossbeam-deque" 489 | version = "0.8.0" 490 | source = "registry+https://github.com/rust-lang/crates.io-index" 491 | checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" 492 | dependencies = [ 493 | "cfg-if 1.0.0", 494 | "crossbeam-epoch", 495 | "crossbeam-utils", 496 | ] 497 | 498 | [[package]] 499 | name = "crossbeam-epoch" 500 | version = "0.9.5" 501 | source = "registry+https://github.com/rust-lang/crates.io-index" 502 | checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" 503 | dependencies = [ 504 | "cfg-if 1.0.0", 505 | "crossbeam-utils", 506 | "lazy_static", 507 | "memoffset", 508 | "scopeguard", 509 | ] 510 | 511 | [[package]] 512 | name = "crossbeam-utils" 513 | version = "0.8.5" 514 | source = "registry+https://github.com/rust-lang/crates.io-index" 515 | checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 516 | dependencies = [ 517 | "cfg-if 1.0.0", 518 | "lazy_static", 519 | ] 520 | 521 | [[package]] 522 | name = "crypto-mac" 523 | version = "0.8.0" 524 | source = "registry+https://github.com/rust-lang/crates.io-index" 525 | checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 526 | dependencies = [ 527 | "generic-array", 528 | "subtle", 529 | ] 530 | 531 | [[package]] 532 | name = "cssparser" 533 | version = "0.27.2" 534 | source = "registry+https://github.com/rust-lang/crates.io-index" 535 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 536 | dependencies = [ 537 | "cssparser-macros", 538 | "dtoa-short", 539 | "itoa", 540 | "matches", 541 | "phf 0.8.0", 542 | "proc-macro2", 543 | "quote 1.0.9", 544 | "smallvec", 545 | "syn 1.0.73", 546 | ] 547 | 548 | [[package]] 549 | name = "cssparser-macros" 550 | version = "0.6.0" 551 | source = "registry+https://github.com/rust-lang/crates.io-index" 552 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 553 | dependencies = [ 554 | "quote 1.0.9", 555 | "syn 1.0.73", 556 | ] 557 | 558 | [[package]] 559 | name = "darling" 560 | version = "0.10.2" 561 | source = "registry+https://github.com/rust-lang/crates.io-index" 562 | checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" 563 | dependencies = [ 564 | "darling_core", 565 | "darling_macro", 566 | ] 567 | 568 | [[package]] 569 | name = "darling_core" 570 | version = "0.10.2" 571 | source = "registry+https://github.com/rust-lang/crates.io-index" 572 | checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" 573 | dependencies = [ 574 | "fnv", 575 | "ident_case", 576 | "proc-macro2", 577 | "quote 1.0.9", 578 | "strsim", 579 | "syn 1.0.73", 580 | ] 581 | 582 | [[package]] 583 | name = "darling_macro" 584 | version = "0.10.2" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" 587 | dependencies = [ 588 | "darling_core", 589 | "quote 1.0.9", 590 | "syn 1.0.73", 591 | ] 592 | 593 | [[package]] 594 | name = "deflate" 595 | version = "0.7.20" 596 | source = "registry+https://github.com/rust-lang/crates.io-index" 597 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4" 598 | dependencies = [ 599 | "adler32", 600 | "byteorder", 601 | ] 602 | 603 | [[package]] 604 | name = "deflate" 605 | version = "0.8.6" 606 | source = "registry+https://github.com/rust-lang/crates.io-index" 607 | checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" 608 | dependencies = [ 609 | "adler32", 610 | "byteorder", 611 | ] 612 | 613 | [[package]] 614 | name = "derivative" 615 | version = "2.2.0" 616 | source = "registry+https://github.com/rust-lang/crates.io-index" 617 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 618 | dependencies = [ 619 | "proc-macro2", 620 | "quote 1.0.9", 621 | "syn 1.0.73", 622 | ] 623 | 624 | [[package]] 625 | name = "derive_more" 626 | version = "0.99.16" 627 | source = "registry+https://github.com/rust-lang/crates.io-index" 628 | checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df" 629 | dependencies = [ 630 | "convert_case", 631 | "proc-macro2", 632 | "quote 1.0.9", 633 | "rustc_version", 634 | "syn 1.0.73", 635 | ] 636 | 637 | [[package]] 638 | name = "digest" 639 | version = "0.9.0" 640 | source = "registry+https://github.com/rust-lang/crates.io-index" 641 | checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 642 | dependencies = [ 643 | "generic-array", 644 | ] 645 | 646 | [[package]] 647 | name = "dirs" 648 | version = "1.0.5" 649 | source = "registry+https://github.com/rust-lang/crates.io-index" 650 | checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" 651 | dependencies = [ 652 | "libc", 653 | "redox_users 0.3.5", 654 | "winapi", 655 | ] 656 | 657 | [[package]] 658 | name = "dirs-next" 659 | version = "2.0.0" 660 | source = "registry+https://github.com/rust-lang/crates.io-index" 661 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 662 | dependencies = [ 663 | "cfg-if 1.0.0", 664 | "dirs-sys-next", 665 | ] 666 | 667 | [[package]] 668 | name = "dirs-sys-next" 669 | version = "0.1.2" 670 | source = "registry+https://github.com/rust-lang/crates.io-index" 671 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 672 | dependencies = [ 673 | "libc", 674 | "redox_users 0.4.0", 675 | "winapi", 676 | ] 677 | 678 | [[package]] 679 | name = "dispatch" 680 | version = "0.2.0" 681 | source = "registry+https://github.com/rust-lang/crates.io-index" 682 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 683 | 684 | [[package]] 685 | name = "dtoa" 686 | version = "0.4.8" 687 | source = "registry+https://github.com/rust-lang/crates.io-index" 688 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 689 | 690 | [[package]] 691 | name = "dtoa-short" 692 | version = "0.3.3" 693 | source = "registry+https://github.com/rust-lang/crates.io-index" 694 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 695 | dependencies = [ 696 | "dtoa", 697 | ] 698 | 699 | [[package]] 700 | name = "either" 701 | version = "1.6.1" 702 | source = "registry+https://github.com/rust-lang/crates.io-index" 703 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 704 | 705 | [[package]] 706 | name = "enumflags2" 707 | version = "0.6.4" 708 | source = "registry+https://github.com/rust-lang/crates.io-index" 709 | checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0" 710 | dependencies = [ 711 | "enumflags2_derive", 712 | "serde", 713 | ] 714 | 715 | [[package]] 716 | name = "enumflags2_derive" 717 | version = "0.6.4" 718 | source = "registry+https://github.com/rust-lang/crates.io-index" 719 | checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce" 720 | dependencies = [ 721 | "proc-macro2", 722 | "quote 1.0.9", 723 | "syn 1.0.73", 724 | ] 725 | 726 | [[package]] 727 | name = "fastrand" 728 | version = "1.4.1" 729 | source = "registry+https://github.com/rust-lang/crates.io-index" 730 | checksum = "77b705829d1e87f762c2df6da140b26af5839e1033aa84aa5f56bb688e4e1bdb" 731 | dependencies = [ 732 | "instant", 733 | ] 734 | 735 | [[package]] 736 | name = "filetime" 737 | version = "0.2.14" 738 | source = "registry+https://github.com/rust-lang/crates.io-index" 739 | checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" 740 | dependencies = [ 741 | "cfg-if 1.0.0", 742 | "libc", 743 | "redox_syscall 0.2.9", 744 | "winapi", 745 | ] 746 | 747 | [[package]] 748 | name = "flate2" 749 | version = "1.0.20" 750 | source = "registry+https://github.com/rust-lang/crates.io-index" 751 | checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0" 752 | dependencies = [ 753 | "cfg-if 1.0.0", 754 | "crc32fast", 755 | "libc", 756 | "miniz_oxide 0.4.4", 757 | ] 758 | 759 | [[package]] 760 | name = "fnv" 761 | version = "1.0.7" 762 | source = "registry+https://github.com/rust-lang/crates.io-index" 763 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 764 | 765 | [[package]] 766 | name = "foreign-types" 767 | version = "0.3.2" 768 | source = "registry+https://github.com/rust-lang/crates.io-index" 769 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 770 | dependencies = [ 771 | "foreign-types-shared", 772 | ] 773 | 774 | [[package]] 775 | name = "foreign-types-shared" 776 | version = "0.1.1" 777 | source = "registry+https://github.com/rust-lang/crates.io-index" 778 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 779 | 780 | [[package]] 781 | name = "form_urlencoded" 782 | version = "1.0.1" 783 | source = "registry+https://github.com/rust-lang/crates.io-index" 784 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 785 | dependencies = [ 786 | "matches", 787 | "percent-encoding", 788 | ] 789 | 790 | [[package]] 791 | name = "futf" 792 | version = "0.1.4" 793 | source = "registry+https://github.com/rust-lang/crates.io-index" 794 | checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b" 795 | dependencies = [ 796 | "mac", 797 | "new_debug_unreachable", 798 | ] 799 | 800 | [[package]] 801 | name = "futures" 802 | version = "0.3.15" 803 | source = "registry+https://github.com/rust-lang/crates.io-index" 804 | checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27" 805 | dependencies = [ 806 | "futures-channel", 807 | "futures-core", 808 | "futures-executor", 809 | "futures-io", 810 | "futures-sink", 811 | "futures-task", 812 | "futures-util", 813 | ] 814 | 815 | [[package]] 816 | name = "futures-channel" 817 | version = "0.3.15" 818 | source = "registry+https://github.com/rust-lang/crates.io-index" 819 | checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2" 820 | dependencies = [ 821 | "futures-core", 822 | "futures-sink", 823 | ] 824 | 825 | [[package]] 826 | name = "futures-core" 827 | version = "0.3.15" 828 | source = "registry+https://github.com/rust-lang/crates.io-index" 829 | checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1" 830 | 831 | [[package]] 832 | name = "futures-executor" 833 | version = "0.3.15" 834 | source = "registry+https://github.com/rust-lang/crates.io-index" 835 | checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79" 836 | dependencies = [ 837 | "futures-core", 838 | "futures-task", 839 | "futures-util", 840 | ] 841 | 842 | [[package]] 843 | name = "futures-io" 844 | version = "0.3.15" 845 | source = "registry+https://github.com/rust-lang/crates.io-index" 846 | checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1" 847 | 848 | [[package]] 849 | name = "futures-lite" 850 | version = "1.12.0" 851 | source = "registry+https://github.com/rust-lang/crates.io-index" 852 | checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 853 | dependencies = [ 854 | "fastrand", 855 | "futures-core", 856 | "futures-io", 857 | "memchr", 858 | "parking", 859 | "pin-project-lite", 860 | "waker-fn", 861 | ] 862 | 863 | [[package]] 864 | name = "futures-macro" 865 | version = "0.3.15" 866 | source = "registry+https://github.com/rust-lang/crates.io-index" 867 | checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121" 868 | dependencies = [ 869 | "autocfg", 870 | "proc-macro-hack", 871 | "proc-macro2", 872 | "quote 1.0.9", 873 | "syn 1.0.73", 874 | ] 875 | 876 | [[package]] 877 | name = "futures-sink" 878 | version = "0.3.15" 879 | source = "registry+https://github.com/rust-lang/crates.io-index" 880 | checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282" 881 | 882 | [[package]] 883 | name = "futures-task" 884 | version = "0.3.15" 885 | source = "registry+https://github.com/rust-lang/crates.io-index" 886 | checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae" 887 | 888 | [[package]] 889 | name = "futures-util" 890 | version = "0.3.15" 891 | source = "registry+https://github.com/rust-lang/crates.io-index" 892 | checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967" 893 | dependencies = [ 894 | "autocfg", 895 | "futures-channel", 896 | "futures-core", 897 | "futures-io", 898 | "futures-macro", 899 | "futures-sink", 900 | "futures-task", 901 | "memchr", 902 | "pin-project-lite", 903 | "pin-utils", 904 | "proc-macro-hack", 905 | "proc-macro-nested", 906 | "slab", 907 | ] 908 | 909 | [[package]] 910 | name = "fxhash" 911 | version = "0.2.1" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 914 | dependencies = [ 915 | "byteorder", 916 | ] 917 | 918 | [[package]] 919 | name = "gdk" 920 | version = "0.13.2" 921 | source = "registry+https://github.com/rust-lang/crates.io-index" 922 | checksum = "db00839b2a68a7a10af3fa28dfb3febaba3a20c3a9ac2425a33b7df1f84a6b7d" 923 | dependencies = [ 924 | "bitflags 1.2.1", 925 | "cairo-rs", 926 | "cairo-sys-rs", 927 | "gdk-pixbuf", 928 | "gdk-sys", 929 | "gio", 930 | "gio-sys", 931 | "glib", 932 | "glib-sys", 933 | "gobject-sys", 934 | "libc", 935 | "pango", 936 | ] 937 | 938 | [[package]] 939 | name = "gdk-pixbuf" 940 | version = "0.9.0" 941 | source = "registry+https://github.com/rust-lang/crates.io-index" 942 | checksum = "8f6dae3cb99dd49b758b88f0132f8d401108e63ae8edd45f432d42cdff99998a" 943 | dependencies = [ 944 | "gdk-pixbuf-sys", 945 | "gio", 946 | "gio-sys", 947 | "glib", 948 | "glib-sys", 949 | "gobject-sys", 950 | "libc", 951 | ] 952 | 953 | [[package]] 954 | name = "gdk-pixbuf-sys" 955 | version = "0.10.0" 956 | source = "registry+https://github.com/rust-lang/crates.io-index" 957 | checksum = "3bfe468a7f43e97b8d193a762b6c5cf67a7d36cacbc0b9291dbcae24bfea1e8f" 958 | dependencies = [ 959 | "gio-sys", 960 | "glib-sys", 961 | "gobject-sys", 962 | "libc", 963 | "system-deps", 964 | ] 965 | 966 | [[package]] 967 | name = "gdk-sys" 968 | version = "0.10.0" 969 | source = "registry+https://github.com/rust-lang/crates.io-index" 970 | checksum = "0a9653cfc500fd268015b1ac055ddbc3df7a5c9ea3f4ccef147b3957bd140d69" 971 | dependencies = [ 972 | "cairo-sys-rs", 973 | "gdk-pixbuf-sys", 974 | "gio-sys", 975 | "glib-sys", 976 | "gobject-sys", 977 | "libc", 978 | "pango-sys", 979 | "pkg-config", 980 | "system-deps", 981 | ] 982 | 983 | [[package]] 984 | name = "generator" 985 | version = "0.7.0" 986 | source = "registry+https://github.com/rust-lang/crates.io-index" 987 | checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee" 988 | dependencies = [ 989 | "cc", 990 | "libc", 991 | "log", 992 | "rustversion", 993 | "winapi", 994 | ] 995 | 996 | [[package]] 997 | name = "generic-array" 998 | version = "0.14.4" 999 | source = "registry+https://github.com/rust-lang/crates.io-index" 1000 | checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 1001 | dependencies = [ 1002 | "typenum", 1003 | "version_check", 1004 | ] 1005 | 1006 | [[package]] 1007 | name = "getrandom" 1008 | version = "0.1.16" 1009 | source = "registry+https://github.com/rust-lang/crates.io-index" 1010 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1011 | dependencies = [ 1012 | "cfg-if 1.0.0", 1013 | "libc", 1014 | "wasi 0.9.0+wasi-snapshot-preview1", 1015 | ] 1016 | 1017 | [[package]] 1018 | name = "getrandom" 1019 | version = "0.2.3" 1020 | source = "registry+https://github.com/rust-lang/crates.io-index" 1021 | checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 1022 | dependencies = [ 1023 | "cfg-if 1.0.0", 1024 | "libc", 1025 | "wasi 0.10.2+wasi-snapshot-preview1", 1026 | ] 1027 | 1028 | [[package]] 1029 | name = "gio" 1030 | version = "0.9.1" 1031 | source = "registry+https://github.com/rust-lang/crates.io-index" 1032 | checksum = "1fb60242bfff700772dae5d9e3a1f7aa2e4ebccf18b89662a16acb2822568561" 1033 | dependencies = [ 1034 | "bitflags 1.2.1", 1035 | "futures", 1036 | "futures-channel", 1037 | "futures-core", 1038 | "futures-io", 1039 | "futures-util", 1040 | "gio-sys", 1041 | "glib", 1042 | "glib-sys", 1043 | "gobject-sys", 1044 | "libc", 1045 | "once_cell", 1046 | "thiserror", 1047 | ] 1048 | 1049 | [[package]] 1050 | name = "gio-sys" 1051 | version = "0.10.1" 1052 | source = "registry+https://github.com/rust-lang/crates.io-index" 1053 | checksum = "5e24fb752f8f5d2cf6bbc2c606fd2bc989c81c5e2fe321ab974d54f8b6344eac" 1054 | dependencies = [ 1055 | "glib-sys", 1056 | "gobject-sys", 1057 | "libc", 1058 | "system-deps", 1059 | "winapi", 1060 | ] 1061 | 1062 | [[package]] 1063 | name = "glib" 1064 | version = "0.10.3" 1065 | source = "registry+https://github.com/rust-lang/crates.io-index" 1066 | checksum = "0c685013b7515e668f1b57a165b009d4d28cb139a8a989bbd699c10dad29d0c5" 1067 | dependencies = [ 1068 | "bitflags 1.2.1", 1069 | "futures-channel", 1070 | "futures-core", 1071 | "futures-executor", 1072 | "futures-task", 1073 | "futures-util", 1074 | "glib-macros", 1075 | "glib-sys", 1076 | "gobject-sys", 1077 | "libc", 1078 | "once_cell", 1079 | ] 1080 | 1081 | [[package]] 1082 | name = "glib-macros" 1083 | version = "0.10.1" 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" 1085 | checksum = "41486a26d1366a8032b160b59065a59fb528530a46a49f627e7048fb8c064039" 1086 | dependencies = [ 1087 | "anyhow", 1088 | "heck", 1089 | "itertools", 1090 | "proc-macro-crate 0.1.5", 1091 | "proc-macro-error", 1092 | "proc-macro2", 1093 | "quote 1.0.9", 1094 | "syn 1.0.73", 1095 | ] 1096 | 1097 | [[package]] 1098 | name = "glib-sys" 1099 | version = "0.10.1" 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" 1101 | checksum = "c7e9b997a66e9a23d073f2b1abb4dbfc3925e0b8952f67efd8d9b6e168e4cdc1" 1102 | dependencies = [ 1103 | "libc", 1104 | "system-deps", 1105 | ] 1106 | 1107 | [[package]] 1108 | name = "globset" 1109 | version = "0.4.8" 1110 | source = "registry+https://github.com/rust-lang/crates.io-index" 1111 | checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd" 1112 | dependencies = [ 1113 | "aho-corasick", 1114 | "bstr", 1115 | "fnv", 1116 | "log", 1117 | "regex", 1118 | ] 1119 | 1120 | [[package]] 1121 | name = "gobject-sys" 1122 | version = "0.10.0" 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" 1124 | checksum = "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c" 1125 | dependencies = [ 1126 | "glib-sys", 1127 | "libc", 1128 | "system-deps", 1129 | ] 1130 | 1131 | [[package]] 1132 | name = "gtk" 1133 | version = "0.9.2" 1134 | source = "registry+https://github.com/rust-lang/crates.io-index" 1135 | checksum = "2f022f2054072b3af07666341984562c8e626a79daa8be27b955d12d06a5ad6a" 1136 | dependencies = [ 1137 | "atk", 1138 | "bitflags 1.2.1", 1139 | "cairo-rs", 1140 | "cairo-sys-rs", 1141 | "cc", 1142 | "gdk", 1143 | "gdk-pixbuf", 1144 | "gdk-pixbuf-sys", 1145 | "gdk-sys", 1146 | "gio", 1147 | "gio-sys", 1148 | "glib", 1149 | "glib-sys", 1150 | "gobject-sys", 1151 | "gtk-sys", 1152 | "libc", 1153 | "once_cell", 1154 | "pango", 1155 | "pango-sys", 1156 | "pkg-config", 1157 | ] 1158 | 1159 | [[package]] 1160 | name = "gtk-sys" 1161 | version = "0.10.0" 1162 | source = "registry+https://github.com/rust-lang/crates.io-index" 1163 | checksum = "89acda6f084863307d948ba64a4b1ef674e8527dddab147ee4cdcc194c880457" 1164 | dependencies = [ 1165 | "atk-sys", 1166 | "cairo-sys-rs", 1167 | "gdk-pixbuf-sys", 1168 | "gdk-sys", 1169 | "gio-sys", 1170 | "glib-sys", 1171 | "gobject-sys", 1172 | "libc", 1173 | "pango-sys", 1174 | "system-deps", 1175 | ] 1176 | 1177 | [[package]] 1178 | name = "heck" 1179 | version = "0.3.3" 1180 | source = "registry+https://github.com/rust-lang/crates.io-index" 1181 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1182 | dependencies = [ 1183 | "unicode-segmentation", 1184 | ] 1185 | 1186 | [[package]] 1187 | name = "hermit-abi" 1188 | version = "0.1.19" 1189 | source = "registry+https://github.com/rust-lang/crates.io-index" 1190 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1191 | dependencies = [ 1192 | "libc", 1193 | ] 1194 | 1195 | [[package]] 1196 | name = "html5ever" 1197 | version = "0.25.1" 1198 | source = "registry+https://github.com/rust-lang/crates.io-index" 1199 | checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b" 1200 | dependencies = [ 1201 | "log", 1202 | "mac", 1203 | "markup5ever", 1204 | "proc-macro2", 1205 | "quote 1.0.9", 1206 | "syn 1.0.73", 1207 | ] 1208 | 1209 | [[package]] 1210 | name = "http" 1211 | version = "0.2.4" 1212 | source = "registry+https://github.com/rust-lang/crates.io-index" 1213 | checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11" 1214 | dependencies = [ 1215 | "bytes", 1216 | "fnv", 1217 | "itoa", 1218 | ] 1219 | 1220 | [[package]] 1221 | name = "ico" 1222 | version = "0.1.0" 1223 | source = "registry+https://github.com/rust-lang/crates.io-index" 1224 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1225 | dependencies = [ 1226 | "byteorder", 1227 | "png 0.11.0", 1228 | ] 1229 | 1230 | [[package]] 1231 | name = "ident_case" 1232 | version = "1.0.1" 1233 | source = "registry+https://github.com/rust-lang/crates.io-index" 1234 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1235 | 1236 | [[package]] 1237 | name = "idna" 1238 | version = "0.2.3" 1239 | source = "registry+https://github.com/rust-lang/crates.io-index" 1240 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1241 | dependencies = [ 1242 | "matches", 1243 | "unicode-bidi", 1244 | "unicode-normalization", 1245 | ] 1246 | 1247 | [[package]] 1248 | name = "ignore" 1249 | version = "0.4.18" 1250 | source = "registry+https://github.com/rust-lang/crates.io-index" 1251 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1252 | dependencies = [ 1253 | "crossbeam-utils", 1254 | "globset", 1255 | "lazy_static", 1256 | "log", 1257 | "memchr", 1258 | "regex", 1259 | "same-file", 1260 | "thread_local", 1261 | "walkdir", 1262 | "winapi-util", 1263 | ] 1264 | 1265 | [[package]] 1266 | name = "infer" 1267 | version = "0.4.0" 1268 | source = "registry+https://github.com/rust-lang/crates.io-index" 1269 | checksum = "f92b41dab759f9e8427c03f519c344a14655490b8db548dac1e57a75b3258391" 1270 | dependencies = [ 1271 | "cfb", 1272 | ] 1273 | 1274 | [[package]] 1275 | name = "inflate" 1276 | version = "0.3.4" 1277 | source = "registry+https://github.com/rust-lang/crates.io-index" 1278 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1279 | dependencies = [ 1280 | "adler32", 1281 | ] 1282 | 1283 | [[package]] 1284 | name = "instant" 1285 | version = "0.1.9" 1286 | source = "registry+https://github.com/rust-lang/crates.io-index" 1287 | checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" 1288 | dependencies = [ 1289 | "cfg-if 1.0.0", 1290 | ] 1291 | 1292 | [[package]] 1293 | name = "itertools" 1294 | version = "0.9.0" 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" 1296 | checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 1297 | dependencies = [ 1298 | "either", 1299 | ] 1300 | 1301 | [[package]] 1302 | name = "itoa" 1303 | version = "0.4.7" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" 1306 | 1307 | [[package]] 1308 | name = "javascriptcore-rs" 1309 | version = "0.10.0" 1310 | source = "registry+https://github.com/rust-lang/crates.io-index" 1311 | checksum = "5ecc697657edc9cd3d85d5ec6941f74cc9bb2ae84bec320f55c9397c5a8d8722" 1312 | dependencies = [ 1313 | "glib", 1314 | "javascriptcore-rs-sys", 1315 | ] 1316 | 1317 | [[package]] 1318 | name = "javascriptcore-rs-sys" 1319 | version = "0.2.0" 1320 | source = "registry+https://github.com/rust-lang/crates.io-index" 1321 | checksum = "3f46ada8a08dcd75a10afae872fbfb51275df4a8ae0d46b8cc7c708f08dd2998" 1322 | dependencies = [ 1323 | "libc", 1324 | ] 1325 | 1326 | [[package]] 1327 | name = "jni-sys" 1328 | version = "0.3.0" 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" 1330 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1331 | 1332 | [[package]] 1333 | name = "jobserver" 1334 | version = "0.1.22" 1335 | source = "registry+https://github.com/rust-lang/crates.io-index" 1336 | checksum = "972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd" 1337 | dependencies = [ 1338 | "libc", 1339 | ] 1340 | 1341 | [[package]] 1342 | name = "js-sys" 1343 | version = "0.3.51" 1344 | source = "registry+https://github.com/rust-lang/crates.io-index" 1345 | checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062" 1346 | dependencies = [ 1347 | "wasm-bindgen", 1348 | ] 1349 | 1350 | [[package]] 1351 | name = "kuchiki" 1352 | version = "0.8.1" 1353 | source = "registry+https://github.com/rust-lang/crates.io-index" 1354 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1355 | dependencies = [ 1356 | "cssparser", 1357 | "html5ever", 1358 | "matches", 1359 | "selectors", 1360 | ] 1361 | 1362 | [[package]] 1363 | name = "lazy_static" 1364 | version = "1.4.0" 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" 1366 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1367 | 1368 | [[package]] 1369 | name = "libc" 1370 | version = "0.2.98" 1371 | source = "registry+https://github.com/rust-lang/crates.io-index" 1372 | checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790" 1373 | 1374 | [[package]] 1375 | name = "lock_api" 1376 | version = "0.4.4" 1377 | source = "registry+https://github.com/rust-lang/crates.io-index" 1378 | checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb" 1379 | dependencies = [ 1380 | "scopeguard", 1381 | ] 1382 | 1383 | [[package]] 1384 | name = "log" 1385 | version = "0.4.14" 1386 | source = "registry+https://github.com/rust-lang/crates.io-index" 1387 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 1388 | dependencies = [ 1389 | "cfg-if 1.0.0", 1390 | ] 1391 | 1392 | [[package]] 1393 | name = "loom" 1394 | version = "0.5.1" 1395 | source = "registry+https://github.com/rust-lang/crates.io-index" 1396 | checksum = "2111607c723d7857e0d8299d5ce7a0bf4b844d3e44f8de136b13da513eaf8fc4" 1397 | dependencies = [ 1398 | "cfg-if 1.0.0", 1399 | "generator", 1400 | "scoped-tls", 1401 | "serde", 1402 | "serde_json", 1403 | ] 1404 | 1405 | [[package]] 1406 | name = "mac" 1407 | version = "0.1.1" 1408 | source = "registry+https://github.com/rust-lang/crates.io-index" 1409 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1410 | 1411 | [[package]] 1412 | name = "mac-notification-sys" 1413 | version = "0.3.0" 1414 | source = "registry+https://github.com/rust-lang/crates.io-index" 1415 | checksum = "3dfb6b71a9a89cd38b395d994214297447e8e63b1ba5708a9a2b0b1048ceda76" 1416 | dependencies = [ 1417 | "cc", 1418 | "chrono", 1419 | "dirs", 1420 | "objc-foundation", 1421 | ] 1422 | 1423 | [[package]] 1424 | name = "malloc_buf" 1425 | version = "0.0.6" 1426 | source = "registry+https://github.com/rust-lang/crates.io-index" 1427 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1428 | dependencies = [ 1429 | "libc", 1430 | ] 1431 | 1432 | [[package]] 1433 | name = "markup5ever" 1434 | version = "0.10.1" 1435 | source = "registry+https://github.com/rust-lang/crates.io-index" 1436 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1437 | dependencies = [ 1438 | "log", 1439 | "phf 0.8.0", 1440 | "phf_codegen", 1441 | "string_cache", 1442 | "string_cache_codegen", 1443 | "tendril", 1444 | ] 1445 | 1446 | [[package]] 1447 | name = "matches" 1448 | version = "0.1.8" 1449 | source = "registry+https://github.com/rust-lang/crates.io-index" 1450 | checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1451 | 1452 | [[package]] 1453 | name = "maybe-uninit" 1454 | version = "2.0.0" 1455 | source = "registry+https://github.com/rust-lang/crates.io-index" 1456 | checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 1457 | 1458 | [[package]] 1459 | name = "memchr" 1460 | version = "2.4.0" 1461 | source = "registry+https://github.com/rust-lang/crates.io-index" 1462 | checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" 1463 | 1464 | [[package]] 1465 | name = "memoffset" 1466 | version = "0.6.4" 1467 | source = "registry+https://github.com/rust-lang/crates.io-index" 1468 | checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" 1469 | dependencies = [ 1470 | "autocfg", 1471 | ] 1472 | 1473 | [[package]] 1474 | name = "minisign-verify" 1475 | version = "0.1.8" 1476 | source = "registry+https://github.com/rust-lang/crates.io-index" 1477 | checksum = "db0507fe8e3c68cd62961cf9f87f6c2b21d884d3515a7150a4a3fa9d014e5c12" 1478 | 1479 | [[package]] 1480 | name = "miniz_oxide" 1481 | version = "0.3.7" 1482 | source = "registry+https://github.com/rust-lang/crates.io-index" 1483 | checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 1484 | dependencies = [ 1485 | "adler32", 1486 | ] 1487 | 1488 | [[package]] 1489 | name = "miniz_oxide" 1490 | version = "0.4.4" 1491 | source = "registry+https://github.com/rust-lang/crates.io-index" 1492 | checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 1493 | dependencies = [ 1494 | "adler", 1495 | "autocfg", 1496 | ] 1497 | 1498 | [[package]] 1499 | name = "native-tls" 1500 | version = "0.2.7" 1501 | source = "registry+https://github.com/rust-lang/crates.io-index" 1502 | checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4" 1503 | dependencies = [ 1504 | "lazy_static", 1505 | "libc", 1506 | "log", 1507 | "openssl", 1508 | "openssl-probe", 1509 | "openssl-sys", 1510 | "schannel", 1511 | "security-framework", 1512 | "security-framework-sys", 1513 | "tempfile", 1514 | ] 1515 | 1516 | [[package]] 1517 | name = "nb-connect" 1518 | version = "1.2.0" 1519 | source = "registry+https://github.com/rust-lang/crates.io-index" 1520 | checksum = "b1bb540dc6ef51cfe1916ec038ce7a620daf3a111e2502d745197cd53d6bca15" 1521 | dependencies = [ 1522 | "libc", 1523 | "socket2", 1524 | ] 1525 | 1526 | [[package]] 1527 | name = "ndk" 1528 | version = "0.3.0" 1529 | source = "registry+https://github.com/rust-lang/crates.io-index" 1530 | checksum = "8794322172319b972f528bf90c6b467be0079f1fa82780ffb431088e741a73ab" 1531 | dependencies = [ 1532 | "jni-sys", 1533 | "ndk-sys", 1534 | "num_enum", 1535 | "thiserror", 1536 | ] 1537 | 1538 | [[package]] 1539 | name = "ndk-glue" 1540 | version = "0.3.0" 1541 | source = "registry+https://github.com/rust-lang/crates.io-index" 1542 | checksum = "c5caf0c24d51ac1c905c27d4eda4fa0635bbe0de596b8f79235e0b17a4d29385" 1543 | dependencies = [ 1544 | "lazy_static", 1545 | "libc", 1546 | "log", 1547 | "ndk", 1548 | "ndk-macro", 1549 | "ndk-sys", 1550 | ] 1551 | 1552 | [[package]] 1553 | name = "ndk-macro" 1554 | version = "0.2.0" 1555 | source = "registry+https://github.com/rust-lang/crates.io-index" 1556 | checksum = "05d1c6307dc424d0f65b9b06e94f88248e6305726b14729fd67a5e47b2dc481d" 1557 | dependencies = [ 1558 | "darling", 1559 | "proc-macro-crate 0.1.5", 1560 | "proc-macro2", 1561 | "quote 1.0.9", 1562 | "syn 1.0.73", 1563 | ] 1564 | 1565 | [[package]] 1566 | name = "ndk-sys" 1567 | version = "0.2.1" 1568 | source = "registry+https://github.com/rust-lang/crates.io-index" 1569 | checksum = "c44922cb3dbb1c70b5e5f443d63b64363a898564d739ba5198e3a9138442868d" 1570 | 1571 | [[package]] 1572 | name = "new_debug_unreachable" 1573 | version = "1.0.4" 1574 | source = "registry+https://github.com/rust-lang/crates.io-index" 1575 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1576 | 1577 | [[package]] 1578 | name = "nix" 1579 | version = "0.17.0" 1580 | source = "registry+https://github.com/rust-lang/crates.io-index" 1581 | checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363" 1582 | dependencies = [ 1583 | "bitflags 1.2.1", 1584 | "cc", 1585 | "cfg-if 0.1.10", 1586 | "libc", 1587 | "void", 1588 | ] 1589 | 1590 | [[package]] 1591 | name = "nodrop" 1592 | version = "0.1.14" 1593 | source = "registry+https://github.com/rust-lang/crates.io-index" 1594 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1595 | 1596 | [[package]] 1597 | name = "notify-rust" 1598 | version = "4.5.2" 1599 | source = "registry+https://github.com/rust-lang/crates.io-index" 1600 | checksum = "2a2ca742cd7268b60c35828d318357f0b1bb9b82088e157ccf3013eb3ce70247" 1601 | dependencies = [ 1602 | "mac-notification-sys", 1603 | "serde", 1604 | "winrt-notification", 1605 | "zbus", 1606 | "zvariant", 1607 | "zvariant_derive", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "num-integer" 1612 | version = "0.1.44" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 1615 | dependencies = [ 1616 | "autocfg", 1617 | "num-traits", 1618 | ] 1619 | 1620 | [[package]] 1621 | name = "num-iter" 1622 | version = "0.1.42" 1623 | source = "registry+https://github.com/rust-lang/crates.io-index" 1624 | checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59" 1625 | dependencies = [ 1626 | "autocfg", 1627 | "num-integer", 1628 | "num-traits", 1629 | ] 1630 | 1631 | [[package]] 1632 | name = "num-traits" 1633 | version = "0.2.14" 1634 | source = "registry+https://github.com/rust-lang/crates.io-index" 1635 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 1636 | dependencies = [ 1637 | "autocfg", 1638 | ] 1639 | 1640 | [[package]] 1641 | name = "num_cpus" 1642 | version = "1.13.0" 1643 | source = "registry+https://github.com/rust-lang/crates.io-index" 1644 | checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 1645 | dependencies = [ 1646 | "hermit-abi", 1647 | "libc", 1648 | ] 1649 | 1650 | [[package]] 1651 | name = "num_enum" 1652 | version = "0.5.1" 1653 | source = "registry+https://github.com/rust-lang/crates.io-index" 1654 | checksum = "226b45a5c2ac4dd696ed30fa6b94b057ad909c7b7fc2e0d0808192bced894066" 1655 | dependencies = [ 1656 | "derivative", 1657 | "num_enum_derive", 1658 | ] 1659 | 1660 | [[package]] 1661 | name = "num_enum_derive" 1662 | version = "0.5.1" 1663 | source = "registry+https://github.com/rust-lang/crates.io-index" 1664 | checksum = "1c0fd9eba1d5db0994a239e09c1be402d35622277e35468ba891aa5e3188ce7e" 1665 | dependencies = [ 1666 | "proc-macro-crate 0.1.5", 1667 | "proc-macro2", 1668 | "quote 1.0.9", 1669 | "syn 1.0.73", 1670 | ] 1671 | 1672 | [[package]] 1673 | name = "objc" 1674 | version = "0.2.7" 1675 | source = "registry+https://github.com/rust-lang/crates.io-index" 1676 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1677 | dependencies = [ 1678 | "malloc_buf", 1679 | ] 1680 | 1681 | [[package]] 1682 | name = "objc-foundation" 1683 | version = "0.1.1" 1684 | source = "registry+https://github.com/rust-lang/crates.io-index" 1685 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1686 | dependencies = [ 1687 | "block", 1688 | "objc", 1689 | "objc_id", 1690 | ] 1691 | 1692 | [[package]] 1693 | name = "objc_id" 1694 | version = "0.1.1" 1695 | source = "registry+https://github.com/rust-lang/crates.io-index" 1696 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1697 | dependencies = [ 1698 | "objc", 1699 | ] 1700 | 1701 | [[package]] 1702 | name = "once_cell" 1703 | version = "1.8.0" 1704 | source = "registry+https://github.com/rust-lang/crates.io-index" 1705 | checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" 1706 | 1707 | [[package]] 1708 | name = "open" 1709 | version = "1.7.0" 1710 | source = "registry+https://github.com/rust-lang/crates.io-index" 1711 | checksum = "1711eb4b31ce4ad35b0f316d8dfba4fe5c7ad601c448446d84aae7a896627b20" 1712 | dependencies = [ 1713 | "which", 1714 | "winapi", 1715 | ] 1716 | 1717 | [[package]] 1718 | name = "openssl" 1719 | version = "0.10.35" 1720 | source = "registry+https://github.com/rust-lang/crates.io-index" 1721 | checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885" 1722 | dependencies = [ 1723 | "bitflags 1.2.1", 1724 | "cfg-if 1.0.0", 1725 | "foreign-types", 1726 | "libc", 1727 | "once_cell", 1728 | "openssl-sys", 1729 | ] 1730 | 1731 | [[package]] 1732 | name = "openssl-probe" 1733 | version = "0.1.4" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" 1736 | 1737 | [[package]] 1738 | name = "openssl-sys" 1739 | version = "0.9.65" 1740 | source = "registry+https://github.com/rust-lang/crates.io-index" 1741 | checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d" 1742 | dependencies = [ 1743 | "autocfg", 1744 | "cc", 1745 | "libc", 1746 | "pkg-config", 1747 | "vcpkg", 1748 | ] 1749 | 1750 | [[package]] 1751 | name = "os_pipe" 1752 | version = "0.9.2" 1753 | source = "registry+https://github.com/rust-lang/crates.io-index" 1754 | checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213" 1755 | dependencies = [ 1756 | "libc", 1757 | "winapi", 1758 | ] 1759 | 1760 | [[package]] 1761 | name = "pango" 1762 | version = "0.9.1" 1763 | source = "registry+https://github.com/rust-lang/crates.io-index" 1764 | checksum = "9937068580bebd8ced19975938573803273ccbcbd598c58d4906efd4ac87c438" 1765 | dependencies = [ 1766 | "bitflags 1.2.1", 1767 | "glib", 1768 | "glib-sys", 1769 | "gobject-sys", 1770 | "libc", 1771 | "once_cell", 1772 | "pango-sys", 1773 | ] 1774 | 1775 | [[package]] 1776 | name = "pango-sys" 1777 | version = "0.10.0" 1778 | source = "registry+https://github.com/rust-lang/crates.io-index" 1779 | checksum = "24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890" 1780 | dependencies = [ 1781 | "glib-sys", 1782 | "gobject-sys", 1783 | "libc", 1784 | "system-deps", 1785 | ] 1786 | 1787 | [[package]] 1788 | name = "parking" 1789 | version = "2.0.0" 1790 | source = "registry+https://github.com/rust-lang/crates.io-index" 1791 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1792 | 1793 | [[package]] 1794 | name = "parking_lot" 1795 | version = "0.11.1" 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" 1797 | checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 1798 | dependencies = [ 1799 | "instant", 1800 | "lock_api", 1801 | "parking_lot_core", 1802 | ] 1803 | 1804 | [[package]] 1805 | name = "parking_lot_core" 1806 | version = "0.8.3" 1807 | source = "registry+https://github.com/rust-lang/crates.io-index" 1808 | checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" 1809 | dependencies = [ 1810 | "cfg-if 1.0.0", 1811 | "instant", 1812 | "libc", 1813 | "redox_syscall 0.2.9", 1814 | "smallvec", 1815 | "winapi", 1816 | ] 1817 | 1818 | [[package]] 1819 | name = "percent-encoding" 1820 | version = "2.1.0" 1821 | source = "registry+https://github.com/rust-lang/crates.io-index" 1822 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1823 | 1824 | [[package]] 1825 | name = "pest" 1826 | version = "2.1.3" 1827 | source = "registry+https://github.com/rust-lang/crates.io-index" 1828 | checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 1829 | dependencies = [ 1830 | "ucd-trie", 1831 | ] 1832 | 1833 | [[package]] 1834 | name = "phf" 1835 | version = "0.8.0" 1836 | source = "registry+https://github.com/rust-lang/crates.io-index" 1837 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1838 | dependencies = [ 1839 | "phf_macros 0.8.0", 1840 | "phf_shared 0.8.0", 1841 | "proc-macro-hack", 1842 | ] 1843 | 1844 | [[package]] 1845 | name = "phf" 1846 | version = "0.9.0" 1847 | source = "registry+https://github.com/rust-lang/crates.io-index" 1848 | checksum = "b2ac8b67553a7ca9457ce0e526948cad581819238f4a9d1ea74545851fa24f37" 1849 | dependencies = [ 1850 | "phf_macros 0.9.0", 1851 | "phf_shared 0.9.0", 1852 | "proc-macro-hack", 1853 | ] 1854 | 1855 | [[package]] 1856 | name = "phf_codegen" 1857 | version = "0.8.0" 1858 | source = "registry+https://github.com/rust-lang/crates.io-index" 1859 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1860 | dependencies = [ 1861 | "phf_generator 0.8.0", 1862 | "phf_shared 0.8.0", 1863 | ] 1864 | 1865 | [[package]] 1866 | name = "phf_generator" 1867 | version = "0.8.0" 1868 | source = "registry+https://github.com/rust-lang/crates.io-index" 1869 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1870 | dependencies = [ 1871 | "phf_shared 0.8.0", 1872 | "rand 0.7.3", 1873 | ] 1874 | 1875 | [[package]] 1876 | name = "phf_generator" 1877 | version = "0.9.0" 1878 | source = "registry+https://github.com/rust-lang/crates.io-index" 1879 | checksum = "0fc1437ada0f3a97d538f0bb608137bf53c53969028cab74c89893e1e9a12f0e" 1880 | dependencies = [ 1881 | "phf_shared 0.9.0", 1882 | "rand 0.8.4", 1883 | ] 1884 | 1885 | [[package]] 1886 | name = "phf_macros" 1887 | version = "0.8.0" 1888 | source = "registry+https://github.com/rust-lang/crates.io-index" 1889 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1890 | dependencies = [ 1891 | "phf_generator 0.8.0", 1892 | "phf_shared 0.8.0", 1893 | "proc-macro-hack", 1894 | "proc-macro2", 1895 | "quote 1.0.9", 1896 | "syn 1.0.73", 1897 | ] 1898 | 1899 | [[package]] 1900 | name = "phf_macros" 1901 | version = "0.9.0" 1902 | source = "registry+https://github.com/rust-lang/crates.io-index" 1903 | checksum = "b706f5936eb50ed880ae3009395b43ed19db5bff2ebd459c95e7bf013a89ab86" 1904 | dependencies = [ 1905 | "phf_generator 0.9.0", 1906 | "phf_shared 0.9.0", 1907 | "proc-macro-hack", 1908 | "proc-macro2", 1909 | "quote 1.0.9", 1910 | "syn 1.0.73", 1911 | ] 1912 | 1913 | [[package]] 1914 | name = "phf_shared" 1915 | version = "0.8.0" 1916 | source = "registry+https://github.com/rust-lang/crates.io-index" 1917 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1918 | dependencies = [ 1919 | "siphasher", 1920 | ] 1921 | 1922 | [[package]] 1923 | name = "phf_shared" 1924 | version = "0.9.0" 1925 | source = "registry+https://github.com/rust-lang/crates.io-index" 1926 | checksum = "a68318426de33640f02be62b4ae8eb1261be2efbc337b60c54d845bf4484e0d9" 1927 | dependencies = [ 1928 | "siphasher", 1929 | ] 1930 | 1931 | [[package]] 1932 | name = "pin-project-lite" 1933 | version = "0.2.7" 1934 | source = "registry+https://github.com/rust-lang/crates.io-index" 1935 | checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" 1936 | 1937 | [[package]] 1938 | name = "pin-utils" 1939 | version = "0.1.0" 1940 | source = "registry+https://github.com/rust-lang/crates.io-index" 1941 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1942 | 1943 | [[package]] 1944 | name = "pkg-config" 1945 | version = "0.3.19" 1946 | source = "registry+https://github.com/rust-lang/crates.io-index" 1947 | checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" 1948 | 1949 | [[package]] 1950 | name = "png" 1951 | version = "0.11.0" 1952 | source = "registry+https://github.com/rust-lang/crates.io-index" 1953 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1954 | dependencies = [ 1955 | "bitflags 1.2.1", 1956 | "deflate 0.7.20", 1957 | "inflate", 1958 | "num-iter", 1959 | ] 1960 | 1961 | [[package]] 1962 | name = "png" 1963 | version = "0.16.8" 1964 | source = "registry+https://github.com/rust-lang/crates.io-index" 1965 | checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" 1966 | dependencies = [ 1967 | "bitflags 1.2.1", 1968 | "crc32fast", 1969 | "deflate 0.8.6", 1970 | "miniz_oxide 0.3.7", 1971 | ] 1972 | 1973 | [[package]] 1974 | name = "polling" 1975 | version = "2.1.0" 1976 | source = "registry+https://github.com/rust-lang/crates.io-index" 1977 | checksum = "92341d779fa34ea8437ef4d82d440d5e1ce3f3ff7f824aa64424cd481f9a1f25" 1978 | dependencies = [ 1979 | "cfg-if 1.0.0", 1980 | "libc", 1981 | "log", 1982 | "wepoll-ffi", 1983 | "winapi", 1984 | ] 1985 | 1986 | [[package]] 1987 | name = "ppv-lite86" 1988 | version = "0.2.10" 1989 | source = "registry+https://github.com/rust-lang/crates.io-index" 1990 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 1991 | 1992 | [[package]] 1993 | name = "precomputed-hash" 1994 | version = "0.1.1" 1995 | source = "registry+https://github.com/rust-lang/crates.io-index" 1996 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1997 | 1998 | [[package]] 1999 | name = "proc-macro-crate" 2000 | version = "0.1.5" 2001 | source = "registry+https://github.com/rust-lang/crates.io-index" 2002 | checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 2003 | dependencies = [ 2004 | "toml", 2005 | ] 2006 | 2007 | [[package]] 2008 | name = "proc-macro-crate" 2009 | version = "1.0.0" 2010 | source = "registry+https://github.com/rust-lang/crates.io-index" 2011 | checksum = "41fdbd1df62156fbc5945f4762632564d7d038153091c3fcf1067f6aef7cff92" 2012 | dependencies = [ 2013 | "thiserror", 2014 | "toml", 2015 | ] 2016 | 2017 | [[package]] 2018 | name = "proc-macro-error" 2019 | version = "1.0.4" 2020 | source = "registry+https://github.com/rust-lang/crates.io-index" 2021 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2022 | dependencies = [ 2023 | "proc-macro-error-attr", 2024 | "proc-macro2", 2025 | "quote 1.0.9", 2026 | "syn 1.0.73", 2027 | "version_check", 2028 | ] 2029 | 2030 | [[package]] 2031 | name = "proc-macro-error-attr" 2032 | version = "1.0.4" 2033 | source = "registry+https://github.com/rust-lang/crates.io-index" 2034 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2035 | dependencies = [ 2036 | "proc-macro2", 2037 | "quote 1.0.9", 2038 | "version_check", 2039 | ] 2040 | 2041 | [[package]] 2042 | name = "proc-macro-hack" 2043 | version = "0.5.19" 2044 | source = "registry+https://github.com/rust-lang/crates.io-index" 2045 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2046 | 2047 | [[package]] 2048 | name = "proc-macro-nested" 2049 | version = "0.1.7" 2050 | source = "registry+https://github.com/rust-lang/crates.io-index" 2051 | checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" 2052 | 2053 | [[package]] 2054 | name = "proc-macro2" 2055 | version = "1.0.27" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" 2058 | dependencies = [ 2059 | "unicode-xid 0.2.2", 2060 | ] 2061 | 2062 | [[package]] 2063 | name = "quote" 2064 | version = "0.3.15" 2065 | source = "registry+https://github.com/rust-lang/crates.io-index" 2066 | checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 2067 | 2068 | [[package]] 2069 | name = "quote" 2070 | version = "1.0.9" 2071 | source = "registry+https://github.com/rust-lang/crates.io-index" 2072 | checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 2073 | dependencies = [ 2074 | "proc-macro2", 2075 | ] 2076 | 2077 | [[package]] 2078 | name = "rand" 2079 | version = "0.7.3" 2080 | source = "registry+https://github.com/rust-lang/crates.io-index" 2081 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2082 | dependencies = [ 2083 | "getrandom 0.1.16", 2084 | "libc", 2085 | "rand_chacha 0.2.2", 2086 | "rand_core 0.5.1", 2087 | "rand_hc 0.2.0", 2088 | "rand_pcg", 2089 | ] 2090 | 2091 | [[package]] 2092 | name = "rand" 2093 | version = "0.8.4" 2094 | source = "registry+https://github.com/rust-lang/crates.io-index" 2095 | checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" 2096 | dependencies = [ 2097 | "libc", 2098 | "rand_chacha 0.3.1", 2099 | "rand_core 0.6.3", 2100 | "rand_hc 0.3.1", 2101 | ] 2102 | 2103 | [[package]] 2104 | name = "rand_chacha" 2105 | version = "0.2.2" 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" 2107 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2108 | dependencies = [ 2109 | "ppv-lite86", 2110 | "rand_core 0.5.1", 2111 | ] 2112 | 2113 | [[package]] 2114 | name = "rand_chacha" 2115 | version = "0.3.1" 2116 | source = "registry+https://github.com/rust-lang/crates.io-index" 2117 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2118 | dependencies = [ 2119 | "ppv-lite86", 2120 | "rand_core 0.6.3", 2121 | ] 2122 | 2123 | [[package]] 2124 | name = "rand_core" 2125 | version = "0.5.1" 2126 | source = "registry+https://github.com/rust-lang/crates.io-index" 2127 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2128 | dependencies = [ 2129 | "getrandom 0.1.16", 2130 | ] 2131 | 2132 | [[package]] 2133 | name = "rand_core" 2134 | version = "0.6.3" 2135 | source = "registry+https://github.com/rust-lang/crates.io-index" 2136 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2137 | dependencies = [ 2138 | "getrandom 0.2.3", 2139 | ] 2140 | 2141 | [[package]] 2142 | name = "rand_hc" 2143 | version = "0.2.0" 2144 | source = "registry+https://github.com/rust-lang/crates.io-index" 2145 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2146 | dependencies = [ 2147 | "rand_core 0.5.1", 2148 | ] 2149 | 2150 | [[package]] 2151 | name = "rand_hc" 2152 | version = "0.3.1" 2153 | source = "registry+https://github.com/rust-lang/crates.io-index" 2154 | checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" 2155 | dependencies = [ 2156 | "rand_core 0.6.3", 2157 | ] 2158 | 2159 | [[package]] 2160 | name = "rand_pcg" 2161 | version = "0.2.1" 2162 | source = "registry+https://github.com/rust-lang/crates.io-index" 2163 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2164 | dependencies = [ 2165 | "rand_core 0.5.1", 2166 | ] 2167 | 2168 | [[package]] 2169 | name = "raw-window-handle" 2170 | version = "0.3.3" 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" 2172 | checksum = "0a441a7a6c80ad6473bd4b74ec1c9a4c951794285bf941c2126f607c72e48211" 2173 | dependencies = [ 2174 | "libc", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "rayon" 2179 | version = "1.5.1" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 2182 | dependencies = [ 2183 | "autocfg", 2184 | "crossbeam-deque", 2185 | "either", 2186 | "rayon-core", 2187 | ] 2188 | 2189 | [[package]] 2190 | name = "rayon-core" 2191 | version = "1.9.1" 2192 | source = "registry+https://github.com/rust-lang/crates.io-index" 2193 | checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 2194 | dependencies = [ 2195 | "crossbeam-channel", 2196 | "crossbeam-deque", 2197 | "crossbeam-utils", 2198 | "lazy_static", 2199 | "num_cpus", 2200 | ] 2201 | 2202 | [[package]] 2203 | name = "react-tauri" 2204 | version = "0.1.0" 2205 | dependencies = [ 2206 | "serde", 2207 | "serde_json", 2208 | "tauri", 2209 | "tauri-build", 2210 | ] 2211 | 2212 | [[package]] 2213 | name = "redox_syscall" 2214 | version = "0.1.57" 2215 | source = "registry+https://github.com/rust-lang/crates.io-index" 2216 | checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 2217 | 2218 | [[package]] 2219 | name = "redox_syscall" 2220 | version = "0.2.9" 2221 | source = "registry+https://github.com/rust-lang/crates.io-index" 2222 | checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee" 2223 | dependencies = [ 2224 | "bitflags 1.2.1", 2225 | ] 2226 | 2227 | [[package]] 2228 | name = "redox_users" 2229 | version = "0.3.5" 2230 | source = "registry+https://github.com/rust-lang/crates.io-index" 2231 | checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" 2232 | dependencies = [ 2233 | "getrandom 0.1.16", 2234 | "redox_syscall 0.1.57", 2235 | "rust-argon2", 2236 | ] 2237 | 2238 | [[package]] 2239 | name = "redox_users" 2240 | version = "0.4.0" 2241 | source = "registry+https://github.com/rust-lang/crates.io-index" 2242 | checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" 2243 | dependencies = [ 2244 | "getrandom 0.2.3", 2245 | "redox_syscall 0.2.9", 2246 | ] 2247 | 2248 | [[package]] 2249 | name = "regex" 2250 | version = "1.5.4" 2251 | source = "registry+https://github.com/rust-lang/crates.io-index" 2252 | checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 2253 | dependencies = [ 2254 | "aho-corasick", 2255 | "memchr", 2256 | "regex-syntax", 2257 | ] 2258 | 2259 | [[package]] 2260 | name = "regex-syntax" 2261 | version = "0.6.25" 2262 | source = "registry+https://github.com/rust-lang/crates.io-index" 2263 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 2264 | 2265 | [[package]] 2266 | name = "remove_dir_all" 2267 | version = "0.5.3" 2268 | source = "registry+https://github.com/rust-lang/crates.io-index" 2269 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2270 | dependencies = [ 2271 | "winapi", 2272 | ] 2273 | 2274 | [[package]] 2275 | name = "rfd" 2276 | version = "0.4.0" 2277 | source = "registry+https://github.com/rust-lang/crates.io-index" 2278 | checksum = "c1084e570d9ce1890734b33edd8c1a7b7276076f9610fa23a48aa955587da141" 2279 | dependencies = [ 2280 | "block", 2281 | "dispatch", 2282 | "glib-sys", 2283 | "gobject-sys", 2284 | "gtk-sys", 2285 | "js-sys", 2286 | "lazy_static", 2287 | "objc", 2288 | "objc-foundation", 2289 | "objc_id", 2290 | "raw-window-handle", 2291 | "wasm-bindgen", 2292 | "wasm-bindgen-futures", 2293 | "web-sys", 2294 | "winapi", 2295 | ] 2296 | 2297 | [[package]] 2298 | name = "rust-argon2" 2299 | version = "0.8.3" 2300 | source = "registry+https://github.com/rust-lang/crates.io-index" 2301 | checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" 2302 | dependencies = [ 2303 | "base64", 2304 | "blake2b_simd", 2305 | "constant_time_eq", 2306 | "crossbeam-utils", 2307 | ] 2308 | 2309 | [[package]] 2310 | name = "rustc_version" 2311 | version = "0.3.3" 2312 | source = "registry+https://github.com/rust-lang/crates.io-index" 2313 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2314 | dependencies = [ 2315 | "semver 0.11.0", 2316 | ] 2317 | 2318 | [[package]] 2319 | name = "rustversion" 2320 | version = "1.0.5" 2321 | source = "registry+https://github.com/rust-lang/crates.io-index" 2322 | checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088" 2323 | 2324 | [[package]] 2325 | name = "ryu" 2326 | version = "1.0.5" 2327 | source = "registry+https://github.com/rust-lang/crates.io-index" 2328 | checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 2329 | 2330 | [[package]] 2331 | name = "same-file" 2332 | version = "1.0.6" 2333 | source = "registry+https://github.com/rust-lang/crates.io-index" 2334 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2335 | dependencies = [ 2336 | "winapi-util", 2337 | ] 2338 | 2339 | [[package]] 2340 | name = "schannel" 2341 | version = "0.1.19" 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" 2343 | checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 2344 | dependencies = [ 2345 | "lazy_static", 2346 | "winapi", 2347 | ] 2348 | 2349 | [[package]] 2350 | name = "scoped-tls" 2351 | version = "1.0.0" 2352 | source = "registry+https://github.com/rust-lang/crates.io-index" 2353 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2354 | 2355 | [[package]] 2356 | name = "scopeguard" 2357 | version = "1.1.0" 2358 | source = "registry+https://github.com/rust-lang/crates.io-index" 2359 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2360 | 2361 | [[package]] 2362 | name = "security-framework" 2363 | version = "2.3.1" 2364 | source = "registry+https://github.com/rust-lang/crates.io-index" 2365 | checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467" 2366 | dependencies = [ 2367 | "bitflags 1.2.1", 2368 | "core-foundation 0.9.1", 2369 | "core-foundation-sys 0.8.2", 2370 | "libc", 2371 | "security-framework-sys", 2372 | ] 2373 | 2374 | [[package]] 2375 | name = "security-framework-sys" 2376 | version = "2.3.0" 2377 | source = "registry+https://github.com/rust-lang/crates.io-index" 2378 | checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284" 2379 | dependencies = [ 2380 | "core-foundation-sys 0.8.2", 2381 | "libc", 2382 | ] 2383 | 2384 | [[package]] 2385 | name = "selectors" 2386 | version = "0.22.0" 2387 | source = "registry+https://github.com/rust-lang/crates.io-index" 2388 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2389 | dependencies = [ 2390 | "bitflags 1.2.1", 2391 | "cssparser", 2392 | "derive_more", 2393 | "fxhash", 2394 | "log", 2395 | "matches", 2396 | "phf 0.8.0", 2397 | "phf_codegen", 2398 | "precomputed-hash", 2399 | "servo_arc", 2400 | "smallvec", 2401 | "thin-slice", 2402 | ] 2403 | 2404 | [[package]] 2405 | name = "semver" 2406 | version = "0.11.0" 2407 | source = "registry+https://github.com/rust-lang/crates.io-index" 2408 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2409 | dependencies = [ 2410 | "semver-parser", 2411 | ] 2412 | 2413 | [[package]] 2414 | name = "semver" 2415 | version = "1.0.3" 2416 | source = "registry+https://github.com/rust-lang/crates.io-index" 2417 | checksum = "5f3aac57ee7f3272d8395c6e4f502f434f0e289fcd62876f70daa008c20dcabe" 2418 | 2419 | [[package]] 2420 | name = "semver-parser" 2421 | version = "0.10.2" 2422 | source = "registry+https://github.com/rust-lang/crates.io-index" 2423 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2424 | dependencies = [ 2425 | "pest", 2426 | ] 2427 | 2428 | [[package]] 2429 | name = "serde" 2430 | version = "1.0.126" 2431 | source = "registry+https://github.com/rust-lang/crates.io-index" 2432 | checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03" 2433 | dependencies = [ 2434 | "serde_derive", 2435 | ] 2436 | 2437 | [[package]] 2438 | name = "serde_derive" 2439 | version = "1.0.126" 2440 | source = "registry+https://github.com/rust-lang/crates.io-index" 2441 | checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43" 2442 | dependencies = [ 2443 | "proc-macro2", 2444 | "quote 1.0.9", 2445 | "syn 1.0.73", 2446 | ] 2447 | 2448 | [[package]] 2449 | name = "serde_json" 2450 | version = "1.0.64" 2451 | source = "registry+https://github.com/rust-lang/crates.io-index" 2452 | checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" 2453 | dependencies = [ 2454 | "itoa", 2455 | "ryu", 2456 | "serde", 2457 | ] 2458 | 2459 | [[package]] 2460 | name = "serde_repr" 2461 | version = "0.1.7" 2462 | source = "registry+https://github.com/rust-lang/crates.io-index" 2463 | checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5" 2464 | dependencies = [ 2465 | "proc-macro2", 2466 | "quote 1.0.9", 2467 | "syn 1.0.73", 2468 | ] 2469 | 2470 | [[package]] 2471 | name = "serde_urlencoded" 2472 | version = "0.6.1" 2473 | source = "registry+https://github.com/rust-lang/crates.io-index" 2474 | checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" 2475 | dependencies = [ 2476 | "dtoa", 2477 | "itoa", 2478 | "serde", 2479 | "url", 2480 | ] 2481 | 2482 | [[package]] 2483 | name = "servo_arc" 2484 | version = "0.1.1" 2485 | source = "registry+https://github.com/rust-lang/crates.io-index" 2486 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2487 | dependencies = [ 2488 | "nodrop", 2489 | "stable_deref_trait", 2490 | ] 2491 | 2492 | [[package]] 2493 | name = "shared_child" 2494 | version = "0.3.5" 2495 | source = "registry+https://github.com/rust-lang/crates.io-index" 2496 | checksum = "6be9f7d5565b1483af3e72975e2dee33879b3b86bd48c0929fccf6585d79e65a" 2497 | dependencies = [ 2498 | "libc", 2499 | "winapi", 2500 | ] 2501 | 2502 | [[package]] 2503 | name = "siphasher" 2504 | version = "0.3.5" 2505 | source = "registry+https://github.com/rust-lang/crates.io-index" 2506 | checksum = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27" 2507 | 2508 | [[package]] 2509 | name = "slab" 2510 | version = "0.4.3" 2511 | source = "registry+https://github.com/rust-lang/crates.io-index" 2512 | checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527" 2513 | 2514 | [[package]] 2515 | name = "smallvec" 2516 | version = "1.6.1" 2517 | source = "registry+https://github.com/rust-lang/crates.io-index" 2518 | checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" 2519 | 2520 | [[package]] 2521 | name = "socket2" 2522 | version = "0.4.0" 2523 | source = "registry+https://github.com/rust-lang/crates.io-index" 2524 | checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2" 2525 | dependencies = [ 2526 | "libc", 2527 | "winapi", 2528 | ] 2529 | 2530 | [[package]] 2531 | name = "soup-sys" 2532 | version = "0.10.0" 2533 | source = "registry+https://github.com/rust-lang/crates.io-index" 2534 | checksum = "c3c7adf08565630bbb71f955f11f8a68464817ded2703a3549747c235b58a13e" 2535 | dependencies = [ 2536 | "bitflags 1.2.1", 2537 | "gio-sys", 2538 | "glib-sys", 2539 | "gobject-sys", 2540 | "libc", 2541 | "pkg-config", 2542 | "system-deps", 2543 | ] 2544 | 2545 | [[package]] 2546 | name = "stable_deref_trait" 2547 | version = "1.2.0" 2548 | source = "registry+https://github.com/rust-lang/crates.io-index" 2549 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2550 | 2551 | [[package]] 2552 | name = "state" 2553 | version = "0.5.2" 2554 | source = "registry+https://github.com/rust-lang/crates.io-index" 2555 | checksum = "87cf4f5369e6d3044b5e365c9690f451516ac8f0954084622b49ea3fde2f6de5" 2556 | dependencies = [ 2557 | "loom", 2558 | ] 2559 | 2560 | [[package]] 2561 | name = "static_assertions" 2562 | version = "1.1.0" 2563 | source = "registry+https://github.com/rust-lang/crates.io-index" 2564 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2565 | 2566 | [[package]] 2567 | name = "string_cache" 2568 | version = "0.8.1" 2569 | source = "registry+https://github.com/rust-lang/crates.io-index" 2570 | checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a" 2571 | dependencies = [ 2572 | "lazy_static", 2573 | "new_debug_unreachable", 2574 | "phf_shared 0.8.0", 2575 | "precomputed-hash", 2576 | "serde", 2577 | ] 2578 | 2579 | [[package]] 2580 | name = "string_cache_codegen" 2581 | version = "0.5.1" 2582 | source = "registry+https://github.com/rust-lang/crates.io-index" 2583 | checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97" 2584 | dependencies = [ 2585 | "phf_generator 0.8.0", 2586 | "phf_shared 0.8.0", 2587 | "proc-macro2", 2588 | "quote 1.0.9", 2589 | ] 2590 | 2591 | [[package]] 2592 | name = "strsim" 2593 | version = "0.9.3" 2594 | source = "registry+https://github.com/rust-lang/crates.io-index" 2595 | checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" 2596 | 2597 | [[package]] 2598 | name = "strum" 2599 | version = "0.8.0" 2600 | source = "registry+https://github.com/rust-lang/crates.io-index" 2601 | checksum = "4ca6e4730f517e041e547ffe23d29daab8de6b73af4b6ae2a002108169f5e7da" 2602 | 2603 | [[package]] 2604 | name = "strum" 2605 | version = "0.18.0" 2606 | source = "registry+https://github.com/rust-lang/crates.io-index" 2607 | checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b" 2608 | 2609 | [[package]] 2610 | name = "strum_macros" 2611 | version = "0.8.0" 2612 | source = "registry+https://github.com/rust-lang/crates.io-index" 2613 | checksum = "3384590878eb0cab3b128e844412e2d010821e7e091211b9d87324173ada7db8" 2614 | dependencies = [ 2615 | "quote 0.3.15", 2616 | "syn 0.11.11", 2617 | ] 2618 | 2619 | [[package]] 2620 | name = "strum_macros" 2621 | version = "0.18.0" 2622 | source = "registry+https://github.com/rust-lang/crates.io-index" 2623 | checksum = "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c" 2624 | dependencies = [ 2625 | "heck", 2626 | "proc-macro2", 2627 | "quote 1.0.9", 2628 | "syn 1.0.73", 2629 | ] 2630 | 2631 | [[package]] 2632 | name = "subtle" 2633 | version = "2.4.0" 2634 | source = "registry+https://github.com/rust-lang/crates.io-index" 2635 | checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" 2636 | 2637 | [[package]] 2638 | name = "syn" 2639 | version = "0.11.11" 2640 | source = "registry+https://github.com/rust-lang/crates.io-index" 2641 | checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 2642 | dependencies = [ 2643 | "quote 0.3.15", 2644 | "synom", 2645 | "unicode-xid 0.0.4", 2646 | ] 2647 | 2648 | [[package]] 2649 | name = "syn" 2650 | version = "1.0.73" 2651 | source = "registry+https://github.com/rust-lang/crates.io-index" 2652 | checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7" 2653 | dependencies = [ 2654 | "proc-macro2", 2655 | "quote 1.0.9", 2656 | "unicode-xid 0.2.2", 2657 | ] 2658 | 2659 | [[package]] 2660 | name = "synom" 2661 | version = "0.11.3" 2662 | source = "registry+https://github.com/rust-lang/crates.io-index" 2663 | checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 2664 | dependencies = [ 2665 | "unicode-xid 0.0.4", 2666 | ] 2667 | 2668 | [[package]] 2669 | name = "system-deps" 2670 | version = "1.3.2" 2671 | source = "registry+https://github.com/rust-lang/crates.io-index" 2672 | checksum = "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b" 2673 | dependencies = [ 2674 | "heck", 2675 | "pkg-config", 2676 | "strum 0.18.0", 2677 | "strum_macros 0.18.0", 2678 | "thiserror", 2679 | "toml", 2680 | "version-compare", 2681 | ] 2682 | 2683 | [[package]] 2684 | name = "tao" 2685 | version = "0.3.1" 2686 | source = "registry+https://github.com/rust-lang/crates.io-index" 2687 | checksum = "ecd33dd36dd20ca8a1222c770b13390b04c1a792a7cdf89ee29675d94f172ce5" 2688 | dependencies = [ 2689 | "bitflags 1.2.1", 2690 | "cairo-rs", 2691 | "cc", 2692 | "cocoa", 2693 | "core-foundation 0.9.1", 2694 | "core-graphics 0.22.2", 2695 | "core-video-sys", 2696 | "dispatch", 2697 | "gdk", 2698 | "gdk-pixbuf", 2699 | "gdk-sys", 2700 | "gio", 2701 | "glib", 2702 | "glib-sys", 2703 | "gtk", 2704 | "instant", 2705 | "lazy_static", 2706 | "libc", 2707 | "log", 2708 | "ndk", 2709 | "ndk-glue", 2710 | "ndk-sys", 2711 | "objc", 2712 | "parking_lot", 2713 | "raw-window-handle", 2714 | "scopeguard", 2715 | "serde", 2716 | "unicode-segmentation", 2717 | "winapi", 2718 | "x11-dl", 2719 | ] 2720 | 2721 | [[package]] 2722 | name = "tar" 2723 | version = "0.4.35" 2724 | source = "registry+https://github.com/rust-lang/crates.io-index" 2725 | checksum = "7d779dc6aeff029314570f666ec83f19df7280bb36ef338442cfa8c604021b80" 2726 | dependencies = [ 2727 | "filetime", 2728 | "libc", 2729 | "xattr", 2730 | ] 2731 | 2732 | [[package]] 2733 | name = "tauri" 2734 | version = "1.0.0-beta.4" 2735 | source = "registry+https://github.com/rust-lang/crates.io-index" 2736 | checksum = "402ed3f4f284573d060bc5c5a6cb369b90c2c84c2d65be2bb1fdb16b7ff4aab7" 2737 | dependencies = [ 2738 | "attohttpc", 2739 | "base64", 2740 | "bincode", 2741 | "cfg_aliases", 2742 | "dirs-next", 2743 | "either", 2744 | "flate2", 2745 | "futures", 2746 | "http", 2747 | "ignore", 2748 | "minisign-verify", 2749 | "notify-rust", 2750 | "once_cell", 2751 | "open", 2752 | "os_pipe", 2753 | "percent-encoding", 2754 | "rand 0.8.4", 2755 | "raw-window-handle", 2756 | "rfd", 2757 | "semver 1.0.3", 2758 | "serde", 2759 | "serde_json", 2760 | "serde_repr", 2761 | "shared_child", 2762 | "state", 2763 | "tar", 2764 | "tauri-macros", 2765 | "tauri-runtime", 2766 | "tauri-runtime-wry", 2767 | "tauri-utils", 2768 | "tempfile", 2769 | "thiserror", 2770 | "tokio", 2771 | "uuid", 2772 | "zip", 2773 | ] 2774 | 2775 | [[package]] 2776 | name = "tauri-build" 2777 | version = "1.0.0-beta.3" 2778 | source = "registry+https://github.com/rust-lang/crates.io-index" 2779 | checksum = "78fbf1de4ceafab0706c586a4abbb920051899d13aeb67a1d6953a79aced5d99" 2780 | dependencies = [ 2781 | "anyhow", 2782 | "proc-macro2", 2783 | "quote 1.0.9", 2784 | "serde_json", 2785 | "tauri-utils", 2786 | "winres", 2787 | ] 2788 | 2789 | [[package]] 2790 | name = "tauri-codegen" 2791 | version = "1.0.0-beta.2" 2792 | source = "registry+https://github.com/rust-lang/crates.io-index" 2793 | checksum = "9ce718568b0d350153207ecccc1e6230120cbe172ef17a8509a038fffc760b7b" 2794 | dependencies = [ 2795 | "blake3", 2796 | "proc-macro2", 2797 | "quote 1.0.9", 2798 | "serde", 2799 | "serde_json", 2800 | "tauri-utils", 2801 | "thiserror", 2802 | "walkdir", 2803 | "zstd", 2804 | ] 2805 | 2806 | [[package]] 2807 | name = "tauri-macros" 2808 | version = "1.0.0-beta.3" 2809 | source = "registry+https://github.com/rust-lang/crates.io-index" 2810 | checksum = "80bc96f49730223b245bc9faa3abd20f4a87d9f093a001e14110064b24717b82" 2811 | dependencies = [ 2812 | "proc-macro2", 2813 | "quote 1.0.9", 2814 | "syn 1.0.73", 2815 | "tauri-codegen", 2816 | ] 2817 | 2818 | [[package]] 2819 | name = "tauri-runtime" 2820 | version = "0.1.3" 2821 | source = "registry+https://github.com/rust-lang/crates.io-index" 2822 | checksum = "723b47b0bc453b6b5b1bab9a395c1b4deed68bb47f563cc8ebaac1df151fd0aa" 2823 | dependencies = [ 2824 | "serde", 2825 | "serde_json", 2826 | "tauri-utils", 2827 | "thiserror", 2828 | "uuid", 2829 | "winapi", 2830 | ] 2831 | 2832 | [[package]] 2833 | name = "tauri-runtime-wry" 2834 | version = "0.1.3" 2835 | source = "registry+https://github.com/rust-lang/crates.io-index" 2836 | checksum = "0eec0d7fda47c035dee40333bc0b939f6b65463d9d98d7de5d81e4030a9e8fc9" 2837 | dependencies = [ 2838 | "ico", 2839 | "infer", 2840 | "png 0.16.8", 2841 | "tauri-runtime", 2842 | "tauri-utils", 2843 | "uuid", 2844 | "winapi", 2845 | "wry", 2846 | ] 2847 | 2848 | [[package]] 2849 | name = "tauri-utils" 2850 | version = "1.0.0-beta.1" 2851 | source = "registry+https://github.com/rust-lang/crates.io-index" 2852 | checksum = "0e2d97d530d708dc61c1185425ea5fbcebb04fd33e31739ee8ed1eb50a79b3b4" 2853 | dependencies = [ 2854 | "heck", 2855 | "html5ever", 2856 | "kuchiki", 2857 | "phf 0.9.0", 2858 | "proc-macro2", 2859 | "quote 1.0.9", 2860 | "serde", 2861 | "serde_json", 2862 | "thiserror", 2863 | "url", 2864 | "zstd", 2865 | ] 2866 | 2867 | [[package]] 2868 | name = "tempfile" 2869 | version = "3.2.0" 2870 | source = "registry+https://github.com/rust-lang/crates.io-index" 2871 | checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" 2872 | dependencies = [ 2873 | "cfg-if 1.0.0", 2874 | "libc", 2875 | "rand 0.8.4", 2876 | "redox_syscall 0.2.9", 2877 | "remove_dir_all", 2878 | "winapi", 2879 | ] 2880 | 2881 | [[package]] 2882 | name = "tendril" 2883 | version = "0.4.2" 2884 | source = "registry+https://github.com/rust-lang/crates.io-index" 2885 | checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33" 2886 | dependencies = [ 2887 | "futf", 2888 | "mac", 2889 | "utf-8", 2890 | ] 2891 | 2892 | [[package]] 2893 | name = "thin-slice" 2894 | version = "0.1.1" 2895 | source = "registry+https://github.com/rust-lang/crates.io-index" 2896 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2897 | 2898 | [[package]] 2899 | name = "thiserror" 2900 | version = "1.0.26" 2901 | source = "registry+https://github.com/rust-lang/crates.io-index" 2902 | checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2" 2903 | dependencies = [ 2904 | "thiserror-impl", 2905 | ] 2906 | 2907 | [[package]] 2908 | name = "thiserror-impl" 2909 | version = "1.0.26" 2910 | source = "registry+https://github.com/rust-lang/crates.io-index" 2911 | checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745" 2912 | dependencies = [ 2913 | "proc-macro2", 2914 | "quote 1.0.9", 2915 | "syn 1.0.73", 2916 | ] 2917 | 2918 | [[package]] 2919 | name = "thread_local" 2920 | version = "1.1.3" 2921 | source = "registry+https://github.com/rust-lang/crates.io-index" 2922 | checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" 2923 | dependencies = [ 2924 | "once_cell", 2925 | ] 2926 | 2927 | [[package]] 2928 | name = "time" 2929 | version = "0.1.43" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 2932 | dependencies = [ 2933 | "libc", 2934 | "winapi", 2935 | ] 2936 | 2937 | [[package]] 2938 | name = "tinyvec" 2939 | version = "1.2.0" 2940 | source = "registry+https://github.com/rust-lang/crates.io-index" 2941 | checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342" 2942 | dependencies = [ 2943 | "tinyvec_macros", 2944 | ] 2945 | 2946 | [[package]] 2947 | name = "tinyvec_macros" 2948 | version = "0.1.0" 2949 | source = "registry+https://github.com/rust-lang/crates.io-index" 2950 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2951 | 2952 | [[package]] 2953 | name = "tokio" 2954 | version = "1.8.1" 2955 | source = "registry+https://github.com/rust-lang/crates.io-index" 2956 | checksum = "98c8b05dc14c75ea83d63dd391100353789f5f24b8b3866542a5e85c8be8e985" 2957 | dependencies = [ 2958 | "autocfg", 2959 | "num_cpus", 2960 | "pin-project-lite", 2961 | ] 2962 | 2963 | [[package]] 2964 | name = "toml" 2965 | version = "0.5.8" 2966 | source = "registry+https://github.com/rust-lang/crates.io-index" 2967 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" 2968 | dependencies = [ 2969 | "serde", 2970 | ] 2971 | 2972 | [[package]] 2973 | name = "typenum" 2974 | version = "1.13.0" 2975 | source = "registry+https://github.com/rust-lang/crates.io-index" 2976 | checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" 2977 | 2978 | [[package]] 2979 | name = "ucd-trie" 2980 | version = "0.1.3" 2981 | source = "registry+https://github.com/rust-lang/crates.io-index" 2982 | checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 2983 | 2984 | [[package]] 2985 | name = "unicode-bidi" 2986 | version = "0.3.5" 2987 | source = "registry+https://github.com/rust-lang/crates.io-index" 2988 | checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0" 2989 | dependencies = [ 2990 | "matches", 2991 | ] 2992 | 2993 | [[package]] 2994 | name = "unicode-normalization" 2995 | version = "0.1.19" 2996 | source = "registry+https://github.com/rust-lang/crates.io-index" 2997 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 2998 | dependencies = [ 2999 | "tinyvec", 3000 | ] 3001 | 3002 | [[package]] 3003 | name = "unicode-segmentation" 3004 | version = "1.8.0" 3005 | source = "registry+https://github.com/rust-lang/crates.io-index" 3006 | checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 3007 | 3008 | [[package]] 3009 | name = "unicode-xid" 3010 | version = "0.0.4" 3011 | source = "registry+https://github.com/rust-lang/crates.io-index" 3012 | checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 3013 | 3014 | [[package]] 3015 | name = "unicode-xid" 3016 | version = "0.2.2" 3017 | source = "registry+https://github.com/rust-lang/crates.io-index" 3018 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 3019 | 3020 | [[package]] 3021 | name = "url" 3022 | version = "2.2.2" 3023 | source = "registry+https://github.com/rust-lang/crates.io-index" 3024 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3025 | dependencies = [ 3026 | "form_urlencoded", 3027 | "idna", 3028 | "matches", 3029 | "percent-encoding", 3030 | "serde", 3031 | ] 3032 | 3033 | [[package]] 3034 | name = "utf-8" 3035 | version = "0.7.6" 3036 | source = "registry+https://github.com/rust-lang/crates.io-index" 3037 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3038 | 3039 | [[package]] 3040 | name = "uuid" 3041 | version = "0.8.2" 3042 | source = "registry+https://github.com/rust-lang/crates.io-index" 3043 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3044 | dependencies = [ 3045 | "getrandom 0.2.3", 3046 | ] 3047 | 3048 | [[package]] 3049 | name = "vcpkg" 3050 | version = "0.2.15" 3051 | source = "registry+https://github.com/rust-lang/crates.io-index" 3052 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3053 | 3054 | [[package]] 3055 | name = "version-compare" 3056 | version = "0.0.10" 3057 | source = "registry+https://github.com/rust-lang/crates.io-index" 3058 | checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" 3059 | 3060 | [[package]] 3061 | name = "version_check" 3062 | version = "0.9.3" 3063 | source = "registry+https://github.com/rust-lang/crates.io-index" 3064 | checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 3065 | 3066 | [[package]] 3067 | name = "void" 3068 | version = "1.0.2" 3069 | source = "registry+https://github.com/rust-lang/crates.io-index" 3070 | checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 3071 | 3072 | [[package]] 3073 | name = "waker-fn" 3074 | version = "1.1.0" 3075 | source = "registry+https://github.com/rust-lang/crates.io-index" 3076 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3077 | 3078 | [[package]] 3079 | name = "walkdir" 3080 | version = "2.3.2" 3081 | source = "registry+https://github.com/rust-lang/crates.io-index" 3082 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3083 | dependencies = [ 3084 | "same-file", 3085 | "winapi", 3086 | "winapi-util", 3087 | ] 3088 | 3089 | [[package]] 3090 | name = "wasi" 3091 | version = "0.9.0+wasi-snapshot-preview1" 3092 | source = "registry+https://github.com/rust-lang/crates.io-index" 3093 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3094 | 3095 | [[package]] 3096 | name = "wasi" 3097 | version = "0.10.2+wasi-snapshot-preview1" 3098 | source = "registry+https://github.com/rust-lang/crates.io-index" 3099 | checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 3100 | 3101 | [[package]] 3102 | name = "wasm-bindgen" 3103 | version = "0.2.74" 3104 | source = "registry+https://github.com/rust-lang/crates.io-index" 3105 | checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd" 3106 | dependencies = [ 3107 | "cfg-if 1.0.0", 3108 | "wasm-bindgen-macro", 3109 | ] 3110 | 3111 | [[package]] 3112 | name = "wasm-bindgen-backend" 3113 | version = "0.2.74" 3114 | source = "registry+https://github.com/rust-lang/crates.io-index" 3115 | checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900" 3116 | dependencies = [ 3117 | "bumpalo", 3118 | "lazy_static", 3119 | "log", 3120 | "proc-macro2", 3121 | "quote 1.0.9", 3122 | "syn 1.0.73", 3123 | "wasm-bindgen-shared", 3124 | ] 3125 | 3126 | [[package]] 3127 | name = "wasm-bindgen-futures" 3128 | version = "0.4.24" 3129 | source = "registry+https://github.com/rust-lang/crates.io-index" 3130 | checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1" 3131 | dependencies = [ 3132 | "cfg-if 1.0.0", 3133 | "js-sys", 3134 | "wasm-bindgen", 3135 | "web-sys", 3136 | ] 3137 | 3138 | [[package]] 3139 | name = "wasm-bindgen-macro" 3140 | version = "0.2.74" 3141 | source = "registry+https://github.com/rust-lang/crates.io-index" 3142 | checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4" 3143 | dependencies = [ 3144 | "quote 1.0.9", 3145 | "wasm-bindgen-macro-support", 3146 | ] 3147 | 3148 | [[package]] 3149 | name = "wasm-bindgen-macro-support" 3150 | version = "0.2.74" 3151 | source = "registry+https://github.com/rust-lang/crates.io-index" 3152 | checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97" 3153 | dependencies = [ 3154 | "proc-macro2", 3155 | "quote 1.0.9", 3156 | "syn 1.0.73", 3157 | "wasm-bindgen-backend", 3158 | "wasm-bindgen-shared", 3159 | ] 3160 | 3161 | [[package]] 3162 | name = "wasm-bindgen-shared" 3163 | version = "0.2.74" 3164 | source = "registry+https://github.com/rust-lang/crates.io-index" 3165 | checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f" 3166 | 3167 | [[package]] 3168 | name = "web-sys" 3169 | version = "0.3.51" 3170 | source = "registry+https://github.com/rust-lang/crates.io-index" 3171 | checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582" 3172 | dependencies = [ 3173 | "js-sys", 3174 | "wasm-bindgen", 3175 | ] 3176 | 3177 | [[package]] 3178 | name = "webkit2gtk" 3179 | version = "0.11.0" 3180 | source = "registry+https://github.com/rust-lang/crates.io-index" 3181 | checksum = "02b7e9eb04d30f8423e9c8435f686f42bc497cfcac2cfe4b43ce4139fb1a7cb6" 3182 | dependencies = [ 3183 | "bitflags 1.2.1", 3184 | "cairo-rs", 3185 | "gdk", 3186 | "gdk-sys", 3187 | "gio", 3188 | "gio-sys", 3189 | "glib", 3190 | "glib-sys", 3191 | "gobject-sys", 3192 | "gtk", 3193 | "gtk-sys", 3194 | "javascriptcore-rs", 3195 | "libc", 3196 | "webkit2gtk-sys", 3197 | ] 3198 | 3199 | [[package]] 3200 | name = "webkit2gtk-sys" 3201 | version = "0.13.0" 3202 | source = "registry+https://github.com/rust-lang/crates.io-index" 3203 | checksum = "72d10cf73685359cd8611740db241a231f4d74d7e353348dc5332a1a132d6f24" 3204 | dependencies = [ 3205 | "atk-sys", 3206 | "bitflags 1.2.1", 3207 | "cairo-sys-rs", 3208 | "gdk-pixbuf-sys", 3209 | "gdk-sys", 3210 | "gio-sys", 3211 | "glib-sys", 3212 | "gobject-sys", 3213 | "gtk-sys", 3214 | "javascriptcore-rs-sys", 3215 | "libc", 3216 | "pango-sys", 3217 | "pkg-config", 3218 | "soup-sys", 3219 | ] 3220 | 3221 | [[package]] 3222 | name = "webview2" 3223 | version = "0.1.1" 3224 | source = "registry+https://github.com/rust-lang/crates.io-index" 3225 | checksum = "6fab1ccfdabb098b047293c8d496c1914d1c654b68fdaa3bb77cfa47c4bca2c7" 3226 | dependencies = [ 3227 | "com", 3228 | "once_cell", 3229 | "webview2-sys", 3230 | "widestring", 3231 | "winapi", 3232 | ] 3233 | 3234 | [[package]] 3235 | name = "webview2-sys" 3236 | version = "0.1.0" 3237 | source = "registry+https://github.com/rust-lang/crates.io-index" 3238 | checksum = "cc5288cef1e0cbcf7a0b961e6271e33589b8989c80b2e11078504e989b5346ff" 3239 | dependencies = [ 3240 | "com", 3241 | "winapi", 3242 | ] 3243 | 3244 | [[package]] 3245 | name = "wepoll-ffi" 3246 | version = "0.1.2" 3247 | source = "registry+https://github.com/rust-lang/crates.io-index" 3248 | checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" 3249 | dependencies = [ 3250 | "cc", 3251 | ] 3252 | 3253 | [[package]] 3254 | name = "which" 3255 | version = "4.1.0" 3256 | source = "registry+https://github.com/rust-lang/crates.io-index" 3257 | checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe" 3258 | dependencies = [ 3259 | "either", 3260 | "libc", 3261 | ] 3262 | 3263 | [[package]] 3264 | name = "widestring" 3265 | version = "0.4.3" 3266 | source = "registry+https://github.com/rust-lang/crates.io-index" 3267 | checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" 3268 | 3269 | [[package]] 3270 | name = "wildmatch" 3271 | version = "1.1.0" 3272 | source = "registry+https://github.com/rust-lang/crates.io-index" 3273 | checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a" 3274 | 3275 | [[package]] 3276 | name = "winapi" 3277 | version = "0.3.9" 3278 | source = "registry+https://github.com/rust-lang/crates.io-index" 3279 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3280 | dependencies = [ 3281 | "winapi-i686-pc-windows-gnu", 3282 | "winapi-x86_64-pc-windows-gnu", 3283 | ] 3284 | 3285 | [[package]] 3286 | name = "winapi-i686-pc-windows-gnu" 3287 | version = "0.4.0" 3288 | source = "registry+https://github.com/rust-lang/crates.io-index" 3289 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3290 | 3291 | [[package]] 3292 | name = "winapi-util" 3293 | version = "0.1.5" 3294 | source = "registry+https://github.com/rust-lang/crates.io-index" 3295 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3296 | dependencies = [ 3297 | "winapi", 3298 | ] 3299 | 3300 | [[package]] 3301 | name = "winapi-x86_64-pc-windows-gnu" 3302 | version = "0.4.0" 3303 | source = "registry+https://github.com/rust-lang/crates.io-index" 3304 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3305 | 3306 | [[package]] 3307 | name = "winres" 3308 | version = "0.1.11" 3309 | source = "registry+https://github.com/rust-lang/crates.io-index" 3310 | checksum = "ff4fb510bbfe5b8992ff15f77a2e6fe6cf062878f0eda00c0f44963a807ca5dc" 3311 | dependencies = [ 3312 | "toml", 3313 | ] 3314 | 3315 | [[package]] 3316 | name = "winrt" 3317 | version = "0.4.0" 3318 | source = "registry+https://github.com/rust-lang/crates.io-index" 3319 | checksum = "7e30cba82e22b083dc5a422c2ee77e20dc7927271a0dc981360c57c1453cb48d" 3320 | dependencies = [ 3321 | "winapi", 3322 | ] 3323 | 3324 | [[package]] 3325 | name = "winrt-notification" 3326 | version = "0.2.4" 3327 | source = "registry+https://github.com/rust-lang/crates.io-index" 3328 | checksum = "57790eb281688a4682dab44df2a1ba8b78373233bd71cb291c3e75fecb1a01c4" 3329 | dependencies = [ 3330 | "strum 0.8.0", 3331 | "strum_macros 0.8.0", 3332 | "winapi", 3333 | "winrt", 3334 | "xml-rs", 3335 | ] 3336 | 3337 | [[package]] 3338 | name = "wry" 3339 | version = "0.10.3" 3340 | source = "registry+https://github.com/rust-lang/crates.io-index" 3341 | checksum = "dc08dc42962ffcf98b40a08399ccdfefea8095807d8c6b7d245277c29977f747" 3342 | dependencies = [ 3343 | "cocoa", 3344 | "core-graphics 0.22.2", 3345 | "gdk", 3346 | "gio", 3347 | "glib", 3348 | "gtk", 3349 | "libc", 3350 | "log", 3351 | "objc", 3352 | "objc_id", 3353 | "once_cell", 3354 | "serde", 3355 | "serde_json", 3356 | "tao", 3357 | "thiserror", 3358 | "url", 3359 | "webkit2gtk", 3360 | "webkit2gtk-sys", 3361 | "webview2", 3362 | "webview2-sys", 3363 | "winapi", 3364 | ] 3365 | 3366 | [[package]] 3367 | name = "x11-dl" 3368 | version = "2.18.5" 3369 | source = "registry+https://github.com/rust-lang/crates.io-index" 3370 | checksum = "2bf981e3a5b3301209754218f962052d4d9ee97e478f4d26d4a6eced34c1fef8" 3371 | dependencies = [ 3372 | "lazy_static", 3373 | "libc", 3374 | "maybe-uninit", 3375 | "pkg-config", 3376 | ] 3377 | 3378 | [[package]] 3379 | name = "xattr" 3380 | version = "0.2.2" 3381 | source = "registry+https://github.com/rust-lang/crates.io-index" 3382 | checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c" 3383 | dependencies = [ 3384 | "libc", 3385 | ] 3386 | 3387 | [[package]] 3388 | name = "xml-rs" 3389 | version = "0.6.1" 3390 | source = "registry+https://github.com/rust-lang/crates.io-index" 3391 | checksum = "e1945e12e16b951721d7976520b0832496ef79c31602c7a29d950de79ba74621" 3392 | dependencies = [ 3393 | "bitflags 0.9.1", 3394 | ] 3395 | 3396 | [[package]] 3397 | name = "zbus" 3398 | version = "1.9.1" 3399 | source = "registry+https://github.com/rust-lang/crates.io-index" 3400 | checksum = "2326acc379a3ac4e34b794089f5bdb17086bf29a5fdf619b7b4cc772dc2e9dad" 3401 | dependencies = [ 3402 | "async-io", 3403 | "byteorder", 3404 | "derivative", 3405 | "enumflags2", 3406 | "fastrand", 3407 | "futures", 3408 | "nb-connect", 3409 | "nix", 3410 | "once_cell", 3411 | "polling", 3412 | "scoped-tls", 3413 | "serde", 3414 | "serde_repr", 3415 | "zbus_macros", 3416 | "zvariant", 3417 | ] 3418 | 3419 | [[package]] 3420 | name = "zbus_macros" 3421 | version = "1.9.1" 3422 | source = "registry+https://github.com/rust-lang/crates.io-index" 3423 | checksum = "a482c56029e48681b89b92b5db3c446db0915e8dd1052c0328a574eda38d5f93" 3424 | dependencies = [ 3425 | "proc-macro-crate 0.1.5", 3426 | "proc-macro2", 3427 | "quote 1.0.9", 3428 | "syn 1.0.73", 3429 | ] 3430 | 3431 | [[package]] 3432 | name = "zip" 3433 | version = "0.5.13" 3434 | source = "registry+https://github.com/rust-lang/crates.io-index" 3435 | checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815" 3436 | dependencies = [ 3437 | "byteorder", 3438 | "bzip2", 3439 | "crc32fast", 3440 | "flate2", 3441 | "thiserror", 3442 | "time", 3443 | ] 3444 | 3445 | [[package]] 3446 | name = "zstd" 3447 | version = "0.9.0+zstd.1.5.0" 3448 | source = "registry+https://github.com/rust-lang/crates.io-index" 3449 | checksum = "07749a5dc2cb6b36661290245e350f15ec3bbb304e493db54a1d354480522ccd" 3450 | dependencies = [ 3451 | "zstd-safe", 3452 | ] 3453 | 3454 | [[package]] 3455 | name = "zstd-safe" 3456 | version = "4.1.1+zstd.1.5.0" 3457 | source = "registry+https://github.com/rust-lang/crates.io-index" 3458 | checksum = "c91c90f2c593b003603e5e0493c837088df4469da25aafff8bce42ba48caf079" 3459 | dependencies = [ 3460 | "libc", 3461 | "zstd-sys", 3462 | ] 3463 | 3464 | [[package]] 3465 | name = "zstd-sys" 3466 | version = "1.6.1+zstd.1.5.0" 3467 | source = "registry+https://github.com/rust-lang/crates.io-index" 3468 | checksum = "615120c7a2431d16cf1cf979e7fc31ba7a5b5e5707b29c8a99e5dbf8a8392a33" 3469 | dependencies = [ 3470 | "cc", 3471 | "libc", 3472 | ] 3473 | 3474 | [[package]] 3475 | name = "zvariant" 3476 | version = "2.7.0" 3477 | source = "registry+https://github.com/rust-lang/crates.io-index" 3478 | checksum = "fa9a0fc1c0ea8400723fdaddd3b381147d50991a40da39e6ea935b7d63204722" 3479 | dependencies = [ 3480 | "byteorder", 3481 | "enumflags2", 3482 | "serde", 3483 | "static_assertions", 3484 | "zvariant_derive", 3485 | ] 3486 | 3487 | [[package]] 3488 | name = "zvariant_derive" 3489 | version = "2.7.0" 3490 | source = "registry+https://github.com/rust-lang/crates.io-index" 3491 | checksum = "4cf1d7953d902d1bad61878a7c79bd224d4a83bdfc93c84cc703ec760b8b70e9" 3492 | dependencies = [ 3493 | "proc-macro-crate 1.0.0", 3494 | "proc-macro2", 3495 | "quote 1.0.9", 3496 | "syn 1.0.73", 3497 | ] 3498 | --------------------------------------------------------------------------------