├── project ├── build.properties └── plugins.sbt ├── .scalafmt.conf ├── src-tauri ├── build.rs ├── .gitignore ├── icons │ ├── icon.ico │ ├── icon.png │ ├── 32x32.png │ ├── icon.icns │ ├── 128x128.png │ ├── StoreLogo.png │ ├── 128x128@2x.png │ ├── Square30x30Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ └── Square310x310Logo.png ├── src │ └── main.rs ├── Cargo.toml ├── tauri.conf.json └── Cargo.lock ├── .gitignore ├── package.json ├── index.html ├── README.md ├── vite.config.ts ├── src └── main │ └── scala │ └── Main.scala └── yarn.lock /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.6.2 2 | -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- 1 | version = "3.5.3" 2 | runner.dialect = scala3 -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keynmol/scalajs-tauri-example/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | node_modules 3 | .bloop 4 | .bsp 5 | .metals 6 | dist 7 | 8 | main.js 9 | main.js.map 10 | 11 | src-tauri/target 12 | project/project 13 | project/target 14 | project/metals.sbt 15 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- 1 | addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") 2 | addSbtPlugin("com.indoorvivants" % "sbt-commandmatrix" % "0.0.5") 3 | addSbtPlugin("org.scalablytyped.converter" % "sbt-converter" % "1.0.0-beta37") 4 | addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") 5 | 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tauri-app", 3 | "type": "module", 4 | "scripts": { 5 | "tauri": "tauri", 6 | "dev": "vite", 7 | "build": "vite build", 8 | "preview": "vite preview" 9 | }, 10 | "dependencies": { 11 | "@tauri-apps/api": "^1.0.0", 12 | "typescript": "4.3" 13 | }, 14 | "devDependencies": { 15 | "@tauri-apps/cli": "^1.0.0", 16 | "vite": "^2.9.12" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | #![cfg_attr( 2 | all(not(debug_assertions), target_os = "windows"), 3 | windows_subsystem = "windows" 4 | )] 5 | 6 | #[tauri::command] 7 | fn greet(name: &str) -> String { 8 | format!("Hello, {}!", name) 9 | } 10 | 11 | fn main() { 12 | let context = tauri::generate_context!(); 13 | tauri::Builder::default() 14 | .invoke_handler(tauri::generate_handler![greet]) 15 | .menu(tauri::Menu::os_default(&context.package_info().name)) 16 | .run(context) 17 | .expect("error while running tauri application"); 18 | } 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # scalajs-tauri-example 2 | 3 | This is a very small of using [Tauri](https://tauri.app/) to develop a desktop application with Scala.js frontend. 4 | 5 | 1. Uses [Laminar](https://laminar.dev) 6 | 2. Bundling done with [Vite.js](https://vitejs.dev) 7 | 3. [ScalablyTyped](https://scalablytyped.org/docs/readme.html) provides facades to access Tauri's APIs (for things like windows titles and system dialogs) 8 | 9 | ## Run 10 | 11 | 1. Do all the setup necessary to run Tauri 12 | 2. Run `sbt buildFrontend` to build Scala.js frontend 13 | 3. run `npm run tauri dev` to launch the app 14 | 4. Done. 15 | 16 | ![2022-06-16 15 43 12](https://user-images.githubusercontent.com/1052965/174096023-0bbed885-6fa3-468d-a7ed-4a6143e7c821.gif) 17 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | 3 | export default defineConfig({ 4 | // prevent vite from obscuring rust errors 5 | clearScreen: false, 6 | // Tauri expects a fixed port, fail if that port is not available 7 | server: { 8 | port: 3000, 9 | strictPort: true, 10 | }, 11 | // to make use of `TAURI_PLATFORM`, `TAURI_ARCH`, `TAURI_FAMILY`, 12 | // `TAURI_PLATFORM_VERSION`, `TAURI_PLATFORM_TYPE` and `TAURI_DEBUG` 13 | // env variables 14 | envPrefix: ['VITE_', 'TAURI_'], 15 | build: { 16 | // Tauri supports es2021 17 | target: ['es2021', 'chrome97', 'safari13'], 18 | // don't minify for debug builds 19 | minify: !process.env.TAURI_DEBUG && 'esbuild', 20 | // produce sourcemaps for debug builds 21 | sourcemap: !!process.env.TAURI_DEBUG, 22 | }, 23 | }) 24 | 25 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "app" 3 | version = "0.1.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | default-run = "app" 9 | edition = "2021" 10 | rust-version = "1.57" 11 | 12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 | 14 | [build-dependencies] 15 | tauri-build = { version = "1.0.0", features = [] } 16 | 17 | [dependencies] 18 | serde_json = "1.0" 19 | serde = { version = "1.0", features = ["derive"] } 20 | tauri = { version = "1.0.0", features = ["api-all"] } 21 | 22 | [features] 23 | # by default Tauri runs in production mode 24 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL 25 | default = [ "custom-protocol" ] 26 | # this feature is used used for production builds where `devPath` points to the filesystem 27 | # DO NOT remove this 28 | custom-protocol = [ "tauri/custom-protocol" ] 29 | -------------------------------------------------------------------------------- /src/main/scala/Main.scala: -------------------------------------------------------------------------------- 1 | import com.indoorvivants.tauri.tauriAppsApi.* 2 | import scalajs.js.Thenable.Implicits.* 3 | import concurrent.ExecutionContext.Implicits.global 4 | 5 | import tauriAppsApiMod as tauri 6 | import tauriAppsApiMod as tauri 7 | import org.scalajs.dom 8 | import org.scalablytyped.runtime.StringDictionary 9 | 10 | import com.raquo.laminar.api.L._ 11 | import com.indoorvivants.tauri.std.stdStrings.dialog 12 | 13 | @main def hello = 14 | documentEvents.onDomContentLoaded.foreach { _ => 15 | val appContainer = dom.document.querySelector("#appContainer") 16 | val agreed = Var(false) 17 | windowMod.appWindow.setTitle("Twitter argument simulator") 18 | val appElement = div( 19 | h1( 20 | fontSize := "6rem", 21 | "You ", 22 | child <-- agreed.signal.map { 23 | case true => "agree" 24 | case false => "disagree" 25 | } 26 | ), 27 | button( 28 | fontSize := "5rem", 29 | "Well ackchually", 30 | onClick --> { _ => 31 | dialogMod.ask("Are you absolutely sure?").collect { case true => 32 | agreed.update(!_) 33 | } 34 | } 35 | ) 36 | ) 37 | render(appContainer, appElement) 38 | }(unsafeWindowOwner) 39 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "../node_modules/@tauri-apps/cli/schema.json", 3 | "build": { 4 | "beforeBuildCommand": "npm run build", 5 | "beforeDevCommand": "npm run dev", 6 | "devPath": "http://localhost:3000", 7 | "distDir": "../dist", 8 | "withGlobalTauri": true 9 | }, 10 | "package": { 11 | "productName": "scalajs-tauri-app", 12 | "version": "0.1.0" 13 | }, 14 | "tauri": { 15 | "allowlist": { 16 | "all": true 17 | }, 18 | "bundle": { 19 | "active": true, 20 | "category": "DeveloperTool", 21 | "copyright": "", 22 | "deb": { 23 | "depends": [] 24 | }, 25 | "externalBin": [], 26 | "icon": [ 27 | "icons/32x32.png", 28 | "icons/128x128.png", 29 | "icons/128x128@2x.png", 30 | "icons/icon.icns", 31 | "icons/icon.ico" 32 | ], 33 | "identifier": "com.indoorvivants.app", 34 | "longDescription": "", 35 | "macOS": { 36 | "entitlements": null, 37 | "exceptionDomain": "", 38 | "frameworks": [], 39 | "providerShortName": null, 40 | "signingIdentity": null 41 | }, 42 | "resources": [], 43 | "shortDescription": "", 44 | "targets": "all", 45 | "windows": { 46 | "certificateThumbprint": null, 47 | "digestAlgorithm": "sha256", 48 | "timestampUrl": "" 49 | } 50 | }, 51 | "security": { 52 | "csp": null 53 | }, 54 | "updater": { 55 | "active": false 56 | }, 57 | "windows": [ 58 | { 59 | "fullscreen": false, 60 | "height": 600, 61 | "resizable": true, 62 | "title": "Scala.js Tauri Hello", 63 | "width": 800 64 | } 65 | ] 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@tauri-apps/api@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.npmjs.org/@tauri-apps/api/-/api-1.0.0.tgz" 8 | integrity sha512-sPnq8/WQumCnyHERTeqKQiryRoM8X4ImMT7K+BJ3zT7bmp/n5162fZS/ZqYIFxKHgQqzwWqT7C96Sb0/CL7WsA== 9 | dependencies: 10 | type-fest "2.13.1" 11 | 12 | "@tauri-apps/cli-darwin-arm64@1.0.0": 13 | version "1.0.0" 14 | resolved "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.0.0.tgz" 15 | integrity sha512-0ryomgLjdpylXypMPVXLU3PZCde3Sw5nwN4coUhBcHPBLFRb8QPet+nweVK/HiZ3mxg8WeIazvpx2s8hS0l2GQ== 16 | 17 | "@tauri-apps/cli-darwin-x64@1.0.0": 18 | version "1.0.0" 19 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.0.0.tgz#5ffc8d444c7dc1cab14c8c743a929e448f1b1e93" 20 | integrity sha512-oejvYUT4dEfzBi+FWMj+CMz4cZ6C2gEFHrUtKVLdTXr8Flj5UTwdB1YPGQjiOqk73LOI7cB/vXxb9DZT+Lrxgg== 21 | 22 | "@tauri-apps/cli-linux-arm-gnueabihf@1.0.0": 23 | version "1.0.0" 24 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.0.0.tgz#c24d63b4637a0c20b9671f0284968b164482f6ee" 25 | integrity sha512-yAu78v8TeXNx/ETS5F2G2Uw/HX+LQvZkX94zNiqFsAj7snfWI/IqSUM52OBrdh/D0EC9NCdjUJ7Vuo32uxf7tg== 26 | 27 | "@tauri-apps/cli-linux-arm64-gnu@1.0.0": 28 | version "1.0.0" 29 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.0.0.tgz#dfb107a3d5f56dc0356126135f941261ffad10a3" 30 | integrity sha512-YFUN/S58AN317njAynzcQ+EHhRsCDXqmp5g9Oiqmcdg1vU7fPWZivVLc1WHz+0037C7JnsX5PtKpNYewP/+Oqw== 31 | 32 | "@tauri-apps/cli-linux-arm64-musl@1.0.0": 33 | version "1.0.0" 34 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.0.0.tgz#72ebfc5066c6fac82b513c20fbec6ab841b3ee05" 35 | integrity sha512-al+TxMGoNVikEvRQfMyYE/mdjUcUNMo5brkCIAb+fL4rWQlAhAnYVzmg/rM8N4nhdXm1MOaYAagQmxr8898dNA== 36 | 37 | "@tauri-apps/cli-linux-x64-gnu@1.0.0": 38 | version "1.0.0" 39 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.0.0.tgz#76f791378468a9ca2678885f0d14e05f4fd0d0c8" 40 | integrity sha512-KQmYlYyGpn6/2kSl9QivWG6EIepm6PJd57e6IKmYwAyNhLr2XfGl1CLuocUQQgO+jprjT70HXp+MXD0tcB0+Sw== 41 | 42 | "@tauri-apps/cli-linux-x64-musl@1.0.0": 43 | version "1.0.0" 44 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.0.0.tgz#12ccc0747c88e9c2cbdf21834b94718c8da689ca" 45 | integrity sha512-Qpaq5lZz569Aea6jfrRchgfEJaOrfLpCRBATcF8CJFFwVKmfCUcoV+MxbCIW30Zqw5Y06njC/ffa3261AV/ZIQ== 46 | 47 | "@tauri-apps/cli-win32-ia32-msvc@1.0.0": 48 | version "1.0.0" 49 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.0.0.tgz#5d56df6dbb62c11cae28b826619fbbad9a158399" 50 | integrity sha512-e2DzFqEMI+s+gv14UupdI91gPxTbUJTbbfQlTHdQlOsTk4HEZTsh+ibAYBcCLAaMRW38NEsFlAUe1lQA0iRu/w== 51 | 52 | "@tauri-apps/cli-win32-x64-msvc@1.0.0": 53 | version "1.0.0" 54 | resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.0.0.tgz#6227331d177118323cff13bc6bfb04894130c83f" 55 | integrity sha512-lWSs90pJeQX+L31IqIzmRhwLayEeyTh7mga0AxX8G868hvdLtcXCQA/rKoFtGdVLuHAx4+M+CBF5SMYb76xGYA== 56 | 57 | "@tauri-apps/cli@^1.0.0": 58 | version "1.0.0" 59 | resolved "https://registry.npmjs.org/@tauri-apps/cli/-/cli-1.0.0.tgz" 60 | integrity sha512-4eHnk3p0xnCXd9Zel3kLvdiiSURnN98GMFvWUAdirm5AjyOjcx8TIET/jqRYmYKE5yd+LMQqYMUfHRwA6JJUkg== 61 | optionalDependencies: 62 | "@tauri-apps/cli-darwin-arm64" "1.0.0" 63 | "@tauri-apps/cli-darwin-x64" "1.0.0" 64 | "@tauri-apps/cli-linux-arm-gnueabihf" "1.0.0" 65 | "@tauri-apps/cli-linux-arm64-gnu" "1.0.0" 66 | "@tauri-apps/cli-linux-arm64-musl" "1.0.0" 67 | "@tauri-apps/cli-linux-x64-gnu" "1.0.0" 68 | "@tauri-apps/cli-linux-x64-musl" "1.0.0" 69 | "@tauri-apps/cli-win32-ia32-msvc" "1.0.0" 70 | "@tauri-apps/cli-win32-x64-msvc" "1.0.0" 71 | 72 | esbuild-android-64@0.14.44: 73 | version "0.14.44" 74 | resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.44.tgz#62f5cb563d0ba318d898b6eb230c61ad3dc93619" 75 | integrity sha512-dFPHBXmx385zuJULAD/Cmq/LyPRXiAWbf9ylZtY0wJ8iVyWfKYaCYxeJx8OAZUuj46ZwNa7MzW2GBAQLOeiemg== 76 | 77 | esbuild-android-arm64@0.14.44: 78 | version "0.14.44" 79 | resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.44.tgz#ee7fcc9f47855b3395dfd1abcc2c43d8c53e57db" 80 | integrity sha512-qqaqqyxHXjZ/0ddKU3I3Nb7lAvVM69ELMhb8+91FyomAUmQPlHtxe+TTiWxXGHE72XEzcgTEGq4VauqLNkN22g== 81 | 82 | esbuild-darwin-64@0.14.44: 83 | version "0.14.44" 84 | resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.44.tgz#75ea7f594687a7189a8ba62070d42f13178e68d0" 85 | integrity sha512-RBmtGKGY06+AW6IOJ1LE/dEeF7HH34C1/Ces9FSitU4bIbIpL4KEuQpTFoxwb4ry5s2hyw7vbPhhtyOd18FH9g== 86 | 87 | esbuild-darwin-arm64@0.14.44: 88 | version "0.14.44" 89 | resolved "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.44.tgz" 90 | integrity sha512-Bmhx5Cfo4Hdb7WyyyDupTB8HPmnFZ8baLfPlzLdYvF6OzsIbV+CY+m/AWf0OQvY40BlkzCLJ/7Lfwbb71Tngmg== 91 | 92 | esbuild-freebsd-64@0.14.44: 93 | version "0.14.44" 94 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.44.tgz#f98069b964266ca79bb361cfb9d7454a05b7e8ca" 95 | integrity sha512-O4HpWa5ZgxbNPQTF7URicLzYa+TidGlmGT/RAC3GjbGEQQYkd0R1Slyh69Yrmb2qmcOcPAgWHbNo1UhK4WmZ4w== 96 | 97 | esbuild-freebsd-arm64@0.14.44: 98 | version "0.14.44" 99 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.44.tgz#247a8553d6033a58b6c3ba4d539216300497d7f6" 100 | integrity sha512-f0/jkAKccnDY7mg1F9l/AMzEm+VXWXK6c3IrOEmd13jyKfpTZKTIlt+yI04THPDCDZTzXHTRUBLozqp+m8Mg5Q== 101 | 102 | esbuild-linux-32@0.14.44: 103 | version "0.14.44" 104 | resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.44.tgz#4b72747f9f367d3ee3c1d80bf75c617e6b109821" 105 | integrity sha512-WSIhzLldMR7YUoEL7Ix319tC+NFmW9Pu7NgFWxUfOXeWsT0Wg484hm6bNgs7+oY2pGzg715y/Wrqi1uNOMmZJw== 106 | 107 | esbuild-linux-64@0.14.44: 108 | version "0.14.44" 109 | resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.44.tgz#6cd158fdd11f8d037c45139ccddb4fa5966f7ab6" 110 | integrity sha512-zgscTrCMcRZRIsVugqBTP/B5lPLNchBlWjQ8sQq2Epnv+UDtYKgXEq1ctWAmibZNy2E9QRCItKMeIEqeTUT5kA== 111 | 112 | esbuild-linux-arm64@0.14.44: 113 | version "0.14.44" 114 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.44.tgz#f14f3c8c3501067f5b2cef7a79c9a0058092cb22" 115 | integrity sha512-H0H/2/wgiScTwBve/JR8/o+Zhabx5KPk8T2mkYZFKQGl1hpUgC+AOmRyqy/Js3p66Wim4F4Akv3I3sJA1sKg0w== 116 | 117 | esbuild-linux-arm@0.14.44: 118 | version "0.14.44" 119 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.44.tgz#625478cc6ea4f64f5335e7fb07f80d6f659aeb5c" 120 | integrity sha512-laPBPwGfsbBxGw6F6jnqic2CPXLyC1bPrmnSOeJ9oEnx1rcKkizd4HWCRUc0xv+l4z/USRfx/sEfYlWSLeqoJQ== 121 | 122 | esbuild-linux-mips64le@0.14.44: 123 | version "0.14.44" 124 | resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.44.tgz#593c909bb612998300af7f7db2809a63a0d62eec" 125 | integrity sha512-ri3Okw0aleYy7o5n9zlIq+FCtq3tcMlctN6X1H1ucILjBJuH8pan2trJPKWeb8ppntFvE28I9eEXhwkWh6wYKg== 126 | 127 | esbuild-linux-ppc64le@0.14.44: 128 | version "0.14.44" 129 | resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.44.tgz#8fc2fcee671e322a5d44fcf8da6889095a187df9" 130 | integrity sha512-96TqL/MvFRuIVXz+GtCIXzRQ43ZwEk4XTn0RWUNJduXXMDQ/V1iOV28U6x6Oe3NesK4xkoKSaK2+F3VHcU8ZrA== 131 | 132 | esbuild-linux-riscv64@0.14.44: 133 | version "0.14.44" 134 | resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.44.tgz#cc2b7158c8345b67e74458a0ec020c80ca777046" 135 | integrity sha512-rrK9qEp2M8dhilsPn4T9gxUsAumkITc1kqYbpyNMr9EWo+J5ZBj04n3GYldULrcCw4ZCHAJ+qPjqr8b6kG2inA== 136 | 137 | esbuild-linux-s390x@0.14.44: 138 | version "0.14.44" 139 | resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.44.tgz#5a1e87d5d6236a8791026820936478f3b9cf8e35" 140 | integrity sha512-2YmTm9BrW5aUwBSe8wIEARd9EcnOQmkHp4+IVaO09Ez/C5T866x+ABzhG0bwx0b+QRo9q97CRMaQx2Ngb6/hfw== 141 | 142 | esbuild-netbsd-64@0.14.44: 143 | version "0.14.44" 144 | resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.44.tgz#8afb16880b530264ce2ed9fb3df26071eb841312" 145 | integrity sha512-zypdzPmZTCqYS30WHxbcvtC0E6e/ECvl4WueUdbdWhs2dfWJt5RtCBME664EpTznixR3lSN1MQ2NhwQF8MQryw== 146 | 147 | esbuild-openbsd-64@0.14.44: 148 | version "0.14.44" 149 | resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.44.tgz#a87455be446d6f5b07a60f060e1eafad454c9d4b" 150 | integrity sha512-8J43ab9ByYl7KteC03HGQjr2HY1ge7sN04lFnwMFWYk2NCn8IuaeeThvLeNjzOYhyT3I6K8puJP0uVXUu+D1xw== 151 | 152 | esbuild-sunos-64@0.14.44: 153 | version "0.14.44" 154 | resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.44.tgz#74ce7d5fd815fa60fe0a85b9db7549b1dcb32804" 155 | integrity sha512-OH1/09CGUJwffA+HNM6mqPkSIyHVC3ZnURU/4CCIx7IqWUBn1Sh1HRLQC8/TWNgcs0/1u7ygnc2pgf/AHZJ/Ow== 156 | 157 | esbuild-windows-32@0.14.44: 158 | version "0.14.44" 159 | resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.44.tgz#499e1c6cb46c216bdcb62f5b006fec3999bb06a7" 160 | integrity sha512-mCAOL9/rRqwfOfxTu2sjq/eAIs7eAXGiU6sPBnowggI7QS953Iq6o3/uDu010LwfN7zr18c/lEj6/PTwwTB3AA== 161 | 162 | esbuild-windows-64@0.14.44: 163 | version "0.14.44" 164 | resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.44.tgz#a8dae69a4615b17f62375859ce9536dd96940a06" 165 | integrity sha512-AG6BH3+YG0s2Q/IfB1cm68FdyFnoE1P+GFbmgFO3tA4UIP8+BKsmKGGZ5I3+ZjcnzOwvT74bQRVrfnQow2KO5Q== 166 | 167 | esbuild-windows-arm64@0.14.44: 168 | version "0.14.44" 169 | resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.44.tgz#db73bb68aa75a880bdaa938ccacc0f17e7a4bfea" 170 | integrity sha512-ygYPfYE5By4Sd6szsNr10B0RtWVNOSGmZABSaj4YQBLqh9b9i45VAjVWa8tyIy+UAbKF7WGwybi2wTbSVliO8A== 171 | 172 | esbuild@^0.14.27: 173 | version "0.14.44" 174 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.14.44.tgz" 175 | integrity sha512-Rn+lRRfj60r/3svI6NgAVnetzp3vMOj17BThuhshSj/gS1LR03xrjkDYyfPmrYG/0c3D68rC6FNYMQ3yRbiXeQ== 176 | optionalDependencies: 177 | esbuild-android-64 "0.14.44" 178 | esbuild-android-arm64 "0.14.44" 179 | esbuild-darwin-64 "0.14.44" 180 | esbuild-darwin-arm64 "0.14.44" 181 | esbuild-freebsd-64 "0.14.44" 182 | esbuild-freebsd-arm64 "0.14.44" 183 | esbuild-linux-32 "0.14.44" 184 | esbuild-linux-64 "0.14.44" 185 | esbuild-linux-arm "0.14.44" 186 | esbuild-linux-arm64 "0.14.44" 187 | esbuild-linux-mips64le "0.14.44" 188 | esbuild-linux-ppc64le "0.14.44" 189 | esbuild-linux-riscv64 "0.14.44" 190 | esbuild-linux-s390x "0.14.44" 191 | esbuild-netbsd-64 "0.14.44" 192 | esbuild-openbsd-64 "0.14.44" 193 | esbuild-sunos-64 "0.14.44" 194 | esbuild-windows-32 "0.14.44" 195 | esbuild-windows-64 "0.14.44" 196 | esbuild-windows-arm64 "0.14.44" 197 | 198 | fsevents@~2.3.2: 199 | version "2.3.2" 200 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 201 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 202 | 203 | function-bind@^1.1.1: 204 | version "1.1.1" 205 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 206 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 207 | 208 | has@^1.0.3: 209 | version "1.0.3" 210 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 211 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 212 | dependencies: 213 | function-bind "^1.1.1" 214 | 215 | is-core-module@^2.8.1: 216 | version "2.9.0" 217 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz" 218 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== 219 | dependencies: 220 | has "^1.0.3" 221 | 222 | nanoid@^3.3.4: 223 | version "3.3.4" 224 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" 225 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 226 | 227 | path-parse@^1.0.7: 228 | version "1.0.7" 229 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 230 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 231 | 232 | picocolors@^1.0.0: 233 | version "1.0.0" 234 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 235 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 236 | 237 | postcss@^8.4.13: 238 | version "8.4.14" 239 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" 240 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 241 | dependencies: 242 | nanoid "^3.3.4" 243 | picocolors "^1.0.0" 244 | source-map-js "^1.0.2" 245 | 246 | resolve@^1.22.0: 247 | version "1.22.0" 248 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" 249 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 250 | dependencies: 251 | is-core-module "^2.8.1" 252 | path-parse "^1.0.7" 253 | supports-preserve-symlinks-flag "^1.0.0" 254 | 255 | rollup@^2.59.0: 256 | version "2.75.6" 257 | resolved "https://registry.npmjs.org/rollup/-/rollup-2.75.6.tgz" 258 | integrity sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA== 259 | optionalDependencies: 260 | fsevents "~2.3.2" 261 | 262 | source-map-js@^1.0.2: 263 | version "1.0.2" 264 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" 265 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 266 | 267 | supports-preserve-symlinks-flag@^1.0.0: 268 | version "1.0.0" 269 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 270 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 271 | 272 | type-fest@2.13.1: 273 | version "2.13.1" 274 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.13.1.tgz" 275 | integrity sha512-hXYyrPFwETT2swFLHeoKtJrvSF/ftG/sA15/8nGaLuaDGfVAaq8DYFpu4yOyV4tzp082WqnTEoMsm3flKMI2FQ== 276 | 277 | typescript@4.3: 278 | version "4.3.5" 279 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz" 280 | integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== 281 | 282 | vite@^2.9.12: 283 | version "2.9.12" 284 | resolved "https://registry.npmjs.org/vite/-/vite-2.9.12.tgz" 285 | integrity sha512-suxC36dQo9Rq1qMB2qiRorNJtJAdxguu5TMvBHOc/F370KvqAe9t48vYp+/TbPKRNrMh/J55tOUmkuIqstZaew== 286 | dependencies: 287 | esbuild "^0.14.27" 288 | postcss "^8.4.13" 289 | resolve "^1.22.0" 290 | rollup "^2.59.0" 291 | optionalDependencies: 292 | fsevents "~2.3.2" 293 | -------------------------------------------------------------------------------- /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.57" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" 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.9.1" 180 | source = "registry+https://github.com/rust-lang/crates.io-index" 181 | checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc" 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.1.0" 192 | source = "registry+https://github.com/rust-lang/crates.io-index" 193 | checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 194 | 195 | [[package]] 196 | name = "cairo-rs" 197 | version = "0.15.11" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "62be3562254e90c1c6050a72aa638f6315593e98c5cdaba9017cedbabf0a5dee" 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.4" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53" 393 | dependencies = [ 394 | "cfg-if", 395 | "crossbeam-utils", 396 | ] 397 | 398 | [[package]] 399 | name = "crossbeam-utils" 400 | version = "0.8.8" 401 | source = "registry+https://github.com/rust-lang/crates.io-index" 402 | checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38" 403 | dependencies = [ 404 | "cfg-if", 405 | "lazy_static", 406 | ] 407 | 408 | [[package]] 409 | name = "crypto-common" 410 | version = "0.1.3" 411 | source = "registry+https://github.com/rust-lang/crates.io-index" 412 | checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 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.22" 448 | source = "registry+https://github.com/rust-lang/crates.io-index" 449 | checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c" 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.5" 499 | source = "registry+https://github.com/rust-lang/crates.io-index" 500 | checksum = "de0a745c25b32caa56b82a3950f5fec7893a960f4c10ca3b02060b0c38d8c2ce" 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.7.0" 613 | source = "registry+https://github.com/rust-lang/crates.io-index" 614 | checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" 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.16" 632 | source = "registry+https://github.com/rust-lang/crates.io-index" 633 | checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c" 634 | dependencies = [ 635 | "cfg-if", 636 | "libc", 637 | "redox_syscall", 638 | "winapi", 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.0" 880 | source = "registry+https://github.com/rust-lang/crates.io-index" 881 | checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee" 882 | dependencies = [ 883 | "cc", 884 | "libc", 885 | "log", 886 | "rustversion", 887 | "winapi", 888 | ] 889 | 890 | [[package]] 891 | name = "generic-array" 892 | version = "0.14.5" 893 | source = "registry+https://github.com/rust-lang/crates.io-index" 894 | checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 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.11" 925 | source = "registry+https://github.com/rust-lang/crates.io-index" 926 | checksum = "0f132be35e05d9662b9fa0fee3f349c6621f7782e0105917f4cc73c1bf47eceb" 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.11" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "bd124026a2fa8c33a3d17a3fe59c103f2d9fa5bd92c19e029e037736729abeab" 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 = "heck" 1084 | version = "0.3.3" 1085 | source = "registry+https://github.com/rust-lang/crates.io-index" 1086 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1087 | dependencies = [ 1088 | "unicode-segmentation", 1089 | ] 1090 | 1091 | [[package]] 1092 | name = "heck" 1093 | version = "0.4.0" 1094 | source = "registry+https://github.com/rust-lang/crates.io-index" 1095 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1096 | 1097 | [[package]] 1098 | name = "hermit-abi" 1099 | version = "0.1.19" 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" 1101 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1102 | dependencies = [ 1103 | "libc", 1104 | ] 1105 | 1106 | [[package]] 1107 | name = "html5ever" 1108 | version = "0.25.2" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1111 | dependencies = [ 1112 | "log", 1113 | "mac", 1114 | "markup5ever", 1115 | "proc-macro2", 1116 | "quote", 1117 | "syn", 1118 | ] 1119 | 1120 | [[package]] 1121 | name = "http" 1122 | version = "0.2.8" 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" 1124 | checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1125 | dependencies = [ 1126 | "bytes", 1127 | "fnv", 1128 | "itoa 1.0.2", 1129 | ] 1130 | 1131 | [[package]] 1132 | name = "http-range" 1133 | version = "0.1.5" 1134 | source = "registry+https://github.com/rust-lang/crates.io-index" 1135 | checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1136 | 1137 | [[package]] 1138 | name = "ico" 1139 | version = "0.1.0" 1140 | source = "registry+https://github.com/rust-lang/crates.io-index" 1141 | checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804" 1142 | dependencies = [ 1143 | "byteorder", 1144 | "png 0.11.0", 1145 | ] 1146 | 1147 | [[package]] 1148 | name = "ident_case" 1149 | version = "1.0.1" 1150 | source = "registry+https://github.com/rust-lang/crates.io-index" 1151 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1152 | 1153 | [[package]] 1154 | name = "idna" 1155 | version = "0.2.3" 1156 | source = "registry+https://github.com/rust-lang/crates.io-index" 1157 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1158 | dependencies = [ 1159 | "matches", 1160 | "unicode-bidi", 1161 | "unicode-normalization", 1162 | ] 1163 | 1164 | [[package]] 1165 | name = "ignore" 1166 | version = "0.4.18" 1167 | source = "registry+https://github.com/rust-lang/crates.io-index" 1168 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1169 | dependencies = [ 1170 | "crossbeam-utils", 1171 | "globset", 1172 | "lazy_static", 1173 | "log", 1174 | "memchr", 1175 | "regex", 1176 | "same-file", 1177 | "thread_local", 1178 | "walkdir", 1179 | "winapi-util", 1180 | ] 1181 | 1182 | [[package]] 1183 | name = "image" 1184 | version = "0.24.2" 1185 | source = "registry+https://github.com/rust-lang/crates.io-index" 1186 | checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212" 1187 | dependencies = [ 1188 | "bytemuck", 1189 | "byteorder", 1190 | "color_quant", 1191 | "num-iter", 1192 | "num-rational", 1193 | "num-traits", 1194 | ] 1195 | 1196 | [[package]] 1197 | name = "infer" 1198 | version = "0.7.0" 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" 1200 | checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1201 | dependencies = [ 1202 | "cfb", 1203 | ] 1204 | 1205 | [[package]] 1206 | name = "inflate" 1207 | version = "0.3.4" 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" 1209 | checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4" 1210 | dependencies = [ 1211 | "adler32", 1212 | ] 1213 | 1214 | [[package]] 1215 | name = "instant" 1216 | version = "0.1.12" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1219 | dependencies = [ 1220 | "cfg-if", 1221 | ] 1222 | 1223 | [[package]] 1224 | name = "itoa" 1225 | version = "0.4.8" 1226 | source = "registry+https://github.com/rust-lang/crates.io-index" 1227 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1228 | 1229 | [[package]] 1230 | name = "itoa" 1231 | version = "1.0.2" 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" 1233 | checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 1234 | 1235 | [[package]] 1236 | name = "javascriptcore-rs" 1237 | version = "0.16.0" 1238 | source = "registry+https://github.com/rust-lang/crates.io-index" 1239 | checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1240 | dependencies = [ 1241 | "bitflags", 1242 | "glib", 1243 | "javascriptcore-rs-sys", 1244 | ] 1245 | 1246 | [[package]] 1247 | name = "javascriptcore-rs-sys" 1248 | version = "0.4.0" 1249 | source = "registry+https://github.com/rust-lang/crates.io-index" 1250 | checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1251 | dependencies = [ 1252 | "glib-sys", 1253 | "gobject-sys", 1254 | "libc", 1255 | "system-deps 5.0.0", 1256 | ] 1257 | 1258 | [[package]] 1259 | name = "jni" 1260 | version = "0.18.0" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | checksum = "24967112a1e4301ca5342ea339763613a37592b8a6ce6cf2e4494537c7a42faf" 1263 | dependencies = [ 1264 | "cesu8", 1265 | "combine", 1266 | "jni-sys", 1267 | "log", 1268 | "thiserror", 1269 | "walkdir", 1270 | ] 1271 | 1272 | [[package]] 1273 | name = "jni" 1274 | version = "0.19.0" 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" 1276 | checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1277 | dependencies = [ 1278 | "cesu8", 1279 | "combine", 1280 | "jni-sys", 1281 | "log", 1282 | "thiserror", 1283 | "walkdir", 1284 | ] 1285 | 1286 | [[package]] 1287 | name = "jni-sys" 1288 | version = "0.3.0" 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" 1290 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1291 | 1292 | [[package]] 1293 | name = "js-sys" 1294 | version = "0.3.58" 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" 1296 | checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27" 1297 | dependencies = [ 1298 | "wasm-bindgen", 1299 | ] 1300 | 1301 | [[package]] 1302 | name = "json-patch" 1303 | version = "0.2.6" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 1306 | dependencies = [ 1307 | "serde", 1308 | "serde_json", 1309 | "treediff", 1310 | ] 1311 | 1312 | [[package]] 1313 | name = "kuchiki" 1314 | version = "0.8.1" 1315 | source = "registry+https://github.com/rust-lang/crates.io-index" 1316 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1317 | dependencies = [ 1318 | "cssparser", 1319 | "html5ever", 1320 | "matches", 1321 | "selectors", 1322 | ] 1323 | 1324 | [[package]] 1325 | name = "lazy_static" 1326 | version = "1.4.0" 1327 | source = "registry+https://github.com/rust-lang/crates.io-index" 1328 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1329 | 1330 | [[package]] 1331 | name = "libc" 1332 | version = "0.2.126" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 1335 | 1336 | [[package]] 1337 | name = "libdbus-sys" 1338 | version = "0.2.2" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" 1341 | dependencies = [ 1342 | "pkg-config", 1343 | ] 1344 | 1345 | [[package]] 1346 | name = "lock_api" 1347 | version = "0.4.7" 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" 1349 | checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1350 | dependencies = [ 1351 | "autocfg", 1352 | "scopeguard", 1353 | ] 1354 | 1355 | [[package]] 1356 | name = "log" 1357 | version = "0.4.17" 1358 | source = "registry+https://github.com/rust-lang/crates.io-index" 1359 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1360 | dependencies = [ 1361 | "cfg-if", 1362 | ] 1363 | 1364 | [[package]] 1365 | name = "loom" 1366 | version = "0.5.6" 1367 | source = "registry+https://github.com/rust-lang/crates.io-index" 1368 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1369 | dependencies = [ 1370 | "cfg-if", 1371 | "generator", 1372 | "scoped-tls", 1373 | "serde", 1374 | "serde_json", 1375 | "tracing", 1376 | "tracing-subscriber", 1377 | ] 1378 | 1379 | [[package]] 1380 | name = "mac" 1381 | version = "0.1.1" 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" 1383 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1384 | 1385 | [[package]] 1386 | name = "mac-notification-sys" 1387 | version = "0.5.2" 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" 1389 | checksum = "042f74a606175d72ca483e14e0873fe0f6c003f7af45865b17b16fdaface7203" 1390 | dependencies = [ 1391 | "cc", 1392 | "dirs-next", 1393 | "objc-foundation", 1394 | "objc_id", 1395 | "time", 1396 | ] 1397 | 1398 | [[package]] 1399 | name = "malloc_buf" 1400 | version = "0.0.6" 1401 | source = "registry+https://github.com/rust-lang/crates.io-index" 1402 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1403 | dependencies = [ 1404 | "libc", 1405 | ] 1406 | 1407 | [[package]] 1408 | name = "markup5ever" 1409 | version = "0.10.1" 1410 | source = "registry+https://github.com/rust-lang/crates.io-index" 1411 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1412 | dependencies = [ 1413 | "log", 1414 | "phf 0.8.0", 1415 | "phf_codegen", 1416 | "string_cache", 1417 | "string_cache_codegen", 1418 | "tendril", 1419 | ] 1420 | 1421 | [[package]] 1422 | name = "matchers" 1423 | version = "0.1.0" 1424 | source = "registry+https://github.com/rust-lang/crates.io-index" 1425 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1426 | dependencies = [ 1427 | "regex-automata", 1428 | ] 1429 | 1430 | [[package]] 1431 | name = "matches" 1432 | version = "0.1.9" 1433 | source = "registry+https://github.com/rust-lang/crates.io-index" 1434 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1435 | 1436 | [[package]] 1437 | name = "memchr" 1438 | version = "2.5.0" 1439 | source = "registry+https://github.com/rust-lang/crates.io-index" 1440 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1441 | 1442 | [[package]] 1443 | name = "memoffset" 1444 | version = "0.6.5" 1445 | source = "registry+https://github.com/rust-lang/crates.io-index" 1446 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1447 | dependencies = [ 1448 | "autocfg", 1449 | ] 1450 | 1451 | [[package]] 1452 | name = "miniz_oxide" 1453 | version = "0.5.3" 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" 1455 | checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1456 | dependencies = [ 1457 | "adler", 1458 | ] 1459 | 1460 | [[package]] 1461 | name = "native-tls" 1462 | version = "0.2.10" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1465 | dependencies = [ 1466 | "lazy_static", 1467 | "libc", 1468 | "log", 1469 | "openssl", 1470 | "openssl-probe", 1471 | "openssl-sys", 1472 | "schannel", 1473 | "security-framework", 1474 | "security-framework-sys", 1475 | "tempfile", 1476 | ] 1477 | 1478 | [[package]] 1479 | name = "ndk" 1480 | version = "0.6.0" 1481 | source = "registry+https://github.com/rust-lang/crates.io-index" 1482 | checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1483 | dependencies = [ 1484 | "bitflags", 1485 | "jni-sys", 1486 | "ndk-sys", 1487 | "num_enum", 1488 | "thiserror", 1489 | ] 1490 | 1491 | [[package]] 1492 | name = "ndk-context" 1493 | version = "0.1.1" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1496 | 1497 | [[package]] 1498 | name = "ndk-sys" 1499 | version = "0.3.0" 1500 | source = "registry+https://github.com/rust-lang/crates.io-index" 1501 | checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1502 | dependencies = [ 1503 | "jni-sys", 1504 | ] 1505 | 1506 | [[package]] 1507 | name = "new_debug_unreachable" 1508 | version = "1.0.4" 1509 | source = "registry+https://github.com/rust-lang/crates.io-index" 1510 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1511 | 1512 | [[package]] 1513 | name = "nodrop" 1514 | version = "0.1.14" 1515 | source = "registry+https://github.com/rust-lang/crates.io-index" 1516 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1517 | 1518 | [[package]] 1519 | name = "notify-rust" 1520 | version = "4.5.8" 1521 | source = "registry+https://github.com/rust-lang/crates.io-index" 1522 | checksum = "a995a3d2834cefa389218e7a35156e8ce544bc95f836900da01ee0b26a07e9d4" 1523 | dependencies = [ 1524 | "dbus", 1525 | "mac-notification-sys", 1526 | "winrt-notification", 1527 | ] 1528 | 1529 | [[package]] 1530 | name = "num-integer" 1531 | version = "0.1.45" 1532 | source = "registry+https://github.com/rust-lang/crates.io-index" 1533 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1534 | dependencies = [ 1535 | "autocfg", 1536 | "num-traits", 1537 | ] 1538 | 1539 | [[package]] 1540 | name = "num-iter" 1541 | version = "0.1.43" 1542 | source = "registry+https://github.com/rust-lang/crates.io-index" 1543 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1544 | dependencies = [ 1545 | "autocfg", 1546 | "num-integer", 1547 | "num-traits", 1548 | ] 1549 | 1550 | [[package]] 1551 | name = "num-rational" 1552 | version = "0.4.0" 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" 1554 | checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" 1555 | dependencies = [ 1556 | "autocfg", 1557 | "num-integer", 1558 | "num-traits", 1559 | ] 1560 | 1561 | [[package]] 1562 | name = "num-traits" 1563 | version = "0.2.15" 1564 | source = "registry+https://github.com/rust-lang/crates.io-index" 1565 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1566 | dependencies = [ 1567 | "autocfg", 1568 | ] 1569 | 1570 | [[package]] 1571 | name = "num_cpus" 1572 | version = "1.13.1" 1573 | source = "registry+https://github.com/rust-lang/crates.io-index" 1574 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1575 | dependencies = [ 1576 | "hermit-abi", 1577 | "libc", 1578 | ] 1579 | 1580 | [[package]] 1581 | name = "num_enum" 1582 | version = "0.5.7" 1583 | source = "registry+https://github.com/rust-lang/crates.io-index" 1584 | checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1585 | dependencies = [ 1586 | "num_enum_derive", 1587 | ] 1588 | 1589 | [[package]] 1590 | name = "num_enum_derive" 1591 | version = "0.5.7" 1592 | source = "registry+https://github.com/rust-lang/crates.io-index" 1593 | checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1594 | dependencies = [ 1595 | "proc-macro-crate", 1596 | "proc-macro2", 1597 | "quote", 1598 | "syn", 1599 | ] 1600 | 1601 | [[package]] 1602 | name = "num_threads" 1603 | version = "0.1.6" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1606 | dependencies = [ 1607 | "libc", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "objc" 1612 | version = "0.2.7" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1615 | dependencies = [ 1616 | "malloc_buf", 1617 | "objc_exception", 1618 | ] 1619 | 1620 | [[package]] 1621 | name = "objc-foundation" 1622 | version = "0.1.1" 1623 | source = "registry+https://github.com/rust-lang/crates.io-index" 1624 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1625 | dependencies = [ 1626 | "block", 1627 | "objc", 1628 | "objc_id", 1629 | ] 1630 | 1631 | [[package]] 1632 | name = "objc_exception" 1633 | version = "0.1.2" 1634 | source = "registry+https://github.com/rust-lang/crates.io-index" 1635 | checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1636 | dependencies = [ 1637 | "cc", 1638 | ] 1639 | 1640 | [[package]] 1641 | name = "objc_id" 1642 | version = "0.1.1" 1643 | source = "registry+https://github.com/rust-lang/crates.io-index" 1644 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1645 | dependencies = [ 1646 | "objc", 1647 | ] 1648 | 1649 | [[package]] 1650 | name = "once_cell" 1651 | version = "1.12.0" 1652 | source = "registry+https://github.com/rust-lang/crates.io-index" 1653 | checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225" 1654 | 1655 | [[package]] 1656 | name = "open" 1657 | version = "3.0.1" 1658 | source = "registry+https://github.com/rust-lang/crates.io-index" 1659 | checksum = "360bcc8316bf6363aa3954c3ccc4de8add167b087e0259190a043c9514f910fe" 1660 | dependencies = [ 1661 | "pathdiff", 1662 | "windows-sys", 1663 | ] 1664 | 1665 | [[package]] 1666 | name = "openssl" 1667 | version = "0.10.40" 1668 | source = "registry+https://github.com/rust-lang/crates.io-index" 1669 | checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e" 1670 | dependencies = [ 1671 | "bitflags", 1672 | "cfg-if", 1673 | "foreign-types", 1674 | "libc", 1675 | "once_cell", 1676 | "openssl-macros", 1677 | "openssl-sys", 1678 | ] 1679 | 1680 | [[package]] 1681 | name = "openssl-macros" 1682 | version = "0.1.0" 1683 | source = "registry+https://github.com/rust-lang/crates.io-index" 1684 | checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1685 | dependencies = [ 1686 | "proc-macro2", 1687 | "quote", 1688 | "syn", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "openssl-probe" 1693 | version = "0.1.5" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1696 | 1697 | [[package]] 1698 | name = "openssl-sys" 1699 | version = "0.9.74" 1700 | source = "registry+https://github.com/rust-lang/crates.io-index" 1701 | checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1" 1702 | dependencies = [ 1703 | "autocfg", 1704 | "cc", 1705 | "libc", 1706 | "pkg-config", 1707 | "vcpkg", 1708 | ] 1709 | 1710 | [[package]] 1711 | name = "os_info" 1712 | version = "3.4.0" 1713 | source = "registry+https://github.com/rust-lang/crates.io-index" 1714 | checksum = "0eca3ecae1481e12c3d9379ec541b238a16f0b75c9a409942daa8ec20dbfdb62" 1715 | dependencies = [ 1716 | "log", 1717 | "serde", 1718 | "winapi", 1719 | ] 1720 | 1721 | [[package]] 1722 | name = "os_pipe" 1723 | version = "1.0.1" 1724 | source = "registry+https://github.com/rust-lang/crates.io-index" 1725 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55" 1726 | dependencies = [ 1727 | "libc", 1728 | "winapi", 1729 | ] 1730 | 1731 | [[package]] 1732 | name = "pango" 1733 | version = "0.15.10" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1736 | dependencies = [ 1737 | "bitflags", 1738 | "glib", 1739 | "libc", 1740 | "once_cell", 1741 | "pango-sys", 1742 | ] 1743 | 1744 | [[package]] 1745 | name = "pango-sys" 1746 | version = "0.15.10" 1747 | source = "registry+https://github.com/rust-lang/crates.io-index" 1748 | checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1749 | dependencies = [ 1750 | "glib-sys", 1751 | "gobject-sys", 1752 | "libc", 1753 | "system-deps 6.0.2", 1754 | ] 1755 | 1756 | [[package]] 1757 | name = "parking" 1758 | version = "2.0.0" 1759 | source = "registry+https://github.com/rust-lang/crates.io-index" 1760 | checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1761 | 1762 | [[package]] 1763 | name = "parking_lot" 1764 | version = "0.11.2" 1765 | source = "registry+https://github.com/rust-lang/crates.io-index" 1766 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1767 | dependencies = [ 1768 | "instant", 1769 | "lock_api", 1770 | "parking_lot_core 0.8.5", 1771 | ] 1772 | 1773 | [[package]] 1774 | name = "parking_lot" 1775 | version = "0.12.1" 1776 | source = "registry+https://github.com/rust-lang/crates.io-index" 1777 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1778 | dependencies = [ 1779 | "lock_api", 1780 | "parking_lot_core 0.9.3", 1781 | ] 1782 | 1783 | [[package]] 1784 | name = "parking_lot_core" 1785 | version = "0.8.5" 1786 | source = "registry+https://github.com/rust-lang/crates.io-index" 1787 | checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 1788 | dependencies = [ 1789 | "cfg-if", 1790 | "instant", 1791 | "libc", 1792 | "redox_syscall", 1793 | "smallvec", 1794 | "winapi", 1795 | ] 1796 | 1797 | [[package]] 1798 | name = "parking_lot_core" 1799 | version = "0.9.3" 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" 1801 | checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1802 | dependencies = [ 1803 | "cfg-if", 1804 | "libc", 1805 | "redox_syscall", 1806 | "smallvec", 1807 | "windows-sys", 1808 | ] 1809 | 1810 | [[package]] 1811 | name = "paste" 1812 | version = "1.0.7" 1813 | source = "registry+https://github.com/rust-lang/crates.io-index" 1814 | checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc" 1815 | 1816 | [[package]] 1817 | name = "pathdiff" 1818 | version = "0.2.1" 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" 1820 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1821 | 1822 | [[package]] 1823 | name = "percent-encoding" 1824 | version = "2.1.0" 1825 | source = "registry+https://github.com/rust-lang/crates.io-index" 1826 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1827 | 1828 | [[package]] 1829 | name = "pest" 1830 | version = "2.1.3" 1831 | source = "registry+https://github.com/rust-lang/crates.io-index" 1832 | checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 1833 | dependencies = [ 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 = "png" 1955 | version = "0.11.0" 1956 | source = "registry+https://github.com/rust-lang/crates.io-index" 1957 | checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1958 | dependencies = [ 1959 | "bitflags", 1960 | "deflate 0.7.20", 1961 | "inflate", 1962 | "num-iter", 1963 | ] 1964 | 1965 | [[package]] 1966 | name = "png" 1967 | version = "0.17.5" 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" 1969 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba" 1970 | dependencies = [ 1971 | "bitflags", 1972 | "crc32fast", 1973 | "deflate 1.0.0", 1974 | "miniz_oxide", 1975 | ] 1976 | 1977 | [[package]] 1978 | name = "ppv-lite86" 1979 | version = "0.2.16" 1980 | source = "registry+https://github.com/rust-lang/crates.io-index" 1981 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1982 | 1983 | [[package]] 1984 | name = "precomputed-hash" 1985 | version = "0.1.1" 1986 | source = "registry+https://github.com/rust-lang/crates.io-index" 1987 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1988 | 1989 | [[package]] 1990 | name = "proc-macro-crate" 1991 | version = "1.1.3" 1992 | source = "registry+https://github.com/rust-lang/crates.io-index" 1993 | checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" 1994 | dependencies = [ 1995 | "thiserror", 1996 | "toml", 1997 | ] 1998 | 1999 | [[package]] 2000 | name = "proc-macro-error" 2001 | version = "1.0.4" 2002 | source = "registry+https://github.com/rust-lang/crates.io-index" 2003 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2004 | dependencies = [ 2005 | "proc-macro-error-attr", 2006 | "proc-macro2", 2007 | "quote", 2008 | "syn", 2009 | "version_check", 2010 | ] 2011 | 2012 | [[package]] 2013 | name = "proc-macro-error-attr" 2014 | version = "1.0.4" 2015 | source = "registry+https://github.com/rust-lang/crates.io-index" 2016 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2017 | dependencies = [ 2018 | "proc-macro2", 2019 | "quote", 2020 | "version_check", 2021 | ] 2022 | 2023 | [[package]] 2024 | name = "proc-macro-hack" 2025 | version = "0.5.19" 2026 | source = "registry+https://github.com/rust-lang/crates.io-index" 2027 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2028 | 2029 | [[package]] 2030 | name = "proc-macro2" 2031 | version = "1.0.39" 2032 | source = "registry+https://github.com/rust-lang/crates.io-index" 2033 | checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f" 2034 | dependencies = [ 2035 | "unicode-ident", 2036 | ] 2037 | 2038 | [[package]] 2039 | name = "quote" 2040 | version = "1.0.18" 2041 | source = "registry+https://github.com/rust-lang/crates.io-index" 2042 | checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" 2043 | dependencies = [ 2044 | "proc-macro2", 2045 | ] 2046 | 2047 | [[package]] 2048 | name = "rand" 2049 | version = "0.7.3" 2050 | source = "registry+https://github.com/rust-lang/crates.io-index" 2051 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2052 | dependencies = [ 2053 | "getrandom 0.1.16", 2054 | "libc", 2055 | "rand_chacha 0.2.2", 2056 | "rand_core 0.5.1", 2057 | "rand_hc", 2058 | "rand_pcg", 2059 | ] 2060 | 2061 | [[package]] 2062 | name = "rand" 2063 | version = "0.8.5" 2064 | source = "registry+https://github.com/rust-lang/crates.io-index" 2065 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2066 | dependencies = [ 2067 | "libc", 2068 | "rand_chacha 0.3.1", 2069 | "rand_core 0.6.3", 2070 | ] 2071 | 2072 | [[package]] 2073 | name = "rand_chacha" 2074 | version = "0.2.2" 2075 | source = "registry+https://github.com/rust-lang/crates.io-index" 2076 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2077 | dependencies = [ 2078 | "ppv-lite86", 2079 | "rand_core 0.5.1", 2080 | ] 2081 | 2082 | [[package]] 2083 | name = "rand_chacha" 2084 | version = "0.3.1" 2085 | source = "registry+https://github.com/rust-lang/crates.io-index" 2086 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2087 | dependencies = [ 2088 | "ppv-lite86", 2089 | "rand_core 0.6.3", 2090 | ] 2091 | 2092 | [[package]] 2093 | name = "rand_core" 2094 | version = "0.5.1" 2095 | source = "registry+https://github.com/rust-lang/crates.io-index" 2096 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2097 | dependencies = [ 2098 | "getrandom 0.1.16", 2099 | ] 2100 | 2101 | [[package]] 2102 | name = "rand_core" 2103 | version = "0.6.3" 2104 | source = "registry+https://github.com/rust-lang/crates.io-index" 2105 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2106 | dependencies = [ 2107 | "getrandom 0.2.7", 2108 | ] 2109 | 2110 | [[package]] 2111 | name = "rand_hc" 2112 | version = "0.2.0" 2113 | source = "registry+https://github.com/rust-lang/crates.io-index" 2114 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2115 | dependencies = [ 2116 | "rand_core 0.5.1", 2117 | ] 2118 | 2119 | [[package]] 2120 | name = "rand_pcg" 2121 | version = "0.2.1" 2122 | source = "registry+https://github.com/rust-lang/crates.io-index" 2123 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2124 | dependencies = [ 2125 | "rand_core 0.5.1", 2126 | ] 2127 | 2128 | [[package]] 2129 | name = "raw-window-handle" 2130 | version = "0.4.3" 2131 | source = "registry+https://github.com/rust-lang/crates.io-index" 2132 | checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41" 2133 | dependencies = [ 2134 | "cty", 2135 | ] 2136 | 2137 | [[package]] 2138 | name = "redox_syscall" 2139 | version = "0.2.13" 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" 2141 | checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" 2142 | dependencies = [ 2143 | "bitflags", 2144 | ] 2145 | 2146 | [[package]] 2147 | name = "redox_users" 2148 | version = "0.4.3" 2149 | source = "registry+https://github.com/rust-lang/crates.io-index" 2150 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2151 | dependencies = [ 2152 | "getrandom 0.2.7", 2153 | "redox_syscall", 2154 | "thiserror", 2155 | ] 2156 | 2157 | [[package]] 2158 | name = "regex" 2159 | version = "1.5.6" 2160 | source = "registry+https://github.com/rust-lang/crates.io-index" 2161 | checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" 2162 | dependencies = [ 2163 | "aho-corasick", 2164 | "memchr", 2165 | "regex-syntax", 2166 | ] 2167 | 2168 | [[package]] 2169 | name = "regex-automata" 2170 | version = "0.1.10" 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" 2172 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2173 | dependencies = [ 2174 | "regex-syntax", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "regex-syntax" 2179 | version = "0.6.26" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" 2182 | 2183 | [[package]] 2184 | name = "remove_dir_all" 2185 | version = "0.5.3" 2186 | source = "registry+https://github.com/rust-lang/crates.io-index" 2187 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2188 | dependencies = [ 2189 | "winapi", 2190 | ] 2191 | 2192 | [[package]] 2193 | name = "rfd" 2194 | version = "0.9.0" 2195 | source = "registry+https://github.com/rust-lang/crates.io-index" 2196 | checksum = "95281ea32d3c1ebdf84027986952e22f2bb89fa1b8b97c012be72bbc3b8e4537" 2197 | dependencies = [ 2198 | "block", 2199 | "dispatch", 2200 | "embed-resource", 2201 | "glib-sys", 2202 | "gobject-sys", 2203 | "gtk-sys", 2204 | "js-sys", 2205 | "lazy_static", 2206 | "log", 2207 | "objc", 2208 | "objc-foundation", 2209 | "objc_id", 2210 | "raw-window-handle", 2211 | "wasm-bindgen", 2212 | "wasm-bindgen-futures", 2213 | "web-sys", 2214 | "windows 0.37.0", 2215 | ] 2216 | 2217 | [[package]] 2218 | name = "rustc_version" 2219 | version = "0.3.3" 2220 | source = "registry+https://github.com/rust-lang/crates.io-index" 2221 | checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2222 | dependencies = [ 2223 | "semver 0.11.0", 2224 | ] 2225 | 2226 | [[package]] 2227 | name = "rustc_version" 2228 | version = "0.4.0" 2229 | source = "registry+https://github.com/rust-lang/crates.io-index" 2230 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2231 | dependencies = [ 2232 | "semver 1.0.10", 2233 | ] 2234 | 2235 | [[package]] 2236 | name = "rustversion" 2237 | version = "1.0.6" 2238 | source = "registry+https://github.com/rust-lang/crates.io-index" 2239 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" 2240 | 2241 | [[package]] 2242 | name = "ryu" 2243 | version = "1.0.10" 2244 | source = "registry+https://github.com/rust-lang/crates.io-index" 2245 | checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 2246 | 2247 | [[package]] 2248 | name = "same-file" 2249 | version = "1.0.6" 2250 | source = "registry+https://github.com/rust-lang/crates.io-index" 2251 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2252 | dependencies = [ 2253 | "winapi-util", 2254 | ] 2255 | 2256 | [[package]] 2257 | name = "schannel" 2258 | version = "0.1.20" 2259 | source = "registry+https://github.com/rust-lang/crates.io-index" 2260 | checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2261 | dependencies = [ 2262 | "lazy_static", 2263 | "windows-sys", 2264 | ] 2265 | 2266 | [[package]] 2267 | name = "scoped-tls" 2268 | version = "1.0.0" 2269 | source = "registry+https://github.com/rust-lang/crates.io-index" 2270 | checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2271 | 2272 | [[package]] 2273 | name = "scopeguard" 2274 | version = "1.1.0" 2275 | source = "registry+https://github.com/rust-lang/crates.io-index" 2276 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2277 | 2278 | [[package]] 2279 | name = "security-framework" 2280 | version = "2.6.1" 2281 | source = "registry+https://github.com/rust-lang/crates.io-index" 2282 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 2283 | dependencies = [ 2284 | "bitflags", 2285 | "core-foundation", 2286 | "core-foundation-sys", 2287 | "libc", 2288 | "security-framework-sys", 2289 | ] 2290 | 2291 | [[package]] 2292 | name = "security-framework-sys" 2293 | version = "2.6.1" 2294 | source = "registry+https://github.com/rust-lang/crates.io-index" 2295 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2296 | dependencies = [ 2297 | "core-foundation-sys", 2298 | "libc", 2299 | ] 2300 | 2301 | [[package]] 2302 | name = "selectors" 2303 | version = "0.22.0" 2304 | source = "registry+https://github.com/rust-lang/crates.io-index" 2305 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2306 | dependencies = [ 2307 | "bitflags", 2308 | "cssparser", 2309 | "derive_more", 2310 | "fxhash", 2311 | "log", 2312 | "matches", 2313 | "phf 0.8.0", 2314 | "phf_codegen", 2315 | "precomputed-hash", 2316 | "servo_arc", 2317 | "smallvec", 2318 | "thin-slice", 2319 | ] 2320 | 2321 | [[package]] 2322 | name = "semver" 2323 | version = "0.11.0" 2324 | source = "registry+https://github.com/rust-lang/crates.io-index" 2325 | checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2326 | dependencies = [ 2327 | "semver-parser", 2328 | ] 2329 | 2330 | [[package]] 2331 | name = "semver" 2332 | version = "1.0.10" 2333 | source = "registry+https://github.com/rust-lang/crates.io-index" 2334 | checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c" 2335 | dependencies = [ 2336 | "serde", 2337 | ] 2338 | 2339 | [[package]] 2340 | name = "semver-parser" 2341 | version = "0.10.2" 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" 2343 | checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2344 | dependencies = [ 2345 | "pest", 2346 | ] 2347 | 2348 | [[package]] 2349 | name = "serde" 2350 | version = "1.0.137" 2351 | source = "registry+https://github.com/rust-lang/crates.io-index" 2352 | checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 2353 | dependencies = [ 2354 | "serde_derive", 2355 | ] 2356 | 2357 | [[package]] 2358 | name = "serde_derive" 2359 | version = "1.0.137" 2360 | source = "registry+https://github.com/rust-lang/crates.io-index" 2361 | checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" 2362 | dependencies = [ 2363 | "proc-macro2", 2364 | "quote", 2365 | "syn", 2366 | ] 2367 | 2368 | [[package]] 2369 | name = "serde_json" 2370 | version = "1.0.81" 2371 | source = "registry+https://github.com/rust-lang/crates.io-index" 2372 | checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" 2373 | dependencies = [ 2374 | "itoa 1.0.2", 2375 | "ryu", 2376 | "serde", 2377 | ] 2378 | 2379 | [[package]] 2380 | name = "serde_repr" 2381 | version = "0.1.8" 2382 | source = "registry+https://github.com/rust-lang/crates.io-index" 2383 | checksum = "a2ad84e47328a31223de7fed7a4f5087f2d6ddfe586cf3ca25b7a165bc0a5aed" 2384 | dependencies = [ 2385 | "proc-macro2", 2386 | "quote", 2387 | "syn", 2388 | ] 2389 | 2390 | [[package]] 2391 | name = "serde_urlencoded" 2392 | version = "0.7.1" 2393 | source = "registry+https://github.com/rust-lang/crates.io-index" 2394 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2395 | dependencies = [ 2396 | "form_urlencoded", 2397 | "itoa 1.0.2", 2398 | "ryu", 2399 | "serde", 2400 | ] 2401 | 2402 | [[package]] 2403 | name = "serde_with" 2404 | version = "1.14.0" 2405 | source = "registry+https://github.com/rust-lang/crates.io-index" 2406 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2407 | dependencies = [ 2408 | "serde", 2409 | "serde_with_macros", 2410 | ] 2411 | 2412 | [[package]] 2413 | name = "serde_with_macros" 2414 | version = "1.5.2" 2415 | source = "registry+https://github.com/rust-lang/crates.io-index" 2416 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2417 | dependencies = [ 2418 | "darling", 2419 | "proc-macro2", 2420 | "quote", 2421 | "syn", 2422 | ] 2423 | 2424 | [[package]] 2425 | name = "serialize-to-javascript" 2426 | version = "0.1.1" 2427 | source = "registry+https://github.com/rust-lang/crates.io-index" 2428 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2429 | dependencies = [ 2430 | "serde", 2431 | "serde_json", 2432 | "serialize-to-javascript-impl", 2433 | ] 2434 | 2435 | [[package]] 2436 | name = "serialize-to-javascript-impl" 2437 | version = "0.1.1" 2438 | source = "registry+https://github.com/rust-lang/crates.io-index" 2439 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2440 | dependencies = [ 2441 | "proc-macro2", 2442 | "quote", 2443 | "syn", 2444 | ] 2445 | 2446 | [[package]] 2447 | name = "servo_arc" 2448 | version = "0.1.1" 2449 | source = "registry+https://github.com/rust-lang/crates.io-index" 2450 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2451 | dependencies = [ 2452 | "nodrop", 2453 | "stable_deref_trait", 2454 | ] 2455 | 2456 | [[package]] 2457 | name = "sha2" 2458 | version = "0.10.2" 2459 | source = "registry+https://github.com/rust-lang/crates.io-index" 2460 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 2461 | dependencies = [ 2462 | "cfg-if", 2463 | "cpufeatures", 2464 | "digest", 2465 | ] 2466 | 2467 | [[package]] 2468 | name = "sharded-slab" 2469 | version = "0.1.4" 2470 | source = "registry+https://github.com/rust-lang/crates.io-index" 2471 | checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2472 | dependencies = [ 2473 | "lazy_static", 2474 | ] 2475 | 2476 | [[package]] 2477 | name = "shared_child" 2478 | version = "1.0.0" 2479 | source = "registry+https://github.com/rust-lang/crates.io-index" 2480 | checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2481 | dependencies = [ 2482 | "libc", 2483 | "winapi", 2484 | ] 2485 | 2486 | [[package]] 2487 | name = "siphasher" 2488 | version = "0.3.10" 2489 | source = "registry+https://github.com/rust-lang/crates.io-index" 2490 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2491 | 2492 | [[package]] 2493 | name = "slab" 2494 | version = "0.4.6" 2495 | source = "registry+https://github.com/rust-lang/crates.io-index" 2496 | checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 2497 | 2498 | [[package]] 2499 | name = "smallvec" 2500 | version = "1.8.0" 2501 | source = "registry+https://github.com/rust-lang/crates.io-index" 2502 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" 2503 | 2504 | [[package]] 2505 | name = "soup2" 2506 | version = "0.2.1" 2507 | source = "registry+https://github.com/rust-lang/crates.io-index" 2508 | checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2509 | dependencies = [ 2510 | "bitflags", 2511 | "gio", 2512 | "glib", 2513 | "libc", 2514 | "once_cell", 2515 | "soup2-sys", 2516 | ] 2517 | 2518 | [[package]] 2519 | name = "soup2-sys" 2520 | version = "0.2.0" 2521 | source = "registry+https://github.com/rust-lang/crates.io-index" 2522 | checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2523 | dependencies = [ 2524 | "bitflags", 2525 | "gio-sys", 2526 | "glib-sys", 2527 | "gobject-sys", 2528 | "libc", 2529 | "system-deps 5.0.0", 2530 | ] 2531 | 2532 | [[package]] 2533 | name = "stable_deref_trait" 2534 | version = "1.2.0" 2535 | source = "registry+https://github.com/rust-lang/crates.io-index" 2536 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2537 | 2538 | [[package]] 2539 | name = "state" 2540 | version = "0.5.3" 2541 | source = "registry+https://github.com/rust-lang/crates.io-index" 2542 | checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2543 | dependencies = [ 2544 | "loom", 2545 | ] 2546 | 2547 | [[package]] 2548 | name = "string_cache" 2549 | version = "0.8.4" 2550 | source = "registry+https://github.com/rust-lang/crates.io-index" 2551 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2552 | dependencies = [ 2553 | "new_debug_unreachable", 2554 | "once_cell", 2555 | "parking_lot 0.12.1", 2556 | "phf_shared 0.10.0", 2557 | "precomputed-hash", 2558 | "serde", 2559 | ] 2560 | 2561 | [[package]] 2562 | name = "string_cache_codegen" 2563 | version = "0.5.2" 2564 | source = "registry+https://github.com/rust-lang/crates.io-index" 2565 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2566 | dependencies = [ 2567 | "phf_generator 0.10.0", 2568 | "phf_shared 0.10.0", 2569 | "proc-macro2", 2570 | "quote", 2571 | ] 2572 | 2573 | [[package]] 2574 | name = "strsim" 2575 | version = "0.10.0" 2576 | source = "registry+https://github.com/rust-lang/crates.io-index" 2577 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2578 | 2579 | [[package]] 2580 | name = "strum" 2581 | version = "0.22.0" 2582 | source = "registry+https://github.com/rust-lang/crates.io-index" 2583 | checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2584 | dependencies = [ 2585 | "strum_macros", 2586 | ] 2587 | 2588 | [[package]] 2589 | name = "strum_macros" 2590 | version = "0.22.0" 2591 | source = "registry+https://github.com/rust-lang/crates.io-index" 2592 | checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2593 | dependencies = [ 2594 | "heck 0.3.3", 2595 | "proc-macro2", 2596 | "quote", 2597 | "syn", 2598 | ] 2599 | 2600 | [[package]] 2601 | name = "syn" 2602 | version = "1.0.96" 2603 | source = "registry+https://github.com/rust-lang/crates.io-index" 2604 | checksum = "0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf" 2605 | dependencies = [ 2606 | "proc-macro2", 2607 | "quote", 2608 | "unicode-ident", 2609 | ] 2610 | 2611 | [[package]] 2612 | name = "system-deps" 2613 | version = "5.0.0" 2614 | source = "registry+https://github.com/rust-lang/crates.io-index" 2615 | checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2616 | dependencies = [ 2617 | "cfg-expr 0.9.1", 2618 | "heck 0.3.3", 2619 | "pkg-config", 2620 | "toml", 2621 | "version-compare 0.0.11", 2622 | ] 2623 | 2624 | [[package]] 2625 | name = "system-deps" 2626 | version = "6.0.2" 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" 2628 | checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709" 2629 | dependencies = [ 2630 | "cfg-expr 0.10.3", 2631 | "heck 0.4.0", 2632 | "pkg-config", 2633 | "toml", 2634 | "version-compare 0.1.0", 2635 | ] 2636 | 2637 | [[package]] 2638 | name = "tao" 2639 | version = "0.11.2" 2640 | source = "registry+https://github.com/rust-lang/crates.io-index" 2641 | checksum = "3bfe4c782f0543f667ee3b732d026b2f1c64af39cd52e726dec1ea1f2d8f6b80" 2642 | dependencies = [ 2643 | "bitflags", 2644 | "cairo-rs", 2645 | "cc", 2646 | "cocoa", 2647 | "core-foundation", 2648 | "core-graphics", 2649 | "crossbeam-channel", 2650 | "dispatch", 2651 | "gdk", 2652 | "gdk-pixbuf", 2653 | "gdk-sys", 2654 | "gdkx11-sys", 2655 | "gio", 2656 | "glib", 2657 | "glib-sys", 2658 | "gtk", 2659 | "image", 2660 | "instant", 2661 | "jni 0.19.0", 2662 | "lazy_static", 2663 | "libc", 2664 | "log", 2665 | "ndk", 2666 | "ndk-context", 2667 | "ndk-sys", 2668 | "objc", 2669 | "once_cell", 2670 | "parking_lot 0.11.2", 2671 | "paste", 2672 | "png 0.17.5", 2673 | "raw-window-handle", 2674 | "scopeguard", 2675 | "serde", 2676 | "tao-core-video-sys", 2677 | "unicode-segmentation", 2678 | "uuid 0.8.2", 2679 | "windows 0.37.0", 2680 | "windows-implement", 2681 | "x11-dl", 2682 | ] 2683 | 2684 | [[package]] 2685 | name = "tao-core-video-sys" 2686 | version = "0.2.0" 2687 | source = "registry+https://github.com/rust-lang/crates.io-index" 2688 | checksum = "271450eb289cb4d8d0720c6ce70c72c8c858c93dd61fc625881616752e6b98f6" 2689 | dependencies = [ 2690 | "cfg-if", 2691 | "core-foundation-sys", 2692 | "libc", 2693 | "objc", 2694 | ] 2695 | 2696 | [[package]] 2697 | name = "tar" 2698 | version = "0.4.38" 2699 | source = "registry+https://github.com/rust-lang/crates.io-index" 2700 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2701 | dependencies = [ 2702 | "filetime", 2703 | "libc", 2704 | "xattr", 2705 | ] 2706 | 2707 | [[package]] 2708 | name = "tauri" 2709 | version = "1.0.0" 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" 2711 | checksum = "8e1ebb60bb8f246d5351ff9b7728fdfa7a6eba72baa722ab6021d553981caba1" 2712 | dependencies = [ 2713 | "anyhow", 2714 | "attohttpc", 2715 | "cocoa", 2716 | "dirs-next", 2717 | "embed_plist", 2718 | "flate2", 2719 | "futures", 2720 | "futures-lite", 2721 | "glib", 2722 | "glob", 2723 | "gtk", 2724 | "heck 0.4.0", 2725 | "http", 2726 | "ignore", 2727 | "notify-rust", 2728 | "objc", 2729 | "once_cell", 2730 | "open", 2731 | "os_info", 2732 | "os_pipe", 2733 | "percent-encoding", 2734 | "rand 0.8.5", 2735 | "raw-window-handle", 2736 | "regex", 2737 | "rfd", 2738 | "semver 1.0.10", 2739 | "serde", 2740 | "serde_json", 2741 | "serde_repr", 2742 | "serialize-to-javascript", 2743 | "shared_child", 2744 | "state", 2745 | "tar", 2746 | "tauri-macros", 2747 | "tauri-runtime", 2748 | "tauri-runtime-wry", 2749 | "tauri-utils", 2750 | "tempfile", 2751 | "thiserror", 2752 | "tokio", 2753 | "url", 2754 | "uuid 1.1.2", 2755 | "webkit2gtk", 2756 | "webview2-com", 2757 | "windows 0.37.0", 2758 | ] 2759 | 2760 | [[package]] 2761 | name = "tauri-build" 2762 | version = "1.0.0" 2763 | source = "registry+https://github.com/rust-lang/crates.io-index" 2764 | checksum = "e7b26eb3523e962b90012fedbfb744ca153d9be85e7981e00737e106d5323941" 2765 | dependencies = [ 2766 | "anyhow", 2767 | "cargo_toml", 2768 | "heck 0.4.0", 2769 | "semver 1.0.10", 2770 | "serde_json", 2771 | "tauri-utils", 2772 | "winres", 2773 | ] 2774 | 2775 | [[package]] 2776 | name = "tauri-codegen" 2777 | version = "1.0.0" 2778 | source = "registry+https://github.com/rust-lang/crates.io-index" 2779 | checksum = "9468c5189188c820ef605dfe4937c768cb2918e9460c8093dc4ee2cbd717b262" 2780 | dependencies = [ 2781 | "base64", 2782 | "brotli", 2783 | "ico", 2784 | "png 0.17.5", 2785 | "proc-macro2", 2786 | "quote", 2787 | "regex", 2788 | "semver 1.0.10", 2789 | "serde", 2790 | "serde_json", 2791 | "sha2", 2792 | "tauri-utils", 2793 | "thiserror", 2794 | "uuid 1.1.2", 2795 | "walkdir", 2796 | ] 2797 | 2798 | [[package]] 2799 | name = "tauri-macros" 2800 | version = "1.0.0" 2801 | source = "registry+https://github.com/rust-lang/crates.io-index" 2802 | checksum = "40e3ffddd7a274fc7baaa260888c971a0d95d2ef403aa16600c878b8b1c00ffe" 2803 | dependencies = [ 2804 | "heck 0.4.0", 2805 | "proc-macro2", 2806 | "quote", 2807 | "syn", 2808 | "tauri-codegen", 2809 | "tauri-utils", 2810 | ] 2811 | 2812 | [[package]] 2813 | name = "tauri-runtime" 2814 | version = "0.9.0" 2815 | source = "registry+https://github.com/rust-lang/crates.io-index" 2816 | checksum = "fb7dc4db360bb40584187b6cb7834da736ce4ef2ab0914e2be98014444fa9920" 2817 | dependencies = [ 2818 | "gtk", 2819 | "http", 2820 | "http-range", 2821 | "infer", 2822 | "serde", 2823 | "serde_json", 2824 | "tauri-utils", 2825 | "thiserror", 2826 | "uuid 1.1.2", 2827 | "webview2-com", 2828 | "windows 0.37.0", 2829 | ] 2830 | 2831 | [[package]] 2832 | name = "tauri-runtime-wry" 2833 | version = "0.9.0" 2834 | source = "registry+https://github.com/rust-lang/crates.io-index" 2835 | checksum = "c876fb3a6e7c6fe2ac466b2a6ecd83658528844b4df0914558a9bc1501b31cf3" 2836 | dependencies = [ 2837 | "cocoa", 2838 | "gtk", 2839 | "percent-encoding", 2840 | "rand 0.8.5", 2841 | "tauri-runtime", 2842 | "tauri-utils", 2843 | "uuid 1.1.2", 2844 | "webkit2gtk", 2845 | "webview2-com", 2846 | "windows 0.37.0", 2847 | "wry", 2848 | ] 2849 | 2850 | [[package]] 2851 | name = "tauri-utils" 2852 | version = "1.0.0" 2853 | source = "registry+https://github.com/rust-lang/crates.io-index" 2854 | checksum = "727145cb55b8897fa9f2bcea4fad31dc39394703d037c9669b40f2d1c0c2d7f3" 2855 | dependencies = [ 2856 | "brotli", 2857 | "ctor", 2858 | "glob", 2859 | "heck 0.4.0", 2860 | "html5ever", 2861 | "json-patch", 2862 | "kuchiki", 2863 | "memchr", 2864 | "phf 0.10.1", 2865 | "proc-macro2", 2866 | "quote", 2867 | "semver 1.0.10", 2868 | "serde", 2869 | "serde_json", 2870 | "serde_with", 2871 | "thiserror", 2872 | "url", 2873 | "walkdir", 2874 | ] 2875 | 2876 | [[package]] 2877 | name = "tempfile" 2878 | version = "3.3.0" 2879 | source = "registry+https://github.com/rust-lang/crates.io-index" 2880 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2881 | dependencies = [ 2882 | "cfg-if", 2883 | "fastrand", 2884 | "libc", 2885 | "redox_syscall", 2886 | "remove_dir_all", 2887 | "winapi", 2888 | ] 2889 | 2890 | [[package]] 2891 | name = "tendril" 2892 | version = "0.4.3" 2893 | source = "registry+https://github.com/rust-lang/crates.io-index" 2894 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2895 | dependencies = [ 2896 | "futf", 2897 | "mac", 2898 | "utf-8", 2899 | ] 2900 | 2901 | [[package]] 2902 | name = "thin-slice" 2903 | version = "0.1.1" 2904 | source = "registry+https://github.com/rust-lang/crates.io-index" 2905 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2906 | 2907 | [[package]] 2908 | name = "thiserror" 2909 | version = "1.0.31" 2910 | source = "registry+https://github.com/rust-lang/crates.io-index" 2911 | checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" 2912 | dependencies = [ 2913 | "thiserror-impl", 2914 | ] 2915 | 2916 | [[package]] 2917 | name = "thiserror-impl" 2918 | version = "1.0.31" 2919 | source = "registry+https://github.com/rust-lang/crates.io-index" 2920 | checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" 2921 | dependencies = [ 2922 | "proc-macro2", 2923 | "quote", 2924 | "syn", 2925 | ] 2926 | 2927 | [[package]] 2928 | name = "thread_local" 2929 | version = "1.1.4" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2932 | dependencies = [ 2933 | "once_cell", 2934 | ] 2935 | 2936 | [[package]] 2937 | name = "time" 2938 | version = "0.3.9" 2939 | source = "registry+https://github.com/rust-lang/crates.io-index" 2940 | checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" 2941 | dependencies = [ 2942 | "libc", 2943 | "num_threads", 2944 | ] 2945 | 2946 | [[package]] 2947 | name = "tinyvec" 2948 | version = "1.6.0" 2949 | source = "registry+https://github.com/rust-lang/crates.io-index" 2950 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2951 | dependencies = [ 2952 | "tinyvec_macros", 2953 | ] 2954 | 2955 | [[package]] 2956 | name = "tinyvec_macros" 2957 | version = "0.1.0" 2958 | source = "registry+https://github.com/rust-lang/crates.io-index" 2959 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2960 | 2961 | [[package]] 2962 | name = "tokio" 2963 | version = "1.19.2" 2964 | source = "registry+https://github.com/rust-lang/crates.io-index" 2965 | checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" 2966 | dependencies = [ 2967 | "bytes", 2968 | "memchr", 2969 | "num_cpus", 2970 | "once_cell", 2971 | "pin-project-lite", 2972 | ] 2973 | 2974 | [[package]] 2975 | name = "toml" 2976 | version = "0.5.9" 2977 | source = "registry+https://github.com/rust-lang/crates.io-index" 2978 | checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2979 | dependencies = [ 2980 | "serde", 2981 | ] 2982 | 2983 | [[package]] 2984 | name = "tracing" 2985 | version = "0.1.35" 2986 | source = "registry+https://github.com/rust-lang/crates.io-index" 2987 | checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160" 2988 | dependencies = [ 2989 | "cfg-if", 2990 | "pin-project-lite", 2991 | "tracing-attributes", 2992 | "tracing-core", 2993 | ] 2994 | 2995 | [[package]] 2996 | name = "tracing-attributes" 2997 | version = "0.1.21" 2998 | source = "registry+https://github.com/rust-lang/crates.io-index" 2999 | checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" 3000 | dependencies = [ 3001 | "proc-macro2", 3002 | "quote", 3003 | "syn", 3004 | ] 3005 | 3006 | [[package]] 3007 | name = "tracing-core" 3008 | version = "0.1.27" 3009 | source = "registry+https://github.com/rust-lang/crates.io-index" 3010 | checksum = "7709595b8878a4965ce5e87ebf880a7d39c9afc6837721b21a5a816a8117d921" 3011 | dependencies = [ 3012 | "once_cell", 3013 | "valuable", 3014 | ] 3015 | 3016 | [[package]] 3017 | name = "tracing-log" 3018 | version = "0.1.3" 3019 | source = "registry+https://github.com/rust-lang/crates.io-index" 3020 | checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3021 | dependencies = [ 3022 | "lazy_static", 3023 | "log", 3024 | "tracing-core", 3025 | ] 3026 | 3027 | [[package]] 3028 | name = "tracing-subscriber" 3029 | version = "0.3.11" 3030 | source = "registry+https://github.com/rust-lang/crates.io-index" 3031 | checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596" 3032 | dependencies = [ 3033 | "ansi_term", 3034 | "lazy_static", 3035 | "matchers", 3036 | "regex", 3037 | "sharded-slab", 3038 | "smallvec", 3039 | "thread_local", 3040 | "tracing", 3041 | "tracing-core", 3042 | "tracing-log", 3043 | ] 3044 | 3045 | [[package]] 3046 | name = "treediff" 3047 | version = "3.0.2" 3048 | source = "registry+https://github.com/rust-lang/crates.io-index" 3049 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3050 | dependencies = [ 3051 | "serde_json", 3052 | ] 3053 | 3054 | [[package]] 3055 | name = "typenum" 3056 | version = "1.15.0" 3057 | source = "registry+https://github.com/rust-lang/crates.io-index" 3058 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3059 | 3060 | [[package]] 3061 | name = "ucd-trie" 3062 | version = "0.1.3" 3063 | source = "registry+https://github.com/rust-lang/crates.io-index" 3064 | checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 3065 | 3066 | [[package]] 3067 | name = "unicode-bidi" 3068 | version = "0.3.8" 3069 | source = "registry+https://github.com/rust-lang/crates.io-index" 3070 | checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3071 | 3072 | [[package]] 3073 | name = "unicode-ident" 3074 | version = "1.0.1" 3075 | source = "registry+https://github.com/rust-lang/crates.io-index" 3076 | checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" 3077 | 3078 | [[package]] 3079 | name = "unicode-normalization" 3080 | version = "0.1.19" 3081 | source = "registry+https://github.com/rust-lang/crates.io-index" 3082 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 3083 | dependencies = [ 3084 | "tinyvec", 3085 | ] 3086 | 3087 | [[package]] 3088 | name = "unicode-segmentation" 3089 | version = "1.9.0" 3090 | source = "registry+https://github.com/rust-lang/crates.io-index" 3091 | checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 3092 | 3093 | [[package]] 3094 | name = "url" 3095 | version = "2.2.2" 3096 | source = "registry+https://github.com/rust-lang/crates.io-index" 3097 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3098 | dependencies = [ 3099 | "form_urlencoded", 3100 | "idna", 3101 | "matches", 3102 | "percent-encoding", 3103 | "serde", 3104 | ] 3105 | 3106 | [[package]] 3107 | name = "utf-8" 3108 | version = "0.7.6" 3109 | source = "registry+https://github.com/rust-lang/crates.io-index" 3110 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3111 | 3112 | [[package]] 3113 | name = "uuid" 3114 | version = "0.8.2" 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" 3116 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3117 | dependencies = [ 3118 | "getrandom 0.2.7", 3119 | ] 3120 | 3121 | [[package]] 3122 | name = "uuid" 3123 | version = "1.1.2" 3124 | source = "registry+https://github.com/rust-lang/crates.io-index" 3125 | checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3126 | dependencies = [ 3127 | "getrandom 0.2.7", 3128 | ] 3129 | 3130 | [[package]] 3131 | name = "valuable" 3132 | version = "0.1.0" 3133 | source = "registry+https://github.com/rust-lang/crates.io-index" 3134 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3135 | 3136 | [[package]] 3137 | name = "vcpkg" 3138 | version = "0.2.15" 3139 | source = "registry+https://github.com/rust-lang/crates.io-index" 3140 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3141 | 3142 | [[package]] 3143 | name = "version-compare" 3144 | version = "0.0.11" 3145 | source = "registry+https://github.com/rust-lang/crates.io-index" 3146 | checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3147 | 3148 | [[package]] 3149 | name = "version-compare" 3150 | version = "0.1.0" 3151 | source = "registry+https://github.com/rust-lang/crates.io-index" 3152 | checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73" 3153 | 3154 | [[package]] 3155 | name = "version_check" 3156 | version = "0.9.4" 3157 | source = "registry+https://github.com/rust-lang/crates.io-index" 3158 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3159 | 3160 | [[package]] 3161 | name = "vswhom" 3162 | version = "0.1.0" 3163 | source = "registry+https://github.com/rust-lang/crates.io-index" 3164 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 3165 | dependencies = [ 3166 | "libc", 3167 | "vswhom-sys", 3168 | ] 3169 | 3170 | [[package]] 3171 | name = "vswhom-sys" 3172 | version = "0.1.1" 3173 | source = "registry+https://github.com/rust-lang/crates.io-index" 3174 | checksum = "22025f6d8eb903ebf920ea6933b70b1e495be37e2cb4099e62c80454aaf57c39" 3175 | dependencies = [ 3176 | "cc", 3177 | "libc", 3178 | ] 3179 | 3180 | [[package]] 3181 | name = "waker-fn" 3182 | version = "1.1.0" 3183 | source = "registry+https://github.com/rust-lang/crates.io-index" 3184 | checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3185 | 3186 | [[package]] 3187 | name = "walkdir" 3188 | version = "2.3.2" 3189 | source = "registry+https://github.com/rust-lang/crates.io-index" 3190 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3191 | dependencies = [ 3192 | "same-file", 3193 | "winapi", 3194 | "winapi-util", 3195 | ] 3196 | 3197 | [[package]] 3198 | name = "wasi" 3199 | version = "0.9.0+wasi-snapshot-preview1" 3200 | source = "registry+https://github.com/rust-lang/crates.io-index" 3201 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3202 | 3203 | [[package]] 3204 | name = "wasi" 3205 | version = "0.11.0+wasi-snapshot-preview1" 3206 | source = "registry+https://github.com/rust-lang/crates.io-index" 3207 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3208 | 3209 | [[package]] 3210 | name = "wasm-bindgen" 3211 | version = "0.2.81" 3212 | source = "registry+https://github.com/rust-lang/crates.io-index" 3213 | checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994" 3214 | dependencies = [ 3215 | "cfg-if", 3216 | "wasm-bindgen-macro", 3217 | ] 3218 | 3219 | [[package]] 3220 | name = "wasm-bindgen-backend" 3221 | version = "0.2.81" 3222 | source = "registry+https://github.com/rust-lang/crates.io-index" 3223 | checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a" 3224 | dependencies = [ 3225 | "bumpalo", 3226 | "lazy_static", 3227 | "log", 3228 | "proc-macro2", 3229 | "quote", 3230 | "syn", 3231 | "wasm-bindgen-shared", 3232 | ] 3233 | 3234 | [[package]] 3235 | name = "wasm-bindgen-futures" 3236 | version = "0.4.31" 3237 | source = "registry+https://github.com/rust-lang/crates.io-index" 3238 | checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f" 3239 | dependencies = [ 3240 | "cfg-if", 3241 | "js-sys", 3242 | "wasm-bindgen", 3243 | "web-sys", 3244 | ] 3245 | 3246 | [[package]] 3247 | name = "wasm-bindgen-macro" 3248 | version = "0.2.81" 3249 | source = "registry+https://github.com/rust-lang/crates.io-index" 3250 | checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa" 3251 | dependencies = [ 3252 | "quote", 3253 | "wasm-bindgen-macro-support", 3254 | ] 3255 | 3256 | [[package]] 3257 | name = "wasm-bindgen-macro-support" 3258 | version = "0.2.81" 3259 | source = "registry+https://github.com/rust-lang/crates.io-index" 3260 | checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048" 3261 | dependencies = [ 3262 | "proc-macro2", 3263 | "quote", 3264 | "syn", 3265 | "wasm-bindgen-backend", 3266 | "wasm-bindgen-shared", 3267 | ] 3268 | 3269 | [[package]] 3270 | name = "wasm-bindgen-shared" 3271 | version = "0.2.81" 3272 | source = "registry+https://github.com/rust-lang/crates.io-index" 3273 | checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" 3274 | 3275 | [[package]] 3276 | name = "web-sys" 3277 | version = "0.3.58" 3278 | source = "registry+https://github.com/rust-lang/crates.io-index" 3279 | checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90" 3280 | dependencies = [ 3281 | "js-sys", 3282 | "wasm-bindgen", 3283 | ] 3284 | 3285 | [[package]] 3286 | name = "webkit2gtk" 3287 | version = "0.18.0" 3288 | source = "registry+https://github.com/rust-lang/crates.io-index" 3289 | checksum = "29952969fb5e10fe834a52eb29ad0814ccdfd8387159b0933edf1344a1c9cdcc" 3290 | dependencies = [ 3291 | "bitflags", 3292 | "cairo-rs", 3293 | "gdk", 3294 | "gdk-sys", 3295 | "gio", 3296 | "gio-sys", 3297 | "glib", 3298 | "glib-sys", 3299 | "gobject-sys", 3300 | "gtk", 3301 | "gtk-sys", 3302 | "javascriptcore-rs", 3303 | "libc", 3304 | "once_cell", 3305 | "soup2", 3306 | "webkit2gtk-sys", 3307 | ] 3308 | 3309 | [[package]] 3310 | name = "webkit2gtk-sys" 3311 | version = "0.18.0" 3312 | source = "registry+https://github.com/rust-lang/crates.io-index" 3313 | checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3314 | dependencies = [ 3315 | "atk-sys", 3316 | "bitflags", 3317 | "cairo-sys-rs", 3318 | "gdk-pixbuf-sys", 3319 | "gdk-sys", 3320 | "gio-sys", 3321 | "glib-sys", 3322 | "gobject-sys", 3323 | "gtk-sys", 3324 | "javascriptcore-rs-sys", 3325 | "libc", 3326 | "pango-sys", 3327 | "pkg-config", 3328 | "soup2-sys", 3329 | "system-deps 6.0.2", 3330 | ] 3331 | 3332 | [[package]] 3333 | name = "webview2-com" 3334 | version = "0.16.0" 3335 | source = "registry+https://github.com/rust-lang/crates.io-index" 3336 | checksum = "a489a9420acabb3c2ed0434b6f71f6b56b9485ec32665a28dec1ee186d716e0f" 3337 | dependencies = [ 3338 | "webview2-com-macros", 3339 | "webview2-com-sys", 3340 | "windows 0.37.0", 3341 | "windows-implement", 3342 | ] 3343 | 3344 | [[package]] 3345 | name = "webview2-com-macros" 3346 | version = "0.6.0" 3347 | source = "registry+https://github.com/rust-lang/crates.io-index" 3348 | checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3349 | dependencies = [ 3350 | "proc-macro2", 3351 | "quote", 3352 | "syn", 3353 | ] 3354 | 3355 | [[package]] 3356 | name = "webview2-com-sys" 3357 | version = "0.16.0" 3358 | source = "registry+https://github.com/rust-lang/crates.io-index" 3359 | checksum = "0258c53ee9adc0a4f8ba1c8c317588f7a58c7048a55b621d469ba75ab3709ca1" 3360 | dependencies = [ 3361 | "regex", 3362 | "serde", 3363 | "serde_json", 3364 | "thiserror", 3365 | "windows 0.37.0", 3366 | "windows-bindgen", 3367 | ] 3368 | 3369 | [[package]] 3370 | name = "wildmatch" 3371 | version = "2.1.0" 3372 | source = "registry+https://github.com/rust-lang/crates.io-index" 3373 | checksum = "d6c48bd20df7e4ced539c12f570f937c6b4884928a87fee70a479d72f031d4e0" 3374 | 3375 | [[package]] 3376 | name = "winapi" 3377 | version = "0.3.9" 3378 | source = "registry+https://github.com/rust-lang/crates.io-index" 3379 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3380 | dependencies = [ 3381 | "winapi-i686-pc-windows-gnu", 3382 | "winapi-x86_64-pc-windows-gnu", 3383 | ] 3384 | 3385 | [[package]] 3386 | name = "winapi-i686-pc-windows-gnu" 3387 | version = "0.4.0" 3388 | source = "registry+https://github.com/rust-lang/crates.io-index" 3389 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3390 | 3391 | [[package]] 3392 | name = "winapi-util" 3393 | version = "0.1.5" 3394 | source = "registry+https://github.com/rust-lang/crates.io-index" 3395 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3396 | dependencies = [ 3397 | "winapi", 3398 | ] 3399 | 3400 | [[package]] 3401 | name = "winapi-x86_64-pc-windows-gnu" 3402 | version = "0.4.0" 3403 | source = "registry+https://github.com/rust-lang/crates.io-index" 3404 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3405 | 3406 | [[package]] 3407 | name = "windows" 3408 | version = "0.24.0" 3409 | source = "registry+https://github.com/rust-lang/crates.io-index" 3410 | checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944" 3411 | dependencies = [ 3412 | "windows_i686_gnu 0.24.0", 3413 | "windows_i686_msvc 0.24.0", 3414 | "windows_x86_64_gnu 0.24.0", 3415 | "windows_x86_64_msvc 0.24.0", 3416 | ] 3417 | 3418 | [[package]] 3419 | name = "windows" 3420 | version = "0.37.0" 3421 | source = "registry+https://github.com/rust-lang/crates.io-index" 3422 | checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3423 | dependencies = [ 3424 | "windows-implement", 3425 | "windows_aarch64_msvc 0.37.0", 3426 | "windows_i686_gnu 0.37.0", 3427 | "windows_i686_msvc 0.37.0", 3428 | "windows_x86_64_gnu 0.37.0", 3429 | "windows_x86_64_msvc 0.37.0", 3430 | ] 3431 | 3432 | [[package]] 3433 | name = "windows-bindgen" 3434 | version = "0.37.0" 3435 | source = "registry+https://github.com/rust-lang/crates.io-index" 3436 | checksum = "0bed7be31ade0af08fec9b5343e9edcc005d22b1f11859b8a59b24797f5858e8" 3437 | dependencies = [ 3438 | "windows-metadata", 3439 | "windows-tokens", 3440 | ] 3441 | 3442 | [[package]] 3443 | name = "windows-implement" 3444 | version = "0.37.0" 3445 | source = "registry+https://github.com/rust-lang/crates.io-index" 3446 | checksum = "67a1062e555f7d9d66fd1130ed4f7c6ec41a47529ee0850cd0e926d95b26bb14" 3447 | dependencies = [ 3448 | "syn", 3449 | "windows-tokens", 3450 | ] 3451 | 3452 | [[package]] 3453 | name = "windows-metadata" 3454 | version = "0.37.0" 3455 | source = "registry+https://github.com/rust-lang/crates.io-index" 3456 | checksum = "4f33f2b90a6664e369c41ab5ff262d06f048fc9685d9bf8a0e99a47750bb0463" 3457 | 3458 | [[package]] 3459 | name = "windows-sys" 3460 | version = "0.36.1" 3461 | source = "registry+https://github.com/rust-lang/crates.io-index" 3462 | checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3463 | dependencies = [ 3464 | "windows_aarch64_msvc 0.36.1", 3465 | "windows_i686_gnu 0.36.1", 3466 | "windows_i686_msvc 0.36.1", 3467 | "windows_x86_64_gnu 0.36.1", 3468 | "windows_x86_64_msvc 0.36.1", 3469 | ] 3470 | 3471 | [[package]] 3472 | name = "windows-tokens" 3473 | version = "0.37.0" 3474 | source = "registry+https://github.com/rust-lang/crates.io-index" 3475 | checksum = "3263d25f1170419995b78ff10c06b949e8a986c35c208dc24333c64753a87169" 3476 | 3477 | [[package]] 3478 | name = "windows_aarch64_msvc" 3479 | version = "0.36.1" 3480 | source = "registry+https://github.com/rust-lang/crates.io-index" 3481 | checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3482 | 3483 | [[package]] 3484 | name = "windows_aarch64_msvc" 3485 | version = "0.37.0" 3486 | source = "registry+https://github.com/rust-lang/crates.io-index" 3487 | checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3488 | 3489 | [[package]] 3490 | name = "windows_i686_gnu" 3491 | version = "0.24.0" 3492 | source = "registry+https://github.com/rust-lang/crates.io-index" 3493 | checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd" 3494 | 3495 | [[package]] 3496 | name = "windows_i686_gnu" 3497 | version = "0.36.1" 3498 | source = "registry+https://github.com/rust-lang/crates.io-index" 3499 | checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3500 | 3501 | [[package]] 3502 | name = "windows_i686_gnu" 3503 | version = "0.37.0" 3504 | source = "registry+https://github.com/rust-lang/crates.io-index" 3505 | checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3506 | 3507 | [[package]] 3508 | name = "windows_i686_msvc" 3509 | version = "0.24.0" 3510 | source = "registry+https://github.com/rust-lang/crates.io-index" 3511 | checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6" 3512 | 3513 | [[package]] 3514 | name = "windows_i686_msvc" 3515 | version = "0.36.1" 3516 | source = "registry+https://github.com/rust-lang/crates.io-index" 3517 | checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3518 | 3519 | [[package]] 3520 | name = "windows_i686_msvc" 3521 | version = "0.37.0" 3522 | source = "registry+https://github.com/rust-lang/crates.io-index" 3523 | checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3524 | 3525 | [[package]] 3526 | name = "windows_x86_64_gnu" 3527 | version = "0.24.0" 3528 | source = "registry+https://github.com/rust-lang/crates.io-index" 3529 | checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4" 3530 | 3531 | [[package]] 3532 | name = "windows_x86_64_gnu" 3533 | version = "0.36.1" 3534 | source = "registry+https://github.com/rust-lang/crates.io-index" 3535 | checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3536 | 3537 | [[package]] 3538 | name = "windows_x86_64_gnu" 3539 | version = "0.37.0" 3540 | source = "registry+https://github.com/rust-lang/crates.io-index" 3541 | checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3542 | 3543 | [[package]] 3544 | name = "windows_x86_64_msvc" 3545 | version = "0.24.0" 3546 | source = "registry+https://github.com/rust-lang/crates.io-index" 3547 | checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399" 3548 | 3549 | [[package]] 3550 | name = "windows_x86_64_msvc" 3551 | version = "0.36.1" 3552 | source = "registry+https://github.com/rust-lang/crates.io-index" 3553 | checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3554 | 3555 | [[package]] 3556 | name = "windows_x86_64_msvc" 3557 | version = "0.37.0" 3558 | source = "registry+https://github.com/rust-lang/crates.io-index" 3559 | checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3560 | 3561 | [[package]] 3562 | name = "winreg" 3563 | version = "0.10.1" 3564 | source = "registry+https://github.com/rust-lang/crates.io-index" 3565 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3566 | dependencies = [ 3567 | "winapi", 3568 | ] 3569 | 3570 | [[package]] 3571 | name = "winres" 3572 | version = "0.1.12" 3573 | source = "registry+https://github.com/rust-lang/crates.io-index" 3574 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3575 | dependencies = [ 3576 | "toml", 3577 | ] 3578 | 3579 | [[package]] 3580 | name = "winrt-notification" 3581 | version = "0.5.1" 3582 | source = "registry+https://github.com/rust-lang/crates.io-index" 3583 | checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4" 3584 | dependencies = [ 3585 | "strum", 3586 | "windows 0.24.0", 3587 | "xml-rs", 3588 | ] 3589 | 3590 | [[package]] 3591 | name = "wry" 3592 | version = "0.18.3" 3593 | source = "registry+https://github.com/rust-lang/crates.io-index" 3594 | checksum = "26b1ba327c7dd4292f46bf8e6ba8e6ec2db4443b2973c9d304a359d95e0aa856" 3595 | dependencies = [ 3596 | "block", 3597 | "cocoa", 3598 | "core-graphics", 3599 | "gdk", 3600 | "gio", 3601 | "glib", 3602 | "gtk", 3603 | "http", 3604 | "jni 0.18.0", 3605 | "libc", 3606 | "log", 3607 | "objc", 3608 | "objc_id", 3609 | "once_cell", 3610 | "serde", 3611 | "serde_json", 3612 | "tao", 3613 | "thiserror", 3614 | "url", 3615 | "webkit2gtk", 3616 | "webkit2gtk-sys", 3617 | "webview2-com", 3618 | "windows 0.37.0", 3619 | "windows-implement", 3620 | ] 3621 | 3622 | [[package]] 3623 | name = "x11" 3624 | version = "2.19.1" 3625 | source = "registry+https://github.com/rust-lang/crates.io-index" 3626 | checksum = "6dd0565fa8bfba8c5efe02725b14dff114c866724eff2cfd44d76cea74bcd87a" 3627 | dependencies = [ 3628 | "libc", 3629 | "pkg-config", 3630 | ] 3631 | 3632 | [[package]] 3633 | name = "x11-dl" 3634 | version = "2.19.1" 3635 | source = "registry+https://github.com/rust-lang/crates.io-index" 3636 | checksum = "ea26926b4ce81a6f5d9d0f3a0bc401e5a37c6ae14a1bfaa8ff6099ca80038c59" 3637 | dependencies = [ 3638 | "lazy_static", 3639 | "libc", 3640 | "pkg-config", 3641 | ] 3642 | 3643 | [[package]] 3644 | name = "xattr" 3645 | version = "0.2.3" 3646 | source = "registry+https://github.com/rust-lang/crates.io-index" 3647 | checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3648 | dependencies = [ 3649 | "libc", 3650 | ] 3651 | 3652 | [[package]] 3653 | name = "xml-rs" 3654 | version = "0.8.4" 3655 | source = "registry+https://github.com/rust-lang/crates.io-index" 3656 | checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3657 | --------------------------------------------------------------------------------