├── .eslintignore ├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── eas.json ├── package.json ├── repoAssets ├── android.png ├── appimage.png ├── debian-app.png ├── debian-store.png ├── lighthouse.png ├── mac.png └── web.png ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── rustfmt.toml ├── src │ ├── build.rs │ └── main.rs └── tauri.conf.json ├── src ├── components │ └── MainHeader │ │ └── index.tsx ├── navigation │ └── index.tsx ├── screens │ ├── Counter │ │ └── index.tsx │ ├── Home │ │ └── index.tsx │ └── SplashScreen.web.tsx └── services │ ├── redux │ ├── index.ts │ └── reducers │ │ ├── DefaultReducer.ts │ │ └── index.ts │ └── themes │ └── index.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | web-build 3 | src-tauri 4 | .expo 5 | -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, 3 | "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | *.jks 5 | *.p8 6 | *.p12 7 | *.key 8 | *.mobileprovision 9 | *.orig.* 10 | web-build/ 11 | 12 | # macOS 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- 1 | import "react-native-gesture-handler"; 2 | import * as SplashScreen from "expo-splash-screen"; 3 | import { StatusBar } from "expo-status-bar"; 4 | import React, { useState, useEffect, useCallback } from "react"; 5 | import { View, Platform } from "react-native"; 6 | import { Provider as PaperProvider } from "react-native-paper"; 7 | import { Provider as ReduxProvider } from "react-redux"; 8 | import { PersistGate } from "redux-persist/integration/react"; 9 | 10 | // import root navigator 11 | import RootNavigator from "./src/navigation"; 12 | // importing screens 13 | import SplashScreenWeb from "./src/screens/SplashScreen.web"; 14 | // importing services 15 | import { store, persister } from "./src/services/redux/index"; 16 | import { CombinedDarkTheme } from "./src/services/themes"; 17 | 18 | export default function App() { 19 | const [isAppReady, setIsAppReady] = useState(false); 20 | 21 | // make sure the splash screen doesn't auto hide 22 | // also remember `expo-splash-screen` is not supported by web 23 | useEffect(() => { 24 | (async () => { 25 | try { 26 | await SplashScreen.preventAutoHideAsync(); 27 | // we can also load required assets here like initial API requests, fonts, etc. 28 | } catch (err) { 29 | console.log(err); 30 | } finally { 31 | setIsAppReady(true); 32 | } 33 | })(); 34 | }, []); 35 | 36 | // use a onLayout callback to avoid flicker when transitioning from splash to rendered app 37 | const onLayout = useCallback(async () => { 38 | if (isAppReady) { 39 | await SplashScreen.hideAsync(); 40 | } 41 | }, [isAppReady]); 42 | 43 | if (!isAppReady) { 44 | if (Platform.OS === "web") { 45 | return ; 46 | } 47 | return null; 48 | } 49 | 50 | return ( 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | ); 62 | } 63 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Sarthak Pranesh 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 | # React Native Everywhere 6 | 7 | ### Expo ( Android + Web + iOS ) + Tauri ( Desktop ) = ♥ 8 | 9 |
10 |
11 | 12 | ## What is RNE? 13 | 14 | RNE is a template I made to help me build Beautiful, Efficient, and write once run everywhere apps with Expo (React Native) building to Android, iOS and Web along with Desktop support using [Tauri](https://github.com/tauri-apps/tauri). This template includes some common libraries and configurations that I find myself using in almost all React Native project. 15 | 16 | Beware: I am using libraries and configuration the way I like the most, your choices and the most efficient way to do it might differ. 17 | 18 |
19 | 20 | ## Whats included 21 | The most relevant list of packages included in the template are as follows: 22 | - [React Native Paper](https://callstack.github.io/react-native-paper/) 23 | - [React Navigation](https://reactnavigation.org/) 24 | - [Redux](https://redux.js.org/) along with `redux-logger` and `redux-persist` 25 | - [react-redux](https://react-redux.js.org/) 26 | - [React Native Async Storage](https://react-native-async-storage.github.io/async-storage/docs/install/) 27 | - [Tauri](https://github.com/tauri-apps/tauri) 28 | 29 |
30 | 31 | ## Using the template 32 | To Get started click on that `Use this template` button in the repository and create your own repository. 33 | ### Initial changes 34 | We have to make some initial changes before we start building our app, please follow below steps carefully: 35 | - change all the relevant fields to your project specific details in `./app.json` and `./src-tauri/tauri.conf.json` 36 | - change the app icons in `assets`, namely the `adaptive-icon.png`, `favicon.png`, `icon.png` and `splash.png`. Tauri specific icons will be generated using `./assets/icon.png`, once you have added the new assets run `yarn tauri icon ./assets/icon.png` this will generate the asset icons required by our desktop builds. 37 | 38 | Now its time you build your app :> 39 | 40 | ### Working 41 | Their are multiple scripts in the `package.json`, most of them are just the default once that come with tauri and expo so I won't be documenting them. Building your Android, iOS and Web app using this template is same when using just `expo` so I will be skipping that. You can find below the general flow of development for desktop apps though. 42 | 43 | For developing desktop app their are actually two steps: 44 | - tauri depends on a web bundler like `webpack` so we first start our expo web development server using `yarn web` and we leave it running 45 | - open another terminal and now we can run `yarn desktop` that will start our tauri app in development mode 46 | 47 | For building desktop app we employee a similar approach: 48 | - we first build our web version of the app using `yarn build-web` 49 | - once the web version is build we use `tauri` to package the web app using `yarn build-desktop` 50 | 51 |
52 | 53 | ## Issues 54 | Enjoy the errors they are a feature :P ( kidding open an issue/improvements [here](https://github.com/sarthakpranesh/react-native-everywhere/issues)) 55 | 56 |
57 | 58 | ## What to expect 59 | This template will allow you to build beautiful React Native apps quickly for almost all platforms ( Android + iOS + Web + Linux + Windows + MacOS ). For platform specific APIs on Android, iOS and Web things need to be handled using Expo, whereas for desktop we'll be using what's provided by Tauri. This template is fast and reliable and I have run the light house test on it (results below). You can find the release builds for the template in [Github Release Page](https://github.com/sarthakpranesh/react-native-everywhere/releases) 60 | 61 | ### Android 62 |
63 | 64 |
65 | 66 | ### Web 67 |
68 | 69 | 70 |
71 | 72 | ### Mac 73 |
74 | 75 |
76 | 77 | ### Linux 78 | #### Debian 79 |
80 | 81 | 82 |
83 | 84 | #### AppImage 85 |
86 | 87 |
88 | 89 |
90 | 91 |
92 | 93 | ### Made with ♥ in India 94 | 95 |
96 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "name": "rne", 4 | "slug": "rne", 5 | "version": "1.0.0", 6 | "orientation": "portrait", 7 | "icon": "./assets/icon.png", 8 | "splash": { 9 | "image": "./assets/splash.png", 10 | "resizeMode": "contain", 11 | "backgroundColor": "#000000" 12 | }, 13 | "updates": { 14 | "fallbackToCacheTimeout": 0 15 | }, 16 | "assetBundlePatterns": [ 17 | "**/*" 18 | ], 19 | "ios": { 20 | "supportsTablet": true, 21 | "bundleIdentifier": "com.sarthakpranesh.rne" 22 | }, 23 | "android": { 24 | "adaptiveIcon": { 25 | "foregroundImage": "./assets/adaptive-icon.png", 26 | "backgroundColor": "#000000" 27 | }, 28 | "package": "com.sarthakpranesh.rne" 29 | }, 30 | "web": { 31 | "favicon": "./assets/favicon.png" 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function (api) { 2 | api.cache(true); 3 | return { 4 | presets: ["babel-preset-expo"], 5 | env: { 6 | production: { 7 | plugins: ["react-native-paper/babel"], 8 | }, 9 | }, 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- 1 | { 2 | "cli": { 3 | "version": ">= 0.57.0" 4 | }, 5 | "build": { 6 | "development": { 7 | "developmentClient": true, 8 | "distribution": "internal" 9 | }, 10 | "preview": { 11 | "distribution": "internal" 12 | }, 13 | "production": {} 14 | }, 15 | "submit": { 16 | "production": {} 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "node_modules/expo/AppEntry.js", 3 | "scripts": { 4 | "start": "expo start", 5 | "android": "expo start --android", 6 | "ios": "expo start --ios", 7 | "web": "expo start --web", 8 | "eject": "expo eject", 9 | "desktop": "tauri dev", 10 | "build-android": "eas build -p android", 11 | "build-ios": "eas build -p ios", 12 | "build-web": "expo export:web", 13 | "build-desktop": "tauri build", 14 | "lint": "eslint ." 15 | }, 16 | "dependencies": { 17 | "@expo/webpack-config": "^0.17.0", 18 | "@react-native-async-storage/async-storage": "~1.17.3", 19 | "@react-navigation/native": "^6.0.11", 20 | "@react-navigation/stack": "^6.2.2", 21 | "@tauri-apps/api": "^1.0.2", 22 | "deepmerge": "^4.2.2", 23 | "expo": "^46.0.0", 24 | "expo-splash-screen": "~0.16.1", 25 | "expo-status-bar": "~1.4.0", 26 | "react": "18.0.0", 27 | "react-dom": "18.0.0", 28 | "react-native": "0.69.3", 29 | "react-native-gesture-handler": "~2.5.0", 30 | "react-native-paper": "^4.12.4", 31 | "react-native-safe-area-context": "4.3.1", 32 | "react-native-screens": "~3.15.0", 33 | "react-native-web": "~0.18.7", 34 | "react-redux": "^8.0.2", 35 | "redux": "^4.2.0", 36 | "redux-logger": "^3.0.6", 37 | "redux-persist": "^6.0.0" 38 | }, 39 | "devDependencies": { 40 | "@babel/core": "^7.18.6", 41 | "@tauri-apps/cli": "^1.0.5", 42 | "@types/react": "~18.0.0", 43 | "@types/react-native": "~0.69.1", 44 | "@types/redux-logger": "^3.0.9", 45 | "@typescript-eslint/eslint-plugin": "^5.32.0", 46 | "@typescript-eslint/parser": "^5.32.0", 47 | "babel-preset-expo": "~9.2.0", 48 | "eslint": "^8.21.0", 49 | "eslint-config-universe": "^11.1.0", 50 | "prettier": "^2.7.1", 51 | "typescript": "^4.6.3" 52 | }, 53 | "private": true, 54 | "eslintConfig": { 55 | "extends": "universe/native" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /repoAssets/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/android.png -------------------------------------------------------------------------------- /repoAssets/appimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/appimage.png -------------------------------------------------------------------------------- /repoAssets/debian-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/debian-app.png -------------------------------------------------------------------------------- /repoAssets/debian-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/debian-store.png -------------------------------------------------------------------------------- /repoAssets/lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/lighthouse.png -------------------------------------------------------------------------------- /repoAssets/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/mac.png -------------------------------------------------------------------------------- /repoAssets/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/repoAssets/web.png -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | WixTools 5 | -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "adler" 7 | version = "1.0.2" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 | 11 | [[package]] 12 | name = "adler32" 13 | version = "1.2.0" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 16 | 17 | [[package]] 18 | name = "aho-corasick" 19 | version = "0.7.18" 20 | source = "registry+https://github.com/rust-lang/crates.io-index" 21 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 22 | dependencies = [ 23 | "memchr", 24 | ] 25 | 26 | [[package]] 27 | name = "alloc-no-stdlib" 28 | version = "2.0.3" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3" 31 | 32 | [[package]] 33 | name = "alloc-stdlib" 34 | version = "0.2.1" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2" 37 | dependencies = [ 38 | "alloc-no-stdlib", 39 | ] 40 | 41 | [[package]] 42 | name = "ansi_term" 43 | version = "0.12.1" 44 | source = "registry+https://github.com/rust-lang/crates.io-index" 45 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 46 | dependencies = [ 47 | "winapi", 48 | ] 49 | 50 | [[package]] 51 | name = "anyhow" 52 | version = "1.0.60" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "c794e162a5eff65c72ef524dfe393eb923c354e350bb78b9c7383df13f3bc142" 55 | 56 | [[package]] 57 | name = "app" 58 | version = "0.1.0" 59 | dependencies = [ 60 | "serde", 61 | "serde_json", 62 | "tauri", 63 | "tauri-build", 64 | ] 65 | 66 | [[package]] 67 | name = "atk" 68 | version = "0.15.1" 69 | source = "registry+https://github.com/rust-lang/crates.io-index" 70 | checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 71 | dependencies = [ 72 | "atk-sys", 73 | "bitflags", 74 | "glib", 75 | "libc", 76 | ] 77 | 78 | [[package]] 79 | name = "atk-sys" 80 | version = "0.15.1" 81 | source = "registry+https://github.com/rust-lang/crates.io-index" 82 | checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 83 | dependencies = [ 84 | "glib-sys", 85 | "gobject-sys", 86 | "libc", 87 | "system-deps 6.0.2", 88 | ] 89 | 90 | [[package]] 91 | name = "attohttpc" 92 | version = "0.19.1" 93 | source = "registry+https://github.com/rust-lang/crates.io-index" 94 | checksum = "262c3f7f5d61249d8c00e5546e2685cd15ebeeb1bc0f3cc5449350a1cb07319e" 95 | dependencies = [ 96 | "flate2", 97 | "http", 98 | "log", 99 | "native-tls", 100 | "openssl", 101 | "serde", 102 | "serde_json", 103 | "serde_urlencoded", 104 | "url", 105 | "wildmatch", 106 | ] 107 | 108 | [[package]] 109 | name = "autocfg" 110 | version = "1.1.0" 111 | source = "registry+https://github.com/rust-lang/crates.io-index" 112 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 113 | 114 | [[package]] 115 | name = "base64" 116 | version = "0.13.0" 117 | source = "registry+https://github.com/rust-lang/crates.io-index" 118 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 119 | 120 | [[package]] 121 | name = "bitflags" 122 | version = "1.3.2" 123 | source = "registry+https://github.com/rust-lang/crates.io-index" 124 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 125 | 126 | [[package]] 127 | name = "block" 128 | version = "0.1.6" 129 | source = "registry+https://github.com/rust-lang/crates.io-index" 130 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 131 | 132 | [[package]] 133 | name = "block-buffer" 134 | version = "0.10.2" 135 | source = "registry+https://github.com/rust-lang/crates.io-index" 136 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 137 | dependencies = [ 138 | "generic-array", 139 | ] 140 | 141 | [[package]] 142 | name = "brotli" 143 | version = "3.3.4" 144 | source = "registry+https://github.com/rust-lang/crates.io-index" 145 | checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 146 | dependencies = [ 147 | "alloc-no-stdlib", 148 | "alloc-stdlib", 149 | "brotli-decompressor", 150 | ] 151 | 152 | [[package]] 153 | name = "brotli-decompressor" 154 | version = "2.3.2" 155 | source = "registry+https://github.com/rust-lang/crates.io-index" 156 | checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 157 | dependencies = [ 158 | "alloc-no-stdlib", 159 | "alloc-stdlib", 160 | ] 161 | 162 | [[package]] 163 | name = "bstr" 164 | version = "0.2.17" 165 | source = "registry+https://github.com/rust-lang/crates.io-index" 166 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 167 | dependencies = [ 168 | "memchr", 169 | ] 170 | 171 | [[package]] 172 | name = "bumpalo" 173 | version = "3.10.0" 174 | source = "registry+https://github.com/rust-lang/crates.io-index" 175 | checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 176 | 177 | [[package]] 178 | name = "bytemuck" 179 | version = "1.11.0" 180 | source = "registry+https://github.com/rust-lang/crates.io-index" 181 | checksum = "a5377c8865e74a160d21f29c2d40669f53286db6eab59b88540cbb12ffc8b835" 182 | 183 | [[package]] 184 | name = "byteorder" 185 | version = "1.4.3" 186 | source = "registry+https://github.com/rust-lang/crates.io-index" 187 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 188 | 189 | [[package]] 190 | name = "bytes" 191 | version = "1.2.1" 192 | source = "registry+https://github.com/rust-lang/crates.io-index" 193 | checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 194 | 195 | [[package]] 196 | name = "cairo-rs" 197 | version = "0.15.12" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 200 | dependencies = [ 201 | "bitflags", 202 | "cairo-sys-rs", 203 | "glib", 204 | "libc", 205 | "thiserror", 206 | ] 207 | 208 | [[package]] 209 | name = "cairo-sys-rs" 210 | version = "0.15.1" 211 | source = "registry+https://github.com/rust-lang/crates.io-index" 212 | checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 213 | dependencies = [ 214 | "glib-sys", 215 | "libc", 216 | "system-deps 6.0.2", 217 | ] 218 | 219 | [[package]] 220 | name = "cargo_toml" 221 | version = "0.11.5" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "5809dd3e6444651fd1cdd3dbec71eca438c439a0fcc8081674a14da0afe50185" 224 | dependencies = [ 225 | "serde", 226 | "serde_derive", 227 | "toml", 228 | ] 229 | 230 | [[package]] 231 | name = "cc" 232 | version = "1.0.73" 233 | source = "registry+https://github.com/rust-lang/crates.io-index" 234 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 235 | 236 | [[package]] 237 | name = "cesu8" 238 | version = "1.1.0" 239 | source = "registry+https://github.com/rust-lang/crates.io-index" 240 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 241 | 242 | [[package]] 243 | name = "cfb" 244 | version = "0.6.1" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c" 247 | dependencies = [ 248 | "byteorder", 249 | "uuid 0.8.2", 250 | ] 251 | 252 | [[package]] 253 | name = "cfg-expr" 254 | version = "0.9.1" 255 | source = "registry+https://github.com/rust-lang/crates.io-index" 256 | checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 257 | dependencies = [ 258 | "smallvec", 259 | ] 260 | 261 | [[package]] 262 | name = "cfg-expr" 263 | version = "0.10.3" 264 | source = "registry+https://github.com/rust-lang/crates.io-index" 265 | checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" 266 | dependencies = [ 267 | "smallvec", 268 | ] 269 | 270 | [[package]] 271 | name = "cfg-if" 272 | version = "1.0.0" 273 | source = "registry+https://github.com/rust-lang/crates.io-index" 274 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 275 | 276 | [[package]] 277 | name = "cocoa" 278 | version = "0.24.0" 279 | source = "registry+https://github.com/rust-lang/crates.io-index" 280 | checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832" 281 | dependencies = [ 282 | "bitflags", 283 | "block", 284 | "cocoa-foundation", 285 | "core-foundation", 286 | "core-graphics", 287 | "foreign-types", 288 | "libc", 289 | "objc", 290 | ] 291 | 292 | [[package]] 293 | name = "cocoa-foundation" 294 | version = "0.1.0" 295 | source = "registry+https://github.com/rust-lang/crates.io-index" 296 | checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 297 | dependencies = [ 298 | "bitflags", 299 | "block", 300 | "core-foundation", 301 | "core-graphics-types", 302 | "foreign-types", 303 | "libc", 304 | "objc", 305 | ] 306 | 307 | [[package]] 308 | name = "color_quant" 309 | version = "1.1.0" 310 | source = "registry+https://github.com/rust-lang/crates.io-index" 311 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 312 | 313 | [[package]] 314 | name = "combine" 315 | version = "4.6.4" 316 | source = "registry+https://github.com/rust-lang/crates.io-index" 317 | checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948" 318 | dependencies = [ 319 | "bytes", 320 | "memchr", 321 | ] 322 | 323 | [[package]] 324 | name = "convert_case" 325 | version = "0.4.0" 326 | source = "registry+https://github.com/rust-lang/crates.io-index" 327 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 328 | 329 | [[package]] 330 | name = "core-foundation" 331 | version = "0.9.3" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 334 | dependencies = [ 335 | "core-foundation-sys", 336 | "libc", 337 | ] 338 | 339 | [[package]] 340 | name = "core-foundation-sys" 341 | version = "0.8.3" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 344 | 345 | [[package]] 346 | name = "core-graphics" 347 | version = "0.22.3" 348 | source = "registry+https://github.com/rust-lang/crates.io-index" 349 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 350 | dependencies = [ 351 | "bitflags", 352 | "core-foundation", 353 | "core-graphics-types", 354 | "foreign-types", 355 | "libc", 356 | ] 357 | 358 | [[package]] 359 | name = "core-graphics-types" 360 | version = "0.1.1" 361 | source = "registry+https://github.com/rust-lang/crates.io-index" 362 | checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 363 | dependencies = [ 364 | "bitflags", 365 | "core-foundation", 366 | "foreign-types", 367 | "libc", 368 | ] 369 | 370 | [[package]] 371 | name = "cpufeatures" 372 | version = "0.2.2" 373 | source = "registry+https://github.com/rust-lang/crates.io-index" 374 | checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 375 | dependencies = [ 376 | "libc", 377 | ] 378 | 379 | [[package]] 380 | name = "crc32fast" 381 | version = "1.3.2" 382 | source = "registry+https://github.com/rust-lang/crates.io-index" 383 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 384 | dependencies = [ 385 | "cfg-if", 386 | ] 387 | 388 | [[package]] 389 | name = "crossbeam-channel" 390 | version = "0.5.6" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 393 | dependencies = [ 394 | "cfg-if", 395 | "crossbeam-utils", 396 | ] 397 | 398 | [[package]] 399 | name = "crossbeam-utils" 400 | version = "0.8.11" 401 | source = "registry+https://github.com/rust-lang/crates.io-index" 402 | checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 403 | dependencies = [ 404 | "cfg-if", 405 | "once_cell", 406 | ] 407 | 408 | [[package]] 409 | name = "crypto-common" 410 | version = "0.1.6" 411 | source = "registry+https://github.com/rust-lang/crates.io-index" 412 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 413 | dependencies = [ 414 | "generic-array", 415 | "typenum", 416 | ] 417 | 418 | [[package]] 419 | name = "cssparser" 420 | version = "0.27.2" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 423 | dependencies = [ 424 | "cssparser-macros", 425 | "dtoa-short", 426 | "itoa 0.4.8", 427 | "matches", 428 | "phf 0.8.0", 429 | "proc-macro2", 430 | "quote", 431 | "smallvec", 432 | "syn", 433 | ] 434 | 435 | [[package]] 436 | name = "cssparser-macros" 437 | version = "0.6.0" 438 | source = "registry+https://github.com/rust-lang/crates.io-index" 439 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 440 | dependencies = [ 441 | "quote", 442 | "syn", 443 | ] 444 | 445 | [[package]] 446 | name = "ctor" 447 | version = "0.1.23" 448 | source = "registry+https://github.com/rust-lang/crates.io-index" 449 | checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 450 | dependencies = [ 451 | "quote", 452 | "syn", 453 | ] 454 | 455 | [[package]] 456 | name = "cty" 457 | version = "0.2.2" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 460 | 461 | [[package]] 462 | name = "darling" 463 | version = "0.13.4" 464 | source = "registry+https://github.com/rust-lang/crates.io-index" 465 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 466 | dependencies = [ 467 | "darling_core", 468 | "darling_macro", 469 | ] 470 | 471 | [[package]] 472 | name = "darling_core" 473 | version = "0.13.4" 474 | source = "registry+https://github.com/rust-lang/crates.io-index" 475 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 476 | dependencies = [ 477 | "fnv", 478 | "ident_case", 479 | "proc-macro2", 480 | "quote", 481 | "strsim", 482 | "syn", 483 | ] 484 | 485 | [[package]] 486 | name = "darling_macro" 487 | version = "0.13.4" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 490 | dependencies = [ 491 | "darling_core", 492 | "quote", 493 | "syn", 494 | ] 495 | 496 | [[package]] 497 | name = "dbus" 498 | version = "0.9.6" 499 | source = "registry+https://github.com/rust-lang/crates.io-index" 500 | checksum = "6f8bcdd56d2e5c4ed26a529c5a9029f5db8290d433497506f958eae3be148eb6" 501 | dependencies = [ 502 | "libc", 503 | "libdbus-sys", 504 | "winapi", 505 | ] 506 | 507 | [[package]] 508 | name = "deflate" 509 | version = "0.7.20" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4" 512 | dependencies = [ 513 | "adler32", 514 | "byteorder", 515 | ] 516 | 517 | [[package]] 518 | name = "deflate" 519 | version = "1.0.0" 520 | source = "registry+https://github.com/rust-lang/crates.io-index" 521 | checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f" 522 | dependencies = [ 523 | "adler32", 524 | ] 525 | 526 | [[package]] 527 | name = "derive_more" 528 | version = "0.99.17" 529 | source = "registry+https://github.com/rust-lang/crates.io-index" 530 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 531 | dependencies = [ 532 | "convert_case", 533 | "proc-macro2", 534 | "quote", 535 | "rustc_version 0.4.0", 536 | "syn", 537 | ] 538 | 539 | [[package]] 540 | name = "digest" 541 | version = "0.10.3" 542 | source = "registry+https://github.com/rust-lang/crates.io-index" 543 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 544 | dependencies = [ 545 | "block-buffer", 546 | "crypto-common", 547 | ] 548 | 549 | [[package]] 550 | name = "dirs-next" 551 | version = "2.0.0" 552 | source = "registry+https://github.com/rust-lang/crates.io-index" 553 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 554 | dependencies = [ 555 | "cfg-if", 556 | "dirs-sys-next", 557 | ] 558 | 559 | [[package]] 560 | name = "dirs-sys-next" 561 | version = "0.1.2" 562 | source = "registry+https://github.com/rust-lang/crates.io-index" 563 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 564 | dependencies = [ 565 | "libc", 566 | "redox_users", 567 | "winapi", 568 | ] 569 | 570 | [[package]] 571 | name = "dispatch" 572 | version = "0.2.0" 573 | source = "registry+https://github.com/rust-lang/crates.io-index" 574 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 575 | 576 | [[package]] 577 | name = "dtoa" 578 | version = "0.4.8" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 581 | 582 | [[package]] 583 | name = "dtoa-short" 584 | version = "0.3.3" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 587 | dependencies = [ 588 | "dtoa", 589 | ] 590 | 591 | [[package]] 592 | name = "embed-resource" 593 | version = "1.7.2" 594 | source = "registry+https://github.com/rust-lang/crates.io-index" 595 | checksum = "ecc24ff8d764818e9ab17963b0593c535f077a513f565e75e4352d758bc4d8c0" 596 | dependencies = [ 597 | "cc", 598 | "rustc_version 0.4.0", 599 | "toml", 600 | "vswhom", 601 | "winreg", 602 | ] 603 | 604 | [[package]] 605 | name = "embed_plist" 606 | version = "1.2.2" 607 | source = "registry+https://github.com/rust-lang/crates.io-index" 608 | checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 609 | 610 | [[package]] 611 | name = "fastrand" 612 | version = "1.8.0" 613 | source = "registry+https://github.com/rust-lang/crates.io-index" 614 | checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 615 | dependencies = [ 616 | "instant", 617 | ] 618 | 619 | [[package]] 620 | name = "field-offset" 621 | version = "0.3.4" 622 | source = "registry+https://github.com/rust-lang/crates.io-index" 623 | checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 624 | dependencies = [ 625 | "memoffset", 626 | "rustc_version 0.3.3", 627 | ] 628 | 629 | [[package]] 630 | name = "filetime" 631 | version = "0.2.17" 632 | source = "registry+https://github.com/rust-lang/crates.io-index" 633 | checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 634 | dependencies = [ 635 | "cfg-if", 636 | "libc", 637 | "redox_syscall", 638 | "windows-sys", 639 | ] 640 | 641 | [[package]] 642 | name = "flate2" 643 | version = "1.0.24" 644 | source = "registry+https://github.com/rust-lang/crates.io-index" 645 | checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 646 | dependencies = [ 647 | "crc32fast", 648 | "miniz_oxide", 649 | ] 650 | 651 | [[package]] 652 | name = "fnv" 653 | version = "1.0.7" 654 | source = "registry+https://github.com/rust-lang/crates.io-index" 655 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 656 | 657 | [[package]] 658 | name = "foreign-types" 659 | version = "0.3.2" 660 | source = "registry+https://github.com/rust-lang/crates.io-index" 661 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 662 | dependencies = [ 663 | "foreign-types-shared", 664 | ] 665 | 666 | [[package]] 667 | name = "foreign-types-shared" 668 | version = "0.1.1" 669 | source = "registry+https://github.com/rust-lang/crates.io-index" 670 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 671 | 672 | [[package]] 673 | name = "form_urlencoded" 674 | version = "1.0.1" 675 | source = "registry+https://github.com/rust-lang/crates.io-index" 676 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 677 | dependencies = [ 678 | "matches", 679 | "percent-encoding", 680 | ] 681 | 682 | [[package]] 683 | name = "futf" 684 | version = "0.1.5" 685 | source = "registry+https://github.com/rust-lang/crates.io-index" 686 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 687 | dependencies = [ 688 | "mac", 689 | "new_debug_unreachable", 690 | ] 691 | 692 | [[package]] 693 | name = "futures" 694 | version = "0.3.21" 695 | source = "registry+https://github.com/rust-lang/crates.io-index" 696 | checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 697 | dependencies = [ 698 | "futures-channel", 699 | "futures-core", 700 | "futures-executor", 701 | "futures-io", 702 | "futures-sink", 703 | "futures-task", 704 | "futures-util", 705 | ] 706 | 707 | [[package]] 708 | name = "futures-channel" 709 | version = "0.3.21" 710 | source = "registry+https://github.com/rust-lang/crates.io-index" 711 | checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 712 | dependencies = [ 713 | "futures-core", 714 | "futures-sink", 715 | ] 716 | 717 | [[package]] 718 | name = "futures-core" 719 | version = "0.3.21" 720 | source = "registry+https://github.com/rust-lang/crates.io-index" 721 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 722 | 723 | [[package]] 724 | name = "futures-executor" 725 | version = "0.3.21" 726 | source = "registry+https://github.com/rust-lang/crates.io-index" 727 | checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 728 | dependencies = [ 729 | "futures-core", 730 | "futures-task", 731 | "futures-util", 732 | ] 733 | 734 | [[package]] 735 | name = "futures-io" 736 | version = "0.3.21" 737 | source = "registry+https://github.com/rust-lang/crates.io-index" 738 | checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 739 | 740 | [[package]] 741 | name = "futures-lite" 742 | version = "1.12.0" 743 | source = "registry+https://github.com/rust-lang/crates.io-index" 744 | checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 745 | dependencies = [ 746 | "fastrand", 747 | "futures-core", 748 | "futures-io", 749 | "memchr", 750 | "parking", 751 | "pin-project-lite", 752 | "waker-fn", 753 | ] 754 | 755 | [[package]] 756 | name = "futures-macro" 757 | version = "0.3.21" 758 | source = "registry+https://github.com/rust-lang/crates.io-index" 759 | checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 760 | dependencies = [ 761 | "proc-macro2", 762 | "quote", 763 | "syn", 764 | ] 765 | 766 | [[package]] 767 | name = "futures-sink" 768 | version = "0.3.21" 769 | source = "registry+https://github.com/rust-lang/crates.io-index" 770 | checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 771 | 772 | [[package]] 773 | name = "futures-task" 774 | version = "0.3.21" 775 | source = "registry+https://github.com/rust-lang/crates.io-index" 776 | checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 777 | 778 | [[package]] 779 | name = "futures-util" 780 | version = "0.3.21" 781 | source = "registry+https://github.com/rust-lang/crates.io-index" 782 | checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 783 | dependencies = [ 784 | "futures-channel", 785 | "futures-core", 786 | "futures-io", 787 | "futures-macro", 788 | "futures-sink", 789 | "futures-task", 790 | "memchr", 791 | "pin-project-lite", 792 | "pin-utils", 793 | "slab", 794 | ] 795 | 796 | [[package]] 797 | name = "fxhash" 798 | version = "0.2.1" 799 | source = "registry+https://github.com/rust-lang/crates.io-index" 800 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 801 | dependencies = [ 802 | "byteorder", 803 | ] 804 | 805 | [[package]] 806 | name = "gdk" 807 | version = "0.15.4" 808 | source = "registry+https://github.com/rust-lang/crates.io-index" 809 | checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 810 | dependencies = [ 811 | "bitflags", 812 | "cairo-rs", 813 | "gdk-pixbuf", 814 | "gdk-sys", 815 | "gio", 816 | "glib", 817 | "libc", 818 | "pango", 819 | ] 820 | 821 | [[package]] 822 | name = "gdk-pixbuf" 823 | version = "0.15.11" 824 | source = "registry+https://github.com/rust-lang/crates.io-index" 825 | checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 826 | dependencies = [ 827 | "bitflags", 828 | "gdk-pixbuf-sys", 829 | "gio", 830 | "glib", 831 | "libc", 832 | ] 833 | 834 | [[package]] 835 | name = "gdk-pixbuf-sys" 836 | version = "0.15.10" 837 | source = "registry+https://github.com/rust-lang/crates.io-index" 838 | checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 839 | dependencies = [ 840 | "gio-sys", 841 | "glib-sys", 842 | "gobject-sys", 843 | "libc", 844 | "system-deps 6.0.2", 845 | ] 846 | 847 | [[package]] 848 | name = "gdk-sys" 849 | version = "0.15.1" 850 | source = "registry+https://github.com/rust-lang/crates.io-index" 851 | checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 852 | dependencies = [ 853 | "cairo-sys-rs", 854 | "gdk-pixbuf-sys", 855 | "gio-sys", 856 | "glib-sys", 857 | "gobject-sys", 858 | "libc", 859 | "pango-sys", 860 | "pkg-config", 861 | "system-deps 6.0.2", 862 | ] 863 | 864 | [[package]] 865 | name = "gdkx11-sys" 866 | version = "0.15.1" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 869 | dependencies = [ 870 | "gdk-sys", 871 | "glib-sys", 872 | "libc", 873 | "system-deps 6.0.2", 874 | "x11", 875 | ] 876 | 877 | [[package]] 878 | name = "generator" 879 | version = "0.7.1" 880 | source = "registry+https://github.com/rust-lang/crates.io-index" 881 | checksum = "cc184cace1cea8335047a471cc1da80f18acf8a76f3bab2028d499e328948ec7" 882 | dependencies = [ 883 | "cc", 884 | "libc", 885 | "log", 886 | "rustversion", 887 | "windows 0.32.0", 888 | ] 889 | 890 | [[package]] 891 | name = "generic-array" 892 | version = "0.14.6" 893 | source = "registry+https://github.com/rust-lang/crates.io-index" 894 | checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 895 | dependencies = [ 896 | "typenum", 897 | "version_check", 898 | ] 899 | 900 | [[package]] 901 | name = "getrandom" 902 | version = "0.1.16" 903 | source = "registry+https://github.com/rust-lang/crates.io-index" 904 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 905 | dependencies = [ 906 | "cfg-if", 907 | "libc", 908 | "wasi 0.9.0+wasi-snapshot-preview1", 909 | ] 910 | 911 | [[package]] 912 | name = "getrandom" 913 | version = "0.2.7" 914 | source = "registry+https://github.com/rust-lang/crates.io-index" 915 | checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 916 | dependencies = [ 917 | "cfg-if", 918 | "libc", 919 | "wasi 0.11.0+wasi-snapshot-preview1", 920 | ] 921 | 922 | [[package]] 923 | name = "gio" 924 | version = "0.15.12" 925 | source = "registry+https://github.com/rust-lang/crates.io-index" 926 | checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 927 | dependencies = [ 928 | "bitflags", 929 | "futures-channel", 930 | "futures-core", 931 | "futures-io", 932 | "gio-sys", 933 | "glib", 934 | "libc", 935 | "once_cell", 936 | "thiserror", 937 | ] 938 | 939 | [[package]] 940 | name = "gio-sys" 941 | version = "0.15.10" 942 | source = "registry+https://github.com/rust-lang/crates.io-index" 943 | checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 944 | dependencies = [ 945 | "glib-sys", 946 | "gobject-sys", 947 | "libc", 948 | "system-deps 6.0.2", 949 | "winapi", 950 | ] 951 | 952 | [[package]] 953 | name = "glib" 954 | version = "0.15.12" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 957 | dependencies = [ 958 | "bitflags", 959 | "futures-channel", 960 | "futures-core", 961 | "futures-executor", 962 | "futures-task", 963 | "glib-macros", 964 | "glib-sys", 965 | "gobject-sys", 966 | "libc", 967 | "once_cell", 968 | "smallvec", 969 | "thiserror", 970 | ] 971 | 972 | [[package]] 973 | name = "glib-macros" 974 | version = "0.15.11" 975 | source = "registry+https://github.com/rust-lang/crates.io-index" 976 | checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" 977 | dependencies = [ 978 | "anyhow", 979 | "heck 0.4.0", 980 | "proc-macro-crate", 981 | "proc-macro-error", 982 | "proc-macro2", 983 | "quote", 984 | "syn", 985 | ] 986 | 987 | [[package]] 988 | name = "glib-sys" 989 | version = "0.15.10" 990 | source = "registry+https://github.com/rust-lang/crates.io-index" 991 | checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 992 | dependencies = [ 993 | "libc", 994 | "system-deps 6.0.2", 995 | ] 996 | 997 | [[package]] 998 | name = "glob" 999 | version = "0.3.0" 1000 | source = "registry+https://github.com/rust-lang/crates.io-index" 1001 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1002 | 1003 | [[package]] 1004 | name = "globset" 1005 | version = "0.4.9" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 1008 | dependencies = [ 1009 | "aho-corasick", 1010 | "bstr", 1011 | "fnv", 1012 | "log", 1013 | "regex", 1014 | ] 1015 | 1016 | [[package]] 1017 | name = "gobject-sys" 1018 | version = "0.15.10" 1019 | source = "registry+https://github.com/rust-lang/crates.io-index" 1020 | checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1021 | dependencies = [ 1022 | "glib-sys", 1023 | "libc", 1024 | "system-deps 6.0.2", 1025 | ] 1026 | 1027 | [[package]] 1028 | name = "gtk" 1029 | version = "0.15.5" 1030 | source = "registry+https://github.com/rust-lang/crates.io-index" 1031 | checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1032 | dependencies = [ 1033 | "atk", 1034 | "bitflags", 1035 | "cairo-rs", 1036 | "field-offset", 1037 | "futures-channel", 1038 | "gdk", 1039 | "gdk-pixbuf", 1040 | "gio", 1041 | "glib", 1042 | "gtk-sys", 1043 | "gtk3-macros", 1044 | "libc", 1045 | "once_cell", 1046 | "pango", 1047 | "pkg-config", 1048 | ] 1049 | 1050 | [[package]] 1051 | name = "gtk-sys" 1052 | version = "0.15.3" 1053 | source = "registry+https://github.com/rust-lang/crates.io-index" 1054 | checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1055 | dependencies = [ 1056 | "atk-sys", 1057 | "cairo-sys-rs", 1058 | "gdk-pixbuf-sys", 1059 | "gdk-sys", 1060 | "gio-sys", 1061 | "glib-sys", 1062 | "gobject-sys", 1063 | "libc", 1064 | "pango-sys", 1065 | "system-deps 6.0.2", 1066 | ] 1067 | 1068 | [[package]] 1069 | name = "gtk3-macros" 1070 | version = "0.15.4" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9" 1073 | dependencies = [ 1074 | "anyhow", 1075 | "proc-macro-crate", 1076 | "proc-macro-error", 1077 | "proc-macro2", 1078 | "quote", 1079 | "syn", 1080 | ] 1081 | 1082 | [[package]] 1083 | name = "hashbrown" 1084 | version = "0.12.3" 1085 | source = "registry+https://github.com/rust-lang/crates.io-index" 1086 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1087 | 1088 | [[package]] 1089 | name = "heck" 1090 | version = "0.3.3" 1091 | source = "registry+https://github.com/rust-lang/crates.io-index" 1092 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1093 | dependencies = [ 1094 | "unicode-segmentation", 1095 | ] 1096 | 1097 | [[package]] 1098 | name = "heck" 1099 | version = "0.4.0" 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" 1101 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1102 | 1103 | [[package]] 1104 | name = "hermit-abi" 1105 | version = "0.1.19" 1106 | source = "registry+https://github.com/rust-lang/crates.io-index" 1107 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1108 | dependencies = [ 1109 | "libc", 1110 | ] 1111 | 1112 | [[package]] 1113 | name = "html5ever" 1114 | version = "0.25.2" 1115 | source = "registry+https://github.com/rust-lang/crates.io-index" 1116 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1117 | dependencies = [ 1118 | "log", 1119 | "mac", 1120 | "markup5ever", 1121 | "proc-macro2", 1122 | "quote", 1123 | "syn", 1124 | ] 1125 | 1126 | [[package]] 1127 | name = "http" 1128 | version = "0.2.8" 1129 | source = "registry+https://github.com/rust-lang/crates.io-index" 1130 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1131 | dependencies = [ 1132 | "bytes", 1133 | "fnv", 1134 | "itoa 1.0.3", 1135 | ] 1136 | 1137 | [[package]] 1138 | name = "http-range" 1139 | version = "0.1.5" 1140 | source = "registry+https://github.com/rust-lang/crates.io-index" 1141 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1142 | 1143 | [[package]] 1144 | name = "ico" 1145 | version = "0.1.0" 1146 | source = "registry+https://github.com/rust-lang/crates.io-index" 1147 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1148 | dependencies = [ 1149 | "byteorder", 1150 | "png 0.11.0", 1151 | ] 1152 | 1153 | [[package]] 1154 | name = "ident_case" 1155 | version = "1.0.1" 1156 | source = "registry+https://github.com/rust-lang/crates.io-index" 1157 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1158 | 1159 | [[package]] 1160 | name = "idna" 1161 | version = "0.2.3" 1162 | source = "registry+https://github.com/rust-lang/crates.io-index" 1163 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1164 | dependencies = [ 1165 | "matches", 1166 | "unicode-bidi", 1167 | "unicode-normalization", 1168 | ] 1169 | 1170 | [[package]] 1171 | name = "ignore" 1172 | version = "0.4.18" 1173 | source = "registry+https://github.com/rust-lang/crates.io-index" 1174 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1175 | dependencies = [ 1176 | "crossbeam-utils", 1177 | "globset", 1178 | "lazy_static", 1179 | "log", 1180 | "memchr", 1181 | "regex", 1182 | "same-file", 1183 | "thread_local", 1184 | "walkdir", 1185 | "winapi-util", 1186 | ] 1187 | 1188 | [[package]] 1189 | name = "image" 1190 | version = "0.24.3" 1191 | source = "registry+https://github.com/rust-lang/crates.io-index" 1192 | checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964" 1193 | dependencies = [ 1194 | "bytemuck", 1195 | "byteorder", 1196 | "color_quant", 1197 | "num-rational", 1198 | "num-traits", 1199 | ] 1200 | 1201 | [[package]] 1202 | name = "indexmap" 1203 | version = "1.9.1" 1204 | source = "registry+https://github.com/rust-lang/crates.io-index" 1205 | checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1206 | dependencies = [ 1207 | "autocfg", 1208 | "hashbrown", 1209 | ] 1210 | 1211 | [[package]] 1212 | name = "infer" 1213 | version = "0.7.0" 1214 | source = "registry+https://github.com/rust-lang/crates.io-index" 1215 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1216 | dependencies = [ 1217 | "cfb", 1218 | ] 1219 | 1220 | [[package]] 1221 | name = "inflate" 1222 | version = "0.3.4" 1223 | source = "registry+https://github.com/rust-lang/crates.io-index" 1224 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1225 | dependencies = [ 1226 | "adler32", 1227 | ] 1228 | 1229 | [[package]] 1230 | name = "instant" 1231 | version = "0.1.12" 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" 1233 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1234 | dependencies = [ 1235 | "cfg-if", 1236 | ] 1237 | 1238 | [[package]] 1239 | name = "itoa" 1240 | version = "0.4.8" 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" 1242 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1243 | 1244 | [[package]] 1245 | name = "itoa" 1246 | version = "1.0.3" 1247 | source = "registry+https://github.com/rust-lang/crates.io-index" 1248 | checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 1249 | 1250 | [[package]] 1251 | name = "javascriptcore-rs" 1252 | version = "0.16.0" 1253 | source = "registry+https://github.com/rust-lang/crates.io-index" 1254 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1255 | dependencies = [ 1256 | "bitflags", 1257 | "glib", 1258 | "javascriptcore-rs-sys", 1259 | ] 1260 | 1261 | [[package]] 1262 | name = "javascriptcore-rs-sys" 1263 | version = "0.4.0" 1264 | source = "registry+https://github.com/rust-lang/crates.io-index" 1265 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1266 | dependencies = [ 1267 | "glib-sys", 1268 | "gobject-sys", 1269 | "libc", 1270 | "system-deps 5.0.0", 1271 | ] 1272 | 1273 | [[package]] 1274 | name = "jni" 1275 | version = "0.18.0" 1276 | source = "registry+https://github.com/rust-lang/crates.io-index" 1277 | checksum = "24967112a1e4301ca5342ea339763613a37592b8a6ce6cf2e4494537c7a42faf" 1278 | dependencies = [ 1279 | "cesu8", 1280 | "combine", 1281 | "jni-sys", 1282 | "log", 1283 | "thiserror", 1284 | "walkdir", 1285 | ] 1286 | 1287 | [[package]] 1288 | name = "jni" 1289 | version = "0.19.0" 1290 | source = "registry+https://github.com/rust-lang/crates.io-index" 1291 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1292 | dependencies = [ 1293 | "cesu8", 1294 | "combine", 1295 | "jni-sys", 1296 | "log", 1297 | "thiserror", 1298 | "walkdir", 1299 | ] 1300 | 1301 | [[package]] 1302 | name = "jni-sys" 1303 | version = "0.3.0" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1306 | 1307 | [[package]] 1308 | name = "js-sys" 1309 | version = "0.3.59" 1310 | source = "registry+https://github.com/rust-lang/crates.io-index" 1311 | checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 1312 | dependencies = [ 1313 | "wasm-bindgen", 1314 | ] 1315 | 1316 | [[package]] 1317 | name = "json-patch" 1318 | version = "0.2.6" 1319 | source = "registry+https://github.com/rust-lang/crates.io-index" 1320 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 1321 | dependencies = [ 1322 | "serde", 1323 | "serde_json", 1324 | "treediff", 1325 | ] 1326 | 1327 | [[package]] 1328 | name = "kuchiki" 1329 | version = "0.8.1" 1330 | source = "registry+https://github.com/rust-lang/crates.io-index" 1331 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1332 | dependencies = [ 1333 | "cssparser", 1334 | "html5ever", 1335 | "matches", 1336 | "selectors", 1337 | ] 1338 | 1339 | [[package]] 1340 | name = "lazy_static" 1341 | version = "1.4.0" 1342 | source = "registry+https://github.com/rust-lang/crates.io-index" 1343 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1344 | 1345 | [[package]] 1346 | name = "libc" 1347 | version = "0.2.127" 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" 1349 | checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b" 1350 | 1351 | [[package]] 1352 | name = "libdbus-sys" 1353 | version = "0.2.2" 1354 | source = "registry+https://github.com/rust-lang/crates.io-index" 1355 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" 1356 | dependencies = [ 1357 | "pkg-config", 1358 | ] 1359 | 1360 | [[package]] 1361 | name = "line-wrap" 1362 | version = "0.1.1" 1363 | source = "registry+https://github.com/rust-lang/crates.io-index" 1364 | checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1365 | dependencies = [ 1366 | "safemem", 1367 | ] 1368 | 1369 | [[package]] 1370 | name = "lock_api" 1371 | version = "0.4.7" 1372 | source = "registry+https://github.com/rust-lang/crates.io-index" 1373 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1374 | dependencies = [ 1375 | "autocfg", 1376 | "scopeguard", 1377 | ] 1378 | 1379 | [[package]] 1380 | name = "log" 1381 | version = "0.4.17" 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" 1383 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1384 | dependencies = [ 1385 | "cfg-if", 1386 | ] 1387 | 1388 | [[package]] 1389 | name = "loom" 1390 | version = "0.5.6" 1391 | source = "registry+https://github.com/rust-lang/crates.io-index" 1392 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1393 | dependencies = [ 1394 | "cfg-if", 1395 | "generator", 1396 | "scoped-tls", 1397 | "serde", 1398 | "serde_json", 1399 | "tracing", 1400 | "tracing-subscriber", 1401 | ] 1402 | 1403 | [[package]] 1404 | name = "mac" 1405 | version = "0.1.1" 1406 | source = "registry+https://github.com/rust-lang/crates.io-index" 1407 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1408 | 1409 | [[package]] 1410 | name = "mac-notification-sys" 1411 | version = "0.5.6" 1412 | source = "registry+https://github.com/rust-lang/crates.io-index" 1413 | checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" 1414 | dependencies = [ 1415 | "cc", 1416 | "dirs-next", 1417 | "objc-foundation", 1418 | "objc_id", 1419 | "time", 1420 | ] 1421 | 1422 | [[package]] 1423 | name = "malloc_buf" 1424 | version = "0.0.6" 1425 | source = "registry+https://github.com/rust-lang/crates.io-index" 1426 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1427 | dependencies = [ 1428 | "libc", 1429 | ] 1430 | 1431 | [[package]] 1432 | name = "markup5ever" 1433 | version = "0.10.1" 1434 | source = "registry+https://github.com/rust-lang/crates.io-index" 1435 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1436 | dependencies = [ 1437 | "log", 1438 | "phf 0.8.0", 1439 | "phf_codegen", 1440 | "string_cache", 1441 | "string_cache_codegen", 1442 | "tendril", 1443 | ] 1444 | 1445 | [[package]] 1446 | name = "matchers" 1447 | version = "0.1.0" 1448 | source = "registry+https://github.com/rust-lang/crates.io-index" 1449 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1450 | dependencies = [ 1451 | "regex-automata", 1452 | ] 1453 | 1454 | [[package]] 1455 | name = "matches" 1456 | version = "0.1.9" 1457 | source = "registry+https://github.com/rust-lang/crates.io-index" 1458 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1459 | 1460 | [[package]] 1461 | name = "memchr" 1462 | version = "2.5.0" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1465 | 1466 | [[package]] 1467 | name = "memoffset" 1468 | version = "0.6.5" 1469 | source = "registry+https://github.com/rust-lang/crates.io-index" 1470 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1471 | dependencies = [ 1472 | "autocfg", 1473 | ] 1474 | 1475 | [[package]] 1476 | name = "miniz_oxide" 1477 | version = "0.5.3" 1478 | source = "registry+https://github.com/rust-lang/crates.io-index" 1479 | checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1480 | dependencies = [ 1481 | "adler", 1482 | ] 1483 | 1484 | [[package]] 1485 | name = "native-tls" 1486 | version = "0.2.10" 1487 | source = "registry+https://github.com/rust-lang/crates.io-index" 1488 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1489 | dependencies = [ 1490 | "lazy_static", 1491 | "libc", 1492 | "log", 1493 | "openssl", 1494 | "openssl-probe", 1495 | "openssl-sys", 1496 | "schannel", 1497 | "security-framework", 1498 | "security-framework-sys", 1499 | "tempfile", 1500 | ] 1501 | 1502 | [[package]] 1503 | name = "ndk" 1504 | version = "0.6.0" 1505 | source = "registry+https://github.com/rust-lang/crates.io-index" 1506 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1507 | dependencies = [ 1508 | "bitflags", 1509 | "jni-sys", 1510 | "ndk-sys", 1511 | "num_enum", 1512 | "thiserror", 1513 | ] 1514 | 1515 | [[package]] 1516 | name = "ndk-context" 1517 | version = "0.1.1" 1518 | source = "registry+https://github.com/rust-lang/crates.io-index" 1519 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1520 | 1521 | [[package]] 1522 | name = "ndk-sys" 1523 | version = "0.3.0" 1524 | source = "registry+https://github.com/rust-lang/crates.io-index" 1525 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1526 | dependencies = [ 1527 | "jni-sys", 1528 | ] 1529 | 1530 | [[package]] 1531 | name = "new_debug_unreachable" 1532 | version = "1.0.4" 1533 | source = "registry+https://github.com/rust-lang/crates.io-index" 1534 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1535 | 1536 | [[package]] 1537 | name = "nodrop" 1538 | version = "0.1.14" 1539 | source = "registry+https://github.com/rust-lang/crates.io-index" 1540 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1541 | 1542 | [[package]] 1543 | name = "notify-rust" 1544 | version = "4.5.8" 1545 | source = "registry+https://github.com/rust-lang/crates.io-index" 1546 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4" 1547 | dependencies = [ 1548 | "dbus", 1549 | "mac-notification-sys", 1550 | "winrt-notification", 1551 | ] 1552 | 1553 | [[package]] 1554 | name = "num-integer" 1555 | version = "0.1.45" 1556 | source = "registry+https://github.com/rust-lang/crates.io-index" 1557 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1558 | dependencies = [ 1559 | "autocfg", 1560 | "num-traits", 1561 | ] 1562 | 1563 | [[package]] 1564 | name = "num-iter" 1565 | version = "0.1.43" 1566 | source = "registry+https://github.com/rust-lang/crates.io-index" 1567 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1568 | dependencies = [ 1569 | "autocfg", 1570 | "num-integer", 1571 | "num-traits", 1572 | ] 1573 | 1574 | [[package]] 1575 | name = "num-rational" 1576 | version = "0.4.1" 1577 | source = "registry+https://github.com/rust-lang/crates.io-index" 1578 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1579 | dependencies = [ 1580 | "autocfg", 1581 | "num-integer", 1582 | "num-traits", 1583 | ] 1584 | 1585 | [[package]] 1586 | name = "num-traits" 1587 | version = "0.2.15" 1588 | source = "registry+https://github.com/rust-lang/crates.io-index" 1589 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1590 | dependencies = [ 1591 | "autocfg", 1592 | ] 1593 | 1594 | [[package]] 1595 | name = "num_cpus" 1596 | version = "1.13.1" 1597 | source = "registry+https://github.com/rust-lang/crates.io-index" 1598 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1599 | dependencies = [ 1600 | "hermit-abi", 1601 | "libc", 1602 | ] 1603 | 1604 | [[package]] 1605 | name = "num_enum" 1606 | version = "0.5.7" 1607 | source = "registry+https://github.com/rust-lang/crates.io-index" 1608 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1609 | dependencies = [ 1610 | "num_enum_derive", 1611 | ] 1612 | 1613 | [[package]] 1614 | name = "num_enum_derive" 1615 | version = "0.5.7" 1616 | source = "registry+https://github.com/rust-lang/crates.io-index" 1617 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1618 | dependencies = [ 1619 | "proc-macro-crate", 1620 | "proc-macro2", 1621 | "quote", 1622 | "syn", 1623 | ] 1624 | 1625 | [[package]] 1626 | name = "num_threads" 1627 | version = "0.1.6" 1628 | source = "registry+https://github.com/rust-lang/crates.io-index" 1629 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1630 | dependencies = [ 1631 | "libc", 1632 | ] 1633 | 1634 | [[package]] 1635 | name = "objc" 1636 | version = "0.2.7" 1637 | source = "registry+https://github.com/rust-lang/crates.io-index" 1638 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1639 | dependencies = [ 1640 | "malloc_buf", 1641 | "objc_exception", 1642 | ] 1643 | 1644 | [[package]] 1645 | name = "objc-foundation" 1646 | version = "0.1.1" 1647 | source = "registry+https://github.com/rust-lang/crates.io-index" 1648 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1649 | dependencies = [ 1650 | "block", 1651 | "objc", 1652 | "objc_id", 1653 | ] 1654 | 1655 | [[package]] 1656 | name = "objc_exception" 1657 | version = "0.1.2" 1658 | source = "registry+https://github.com/rust-lang/crates.io-index" 1659 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1660 | dependencies = [ 1661 | "cc", 1662 | ] 1663 | 1664 | [[package]] 1665 | name = "objc_id" 1666 | version = "0.1.1" 1667 | source = "registry+https://github.com/rust-lang/crates.io-index" 1668 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1669 | dependencies = [ 1670 | "objc", 1671 | ] 1672 | 1673 | [[package]] 1674 | name = "once_cell" 1675 | version = "1.13.0" 1676 | source = "registry+https://github.com/rust-lang/crates.io-index" 1677 | checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 1678 | 1679 | [[package]] 1680 | name = "open" 1681 | version = "3.0.2" 1682 | source = "registry+https://github.com/rust-lang/crates.io-index" 1683 | checksum = "f23a407004a1033f53e93f9b45580d14de23928faad187384f891507c9b0c045" 1684 | dependencies = [ 1685 | "pathdiff", 1686 | "windows-sys", 1687 | ] 1688 | 1689 | [[package]] 1690 | name = "openssl" 1691 | version = "0.10.41" 1692 | source = "registry+https://github.com/rust-lang/crates.io-index" 1693 | checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 1694 | dependencies = [ 1695 | "bitflags", 1696 | "cfg-if", 1697 | "foreign-types", 1698 | "libc", 1699 | "once_cell", 1700 | "openssl-macros", 1701 | "openssl-sys", 1702 | ] 1703 | 1704 | [[package]] 1705 | name = "openssl-macros" 1706 | version = "0.1.0" 1707 | source = "registry+https://github.com/rust-lang/crates.io-index" 1708 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1709 | dependencies = [ 1710 | "proc-macro2", 1711 | "quote", 1712 | "syn", 1713 | ] 1714 | 1715 | [[package]] 1716 | name = "openssl-probe" 1717 | version = "0.1.5" 1718 | source = "registry+https://github.com/rust-lang/crates.io-index" 1719 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1720 | 1721 | [[package]] 1722 | name = "openssl-sys" 1723 | version = "0.9.75" 1724 | source = "registry+https://github.com/rust-lang/crates.io-index" 1725 | checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 1726 | dependencies = [ 1727 | "autocfg", 1728 | "cc", 1729 | "libc", 1730 | "pkg-config", 1731 | "vcpkg", 1732 | ] 1733 | 1734 | [[package]] 1735 | name = "os_info" 1736 | version = "3.5.0" 1737 | source = "registry+https://github.com/rust-lang/crates.io-index" 1738 | checksum = "5209b2162b2c140df493a93689e04f8deab3a67634f5bc7a553c0a98e5b8d399" 1739 | dependencies = [ 1740 | "log", 1741 | "serde", 1742 | "winapi", 1743 | ] 1744 | 1745 | [[package]] 1746 | name = "os_pipe" 1747 | version = "1.0.1" 1748 | source = "registry+https://github.com/rust-lang/crates.io-index" 1749 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55" 1750 | dependencies = [ 1751 | "libc", 1752 | "winapi", 1753 | ] 1754 | 1755 | [[package]] 1756 | name = "pango" 1757 | version = "0.15.10" 1758 | source = "registry+https://github.com/rust-lang/crates.io-index" 1759 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1760 | dependencies = [ 1761 | "bitflags", 1762 | "glib", 1763 | "libc", 1764 | "once_cell", 1765 | "pango-sys", 1766 | ] 1767 | 1768 | [[package]] 1769 | name = "pango-sys" 1770 | version = "0.15.10" 1771 | source = "registry+https://github.com/rust-lang/crates.io-index" 1772 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1773 | dependencies = [ 1774 | "glib-sys", 1775 | "gobject-sys", 1776 | "libc", 1777 | "system-deps 6.0.2", 1778 | ] 1779 | 1780 | [[package]] 1781 | name = "parking" 1782 | version = "2.0.0" 1783 | source = "registry+https://github.com/rust-lang/crates.io-index" 1784 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1785 | 1786 | [[package]] 1787 | name = "parking_lot" 1788 | version = "0.12.1" 1789 | source = "registry+https://github.com/rust-lang/crates.io-index" 1790 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1791 | dependencies = [ 1792 | "lock_api", 1793 | "parking_lot_core", 1794 | ] 1795 | 1796 | [[package]] 1797 | name = "parking_lot_core" 1798 | version = "0.9.3" 1799 | source = "registry+https://github.com/rust-lang/crates.io-index" 1800 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1801 | dependencies = [ 1802 | "cfg-if", 1803 | "libc", 1804 | "redox_syscall", 1805 | "smallvec", 1806 | "windows-sys", 1807 | ] 1808 | 1809 | [[package]] 1810 | name = "paste" 1811 | version = "1.0.8" 1812 | source = "registry+https://github.com/rust-lang/crates.io-index" 1813 | checksum = "9423e2b32f7a043629287a536f21951e8c6a82482d0acb1eeebfc90bc2225b22" 1814 | 1815 | [[package]] 1816 | name = "pathdiff" 1817 | version = "0.2.1" 1818 | source = "registry+https://github.com/rust-lang/crates.io-index" 1819 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1820 | 1821 | [[package]] 1822 | name = "percent-encoding" 1823 | version = "2.1.0" 1824 | source = "registry+https://github.com/rust-lang/crates.io-index" 1825 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1826 | 1827 | [[package]] 1828 | name = "pest" 1829 | version = "2.2.1" 1830 | source = "registry+https://github.com/rust-lang/crates.io-index" 1831 | checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8" 1832 | dependencies = [ 1833 | "thiserror", 1834 | "ucd-trie", 1835 | ] 1836 | 1837 | [[package]] 1838 | name = "phf" 1839 | version = "0.8.0" 1840 | source = "registry+https://github.com/rust-lang/crates.io-index" 1841 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1842 | dependencies = [ 1843 | "phf_macros 0.8.0", 1844 | "phf_shared 0.8.0", 1845 | "proc-macro-hack", 1846 | ] 1847 | 1848 | [[package]] 1849 | name = "phf" 1850 | version = "0.10.1" 1851 | source = "registry+https://github.com/rust-lang/crates.io-index" 1852 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1853 | dependencies = [ 1854 | "phf_macros 0.10.0", 1855 | "phf_shared 0.10.0", 1856 | "proc-macro-hack", 1857 | ] 1858 | 1859 | [[package]] 1860 | name = "phf_codegen" 1861 | version = "0.8.0" 1862 | source = "registry+https://github.com/rust-lang/crates.io-index" 1863 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1864 | dependencies = [ 1865 | "phf_generator 0.8.0", 1866 | "phf_shared 0.8.0", 1867 | ] 1868 | 1869 | [[package]] 1870 | name = "phf_generator" 1871 | version = "0.8.0" 1872 | source = "registry+https://github.com/rust-lang/crates.io-index" 1873 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1874 | dependencies = [ 1875 | "phf_shared 0.8.0", 1876 | "rand 0.7.3", 1877 | ] 1878 | 1879 | [[package]] 1880 | name = "phf_generator" 1881 | version = "0.10.0" 1882 | source = "registry+https://github.com/rust-lang/crates.io-index" 1883 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1884 | dependencies = [ 1885 | "phf_shared 0.10.0", 1886 | "rand 0.8.5", 1887 | ] 1888 | 1889 | [[package]] 1890 | name = "phf_macros" 1891 | version = "0.8.0" 1892 | source = "registry+https://github.com/rust-lang/crates.io-index" 1893 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1894 | dependencies = [ 1895 | "phf_generator 0.8.0", 1896 | "phf_shared 0.8.0", 1897 | "proc-macro-hack", 1898 | "proc-macro2", 1899 | "quote", 1900 | "syn", 1901 | ] 1902 | 1903 | [[package]] 1904 | name = "phf_macros" 1905 | version = "0.10.0" 1906 | source = "registry+https://github.com/rust-lang/crates.io-index" 1907 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1908 | dependencies = [ 1909 | "phf_generator 0.10.0", 1910 | "phf_shared 0.10.0", 1911 | "proc-macro-hack", 1912 | "proc-macro2", 1913 | "quote", 1914 | "syn", 1915 | ] 1916 | 1917 | [[package]] 1918 | name = "phf_shared" 1919 | version = "0.8.0" 1920 | source = "registry+https://github.com/rust-lang/crates.io-index" 1921 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1922 | dependencies = [ 1923 | "siphasher", 1924 | ] 1925 | 1926 | [[package]] 1927 | name = "phf_shared" 1928 | version = "0.10.0" 1929 | source = "registry+https://github.com/rust-lang/crates.io-index" 1930 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1931 | dependencies = [ 1932 | "siphasher", 1933 | ] 1934 | 1935 | [[package]] 1936 | name = "pin-project-lite" 1937 | version = "0.2.9" 1938 | source = "registry+https://github.com/rust-lang/crates.io-index" 1939 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1940 | 1941 | [[package]] 1942 | name = "pin-utils" 1943 | version = "0.1.0" 1944 | source = "registry+https://github.com/rust-lang/crates.io-index" 1945 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1946 | 1947 | [[package]] 1948 | name = "pkg-config" 1949 | version = "0.3.25" 1950 | source = "registry+https://github.com/rust-lang/crates.io-index" 1951 | checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1952 | 1953 | [[package]] 1954 | name = "plist" 1955 | version = "1.3.1" 1956 | source = "registry+https://github.com/rust-lang/crates.io-index" 1957 | checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 1958 | dependencies = [ 1959 | "base64", 1960 | "indexmap", 1961 | "line-wrap", 1962 | "serde", 1963 | "time", 1964 | "xml-rs", 1965 | ] 1966 | 1967 | [[package]] 1968 | name = "png" 1969 | version = "0.11.0" 1970 | source = "registry+https://github.com/rust-lang/crates.io-index" 1971 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1972 | dependencies = [ 1973 | "bitflags", 1974 | "deflate 0.7.20", 1975 | "inflate", 1976 | "num-iter", 1977 | ] 1978 | 1979 | [[package]] 1980 | name = "png" 1981 | version = "0.17.5" 1982 | source = "registry+https://github.com/rust-lang/crates.io-index" 1983 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba" 1984 | dependencies = [ 1985 | "bitflags", 1986 | "crc32fast", 1987 | "deflate 1.0.0", 1988 | "miniz_oxide", 1989 | ] 1990 | 1991 | [[package]] 1992 | name = "ppv-lite86" 1993 | version = "0.2.16" 1994 | source = "registry+https://github.com/rust-lang/crates.io-index" 1995 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1996 | 1997 | [[package]] 1998 | name = "precomputed-hash" 1999 | version = "0.1.1" 2000 | source = "registry+https://github.com/rust-lang/crates.io-index" 2001 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2002 | 2003 | [[package]] 2004 | name = "proc-macro-crate" 2005 | version = "1.2.0" 2006 | source = "registry+https://github.com/rust-lang/crates.io-index" 2007 | checksum = "26d50bfb8c23f23915855a00d98b5a35ef2e0b871bb52937bacadb798fbb66c8" 2008 | dependencies = [ 2009 | "once_cell", 2010 | "thiserror", 2011 | "toml", 2012 | ] 2013 | 2014 | [[package]] 2015 | name = "proc-macro-error" 2016 | version = "1.0.4" 2017 | source = "registry+https://github.com/rust-lang/crates.io-index" 2018 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2019 | dependencies = [ 2020 | "proc-macro-error-attr", 2021 | "proc-macro2", 2022 | "quote", 2023 | "syn", 2024 | "version_check", 2025 | ] 2026 | 2027 | [[package]] 2028 | name = "proc-macro-error-attr" 2029 | version = "1.0.4" 2030 | source = "registry+https://github.com/rust-lang/crates.io-index" 2031 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2032 | dependencies = [ 2033 | "proc-macro2", 2034 | "quote", 2035 | "version_check", 2036 | ] 2037 | 2038 | [[package]] 2039 | name = "proc-macro-hack" 2040 | version = "0.5.19" 2041 | source = "registry+https://github.com/rust-lang/crates.io-index" 2042 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2043 | 2044 | [[package]] 2045 | name = "proc-macro2" 2046 | version = "1.0.43" 2047 | source = "registry+https://github.com/rust-lang/crates.io-index" 2048 | checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 2049 | dependencies = [ 2050 | "unicode-ident", 2051 | ] 2052 | 2053 | [[package]] 2054 | name = "quote" 2055 | version = "1.0.21" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 2058 | dependencies = [ 2059 | "proc-macro2", 2060 | ] 2061 | 2062 | [[package]] 2063 | name = "rand" 2064 | version = "0.7.3" 2065 | source = "registry+https://github.com/rust-lang/crates.io-index" 2066 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2067 | dependencies = [ 2068 | "getrandom 0.1.16", 2069 | "libc", 2070 | "rand_chacha 0.2.2", 2071 | "rand_core 0.5.1", 2072 | "rand_hc", 2073 | "rand_pcg", 2074 | ] 2075 | 2076 | [[package]] 2077 | name = "rand" 2078 | version = "0.8.5" 2079 | source = "registry+https://github.com/rust-lang/crates.io-index" 2080 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2081 | dependencies = [ 2082 | "libc", 2083 | "rand_chacha 0.3.1", 2084 | "rand_core 0.6.3", 2085 | ] 2086 | 2087 | [[package]] 2088 | name = "rand_chacha" 2089 | version = "0.2.2" 2090 | source = "registry+https://github.com/rust-lang/crates.io-index" 2091 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2092 | dependencies = [ 2093 | "ppv-lite86", 2094 | "rand_core 0.5.1", 2095 | ] 2096 | 2097 | [[package]] 2098 | name = "rand_chacha" 2099 | version = "0.3.1" 2100 | source = "registry+https://github.com/rust-lang/crates.io-index" 2101 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2102 | dependencies = [ 2103 | "ppv-lite86", 2104 | "rand_core 0.6.3", 2105 | ] 2106 | 2107 | [[package]] 2108 | name = "rand_core" 2109 | version = "0.5.1" 2110 | source = "registry+https://github.com/rust-lang/crates.io-index" 2111 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2112 | dependencies = [ 2113 | "getrandom 0.1.16", 2114 | ] 2115 | 2116 | [[package]] 2117 | name = "rand_core" 2118 | version = "0.6.3" 2119 | source = "registry+https://github.com/rust-lang/crates.io-index" 2120 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2121 | dependencies = [ 2122 | "getrandom 0.2.7", 2123 | ] 2124 | 2125 | [[package]] 2126 | name = "rand_hc" 2127 | version = "0.2.0" 2128 | source = "registry+https://github.com/rust-lang/crates.io-index" 2129 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2130 | dependencies = [ 2131 | "rand_core 0.5.1", 2132 | ] 2133 | 2134 | [[package]] 2135 | name = "rand_pcg" 2136 | version = "0.2.1" 2137 | source = "registry+https://github.com/rust-lang/crates.io-index" 2138 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2139 | dependencies = [ 2140 | "rand_core 0.5.1", 2141 | ] 2142 | 2143 | [[package]] 2144 | name = "raw-window-handle" 2145 | version = "0.4.3" 2146 | source = "registry+https://github.com/rust-lang/crates.io-index" 2147 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 2148 | dependencies = [ 2149 | "cty", 2150 | ] 2151 | 2152 | [[package]] 2153 | name = "redox_syscall" 2154 | version = "0.2.16" 2155 | source = "registry+https://github.com/rust-lang/crates.io-index" 2156 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2157 | dependencies = [ 2158 | "bitflags", 2159 | ] 2160 | 2161 | [[package]] 2162 | name = "redox_users" 2163 | version = "0.4.3" 2164 | source = "registry+https://github.com/rust-lang/crates.io-index" 2165 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2166 | dependencies = [ 2167 | "getrandom 0.2.7", 2168 | "redox_syscall", 2169 | "thiserror", 2170 | ] 2171 | 2172 | [[package]] 2173 | name = "regex" 2174 | version = "1.6.0" 2175 | source = "registry+https://github.com/rust-lang/crates.io-index" 2176 | checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 2177 | dependencies = [ 2178 | "aho-corasick", 2179 | "memchr", 2180 | "regex-syntax", 2181 | ] 2182 | 2183 | [[package]] 2184 | name = "regex-automata" 2185 | version = "0.1.10" 2186 | source = "registry+https://github.com/rust-lang/crates.io-index" 2187 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2188 | dependencies = [ 2189 | "regex-syntax", 2190 | ] 2191 | 2192 | [[package]] 2193 | name = "regex-syntax" 2194 | version = "0.6.27" 2195 | source = "registry+https://github.com/rust-lang/crates.io-index" 2196 | checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 2197 | 2198 | [[package]] 2199 | name = "remove_dir_all" 2200 | version = "0.5.3" 2201 | source = "registry+https://github.com/rust-lang/crates.io-index" 2202 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2203 | dependencies = [ 2204 | "winapi", 2205 | ] 2206 | 2207 | [[package]] 2208 | name = "rfd" 2209 | version = "0.9.1" 2210 | source = "registry+https://github.com/rust-lang/crates.io-index" 2211 | checksum = "f121348fd3b9035ed11be1f028e8944263c30641f8c5deacf57a4320782fb402" 2212 | dependencies = [ 2213 | "block", 2214 | "dispatch", 2215 | "embed-resource", 2216 | "glib-sys", 2217 | "gobject-sys", 2218 | "gtk-sys", 2219 | "js-sys", 2220 | "lazy_static", 2221 | "log", 2222 | "objc", 2223 | "objc-foundation", 2224 | "objc_id", 2225 | "raw-window-handle", 2226 | "wasm-bindgen", 2227 | "wasm-bindgen-futures", 2228 | "web-sys", 2229 | "windows 0.37.0", 2230 | ] 2231 | 2232 | [[package]] 2233 | name = "rustc_version" 2234 | version = "0.3.3" 2235 | source = "registry+https://github.com/rust-lang/crates.io-index" 2236 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2237 | dependencies = [ 2238 | "semver 0.11.0", 2239 | ] 2240 | 2241 | [[package]] 2242 | name = "rustc_version" 2243 | version = "0.4.0" 2244 | source = "registry+https://github.com/rust-lang/crates.io-index" 2245 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2246 | dependencies = [ 2247 | "semver 1.0.13", 2248 | ] 2249 | 2250 | [[package]] 2251 | name = "rustversion" 2252 | version = "1.0.9" 2253 | source = "registry+https://github.com/rust-lang/crates.io-index" 2254 | checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2255 | 2256 | [[package]] 2257 | name = "ryu" 2258 | version = "1.0.11" 2259 | source = "registry+https://github.com/rust-lang/crates.io-index" 2260 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2261 | 2262 | [[package]] 2263 | name = "safemem" 2264 | version = "0.3.3" 2265 | source = "registry+https://github.com/rust-lang/crates.io-index" 2266 | checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2267 | 2268 | [[package]] 2269 | name = "same-file" 2270 | version = "1.0.6" 2271 | source = "registry+https://github.com/rust-lang/crates.io-index" 2272 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2273 | dependencies = [ 2274 | "winapi-util", 2275 | ] 2276 | 2277 | [[package]] 2278 | name = "schannel" 2279 | version = "0.1.20" 2280 | source = "registry+https://github.com/rust-lang/crates.io-index" 2281 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2282 | dependencies = [ 2283 | "lazy_static", 2284 | "windows-sys", 2285 | ] 2286 | 2287 | [[package]] 2288 | name = "scoped-tls" 2289 | version = "1.0.0" 2290 | source = "registry+https://github.com/rust-lang/crates.io-index" 2291 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2292 | 2293 | [[package]] 2294 | name = "scopeguard" 2295 | version = "1.1.0" 2296 | source = "registry+https://github.com/rust-lang/crates.io-index" 2297 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2298 | 2299 | [[package]] 2300 | name = "security-framework" 2301 | version = "2.6.1" 2302 | source = "registry+https://github.com/rust-lang/crates.io-index" 2303 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 2304 | dependencies = [ 2305 | "bitflags", 2306 | "core-foundation", 2307 | "core-foundation-sys", 2308 | "libc", 2309 | "security-framework-sys", 2310 | ] 2311 | 2312 | [[package]] 2313 | name = "security-framework-sys" 2314 | version = "2.6.1" 2315 | source = "registry+https://github.com/rust-lang/crates.io-index" 2316 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2317 | dependencies = [ 2318 | "core-foundation-sys", 2319 | "libc", 2320 | ] 2321 | 2322 | [[package]] 2323 | name = "selectors" 2324 | version = "0.22.0" 2325 | source = "registry+https://github.com/rust-lang/crates.io-index" 2326 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2327 | dependencies = [ 2328 | "bitflags", 2329 | "cssparser", 2330 | "derive_more", 2331 | "fxhash", 2332 | "log", 2333 | "matches", 2334 | "phf 0.8.0", 2335 | "phf_codegen", 2336 | "precomputed-hash", 2337 | "servo_arc", 2338 | "smallvec", 2339 | "thin-slice", 2340 | ] 2341 | 2342 | [[package]] 2343 | name = "semver" 2344 | version = "0.11.0" 2345 | source = "registry+https://github.com/rust-lang/crates.io-index" 2346 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2347 | dependencies = [ 2348 | "semver-parser", 2349 | ] 2350 | 2351 | [[package]] 2352 | name = "semver" 2353 | version = "1.0.13" 2354 | source = "registry+https://github.com/rust-lang/crates.io-index" 2355 | checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" 2356 | dependencies = [ 2357 | "serde", 2358 | ] 2359 | 2360 | [[package]] 2361 | name = "semver-parser" 2362 | version = "0.10.2" 2363 | source = "registry+https://github.com/rust-lang/crates.io-index" 2364 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2365 | dependencies = [ 2366 | "pest", 2367 | ] 2368 | 2369 | [[package]] 2370 | name = "serde" 2371 | version = "1.0.142" 2372 | source = "registry+https://github.com/rust-lang/crates.io-index" 2373 | checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" 2374 | dependencies = [ 2375 | "serde_derive", 2376 | ] 2377 | 2378 | [[package]] 2379 | name = "serde_derive" 2380 | version = "1.0.142" 2381 | source = "registry+https://github.com/rust-lang/crates.io-index" 2382 | checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" 2383 | dependencies = [ 2384 | "proc-macro2", 2385 | "quote", 2386 | "syn", 2387 | ] 2388 | 2389 | [[package]] 2390 | name = "serde_json" 2391 | version = "1.0.83" 2392 | source = "registry+https://github.com/rust-lang/crates.io-index" 2393 | checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" 2394 | dependencies = [ 2395 | "itoa 1.0.3", 2396 | "ryu", 2397 | "serde", 2398 | ] 2399 | 2400 | [[package]] 2401 | name = "serde_repr" 2402 | version = "0.1.9" 2403 | source = "registry+https://github.com/rust-lang/crates.io-index" 2404 | checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" 2405 | dependencies = [ 2406 | "proc-macro2", 2407 | "quote", 2408 | "syn", 2409 | ] 2410 | 2411 | [[package]] 2412 | name = "serde_urlencoded" 2413 | version = "0.7.1" 2414 | source = "registry+https://github.com/rust-lang/crates.io-index" 2415 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2416 | dependencies = [ 2417 | "form_urlencoded", 2418 | "itoa 1.0.3", 2419 | "ryu", 2420 | "serde", 2421 | ] 2422 | 2423 | [[package]] 2424 | name = "serde_with" 2425 | version = "1.14.0" 2426 | source = "registry+https://github.com/rust-lang/crates.io-index" 2427 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2428 | dependencies = [ 2429 | "serde", 2430 | "serde_with_macros", 2431 | ] 2432 | 2433 | [[package]] 2434 | name = "serde_with_macros" 2435 | version = "1.5.2" 2436 | source = "registry+https://github.com/rust-lang/crates.io-index" 2437 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2438 | dependencies = [ 2439 | "darling", 2440 | "proc-macro2", 2441 | "quote", 2442 | "syn", 2443 | ] 2444 | 2445 | [[package]] 2446 | name = "serialize-to-javascript" 2447 | version = "0.1.1" 2448 | source = "registry+https://github.com/rust-lang/crates.io-index" 2449 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2450 | dependencies = [ 2451 | "serde", 2452 | "serde_json", 2453 | "serialize-to-javascript-impl", 2454 | ] 2455 | 2456 | [[package]] 2457 | name = "serialize-to-javascript-impl" 2458 | version = "0.1.1" 2459 | source = "registry+https://github.com/rust-lang/crates.io-index" 2460 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2461 | dependencies = [ 2462 | "proc-macro2", 2463 | "quote", 2464 | "syn", 2465 | ] 2466 | 2467 | [[package]] 2468 | name = "servo_arc" 2469 | version = "0.1.1" 2470 | source = "registry+https://github.com/rust-lang/crates.io-index" 2471 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2472 | dependencies = [ 2473 | "nodrop", 2474 | "stable_deref_trait", 2475 | ] 2476 | 2477 | [[package]] 2478 | name = "sha2" 2479 | version = "0.10.2" 2480 | source = "registry+https://github.com/rust-lang/crates.io-index" 2481 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 2482 | dependencies = [ 2483 | "cfg-if", 2484 | "cpufeatures", 2485 | "digest", 2486 | ] 2487 | 2488 | [[package]] 2489 | name = "sharded-slab" 2490 | version = "0.1.4" 2491 | source = "registry+https://github.com/rust-lang/crates.io-index" 2492 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2493 | dependencies = [ 2494 | "lazy_static", 2495 | ] 2496 | 2497 | [[package]] 2498 | name = "shared_child" 2499 | version = "1.0.0" 2500 | source = "registry+https://github.com/rust-lang/crates.io-index" 2501 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2502 | dependencies = [ 2503 | "libc", 2504 | "winapi", 2505 | ] 2506 | 2507 | [[package]] 2508 | name = "siphasher" 2509 | version = "0.3.10" 2510 | source = "registry+https://github.com/rust-lang/crates.io-index" 2511 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2512 | 2513 | [[package]] 2514 | name = "slab" 2515 | version = "0.4.7" 2516 | source = "registry+https://github.com/rust-lang/crates.io-index" 2517 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2518 | dependencies = [ 2519 | "autocfg", 2520 | ] 2521 | 2522 | [[package]] 2523 | name = "smallvec" 2524 | version = "1.9.0" 2525 | source = "registry+https://github.com/rust-lang/crates.io-index" 2526 | checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 2527 | 2528 | [[package]] 2529 | name = "soup2" 2530 | version = "0.2.1" 2531 | source = "registry+https://github.com/rust-lang/crates.io-index" 2532 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2533 | dependencies = [ 2534 | "bitflags", 2535 | "gio", 2536 | "glib", 2537 | "libc", 2538 | "once_cell", 2539 | "soup2-sys", 2540 | ] 2541 | 2542 | [[package]] 2543 | name = "soup2-sys" 2544 | version = "0.2.0" 2545 | source = "registry+https://github.com/rust-lang/crates.io-index" 2546 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2547 | dependencies = [ 2548 | "bitflags", 2549 | "gio-sys", 2550 | "glib-sys", 2551 | "gobject-sys", 2552 | "libc", 2553 | "system-deps 5.0.0", 2554 | ] 2555 | 2556 | [[package]] 2557 | name = "stable_deref_trait" 2558 | version = "1.2.0" 2559 | source = "registry+https://github.com/rust-lang/crates.io-index" 2560 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2561 | 2562 | [[package]] 2563 | name = "state" 2564 | version = "0.5.3" 2565 | source = "registry+https://github.com/rust-lang/crates.io-index" 2566 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2567 | dependencies = [ 2568 | "loom", 2569 | ] 2570 | 2571 | [[package]] 2572 | name = "string_cache" 2573 | version = "0.8.4" 2574 | source = "registry+https://github.com/rust-lang/crates.io-index" 2575 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2576 | dependencies = [ 2577 | "new_debug_unreachable", 2578 | "once_cell", 2579 | "parking_lot", 2580 | "phf_shared 0.10.0", 2581 | "precomputed-hash", 2582 | "serde", 2583 | ] 2584 | 2585 | [[package]] 2586 | name = "string_cache_codegen" 2587 | version = "0.5.2" 2588 | source = "registry+https://github.com/rust-lang/crates.io-index" 2589 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2590 | dependencies = [ 2591 | "phf_generator 0.10.0", 2592 | "phf_shared 0.10.0", 2593 | "proc-macro2", 2594 | "quote", 2595 | ] 2596 | 2597 | [[package]] 2598 | name = "strsim" 2599 | version = "0.10.0" 2600 | source = "registry+https://github.com/rust-lang/crates.io-index" 2601 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2602 | 2603 | [[package]] 2604 | name = "strum" 2605 | version = "0.22.0" 2606 | source = "registry+https://github.com/rust-lang/crates.io-index" 2607 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2608 | dependencies = [ 2609 | "strum_macros", 2610 | ] 2611 | 2612 | [[package]] 2613 | name = "strum_macros" 2614 | version = "0.22.0" 2615 | source = "registry+https://github.com/rust-lang/crates.io-index" 2616 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2617 | dependencies = [ 2618 | "heck 0.3.3", 2619 | "proc-macro2", 2620 | "quote", 2621 | "syn", 2622 | ] 2623 | 2624 | [[package]] 2625 | name = "syn" 2626 | version = "1.0.99" 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" 2628 | checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 2629 | dependencies = [ 2630 | "proc-macro2", 2631 | "quote", 2632 | "unicode-ident", 2633 | ] 2634 | 2635 | [[package]] 2636 | name = "system-deps" 2637 | version = "5.0.0" 2638 | source = "registry+https://github.com/rust-lang/crates.io-index" 2639 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2640 | dependencies = [ 2641 | "cfg-expr 0.9.1", 2642 | "heck 0.3.3", 2643 | "pkg-config", 2644 | "toml", 2645 | "version-compare 0.0.11", 2646 | ] 2647 | 2648 | [[package]] 2649 | name = "system-deps" 2650 | version = "6.0.2" 2651 | source = "registry+https://github.com/rust-lang/crates.io-index" 2652 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" 2653 | dependencies = [ 2654 | "cfg-expr 0.10.3", 2655 | "heck 0.4.0", 2656 | "pkg-config", 2657 | "toml", 2658 | "version-compare 0.1.0", 2659 | ] 2660 | 2661 | [[package]] 2662 | name = "tao" 2663 | version = "0.12.2" 2664 | source = "registry+https://github.com/rust-lang/crates.io-index" 2665 | checksum = "f6fd7725dc1e593e9ecabd9fe49c112a204c8c8694db4182e78b2a5af490b1ae" 2666 | dependencies = [ 2667 | "bitflags", 2668 | "cairo-rs", 2669 | "cc", 2670 | "cocoa", 2671 | "core-foundation", 2672 | "core-graphics", 2673 | "crossbeam-channel", 2674 | "dispatch", 2675 | "gdk", 2676 | "gdk-pixbuf", 2677 | "gdk-sys", 2678 | "gdkx11-sys", 2679 | "gio", 2680 | "glib", 2681 | "glib-sys", 2682 | "gtk", 2683 | "image", 2684 | "instant", 2685 | "jni 0.19.0", 2686 | "lazy_static", 2687 | "libc", 2688 | "log", 2689 | "ndk", 2690 | "ndk-context", 2691 | "ndk-sys", 2692 | "objc", 2693 | "once_cell", 2694 | "parking_lot", 2695 | "paste", 2696 | "png 0.17.5", 2697 | "raw-window-handle", 2698 | "scopeguard", 2699 | "serde", 2700 | "unicode-segmentation", 2701 | "uuid 1.1.2", 2702 | "windows 0.37.0", 2703 | "windows-implement", 2704 | "x11-dl", 2705 | ] 2706 | 2707 | [[package]] 2708 | name = "tar" 2709 | version = "0.4.38" 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" 2711 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2712 | dependencies = [ 2713 | "filetime", 2714 | "libc", 2715 | "xattr", 2716 | ] 2717 | 2718 | [[package]] 2719 | name = "tauri" 2720 | version = "1.0.5" 2721 | source = "registry+https://github.com/rust-lang/crates.io-index" 2722 | checksum = "e1a56a8b125069c2682bd31610109b4436c050c74447bee1078217a0325c1add" 2723 | dependencies = [ 2724 | "anyhow", 2725 | "attohttpc", 2726 | "cocoa", 2727 | "dirs-next", 2728 | "embed_plist", 2729 | "flate2", 2730 | "futures", 2731 | "futures-lite", 2732 | "glib", 2733 | "glob", 2734 | "gtk", 2735 | "heck 0.4.0", 2736 | "http", 2737 | "ignore", 2738 | "notify-rust", 2739 | "objc", 2740 | "once_cell", 2741 | "open", 2742 | "os_info", 2743 | "os_pipe", 2744 | "percent-encoding", 2745 | "rand 0.8.5", 2746 | "raw-window-handle", 2747 | "regex", 2748 | "rfd", 2749 | "semver 1.0.13", 2750 | "serde", 2751 | "serde_json", 2752 | "serde_repr", 2753 | "serialize-to-javascript", 2754 | "shared_child", 2755 | "state", 2756 | "tar", 2757 | "tauri-macros", 2758 | "tauri-runtime", 2759 | "tauri-runtime-wry", 2760 | "tauri-utils", 2761 | "tempfile", 2762 | "thiserror", 2763 | "tokio", 2764 | "url", 2765 | "uuid 1.1.2", 2766 | "webkit2gtk", 2767 | "webview2-com", 2768 | "windows 0.37.0", 2769 | ] 2770 | 2771 | [[package]] 2772 | name = "tauri-build" 2773 | version = "1.0.4" 2774 | source = "registry+https://github.com/rust-lang/crates.io-index" 2775 | checksum = "acafb1c515c5d14234a294461bd43c723639a84891a45f6a250fd3441ad2e8ed" 2776 | dependencies = [ 2777 | "anyhow", 2778 | "cargo_toml", 2779 | "heck 0.4.0", 2780 | "json-patch", 2781 | "semver 1.0.13", 2782 | "serde_json", 2783 | "tauri-utils", 2784 | "winres", 2785 | ] 2786 | 2787 | [[package]] 2788 | name = "tauri-codegen" 2789 | version = "1.0.4" 2790 | source = "registry+https://github.com/rust-lang/crates.io-index" 2791 | checksum = "16d62a3c8790d6cba686cea6e3f7f569d12c662c3274c2d165a4fd33e3871b72" 2792 | dependencies = [ 2793 | "base64", 2794 | "brotli", 2795 | "ico", 2796 | "json-patch", 2797 | "plist", 2798 | "png 0.17.5", 2799 | "proc-macro2", 2800 | "quote", 2801 | "regex", 2802 | "semver 1.0.13", 2803 | "serde", 2804 | "serde_json", 2805 | "sha2", 2806 | "tauri-utils", 2807 | "thiserror", 2808 | "time", 2809 | "uuid 1.1.2", 2810 | "walkdir", 2811 | ] 2812 | 2813 | [[package]] 2814 | name = "tauri-macros" 2815 | version = "1.0.4" 2816 | source = "registry+https://github.com/rust-lang/crates.io-index" 2817 | checksum = "7296fa17996629f43081e1c66d554703900187ed900c5bf46f97f0bcfb069278" 2818 | dependencies = [ 2819 | "heck 0.4.0", 2820 | "proc-macro2", 2821 | "quote", 2822 | "syn", 2823 | "tauri-codegen", 2824 | "tauri-utils", 2825 | ] 2826 | 2827 | [[package]] 2828 | name = "tauri-runtime" 2829 | version = "0.10.2" 2830 | source = "registry+https://github.com/rust-lang/crates.io-index" 2831 | checksum = "4e4cff3b4d9469727fa2107c4b3d2eda110df1ba45103fb420178e536362fae4" 2832 | dependencies = [ 2833 | "gtk", 2834 | "http", 2835 | "http-range", 2836 | "infer", 2837 | "raw-window-handle", 2838 | "serde", 2839 | "serde_json", 2840 | "tauri-utils", 2841 | "thiserror", 2842 | "uuid 1.1.2", 2843 | "webview2-com", 2844 | "windows 0.37.0", 2845 | ] 2846 | 2847 | [[package]] 2848 | name = "tauri-runtime-wry" 2849 | version = "0.10.2" 2850 | source = "registry+https://github.com/rust-lang/crates.io-index" 2851 | checksum = "3fa8c4edaf01d8b556e7172c844b1b4dd3399adcd1a606bd520fc3e65f698546" 2852 | dependencies = [ 2853 | "cocoa", 2854 | "gtk", 2855 | "percent-encoding", 2856 | "rand 0.8.5", 2857 | "raw-window-handle", 2858 | "tauri-runtime", 2859 | "tauri-utils", 2860 | "uuid 1.1.2", 2861 | "webkit2gtk", 2862 | "webview2-com", 2863 | "windows 0.37.0", 2864 | "wry", 2865 | ] 2866 | 2867 | [[package]] 2868 | name = "tauri-utils" 2869 | version = "1.0.3" 2870 | source = "registry+https://github.com/rust-lang/crates.io-index" 2871 | checksum = "12ff4b68d9faeb57c9c727bf58c9c9768d2b67d8e84e62ce6146e7859a2e9c6b" 2872 | dependencies = [ 2873 | "brotli", 2874 | "ctor", 2875 | "glob", 2876 | "heck 0.4.0", 2877 | "html5ever", 2878 | "json-patch", 2879 | "kuchiki", 2880 | "memchr", 2881 | "phf 0.10.1", 2882 | "proc-macro2", 2883 | "quote", 2884 | "semver 1.0.13", 2885 | "serde", 2886 | "serde_json", 2887 | "serde_with", 2888 | "thiserror", 2889 | "url", 2890 | "walkdir", 2891 | "windows 0.37.0", 2892 | ] 2893 | 2894 | [[package]] 2895 | name = "tempfile" 2896 | version = "3.3.0" 2897 | source = "registry+https://github.com/rust-lang/crates.io-index" 2898 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2899 | dependencies = [ 2900 | "cfg-if", 2901 | "fastrand", 2902 | "libc", 2903 | "redox_syscall", 2904 | "remove_dir_all", 2905 | "winapi", 2906 | ] 2907 | 2908 | [[package]] 2909 | name = "tendril" 2910 | version = "0.4.3" 2911 | source = "registry+https://github.com/rust-lang/crates.io-index" 2912 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2913 | dependencies = [ 2914 | "futf", 2915 | "mac", 2916 | "utf-8", 2917 | ] 2918 | 2919 | [[package]] 2920 | name = "thin-slice" 2921 | version = "0.1.1" 2922 | source = "registry+https://github.com/rust-lang/crates.io-index" 2923 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2924 | 2925 | [[package]] 2926 | name = "thiserror" 2927 | version = "1.0.32" 2928 | source = "registry+https://github.com/rust-lang/crates.io-index" 2929 | checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" 2930 | dependencies = [ 2931 | "thiserror-impl", 2932 | ] 2933 | 2934 | [[package]] 2935 | name = "thiserror-impl" 2936 | version = "1.0.32" 2937 | source = "registry+https://github.com/rust-lang/crates.io-index" 2938 | checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" 2939 | dependencies = [ 2940 | "proc-macro2", 2941 | "quote", 2942 | "syn", 2943 | ] 2944 | 2945 | [[package]] 2946 | name = "thread_local" 2947 | version = "1.1.4" 2948 | source = "registry+https://github.com/rust-lang/crates.io-index" 2949 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2950 | dependencies = [ 2951 | "once_cell", 2952 | ] 2953 | 2954 | [[package]] 2955 | name = "time" 2956 | version = "0.3.12" 2957 | source = "registry+https://github.com/rust-lang/crates.io-index" 2958 | checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f" 2959 | dependencies = [ 2960 | "itoa 1.0.3", 2961 | "js-sys", 2962 | "libc", 2963 | "num_threads", 2964 | ] 2965 | 2966 | [[package]] 2967 | name = "tinyvec" 2968 | version = "1.6.0" 2969 | source = "registry+https://github.com/rust-lang/crates.io-index" 2970 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2971 | dependencies = [ 2972 | "tinyvec_macros", 2973 | ] 2974 | 2975 | [[package]] 2976 | name = "tinyvec_macros" 2977 | version = "0.1.0" 2978 | source = "registry+https://github.com/rust-lang/crates.io-index" 2979 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2980 | 2981 | [[package]] 2982 | name = "tokio" 2983 | version = "1.20.1" 2984 | source = "registry+https://github.com/rust-lang/crates.io-index" 2985 | checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 2986 | dependencies = [ 2987 | "autocfg", 2988 | "bytes", 2989 | "memchr", 2990 | "num_cpus", 2991 | "once_cell", 2992 | "pin-project-lite", 2993 | ] 2994 | 2995 | [[package]] 2996 | name = "toml" 2997 | version = "0.5.9" 2998 | source = "registry+https://github.com/rust-lang/crates.io-index" 2999 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 3000 | dependencies = [ 3001 | "serde", 3002 | ] 3003 | 3004 | [[package]] 3005 | name = "tracing" 3006 | version = "0.1.36" 3007 | source = "registry+https://github.com/rust-lang/crates.io-index" 3008 | checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 3009 | dependencies = [ 3010 | "cfg-if", 3011 | "pin-project-lite", 3012 | "tracing-attributes", 3013 | "tracing-core", 3014 | ] 3015 | 3016 | [[package]] 3017 | name = "tracing-attributes" 3018 | version = "0.1.22" 3019 | source = "registry+https://github.com/rust-lang/crates.io-index" 3020 | checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" 3021 | dependencies = [ 3022 | "proc-macro2", 3023 | "quote", 3024 | "syn", 3025 | ] 3026 | 3027 | [[package]] 3028 | name = "tracing-core" 3029 | version = "0.1.29" 3030 | source = "registry+https://github.com/rust-lang/crates.io-index" 3031 | checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 3032 | dependencies = [ 3033 | "once_cell", 3034 | "valuable", 3035 | ] 3036 | 3037 | [[package]] 3038 | name = "tracing-log" 3039 | version = "0.1.3" 3040 | source = "registry+https://github.com/rust-lang/crates.io-index" 3041 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3042 | dependencies = [ 3043 | "lazy_static", 3044 | "log", 3045 | "tracing-core", 3046 | ] 3047 | 3048 | [[package]] 3049 | name = "tracing-subscriber" 3050 | version = "0.3.15" 3051 | source = "registry+https://github.com/rust-lang/crates.io-index" 3052 | checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b" 3053 | dependencies = [ 3054 | "ansi_term", 3055 | "matchers", 3056 | "once_cell", 3057 | "regex", 3058 | "sharded-slab", 3059 | "smallvec", 3060 | "thread_local", 3061 | "tracing", 3062 | "tracing-core", 3063 | "tracing-log", 3064 | ] 3065 | 3066 | [[package]] 3067 | name = "treediff" 3068 | version = "3.0.2" 3069 | source = "registry+https://github.com/rust-lang/crates.io-index" 3070 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3071 | dependencies = [ 3072 | "serde_json", 3073 | ] 3074 | 3075 | [[package]] 3076 | name = "typenum" 3077 | version = "1.15.0" 3078 | source = "registry+https://github.com/rust-lang/crates.io-index" 3079 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3080 | 3081 | [[package]] 3082 | name = "ucd-trie" 3083 | version = "0.1.4" 3084 | source = "registry+https://github.com/rust-lang/crates.io-index" 3085 | checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c" 3086 | 3087 | [[package]] 3088 | name = "unicode-bidi" 3089 | version = "0.3.8" 3090 | source = "registry+https://github.com/rust-lang/crates.io-index" 3091 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3092 | 3093 | [[package]] 3094 | name = "unicode-ident" 3095 | version = "1.0.3" 3096 | source = "registry+https://github.com/rust-lang/crates.io-index" 3097 | checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 3098 | 3099 | [[package]] 3100 | name = "unicode-normalization" 3101 | version = "0.1.21" 3102 | source = "registry+https://github.com/rust-lang/crates.io-index" 3103 | checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 3104 | dependencies = [ 3105 | "tinyvec", 3106 | ] 3107 | 3108 | [[package]] 3109 | name = "unicode-segmentation" 3110 | version = "1.9.0" 3111 | source = "registry+https://github.com/rust-lang/crates.io-index" 3112 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 3113 | 3114 | [[package]] 3115 | name = "url" 3116 | version = "2.2.2" 3117 | source = "registry+https://github.com/rust-lang/crates.io-index" 3118 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3119 | dependencies = [ 3120 | "form_urlencoded", 3121 | "idna", 3122 | "matches", 3123 | "percent-encoding", 3124 | "serde", 3125 | ] 3126 | 3127 | [[package]] 3128 | name = "utf-8" 3129 | version = "0.7.6" 3130 | source = "registry+https://github.com/rust-lang/crates.io-index" 3131 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3132 | 3133 | [[package]] 3134 | name = "uuid" 3135 | version = "0.8.2" 3136 | source = "registry+https://github.com/rust-lang/crates.io-index" 3137 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3138 | 3139 | [[package]] 3140 | name = "uuid" 3141 | version = "1.1.2" 3142 | source = "registry+https://github.com/rust-lang/crates.io-index" 3143 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3144 | dependencies = [ 3145 | "getrandom 0.2.7", 3146 | ] 3147 | 3148 | [[package]] 3149 | name = "valuable" 3150 | version = "0.1.0" 3151 | source = "registry+https://github.com/rust-lang/crates.io-index" 3152 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3153 | 3154 | [[package]] 3155 | name = "vcpkg" 3156 | version = "0.2.15" 3157 | source = "registry+https://github.com/rust-lang/crates.io-index" 3158 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3159 | 3160 | [[package]] 3161 | name = "version-compare" 3162 | version = "0.0.11" 3163 | source = "registry+https://github.com/rust-lang/crates.io-index" 3164 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3165 | 3166 | [[package]] 3167 | name = "version-compare" 3168 | version = "0.1.0" 3169 | source = "registry+https://github.com/rust-lang/crates.io-index" 3170 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" 3171 | 3172 | [[package]] 3173 | name = "version_check" 3174 | version = "0.9.4" 3175 | source = "registry+https://github.com/rust-lang/crates.io-index" 3176 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3177 | 3178 | [[package]] 3179 | name = "vswhom" 3180 | version = "0.1.0" 3181 | source = "registry+https://github.com/rust-lang/crates.io-index" 3182 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 3183 | dependencies = [ 3184 | "libc", 3185 | "vswhom-sys", 3186 | ] 3187 | 3188 | [[package]] 3189 | name = "vswhom-sys" 3190 | version = "0.1.1" 3191 | source = "registry+https://github.com/rust-lang/crates.io-index" 3192 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39" 3193 | dependencies = [ 3194 | "cc", 3195 | "libc", 3196 | ] 3197 | 3198 | [[package]] 3199 | name = "waker-fn" 3200 | version = "1.1.0" 3201 | source = "registry+https://github.com/rust-lang/crates.io-index" 3202 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3203 | 3204 | [[package]] 3205 | name = "walkdir" 3206 | version = "2.3.2" 3207 | source = "registry+https://github.com/rust-lang/crates.io-index" 3208 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3209 | dependencies = [ 3210 | "same-file", 3211 | "winapi", 3212 | "winapi-util", 3213 | ] 3214 | 3215 | [[package]] 3216 | name = "wasi" 3217 | version = "0.9.0+wasi-snapshot-preview1" 3218 | source = "registry+https://github.com/rust-lang/crates.io-index" 3219 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3220 | 3221 | [[package]] 3222 | name = "wasi" 3223 | version = "0.11.0+wasi-snapshot-preview1" 3224 | source = "registry+https://github.com/rust-lang/crates.io-index" 3225 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3226 | 3227 | [[package]] 3228 | name = "wasm-bindgen" 3229 | version = "0.2.82" 3230 | source = "registry+https://github.com/rust-lang/crates.io-index" 3231 | checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 3232 | dependencies = [ 3233 | "cfg-if", 3234 | "wasm-bindgen-macro", 3235 | ] 3236 | 3237 | [[package]] 3238 | name = "wasm-bindgen-backend" 3239 | version = "0.2.82" 3240 | source = "registry+https://github.com/rust-lang/crates.io-index" 3241 | checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 3242 | dependencies = [ 3243 | "bumpalo", 3244 | "log", 3245 | "once_cell", 3246 | "proc-macro2", 3247 | "quote", 3248 | "syn", 3249 | "wasm-bindgen-shared", 3250 | ] 3251 | 3252 | [[package]] 3253 | name = "wasm-bindgen-futures" 3254 | version = "0.4.32" 3255 | source = "registry+https://github.com/rust-lang/crates.io-index" 3256 | checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad" 3257 | dependencies = [ 3258 | "cfg-if", 3259 | "js-sys", 3260 | "wasm-bindgen", 3261 | "web-sys", 3262 | ] 3263 | 3264 | [[package]] 3265 | name = "wasm-bindgen-macro" 3266 | version = "0.2.82" 3267 | source = "registry+https://github.com/rust-lang/crates.io-index" 3268 | checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 3269 | dependencies = [ 3270 | "quote", 3271 | "wasm-bindgen-macro-support", 3272 | ] 3273 | 3274 | [[package]] 3275 | name = "wasm-bindgen-macro-support" 3276 | version = "0.2.82" 3277 | source = "registry+https://github.com/rust-lang/crates.io-index" 3278 | checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 3279 | dependencies = [ 3280 | "proc-macro2", 3281 | "quote", 3282 | "syn", 3283 | "wasm-bindgen-backend", 3284 | "wasm-bindgen-shared", 3285 | ] 3286 | 3287 | [[package]] 3288 | name = "wasm-bindgen-shared" 3289 | version = "0.2.82" 3290 | source = "registry+https://github.com/rust-lang/crates.io-index" 3291 | checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 3292 | 3293 | [[package]] 3294 | name = "web-sys" 3295 | version = "0.3.59" 3296 | source = "registry+https://github.com/rust-lang/crates.io-index" 3297 | checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" 3298 | dependencies = [ 3299 | "js-sys", 3300 | "wasm-bindgen", 3301 | ] 3302 | 3303 | [[package]] 3304 | name = "webkit2gtk" 3305 | version = "0.18.0" 3306 | source = "registry+https://github.com/rust-lang/crates.io-index" 3307 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc" 3308 | dependencies = [ 3309 | "bitflags", 3310 | "cairo-rs", 3311 | "gdk", 3312 | "gdk-sys", 3313 | "gio", 3314 | "gio-sys", 3315 | "glib", 3316 | "glib-sys", 3317 | "gobject-sys", 3318 | "gtk", 3319 | "gtk-sys", 3320 | "javascriptcore-rs", 3321 | "libc", 3322 | "once_cell", 3323 | "soup2", 3324 | "webkit2gtk-sys", 3325 | ] 3326 | 3327 | [[package]] 3328 | name = "webkit2gtk-sys" 3329 | version = "0.18.0" 3330 | source = "registry+https://github.com/rust-lang/crates.io-index" 3331 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3332 | dependencies = [ 3333 | "atk-sys", 3334 | "bitflags", 3335 | "cairo-sys-rs", 3336 | "gdk-pixbuf-sys", 3337 | "gdk-sys", 3338 | "gio-sys", 3339 | "glib-sys", 3340 | "gobject-sys", 3341 | "gtk-sys", 3342 | "javascriptcore-rs-sys", 3343 | "libc", 3344 | "pango-sys", 3345 | "pkg-config", 3346 | "soup2-sys", 3347 | "system-deps 6.0.2", 3348 | ] 3349 | 3350 | [[package]] 3351 | name = "webview2-com" 3352 | version = "0.16.0" 3353 | source = "registry+https://github.com/rust-lang/crates.io-index" 3354 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f" 3355 | dependencies = [ 3356 | "webview2-com-macros", 3357 | "webview2-com-sys", 3358 | "windows 0.37.0", 3359 | "windows-implement", 3360 | ] 3361 | 3362 | [[package]] 3363 | name = "webview2-com-macros" 3364 | version = "0.6.0" 3365 | source = "registry+https://github.com/rust-lang/crates.io-index" 3366 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3367 | dependencies = [ 3368 | "proc-macro2", 3369 | "quote", 3370 | "syn", 3371 | ] 3372 | 3373 | [[package]] 3374 | name = "webview2-com-sys" 3375 | version = "0.16.0" 3376 | source = "registry+https://github.com/rust-lang/crates.io-index" 3377 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1" 3378 | dependencies = [ 3379 | "regex", 3380 | "serde", 3381 | "serde_json", 3382 | "thiserror", 3383 | "windows 0.37.0", 3384 | "windows-bindgen", 3385 | ] 3386 | 3387 | [[package]] 3388 | name = "wildmatch" 3389 | version = "2.1.1" 3390 | source = "registry+https://github.com/rust-lang/crates.io-index" 3391 | checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86" 3392 | 3393 | [[package]] 3394 | name = "winapi" 3395 | version = "0.3.9" 3396 | source = "registry+https://github.com/rust-lang/crates.io-index" 3397 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3398 | dependencies = [ 3399 | "winapi-i686-pc-windows-gnu", 3400 | "winapi-x86_64-pc-windows-gnu", 3401 | ] 3402 | 3403 | [[package]] 3404 | name = "winapi-i686-pc-windows-gnu" 3405 | version = "0.4.0" 3406 | source = "registry+https://github.com/rust-lang/crates.io-index" 3407 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3408 | 3409 | [[package]] 3410 | name = "winapi-util" 3411 | version = "0.1.5" 3412 | source = "registry+https://github.com/rust-lang/crates.io-index" 3413 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3414 | dependencies = [ 3415 | "winapi", 3416 | ] 3417 | 3418 | [[package]] 3419 | name = "winapi-x86_64-pc-windows-gnu" 3420 | version = "0.4.0" 3421 | source = "registry+https://github.com/rust-lang/crates.io-index" 3422 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3423 | 3424 | [[package]] 3425 | name = "windows" 3426 | version = "0.24.0" 3427 | source = "registry+https://github.com/rust-lang/crates.io-index" 3428 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944" 3429 | dependencies = [ 3430 | "windows_i686_gnu 0.24.0", 3431 | "windows_i686_msvc 0.24.0", 3432 | "windows_x86_64_gnu 0.24.0", 3433 | "windows_x86_64_msvc 0.24.0", 3434 | ] 3435 | 3436 | [[package]] 3437 | name = "windows" 3438 | version = "0.32.0" 3439 | source = "registry+https://github.com/rust-lang/crates.io-index" 3440 | checksum = "fbedf6db9096bc2364adce0ae0aa636dcd89f3c3f2cd67947062aaf0ca2a10ec" 3441 | dependencies = [ 3442 | "windows_aarch64_msvc 0.32.0", 3443 | "windows_i686_gnu 0.32.0", 3444 | "windows_i686_msvc 0.32.0", 3445 | "windows_x86_64_gnu 0.32.0", 3446 | "windows_x86_64_msvc 0.32.0", 3447 | ] 3448 | 3449 | [[package]] 3450 | name = "windows" 3451 | version = "0.37.0" 3452 | source = "registry+https://github.com/rust-lang/crates.io-index" 3453 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3454 | dependencies = [ 3455 | "windows-implement", 3456 | "windows_aarch64_msvc 0.37.0", 3457 | "windows_i686_gnu 0.37.0", 3458 | "windows_i686_msvc 0.37.0", 3459 | "windows_x86_64_gnu 0.37.0", 3460 | "windows_x86_64_msvc 0.37.0", 3461 | ] 3462 | 3463 | [[package]] 3464 | name = "windows-bindgen" 3465 | version = "0.37.0" 3466 | source = "registry+https://github.com/rust-lang/crates.io-index" 3467 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8" 3468 | dependencies = [ 3469 | "windows-metadata", 3470 | "windows-tokens", 3471 | ] 3472 | 3473 | [[package]] 3474 | name = "windows-implement" 3475 | version = "0.37.0" 3476 | source = "registry+https://github.com/rust-lang/crates.io-index" 3477 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14" 3478 | dependencies = [ 3479 | "syn", 3480 | "windows-tokens", 3481 | ] 3482 | 3483 | [[package]] 3484 | name = "windows-metadata" 3485 | version = "0.37.0" 3486 | source = "registry+https://github.com/rust-lang/crates.io-index" 3487 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463" 3488 | 3489 | [[package]] 3490 | name = "windows-sys" 3491 | version = "0.36.1" 3492 | source = "registry+https://github.com/rust-lang/crates.io-index" 3493 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3494 | dependencies = [ 3495 | "windows_aarch64_msvc 0.36.1", 3496 | "windows_i686_gnu 0.36.1", 3497 | "windows_i686_msvc 0.36.1", 3498 | "windows_x86_64_gnu 0.36.1", 3499 | "windows_x86_64_msvc 0.36.1", 3500 | ] 3501 | 3502 | [[package]] 3503 | name = "windows-tokens" 3504 | version = "0.37.0" 3505 | source = "registry+https://github.com/rust-lang/crates.io-index" 3506 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169" 3507 | 3508 | [[package]] 3509 | name = "windows_aarch64_msvc" 3510 | version = "0.32.0" 3511 | source = "registry+https://github.com/rust-lang/crates.io-index" 3512 | checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" 3513 | 3514 | [[package]] 3515 | name = "windows_aarch64_msvc" 3516 | version = "0.36.1" 3517 | source = "registry+https://github.com/rust-lang/crates.io-index" 3518 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3519 | 3520 | [[package]] 3521 | name = "windows_aarch64_msvc" 3522 | version = "0.37.0" 3523 | source = "registry+https://github.com/rust-lang/crates.io-index" 3524 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3525 | 3526 | [[package]] 3527 | name = "windows_i686_gnu" 3528 | version = "0.24.0" 3529 | source = "registry+https://github.com/rust-lang/crates.io-index" 3530 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd" 3531 | 3532 | [[package]] 3533 | name = "windows_i686_gnu" 3534 | version = "0.32.0" 3535 | source = "registry+https://github.com/rust-lang/crates.io-index" 3536 | checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" 3537 | 3538 | [[package]] 3539 | name = "windows_i686_gnu" 3540 | version = "0.36.1" 3541 | source = "registry+https://github.com/rust-lang/crates.io-index" 3542 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3543 | 3544 | [[package]] 3545 | name = "windows_i686_gnu" 3546 | version = "0.37.0" 3547 | source = "registry+https://github.com/rust-lang/crates.io-index" 3548 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3549 | 3550 | [[package]] 3551 | name = "windows_i686_msvc" 3552 | version = "0.24.0" 3553 | source = "registry+https://github.com/rust-lang/crates.io-index" 3554 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6" 3555 | 3556 | [[package]] 3557 | name = "windows_i686_msvc" 3558 | version = "0.32.0" 3559 | source = "registry+https://github.com/rust-lang/crates.io-index" 3560 | checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" 3561 | 3562 | [[package]] 3563 | name = "windows_i686_msvc" 3564 | version = "0.36.1" 3565 | source = "registry+https://github.com/rust-lang/crates.io-index" 3566 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3567 | 3568 | [[package]] 3569 | name = "windows_i686_msvc" 3570 | version = "0.37.0" 3571 | source = "registry+https://github.com/rust-lang/crates.io-index" 3572 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3573 | 3574 | [[package]] 3575 | name = "windows_x86_64_gnu" 3576 | version = "0.24.0" 3577 | source = "registry+https://github.com/rust-lang/crates.io-index" 3578 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4" 3579 | 3580 | [[package]] 3581 | name = "windows_x86_64_gnu" 3582 | version = "0.32.0" 3583 | source = "registry+https://github.com/rust-lang/crates.io-index" 3584 | checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" 3585 | 3586 | [[package]] 3587 | name = "windows_x86_64_gnu" 3588 | version = "0.36.1" 3589 | source = "registry+https://github.com/rust-lang/crates.io-index" 3590 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3591 | 3592 | [[package]] 3593 | name = "windows_x86_64_gnu" 3594 | version = "0.37.0" 3595 | source = "registry+https://github.com/rust-lang/crates.io-index" 3596 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3597 | 3598 | [[package]] 3599 | name = "windows_x86_64_msvc" 3600 | version = "0.24.0" 3601 | source = "registry+https://github.com/rust-lang/crates.io-index" 3602 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399" 3603 | 3604 | [[package]] 3605 | name = "windows_x86_64_msvc" 3606 | version = "0.32.0" 3607 | source = "registry+https://github.com/rust-lang/crates.io-index" 3608 | checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" 3609 | 3610 | [[package]] 3611 | name = "windows_x86_64_msvc" 3612 | version = "0.36.1" 3613 | source = "registry+https://github.com/rust-lang/crates.io-index" 3614 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3615 | 3616 | [[package]] 3617 | name = "windows_x86_64_msvc" 3618 | version = "0.37.0" 3619 | source = "registry+https://github.com/rust-lang/crates.io-index" 3620 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3621 | 3622 | [[package]] 3623 | name = "winreg" 3624 | version = "0.10.1" 3625 | source = "registry+https://github.com/rust-lang/crates.io-index" 3626 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3627 | dependencies = [ 3628 | "winapi", 3629 | ] 3630 | 3631 | [[package]] 3632 | name = "winres" 3633 | version = "0.1.12" 3634 | source = "registry+https://github.com/rust-lang/crates.io-index" 3635 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3636 | dependencies = [ 3637 | "toml", 3638 | ] 3639 | 3640 | [[package]] 3641 | name = "winrt-notification" 3642 | version = "0.5.1" 3643 | source = "registry+https://github.com/rust-lang/crates.io-index" 3644 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4" 3645 | dependencies = [ 3646 | "strum", 3647 | "windows 0.24.0", 3648 | "xml-rs", 3649 | ] 3650 | 3651 | [[package]] 3652 | name = "wry" 3653 | version = "0.19.0" 3654 | source = "registry+https://github.com/rust-lang/crates.io-index" 3655 | checksum = "ce19dddbd3ce01dc8f14eb6d4c8f914123bf8379aaa838f6da4f981ff7104a3f" 3656 | dependencies = [ 3657 | "block", 3658 | "cocoa", 3659 | "core-graphics", 3660 | "gdk", 3661 | "gio", 3662 | "glib", 3663 | "gtk", 3664 | "http", 3665 | "jni 0.18.0", 3666 | "libc", 3667 | "log", 3668 | "objc", 3669 | "objc_id", 3670 | "once_cell", 3671 | "serde", 3672 | "serde_json", 3673 | "tao", 3674 | "thiserror", 3675 | "url", 3676 | "webkit2gtk", 3677 | "webkit2gtk-sys", 3678 | "webview2-com", 3679 | "windows 0.37.0", 3680 | "windows-implement", 3681 | ] 3682 | 3683 | [[package]] 3684 | name = "x11" 3685 | version = "2.19.1" 3686 | source = "registry+https://github.com/rust-lang/crates.io-index" 3687 | checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a" 3688 | dependencies = [ 3689 | "libc", 3690 | "pkg-config", 3691 | ] 3692 | 3693 | [[package]] 3694 | name = "x11-dl" 3695 | version = "2.19.1" 3696 | source = "registry+https://github.com/rust-lang/crates.io-index" 3697 | checksum = "ea26926b4ce81a6f5d9d0f3a0bc401e5a37c6ae14a1bfaa8ff6099ca80038c59" 3698 | dependencies = [ 3699 | "lazy_static", 3700 | "libc", 3701 | "pkg-config", 3702 | ] 3703 | 3704 | [[package]] 3705 | name = "xattr" 3706 | version = "0.2.3" 3707 | source = "registry+https://github.com/rust-lang/crates.io-index" 3708 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3709 | dependencies = [ 3710 | "libc", 3711 | ] 3712 | 3713 | [[package]] 3714 | name = "xml-rs" 3715 | version = "0.8.4" 3716 | source = "registry+https://github.com/rust-lang/crates.io-index" 3717 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3718 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "app" 3 | version = "0.1.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | default-run = "app" 9 | edition = "2018" 10 | build = "src/build.rs" 11 | 12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 | 14 | [build-dependencies] 15 | tauri-build = { version = "1.0.4", features = [] } 16 | 17 | [dependencies] 18 | serde_json = "1.0" 19 | serde = { version = "1.0", features = ["derive"] } 20 | tauri = { version = "1.0.5", features = ["api-all"] } 21 | 22 | [features] 23 | default = [ "custom-protocol" ] 24 | custom-protocol = [ "tauri/custom-protocol" ] 25 | -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/react-native-everywhere/8c9a47000d5239ce802b92b3e2f3469d56f338aa/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /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-tauri/src/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | fn main() { 7 | tauri::Builder::default() 8 | .run(tauri::generate_context!()) 9 | .expect("error while running tauri application"); 10 | } 11 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "package": { 3 | "productName": "RNE", 4 | "version": "1.0.0" 5 | }, 6 | "build": { 7 | "distDir": "../web-build", 8 | "devPath": "http://localhost:19006/", 9 | "beforeDevCommand": "", 10 | "beforeBuildCommand": "" 11 | }, 12 | "tauri": { 13 | "bundle": { 14 | "active": true, 15 | "targets": "all", 16 | "identifier": "com.sarthakpranesh.rne", 17 | "icon": [ 18 | "icons/32x32.png", 19 | "icons/128x128.png", 20 | "icons/128x128@2x.png", 21 | "icons/icon.ico" 22 | ], 23 | "resources": [], 24 | "externalBin": [], 25 | "copyright": "Sarthak Pranesh", 26 | "category": "DeveloperTool", 27 | "shortDescription": "RNE is a Expo + Tauri Template", 28 | "longDescription": "RNE is a template I (Sarthak Pranesh) made to help me build Beautiful, Efficient, and write once run everywhere apps with Expo (React Native) building to Android, iOS and Web along with Desktop support using Tauri. This template includes some common libraries and configurations that I find myself using in almost all React Native project.", 29 | "deb": { 30 | "depends": [] 31 | }, 32 | "macOS": { 33 | "frameworks": [], 34 | "minimumSystemVersion": "", 35 | "exceptionDomain": "", 36 | "signingIdentity": null, 37 | "entitlements": null 38 | }, 39 | "windows": { 40 | "certificateThumbprint": null, 41 | "digestAlgorithm": "sha256", 42 | "timestampUrl": "" 43 | } 44 | }, 45 | "updater": { 46 | "active": false 47 | }, 48 | "allowlist": { 49 | "all": true 50 | }, 51 | "windows": [ 52 | { 53 | "title": "RNE", 54 | "width": 800, 55 | "height": 600, 56 | "resizable": true, 57 | "fullscreen": false 58 | } 59 | ], 60 | "security": { 61 | "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" 62 | } 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/components/MainHeader/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { StyleSheet } from "react-native"; 3 | import { Appbar } from "react-native-paper"; 4 | 5 | const MainHeader = (props: any) => { 6 | const name = props.route.name; 7 | 8 | if (name === "Counter") { 9 | return ( 10 | 11 | props.navigation.goBack()} /> 12 | 13 | 14 | ); 15 | } 16 | 17 | return ( 18 | 19 | 20 | 21 | ); 22 | }; 23 | 24 | const styles = StyleSheet.create({ 25 | appMainHeader: { 26 | backgroundColor: "black", 27 | height: 40, 28 | shadowOpacity: 0, 29 | borderBottomWidth: 0, 30 | elevation: 0, 31 | }, 32 | appTitle: { 33 | marginBottom: 40, 34 | }, 35 | }); 36 | 37 | export default MainHeader; 38 | -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- 1 | import { NavigationContainer } from "@react-navigation/native"; 2 | import { 3 | createStackNavigator, 4 | TransitionSpecs, 5 | CardStyleInterpolators, 6 | } from "@react-navigation/stack"; 7 | import * as React from "react"; 8 | 9 | // importing components 10 | import MainHeader from "../components/MainHeader"; 11 | // import screens 12 | import Counter from "../screens/Counter"; 13 | import Home from "../screens/Home"; 14 | // importing services 15 | import { CombinedDarkTheme } from "../services/themes"; 16 | 17 | const Stack = createStackNavigator(); 18 | 19 | const RootNavigator = () => { 20 | return ( 21 | 22 | 33 | 34 | 35 | 36 | 37 | ); 38 | }; 39 | 40 | export default RootNavigator; 41 | -------------------------------------------------------------------------------- /src/screens/Counter/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { View, StyleSheet } from "react-native"; 3 | import { Button, Headline } from "react-native-paper"; 4 | 5 | // import services 6 | import { useAppSelector, useAppDispatch } from "../../services/redux"; 7 | import { 8 | increment, 9 | decrement, 10 | } from "../../services/redux/reducers/DefaultReducer"; 11 | 12 | const Counter = () => { 13 | const counter = useAppSelector((state) => state.root.default.counter); 14 | const dispatch = useAppDispatch(); 15 | 16 | return ( 17 | 18 | Count: {counter} 19 | 20 | 21 | 22 | 23 | 24 | ); 25 | }; 26 | 27 | const styles = StyleSheet.create({ 28 | container: { 29 | flex: 1, 30 | alignItems: "center", 31 | justifyContent: "center", 32 | }, 33 | buttonContainer: { 34 | display: "flex", 35 | flexDirection: "row", 36 | }, 37 | }); 38 | 39 | export default Counter; 40 | -------------------------------------------------------------------------------- /src/screens/Home/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { View, StyleSheet } from "react-native"; 3 | import { Headline, Subheading, Button } from "react-native-paper"; 4 | 5 | const Home = (props: any) => { 6 | return ( 7 | 8 | React Native Everywhere 9 | 10 | Open SRC to start editing the project, or check out our below example 11 | 12 | 15 | 16 | ); 17 | }; 18 | 19 | const styles = StyleSheet.create({ 20 | container: { 21 | flex: 1, 22 | alignItems: "center", 23 | justifyContent: "center", 24 | }, 25 | }); 26 | 27 | export default Home; 28 | -------------------------------------------------------------------------------- /src/screens/SplashScreen.web.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { View, Image, StyleSheet } from "react-native"; 3 | 4 | const SplashScreen = () => { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | }; 11 | 12 | const styles = StyleSheet.create({ 13 | splashWrapper: { 14 | flex: 1, 15 | justifyContent: "center", 16 | alignItems: "center", 17 | backgroundColor: "black", 18 | }, 19 | icon: { 20 | width: 200, 21 | height: 200, 22 | }, 23 | }); 24 | 25 | export default SplashScreen; 26 | -------------------------------------------------------------------------------- /src/services/redux/index.ts: -------------------------------------------------------------------------------- 1 | import AsyncStorage from "@react-native-async-storage/async-storage"; 2 | import { TypedUseSelectorHook, useDispatch, useSelector } from "react-redux"; 3 | import { createStore, applyMiddleware } from "redux"; 4 | import { createLogger } from "redux-logger"; 5 | import { persistStore, persistReducer } from "redux-persist"; 6 | 7 | // import root reducer 8 | import rootReducer from "./reducers/index"; 9 | 10 | const persistConfig = { 11 | key: "root", 12 | storage: AsyncStorage, 13 | whitelist: ["defaultReducer"], 14 | blacklist: [], 15 | }; // Middleware: Redux Persist Persisted Reducer 16 | 17 | // Redux: Store 18 | const persistedReducer = persistReducer(persistConfig, rootReducer); 19 | // Middleware: Redux Persist and Logger 20 | const store = createStore(persistedReducer, applyMiddleware(createLogger())); 21 | 22 | const persister = persistStore(store); 23 | export { store, persister }; 24 | 25 | // Infer the `RootState` and `AppDispatch` types from the store itself 26 | export type RootState = ReturnType; 27 | export type AppDispatch = typeof store.dispatch; 28 | // Use throughout your app instead of plain `useDispatch` and `useSelector` to make sure type safe 29 | export const useAppDispatch = () => useDispatch(); 30 | export const useAppSelector: TypedUseSelectorHook = useSelector; 31 | -------------------------------------------------------------------------------- /src/services/redux/reducers/DefaultReducer.ts: -------------------------------------------------------------------------------- 1 | import { combineReducers } from "redux"; 2 | 3 | /** 4 | * Action types 5 | * All the actions defined here will be implemented in reducer, 6 | * this way it's easier to manage action type strings 7 | */ 8 | const INCREMENT = "increment"; 9 | const DECREMENT = "decrement"; 10 | 11 | // initial state of the reducer 12 | const INITIAL_STATE = { 13 | counter: 0, 14 | }; 15 | 16 | // reducer 17 | const defaultReducer = (state = INITIAL_STATE, action: any) => { 18 | switch (action.type) { 19 | case INCREMENT: 20 | return { ...state, counter: ++state.counter }; 21 | case DECREMENT: 22 | return { ...state, counter: --state.counter }; 23 | default: 24 | return state; 25 | } 26 | }; 27 | 28 | export default combineReducers({ 29 | default: defaultReducer, 30 | }); 31 | 32 | // reducer actions 33 | export const increment = () => ({ 34 | type: INCREMENT, 35 | }); 36 | export const decrement = () => ({ 37 | type: DECREMENT, 38 | }); 39 | -------------------------------------------------------------------------------- /src/services/redux/reducers/index.ts: -------------------------------------------------------------------------------- 1 | // Imports: Dependencies 2 | import { combineReducers } from "redux"; 3 | 4 | // importing reducers 5 | import DefaultReducer from "./DefaultReducer"; 6 | 7 | // Redux: Root Reducer 8 | const rootReducer = combineReducers({ 9 | root: DefaultReducer, 10 | }); 11 | 12 | export default rootReducer; 13 | -------------------------------------------------------------------------------- /src/services/themes/index.ts: -------------------------------------------------------------------------------- 1 | import { 2 | DarkTheme as NavigationDarkTheme, 3 | DefaultTheme as NavigationDefaultTheme, 4 | } from "@react-navigation/native"; 5 | import merge from "deepmerge"; 6 | import { 7 | DarkTheme as PaperDarkTheme, 8 | DefaultTheme as PaperDefaultTheme, 9 | } from "react-native-paper"; 10 | 11 | /** 12 | * React Native Paper and React navigation both have their on theming 13 | * so we need to combine their theming props to make the application look 14 | * consistent when it comes to theming. 15 | * 16 | * You can find more on it here - https://callstack.github.io/react-native-paper/theming-with-react-navigation.html 17 | */ 18 | 19 | export const CombinedDefaultTheme = merge( 20 | PaperDefaultTheme, 21 | NavigationDefaultTheme 22 | ); 23 | export const CombinedDarkTheme = merge(PaperDarkTheme, NavigationDarkTheme); 24 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "expo/tsconfig.base", 3 | "compilerOptions": { 4 | "strict": true 5 | } 6 | } 7 | --------------------------------------------------------------------------------