├── test ├── app.ts └── test.ts ├── .gitignore ├── examples └── oak │ ├── icons │ ├── icon.ico │ ├── icon.png │ ├── 32x32.png │ ├── icon.icns │ ├── 128x128.png │ ├── StoreLogo.png │ ├── tray_icon.png │ ├── 128x128@2x.png │ ├── Square30x30Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square310x310Logo.png │ ├── tray_icon_with_transparency.ico │ └── tray_icon_with_transparency.png │ ├── app.ts │ └── build.ts ├── Cargo.toml ├── mod.ts ├── .github └── workflows │ ├── ci.yml │ └── cd.yml ├── bindings └── bindings.ts ├── readme.md ├── src └── lib.rs └── Cargo.lock /test/app.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *.exe 3 | dist 4 | WixTools 5 | .gitignore 6 | app -------------------------------------------------------------------------------- /examples/oak/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/icon.ico -------------------------------------------------------------------------------- /examples/oak/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/icon.png -------------------------------------------------------------------------------- /examples/oak/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/32x32.png -------------------------------------------------------------------------------- /examples/oak/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/icon.icns -------------------------------------------------------------------------------- /examples/oak/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/128x128.png -------------------------------------------------------------------------------- /examples/oak/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/StoreLogo.png -------------------------------------------------------------------------------- /examples/oak/icons/tray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/tray_icon.png -------------------------------------------------------------------------------- /examples/oak/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/128x128@2x.png -------------------------------------------------------------------------------- /examples/oak/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /examples/oak/icons/tray_icon_with_transparency.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/tray_icon_with_transparency.ico -------------------------------------------------------------------------------- /examples/oak/icons/tray_icon_with_transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marc2332/deno_installer/HEAD/examples/oak/icons/tray_icon_with_transparency.png -------------------------------------------------------------------------------- /examples/oak/app.ts: -------------------------------------------------------------------------------- 1 | import { Application } from "https://deno.land/x/oak@v10.1.0/mod.ts"; 2 | 3 | const app = new Application(); 4 | 5 | app.use((ctx) => { 6 | ctx.response.body = "Hello World!"; 7 | }); 8 | 9 | await app.listen({ port: 8000 }); 10 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "deno_installer" 3 | version = "0.1.3" 4 | edition = "2021" 5 | 6 | [lib] 7 | name = "deno_installer" 8 | crate-type = ["cdylib"] 9 | 10 | [dependencies] 11 | tauri-bundler = "1.0.0-rc.3" 12 | deno_bindgen = "0.5.0" 13 | serde = "1.0.136" -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- 1 | import { create_installer, InstallerSettings } from "./bindings/bindings.ts"; 2 | 3 | export class Installer { 4 | settings: InstallerSettings; 5 | 6 | constructor(settings: InstallerSettings) { 7 | this.settings = settings; 8 | } 9 | 10 | async createInstaller() { 11 | await Deno.mkdir(this.settings.out_path, { recursive: true }); 12 | await Deno.copyFile( 13 | this.settings.src_path, 14 | `${this.settings.out_path}/${this.settings.package.product_name}${ 15 | Deno.build.os === "windows" ? ".exe" : "" 16 | }`, 17 | ); 18 | await create_installer(this.settings); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /examples/oak/build.ts: -------------------------------------------------------------------------------- 1 | import { Installer } from "../../mod.ts"; 2 | 3 | const installer = new Installer({ 4 | out_path: `${Deno.cwd()}/dist`, 5 | src_path: `${Deno.cwd()}/app${Deno.build.os === "windows" ? ".exe" : ""}`, 6 | package: { 7 | product_name: "MyApp", 8 | version: "1.0.0", 9 | description: "woooow", 10 | homepage: "https://github.com/marc2332", 11 | authors: ["Marc Espín"], 12 | default_run: "MyApp", 13 | }, 14 | bundle: { 15 | identifier: "my.deno.app", 16 | icon: [], 17 | resources: [], 18 | copyright: "2022", 19 | short_description: "wooooow2", 20 | long_description: "wooooow2", 21 | }, 22 | }); 23 | 24 | await installer.createInstaller(); 25 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Tests 2 | 3 | on: 4 | workflow_dispatch: 5 | branches: [ main ] 6 | push: 7 | branches: [ main ] 8 | pull_request: 9 | branches: [ main ] 10 | 11 | jobs: 12 | build: 13 | name: Tests 14 | runs-on: ${{ matrix.os }} 15 | strategy: 16 | matrix: 17 | os: [ubuntu-latest, windows-latest, macos-latest] 18 | 19 | steps: 20 | - uses: actions/checkout@v2 21 | 22 | - uses: actions-rs/toolchain@v1 23 | with: 24 | toolchain: stable 25 | 26 | - uses: denoland/setup-deno@v1 27 | with: 28 | deno-version: vx.x.x 29 | 30 | - name: deno_bindgen 31 | run: | 32 | deno install -Afq -n deno_bindgen https://deno.land/x/deno_bindgen/cli.ts 33 | deno_bindgen 34 | 35 | - name: Install Linux deps 36 | if: runner.os == 'Linux' 37 | run: | 38 | sudo apt update 39 | sudo apt install libwebkit2gtk-4.0-dev \ 40 | build-essential \ 41 | curl \ 42 | wget \ 43 | libssl-dev \ 44 | libgtk-3-dev \ 45 | libayatana-appindicator3-dev \ 46 | librsvg2-dev 47 | 48 | - name: tests 49 | run: deno test -A --unstable -------------------------------------------------------------------------------- /bindings/bindings.ts: -------------------------------------------------------------------------------- 1 | // Auto-generated with deno_bindgen 2 | import { CachePolicy, prepare } from "https://deno.land/x/plug@0.5.1/plug.ts" 3 | function encode(v: string | Uint8Array): Uint8Array { 4 | if (typeof v !== "string") return v 5 | return new TextEncoder().encode(v) 6 | } 7 | function decode(v: Uint8Array): string { 8 | return new TextDecoder().decode(v) 9 | } 10 | function readPointer(v: any): Uint8Array { 11 | const ptr = new Deno.UnsafePointerView(v as Deno.UnsafePointer) 12 | const lengthBe = new Uint8Array(4) 13 | const view = new DataView(lengthBe.buffer) 14 | ptr.copyInto(lengthBe, 0) 15 | const buf = new Uint8Array(view.getUint32(0)) 16 | ptr.copyInto(buf, 4) 17 | return buf 18 | } 19 | const opts = { 20 | name: "deno_installer", 21 | url: 22 | (new URL( 23 | "https://github.com/marc2332/deno_installer/releases/download/0.1.3", 24 | import.meta.url, 25 | )).toString(), 26 | policy: undefined, 27 | } 28 | const _lib = await prepare(opts, { 29 | create_installer: { 30 | parameters: ["pointer", "usize"], 31 | result: "void", 32 | nonblocking: false, 33 | }, 34 | }) 35 | export type PackageSettingsInstaller = { 36 | product_name: string 37 | version: string 38 | description: string 39 | homepage: string | undefined | null 40 | authors: Array | undefined | null 41 | default_run: string | undefined | null 42 | } 43 | export type InstallerSettings = { 44 | src_path: string 45 | out_path: string 46 | bundle: BundleSettingsInstaller 47 | package: PackageSettingsInstaller 48 | } 49 | export type BundleSettingsInstaller = { 50 | identifier: string | undefined | null 51 | icon: Array | undefined | null 52 | resources: Array | undefined | null 53 | copyright: string | undefined | null 54 | short_description: string | undefined | null 55 | long_description: string | undefined | null 56 | } 57 | export function create_installer(a0: InstallerSettings) { 58 | const a0_buf = encode(JSON.stringify(a0)) 59 | let rawResult = _lib.symbols.create_installer(a0_buf, a0_buf.byteLength) 60 | const result = rawResult 61 | return result 62 | } 63 | -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- 1 | name: Release libs 2 | 3 | on: 4 | workflow_dispatch: 5 | branches: [ main ] 6 | inputs: 7 | version: 8 | description: 'Version' 9 | required: true 10 | 11 | jobs: 12 | build: 13 | name: Release libs 14 | runs-on: ${{ matrix.os }} 15 | strategy: 16 | matrix: 17 | os: [ubuntu-latest, windows-latest, macos-latest] 18 | 19 | steps: 20 | - uses: actions/checkout@v2 21 | 22 | - uses: actions-rs/toolchain@v1 23 | with: 24 | toolchain: stable 25 | 26 | - name: Build 27 | uses: actions-rs/cargo@v1 28 | with: 29 | command: build 30 | args: --release 31 | 32 | - if: runner.os == 'MacOS' 33 | uses: actions-rs/toolchain@v1 34 | with: 35 | toolchain: stable 36 | target: aarch64-apple-darwin 37 | 38 | - if: runner.os == 'MacOS' 39 | uses: actions-rs/cargo@v1 40 | with: 41 | command: build 42 | args: --release --target=aarch64-apple-darwin 43 | 44 | - name: Create universal lib for macOS 45 | if: runner.os == 'MacOS' 46 | run: | 47 | mkdir -p target/tmp 48 | mv target/release/libdeno_installer.dylib target/tmp/libdeno_installer.dylib 49 | 50 | lipo -create -output target/release/libdeno_installer.dylib \ 51 | target/tmp/libdeno_installer.dylib \ 52 | target/aarch64-apple-darwin/release/libdeno_installer.dylib 53 | 54 | - name: Release MacOS lib 55 | if: runner.os == 'MacOS' 56 | uses: svenstaro/upload-release-action@v2 57 | with: 58 | repo_token: ${{ secrets.GITHUB_TOKEN }} 59 | file: target/release/libdeno_installer.dylib 60 | tag: ${{ github.event.inputs.version }} 61 | overwrite: true 62 | 63 | - name: Release Linux lib 64 | if: runner.os == 'Linux' 65 | uses: svenstaro/upload-release-action@v2 66 | with: 67 | repo_token: ${{ secrets.GITHUB_TOKEN }} 68 | file: target/release/libdeno_installer.so 69 | tag: ${{ github.event.inputs.version }} 70 | overwrite: true 71 | 72 | - name: Release Windows lib 73 | if: runner.os == 'Windows' 74 | uses: svenstaro/upload-release-action@v2 75 | with: 76 | repo_token: ${{ secrets.GITHUB_TOKEN }} 77 | file: target/release/deno_installer.dll 78 | tag: ${{ github.event.inputs.version }} 79 | overwrite: true -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## 📦 Port of [tauri-bundler](https://github.com/tauri-apps/tauri/tree/dev/tooling/bundler) 2 | 3 | You can now easily create installers for your Deno apps, thanks to the amazing 4 | work of [Tauri](https://github.com/tauri-apps/tauri/tree/dev/tooling/bundler) 💪 5 | 6 | - Windows: `MSI` 7 | - Linux: `Debian package`, `AppImage` 8 | - MacOS: `DMG` 9 | 10 | That beind said, feel free to contribute. If you have any feature idea see 11 | [Contributing](#Contributing) :) 12 | 13 | ## Demo 14 | 15 | Before making the installer make sure you have your project as: 16 | 17 | ``` 18 | +-- MyAppExecutable (.exe if in Windows) 19 | +-- icons 20 | | +-- icon.ico (Windows) 21 | | +-- icon.png (MacOS) 22 | | +-- (See note for Linux) 23 | ``` 24 | 25 | > Note: For **Linux** you will also need some special [icons](https://github.com/marc2332/deno_installer/tree/main/examples/oak/icons). 26 | 27 | Create a file `build.ts`, paste and modify as you wish: 28 | 29 | ```ts 30 | import { Installer } from "https://deno.land/x/installer/mod.ts"; 31 | 32 | const installer = new Installer({ 33 | out_path: `${Deno.cwd()}/dist`, 34 | src_path: `${Deno.cwd()}/MyAppExecutable${ 35 | Deno.build.os === "windows" ? ".exe" : "" 36 | }`, 37 | package: { 38 | product_name: "MyApp", 39 | version: "1.0.0", 40 | description: "App made by a denosaur", 41 | homepage: "https://github.com/marc2332/deno_installer", 42 | authors: ["Denosaur"], 43 | default_run: "MyApp", 44 | }, 45 | bundle: { 46 | identifier: "my.deno.app", 47 | icon: [ 48 | "examples/oak/icons/32x32.png", 49 | "examples/oak/icons/128x128.png", 50 | "examples/oak/icons/128x128@2x.png", 51 | "examples/oak/icons/icon.icns", 52 | "examples/oak/icons/icon.ico", 53 | ], // It will look under /icons if the array is empty 54 | resources: [], // Not tested 55 | copyright: "2022", 56 | short_description: "Short description!", 57 | long_description: "Looooooooooong description!", 58 | }, 59 | }); 60 | 61 | await installer.createInstaller(); 62 | ``` 63 | 64 | Run: 65 | 66 | ```shell 67 | deno run -A --unstable build.ts 68 | ``` 69 | 70 | The installer path will be printed out. 71 | 72 | ## Contributing 73 | 74 | Requisites: 75 | 76 | - cargo 77 | - [deno_bindgen](https://github.com/denoland/deno_bindgen) 78 | - deno 79 | 80 | Build the plugin: 81 | 82 | ```shell 83 | deno_bindgen 84 | ``` 85 | 86 | Create a installer from the demo app: 87 | 88 | ```shell 89 | cd examples/oak 90 | deno compile app.ts 91 | deno run -A --unstable build.ts 92 | ``` 93 | -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- 1 | import { assert } from "https://deno.land/std@0.139.0/_util/assert.ts"; 2 | import { Installer } from "../mod.ts"; 3 | 4 | const installer = new Installer({ 5 | out_path: `${Deno.cwd()}/test/dist`, 6 | src_path: `${Deno.cwd()}/test/app${ 7 | Deno.build.os === "windows" ? ".exe" : "" 8 | }`, 9 | package: { 10 | product_name: "TestApp", 11 | version: "1.0.0", 12 | description: "woooow", 13 | homepage: "https://github.com/marc2332", 14 | authors: ["Marc Espín"], 15 | default_run: "TestApp", 16 | }, 17 | bundle: { 18 | identifier: "my.deno.app", 19 | icon: [ 20 | "examples/oak/icons/32x32.png", 21 | "examples/oak/icons/128x128.png", 22 | "examples/oak/icons/128x128@2x.png", 23 | "examples/oak/icons/icon.icns", 24 | "examples/oak/icons/icon.ico", 25 | ], 26 | resources: [], 27 | copyright: "", 28 | short_description: "", 29 | long_description: "", 30 | }, 31 | }); 32 | 33 | async function compileExampleApp() { 34 | const p = Deno.run({ 35 | cmd: [ 36 | "deno", 37 | "compile", 38 | "--output", 39 | `test/app${Deno.build.os === "windows" ? ".exe" : ""}`, 40 | "test/app.ts", 41 | ], 42 | }); 43 | await p.status(); 44 | p.close(); 45 | } 46 | 47 | Deno.test(`Installer created ${Deno.build.os}`, async () => { 48 | await compileExampleApp(); 49 | 50 | await installer.createInstaller(); 51 | 52 | const dist = `${Deno.cwd()}/test/dist/bundle`; 53 | 54 | switch (Deno.build.os) { 55 | case "windows": 56 | { 57 | let exists = true; 58 | try { 59 | // Check Windows installer 60 | await Deno.readFile( 61 | `${dist}/msi/TestApp_1.0.0_x64_en-US.msi`, 62 | ); 63 | } catch { 64 | exists = false; 65 | } 66 | assert(exists); 67 | } 68 | break; 69 | case "linux": 70 | { 71 | let exists = true; 72 | try { 73 | // Check Debian installer 74 | await Deno.readFile( 75 | `${dist}/deb/TestApp_1.0.0_amd64.deb`, 76 | ); 77 | // Check AppImage installer 78 | await Deno.readFile( 79 | `${dist}/appimage/TestApp_1.0.0_amd64.AppImage`, 80 | ); 81 | } catch { 82 | exists = false; 83 | } 84 | assert(exists); 85 | } 86 | break; 87 | 88 | case "darwin": 89 | { 90 | let exists = true; 91 | try { 92 | // Check MacOS installer 93 | await Deno.readFile( 94 | `${dist}/dmg/TestApp_1.0.0_x64.dmg`, 95 | ); 96 | } catch { 97 | exists = false; 98 | } 99 | assert(exists); 100 | } 101 | break; 102 | } 103 | }); 104 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | use deno_bindgen::deno_bindgen; 2 | use tauri_bundler::{ 3 | bundle_project, BundleBinary, BundleSettings, PackageSettings, SettingsBuilder, 4 | }; 5 | 6 | // NOTE: Having a duplicate struct for the package and bundle settings is not a good idea 7 | 8 | #[deno_bindgen] 9 | struct PackageSettingsInstaller { 10 | product_name: String, 11 | version: String, 12 | description: String, 13 | homepage: Option, 14 | authors: Option>, 15 | default_run: Option, 16 | } 17 | 18 | #[deno_bindgen] 19 | pub struct BundleSettingsInstaller { 20 | pub identifier: Option, 21 | pub icon: Option>, 22 | pub resources: Option>, 23 | pub copyright: Option, 24 | pub short_description: Option, 25 | pub long_description: Option, 26 | } 27 | 28 | #[deno_bindgen] 29 | pub struct InstallerSettings { 30 | src_path: String, 31 | out_path: String, 32 | bundle: BundleSettingsInstaller, 33 | package: PackageSettingsInstaller, 34 | } 35 | 36 | fn adapt_package(custom_package: PackageSettingsInstaller) -> PackageSettings { 37 | PackageSettings { 38 | product_name: custom_package.product_name, 39 | version: custom_package.version, 40 | description: custom_package.description, 41 | homepage: custom_package.homepage, 42 | authors: custom_package.authors, 43 | default_run: custom_package.default_run, 44 | } 45 | } 46 | 47 | fn adapt_bundle(custom_bundle: BundleSettingsInstaller) -> BundleSettings { 48 | let mut bundle = BundleSettings::default(); 49 | 50 | bundle.identifier = custom_bundle.identifier; 51 | bundle.icon = custom_bundle.icon; 52 | bundle.resources = custom_bundle.resources; 53 | bundle.copyright = custom_bundle.copyright; 54 | bundle.short_description = custom_bundle.short_description; 55 | bundle.long_description = custom_bundle.long_description; 56 | 57 | #[cfg(windows)] 58 | if let Some(icon) = &bundle.icon { 59 | if icon.len() > 0 { 60 | use std::path::PathBuf; 61 | bundle.windows.icon_path = PathBuf::from( 62 | icon.iter() 63 | .find(|i| i.ends_with(".ico")) 64 | .cloned() 65 | .expect("the bundle config must have a `.ico` icon"), 66 | ); 67 | } 68 | } 69 | 70 | bundle 71 | } 72 | 73 | #[deno_bindgen] 74 | fn create_installer(installer_settings: InstallerSettings) { 75 | let bundle = BundleBinary::new(installer_settings.package.product_name.clone(), true) 76 | .set_src_path(Some(installer_settings.src_path)); 77 | let bundle_settings = adapt_bundle(installer_settings.bundle); 78 | let package_settings = adapt_package(installer_settings.package); 79 | 80 | let builder = SettingsBuilder::new() 81 | .bundle_settings(bundle_settings) 82 | .package_settings(package_settings) 83 | .project_out_directory(installer_settings.out_path) 84 | .binaries(vec![bundle]); 85 | 86 | let settings = builder.build().unwrap(); 87 | 88 | match bundle_project(settings) { 89 | Ok(_) => { 90 | println!("Installer created"); 91 | } 92 | Err(e) => { 93 | println!("{:?}", e); 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /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 = "Inflector" 7 | version = "0.11.4" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 | dependencies = [ 11 | "lazy_static", 12 | "regex", 13 | ] 14 | 15 | [[package]] 16 | name = "adler" 17 | version = "1.0.2" 18 | source = "registry+https://github.com/rust-lang/crates.io-index" 19 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 20 | 21 | [[package]] 22 | name = "adler32" 23 | version = "1.2.0" 24 | source = "registry+https://github.com/rust-lang/crates.io-index" 25 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 26 | 27 | [[package]] 28 | name = "aho-corasick" 29 | version = "0.7.18" 30 | source = "registry+https://github.com/rust-lang/crates.io-index" 31 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 32 | dependencies = [ 33 | "memchr", 34 | ] 35 | 36 | [[package]] 37 | name = "anyhow" 38 | version = "1.0.56" 39 | source = "registry+https://github.com/rust-lang/crates.io-index" 40 | checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" 41 | 42 | [[package]] 43 | name = "ar" 44 | version = "0.9.0" 45 | source = "registry+https://github.com/rust-lang/crates.io-index" 46 | checksum = "d67af77d68a931ecd5cbd8a3b5987d63a1d1d1278f7f6a60ae33db485cdebb69" 47 | 48 | [[package]] 49 | name = "attohttpc" 50 | version = "0.18.0" 51 | source = "registry+https://github.com/rust-lang/crates.io-index" 52 | checksum = "e69e13a99a7e6e070bb114f7ff381e58c7ccc188630121fc4c2fe4bcf24cd072" 53 | dependencies = [ 54 | "flate2", 55 | "http", 56 | "log", 57 | "native-tls", 58 | "openssl", 59 | "url", 60 | "wildmatch", 61 | ] 62 | 63 | [[package]] 64 | name = "autocfg" 65 | version = "1.1.0" 66 | source = "registry+https://github.com/rust-lang/crates.io-index" 67 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 68 | 69 | [[package]] 70 | name = "bit_field" 71 | version = "0.10.1" 72 | source = "registry+https://github.com/rust-lang/crates.io-index" 73 | checksum = "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4" 74 | 75 | [[package]] 76 | name = "bitflags" 77 | version = "1.3.2" 78 | source = "registry+https://github.com/rust-lang/crates.io-index" 79 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 80 | 81 | [[package]] 82 | name = "bitness" 83 | version = "0.4.0" 84 | source = "registry+https://github.com/rust-lang/crates.io-index" 85 | checksum = "57792b99d555ebf109c83169228076f7d997e2b37ba1a653850ccd703ac7bab0" 86 | dependencies = [ 87 | "sysctl", 88 | "thiserror", 89 | "uname", 90 | "winapi", 91 | ] 92 | 93 | [[package]] 94 | name = "block-buffer" 95 | version = "0.7.3" 96 | source = "registry+https://github.com/rust-lang/crates.io-index" 97 | checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 98 | dependencies = [ 99 | "block-padding", 100 | "byte-tools", 101 | "byteorder", 102 | "generic-array 0.12.4", 103 | ] 104 | 105 | [[package]] 106 | name = "block-buffer" 107 | version = "0.10.2" 108 | source = "registry+https://github.com/rust-lang/crates.io-index" 109 | checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 110 | dependencies = [ 111 | "generic-array 0.14.5", 112 | ] 113 | 114 | [[package]] 115 | name = "block-padding" 116 | version = "0.1.5" 117 | source = "registry+https://github.com/rust-lang/crates.io-index" 118 | checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 119 | dependencies = [ 120 | "byte-tools", 121 | ] 122 | 123 | [[package]] 124 | name = "bumpalo" 125 | version = "3.9.1" 126 | source = "registry+https://github.com/rust-lang/crates.io-index" 127 | checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" 128 | 129 | [[package]] 130 | name = "byte-tools" 131 | version = "0.3.1" 132 | source = "registry+https://github.com/rust-lang/crates.io-index" 133 | checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 134 | 135 | [[package]] 136 | name = "bytemuck" 137 | version = "1.8.0" 138 | source = "registry+https://github.com/rust-lang/crates.io-index" 139 | checksum = "0e851ca7c24871e7336801608a4797d7376545b6928a10d32d75685687141ead" 140 | 141 | [[package]] 142 | name = "byteorder" 143 | version = "1.4.3" 144 | source = "registry+https://github.com/rust-lang/crates.io-index" 145 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 146 | 147 | [[package]] 148 | name = "bytes" 149 | version = "1.1.0" 150 | source = "registry+https://github.com/rust-lang/crates.io-index" 151 | checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 152 | 153 | [[package]] 154 | name = "bzip2" 155 | version = "0.4.3" 156 | source = "registry+https://github.com/rust-lang/crates.io-index" 157 | checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 158 | dependencies = [ 159 | "bzip2-sys", 160 | "libc", 161 | ] 162 | 163 | [[package]] 164 | name = "bzip2-sys" 165 | version = "0.1.11+1.0.8" 166 | source = "registry+https://github.com/rust-lang/crates.io-index" 167 | checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 168 | dependencies = [ 169 | "cc", 170 | "libc", 171 | "pkg-config", 172 | ] 173 | 174 | [[package]] 175 | name = "cc" 176 | version = "1.0.73" 177 | source = "registry+https://github.com/rust-lang/crates.io-index" 178 | checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 179 | 180 | [[package]] 181 | name = "cfg-if" 182 | version = "1.0.0" 183 | source = "registry+https://github.com/rust-lang/crates.io-index" 184 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 185 | 186 | [[package]] 187 | name = "color_quant" 188 | version = "1.1.0" 189 | source = "registry+https://github.com/rust-lang/crates.io-index" 190 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 191 | 192 | [[package]] 193 | name = "convert_case" 194 | version = "0.4.0" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 197 | 198 | [[package]] 199 | name = "core-foundation" 200 | version = "0.9.3" 201 | source = "registry+https://github.com/rust-lang/crates.io-index" 202 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 203 | dependencies = [ 204 | "core-foundation-sys", 205 | "libc", 206 | ] 207 | 208 | [[package]] 209 | name = "core-foundation-sys" 210 | version = "0.8.3" 211 | source = "registry+https://github.com/rust-lang/crates.io-index" 212 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 213 | 214 | [[package]] 215 | name = "cpufeatures" 216 | version = "0.2.1" 217 | source = "registry+https://github.com/rust-lang/crates.io-index" 218 | checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 219 | dependencies = [ 220 | "libc", 221 | ] 222 | 223 | [[package]] 224 | name = "crc32fast" 225 | version = "1.3.2" 226 | source = "registry+https://github.com/rust-lang/crates.io-index" 227 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 228 | dependencies = [ 229 | "cfg-if", 230 | ] 231 | 232 | [[package]] 233 | name = "crossbeam-channel" 234 | version = "0.5.2" 235 | source = "registry+https://github.com/rust-lang/crates.io-index" 236 | checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" 237 | dependencies = [ 238 | "cfg-if", 239 | "crossbeam-utils", 240 | ] 241 | 242 | [[package]] 243 | name = "crossbeam-deque" 244 | version = "0.8.1" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 247 | dependencies = [ 248 | "cfg-if", 249 | "crossbeam-epoch", 250 | "crossbeam-utils", 251 | ] 252 | 253 | [[package]] 254 | name = "crossbeam-epoch" 255 | version = "0.9.7" 256 | source = "registry+https://github.com/rust-lang/crates.io-index" 257 | checksum = "c00d6d2ea26e8b151d99093005cb442fb9a37aeaca582a03ec70946f49ab5ed9" 258 | dependencies = [ 259 | "cfg-if", 260 | "crossbeam-utils", 261 | "lazy_static", 262 | "memoffset", 263 | "scopeguard", 264 | ] 265 | 266 | [[package]] 267 | name = "crossbeam-utils" 268 | version = "0.8.7" 269 | source = "registry+https://github.com/rust-lang/crates.io-index" 270 | checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6" 271 | dependencies = [ 272 | "cfg-if", 273 | "lazy_static", 274 | ] 275 | 276 | [[package]] 277 | name = "crypto-common" 278 | version = "0.1.3" 279 | source = "registry+https://github.com/rust-lang/crates.io-index" 280 | checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 281 | dependencies = [ 282 | "generic-array 0.14.5", 283 | "typenum", 284 | ] 285 | 286 | [[package]] 287 | name = "cssparser" 288 | version = "0.27.2" 289 | source = "registry+https://github.com/rust-lang/crates.io-index" 290 | checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 291 | dependencies = [ 292 | "cssparser-macros", 293 | "dtoa-short", 294 | "itoa 0.4.8", 295 | "matches", 296 | "phf 0.8.0", 297 | "proc-macro2", 298 | "quote", 299 | "smallvec", 300 | "syn", 301 | ] 302 | 303 | [[package]] 304 | name = "cssparser-macros" 305 | version = "0.6.0" 306 | source = "registry+https://github.com/rust-lang/crates.io-index" 307 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 308 | dependencies = [ 309 | "quote", 310 | "syn", 311 | ] 312 | 313 | [[package]] 314 | name = "ctor" 315 | version = "0.1.21" 316 | source = "registry+https://github.com/rust-lang/crates.io-index" 317 | checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa" 318 | dependencies = [ 319 | "quote", 320 | "syn", 321 | ] 322 | 323 | [[package]] 324 | name = "darling" 325 | version = "0.13.1" 326 | source = "registry+https://github.com/rust-lang/crates.io-index" 327 | checksum = "d0d720b8683f8dd83c65155f0530560cba68cd2bf395f6513a483caee57ff7f4" 328 | dependencies = [ 329 | "darling_core", 330 | "darling_macro", 331 | ] 332 | 333 | [[package]] 334 | name = "darling_core" 335 | version = "0.13.1" 336 | source = "registry+https://github.com/rust-lang/crates.io-index" 337 | checksum = "7a340f241d2ceed1deb47ae36c4144b2707ec7dd0b649f894cb39bb595986324" 338 | dependencies = [ 339 | "fnv", 340 | "ident_case", 341 | "proc-macro2", 342 | "quote", 343 | "strsim", 344 | "syn", 345 | ] 346 | 347 | [[package]] 348 | name = "darling_macro" 349 | version = "0.13.1" 350 | source = "registry+https://github.com/rust-lang/crates.io-index" 351 | checksum = "72c41b3b7352feb3211a0d743dc5700a4e3b60f51bd2b368892d1e0f9a95f44b" 352 | dependencies = [ 353 | "darling_core", 354 | "quote", 355 | "syn", 356 | ] 357 | 358 | [[package]] 359 | name = "deflate" 360 | version = "0.8.6" 361 | source = "registry+https://github.com/rust-lang/crates.io-index" 362 | checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" 363 | dependencies = [ 364 | "adler32", 365 | "byteorder", 366 | ] 367 | 368 | [[package]] 369 | name = "deflate" 370 | version = "1.0.0" 371 | source = "registry+https://github.com/rust-lang/crates.io-index" 372 | checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f" 373 | dependencies = [ 374 | "adler32", 375 | ] 376 | 377 | [[package]] 378 | name = "deno_bindgen" 379 | version = "0.5.0" 380 | source = "registry+https://github.com/rust-lang/crates.io-index" 381 | checksum = "1967bc65ada1e9eb9314017dc490f37fe356aa7232ae1c40eae8f873bc700f68" 382 | dependencies = [ 383 | "deno_bindgen_macro", 384 | "serde", 385 | "serde_json", 386 | ] 387 | 388 | [[package]] 389 | name = "deno_bindgen_macro" 390 | version = "0.5.0" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | checksum = "296a759007c999c39cc3a6552f39df6863e59f08358132817d7fe42aab4e30b8" 393 | dependencies = [ 394 | "Inflector", 395 | "proc-macro2", 396 | "quote", 397 | "serde", 398 | "serde_json", 399 | "syn", 400 | ] 401 | 402 | [[package]] 403 | name = "deno_installer" 404 | version = "0.1.3" 405 | dependencies = [ 406 | "deno_bindgen", 407 | "serde", 408 | "tauri-bundler", 409 | ] 410 | 411 | [[package]] 412 | name = "derive_more" 413 | version = "0.99.17" 414 | source = "registry+https://github.com/rust-lang/crates.io-index" 415 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 416 | dependencies = [ 417 | "convert_case", 418 | "proc-macro2", 419 | "quote", 420 | "rustc_version", 421 | "syn", 422 | ] 423 | 424 | [[package]] 425 | name = "digest" 426 | version = "0.8.1" 427 | source = "registry+https://github.com/rust-lang/crates.io-index" 428 | checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 429 | dependencies = [ 430 | "generic-array 0.12.4", 431 | ] 432 | 433 | [[package]] 434 | name = "digest" 435 | version = "0.10.3" 436 | source = "registry+https://github.com/rust-lang/crates.io-index" 437 | checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 438 | dependencies = [ 439 | "block-buffer 0.10.2", 440 | "crypto-common", 441 | ] 442 | 443 | [[package]] 444 | name = "dirs-next" 445 | version = "2.0.0" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 448 | dependencies = [ 449 | "cfg-if", 450 | "dirs-sys-next", 451 | ] 452 | 453 | [[package]] 454 | name = "dirs-sys-next" 455 | version = "0.1.2" 456 | source = "registry+https://github.com/rust-lang/crates.io-index" 457 | checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 458 | dependencies = [ 459 | "libc", 460 | "redox_users", 461 | "winapi", 462 | ] 463 | 464 | [[package]] 465 | name = "dtoa" 466 | version = "0.4.8" 467 | source = "registry+https://github.com/rust-lang/crates.io-index" 468 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 469 | 470 | [[package]] 471 | name = "dtoa-short" 472 | version = "0.3.3" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 475 | dependencies = [ 476 | "dtoa", 477 | ] 478 | 479 | [[package]] 480 | name = "either" 481 | version = "1.6.1" 482 | source = "registry+https://github.com/rust-lang/crates.io-index" 483 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 484 | 485 | [[package]] 486 | name = "exr" 487 | version = "1.4.1" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | checksum = "d4badb9489a465cb2c555af1f00f0bfd8cecd6fc12ac11da9d5b40c5dd5f0200" 490 | dependencies = [ 491 | "bit_field", 492 | "deflate 1.0.0", 493 | "flume", 494 | "half", 495 | "inflate", 496 | "lebe", 497 | "smallvec", 498 | "threadpool", 499 | ] 500 | 501 | [[package]] 502 | name = "fake-simd" 503 | version = "0.1.2" 504 | source = "registry+https://github.com/rust-lang/crates.io-index" 505 | checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 506 | 507 | [[package]] 508 | name = "fastrand" 509 | version = "1.7.0" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" 512 | dependencies = [ 513 | "instant", 514 | ] 515 | 516 | [[package]] 517 | name = "filetime" 518 | version = "0.2.15" 519 | source = "registry+https://github.com/rust-lang/crates.io-index" 520 | checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98" 521 | dependencies = [ 522 | "cfg-if", 523 | "libc", 524 | "redox_syscall", 525 | "winapi", 526 | ] 527 | 528 | [[package]] 529 | name = "flate2" 530 | version = "1.0.22" 531 | source = "registry+https://github.com/rust-lang/crates.io-index" 532 | checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f" 533 | dependencies = [ 534 | "cfg-if", 535 | "crc32fast", 536 | "libc", 537 | "miniz_oxide 0.4.4", 538 | ] 539 | 540 | [[package]] 541 | name = "flume" 542 | version = "0.10.11" 543 | source = "registry+https://github.com/rust-lang/crates.io-index" 544 | checksum = "0b279436a715a9de95dcd26b151db590a71961cc06e54918b24fe0dd5b7d3fc4" 545 | dependencies = [ 546 | "futures-core", 547 | "futures-sink", 548 | "nanorand", 549 | "pin-project", 550 | "spin", 551 | ] 552 | 553 | [[package]] 554 | name = "fnv" 555 | version = "1.0.7" 556 | source = "registry+https://github.com/rust-lang/crates.io-index" 557 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 558 | 559 | [[package]] 560 | name = "foreign-types" 561 | version = "0.3.2" 562 | source = "registry+https://github.com/rust-lang/crates.io-index" 563 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 564 | dependencies = [ 565 | "foreign-types-shared", 566 | ] 567 | 568 | [[package]] 569 | name = "foreign-types-shared" 570 | version = "0.1.1" 571 | source = "registry+https://github.com/rust-lang/crates.io-index" 572 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 573 | 574 | [[package]] 575 | name = "form_urlencoded" 576 | version = "1.0.1" 577 | source = "registry+https://github.com/rust-lang/crates.io-index" 578 | checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 579 | dependencies = [ 580 | "matches", 581 | "percent-encoding", 582 | ] 583 | 584 | [[package]] 585 | name = "futf" 586 | version = "0.1.5" 587 | source = "registry+https://github.com/rust-lang/crates.io-index" 588 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 589 | dependencies = [ 590 | "mac", 591 | "new_debug_unreachable", 592 | ] 593 | 594 | [[package]] 595 | name = "futures-core" 596 | version = "0.3.21" 597 | source = "registry+https://github.com/rust-lang/crates.io-index" 598 | checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 599 | 600 | [[package]] 601 | name = "futures-sink" 602 | version = "0.3.21" 603 | source = "registry+https://github.com/rust-lang/crates.io-index" 604 | checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 605 | 606 | [[package]] 607 | name = "fxhash" 608 | version = "0.2.1" 609 | source = "registry+https://github.com/rust-lang/crates.io-index" 610 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 611 | dependencies = [ 612 | "byteorder", 613 | ] 614 | 615 | [[package]] 616 | name = "generic-array" 617 | version = "0.12.4" 618 | source = "registry+https://github.com/rust-lang/crates.io-index" 619 | checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 620 | dependencies = [ 621 | "typenum", 622 | ] 623 | 624 | [[package]] 625 | name = "generic-array" 626 | version = "0.14.5" 627 | source = "registry+https://github.com/rust-lang/crates.io-index" 628 | checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 629 | dependencies = [ 630 | "typenum", 631 | "version_check", 632 | ] 633 | 634 | [[package]] 635 | name = "getrandom" 636 | version = "0.1.16" 637 | source = "registry+https://github.com/rust-lang/crates.io-index" 638 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 639 | dependencies = [ 640 | "cfg-if", 641 | "libc", 642 | "wasi 0.9.0+wasi-snapshot-preview1", 643 | ] 644 | 645 | [[package]] 646 | name = "getrandom" 647 | version = "0.2.5" 648 | source = "registry+https://github.com/rust-lang/crates.io-index" 649 | checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77" 650 | dependencies = [ 651 | "cfg-if", 652 | "js-sys", 653 | "libc", 654 | "wasi 0.10.2+wasi-snapshot-preview1", 655 | "wasm-bindgen", 656 | ] 657 | 658 | [[package]] 659 | name = "gif" 660 | version = "0.11.3" 661 | source = "registry+https://github.com/rust-lang/crates.io-index" 662 | checksum = "c3a7187e78088aead22ceedeee99779455b23fc231fe13ec443f99bb71694e5b" 663 | dependencies = [ 664 | "color_quant", 665 | "weezl", 666 | ] 667 | 668 | [[package]] 669 | name = "glob" 670 | version = "0.3.0" 671 | source = "registry+https://github.com/rust-lang/crates.io-index" 672 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 673 | 674 | [[package]] 675 | name = "half" 676 | version = "1.8.2" 677 | source = "registry+https://github.com/rust-lang/crates.io-index" 678 | checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 679 | 680 | [[package]] 681 | name = "handlebars" 682 | version = "4.2.1" 683 | source = "registry+https://github.com/rust-lang/crates.io-index" 684 | checksum = "25546a65e5cf1f471f3438796fc634650b31d7fcde01d444c309aeb28b92e3a8" 685 | dependencies = [ 686 | "log", 687 | "pest", 688 | "pest_derive", 689 | "quick-error", 690 | "serde", 691 | "serde_json", 692 | ] 693 | 694 | [[package]] 695 | name = "heck" 696 | version = "0.4.0" 697 | source = "registry+https://github.com/rust-lang/crates.io-index" 698 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 699 | 700 | [[package]] 701 | name = "hermit-abi" 702 | version = "0.1.19" 703 | source = "registry+https://github.com/rust-lang/crates.io-index" 704 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 705 | dependencies = [ 706 | "libc", 707 | ] 708 | 709 | [[package]] 710 | name = "hex" 711 | version = "0.4.3" 712 | source = "registry+https://github.com/rust-lang/crates.io-index" 713 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 714 | 715 | [[package]] 716 | name = "html5ever" 717 | version = "0.25.1" 718 | source = "registry+https://github.com/rust-lang/crates.io-index" 719 | checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b" 720 | dependencies = [ 721 | "log", 722 | "mac", 723 | "markup5ever", 724 | "proc-macro2", 725 | "quote", 726 | "syn", 727 | ] 728 | 729 | [[package]] 730 | name = "http" 731 | version = "0.2.6" 732 | source = "registry+https://github.com/rust-lang/crates.io-index" 733 | checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03" 734 | dependencies = [ 735 | "bytes", 736 | "fnv", 737 | "itoa 1.0.1", 738 | ] 739 | 740 | [[package]] 741 | name = "icns" 742 | version = "0.3.1" 743 | source = "registry+https://github.com/rust-lang/crates.io-index" 744 | checksum = "a5ccfbad7e08da70a5b48a924994a5afd93125ce5d45a3b0ba0b8da7bda59a40" 745 | dependencies = [ 746 | "byteorder", 747 | "png 0.16.8", 748 | ] 749 | 750 | [[package]] 751 | name = "ident_case" 752 | version = "1.0.1" 753 | source = "registry+https://github.com/rust-lang/crates.io-index" 754 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 755 | 756 | [[package]] 757 | name = "idna" 758 | version = "0.2.3" 759 | source = "registry+https://github.com/rust-lang/crates.io-index" 760 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 761 | dependencies = [ 762 | "matches", 763 | "unicode-bidi", 764 | "unicode-normalization", 765 | ] 766 | 767 | [[package]] 768 | name = "image" 769 | version = "0.24.1" 770 | source = "registry+https://github.com/rust-lang/crates.io-index" 771 | checksum = "db207d030ae38f1eb6f240d5a1c1c88ff422aa005d10f8c6c6fc5e75286ab30e" 772 | dependencies = [ 773 | "bytemuck", 774 | "byteorder", 775 | "color_quant", 776 | "exr", 777 | "gif", 778 | "jpeg-decoder 0.2.2", 779 | "num-iter", 780 | "num-rational", 781 | "num-traits", 782 | "png 0.17.5", 783 | "scoped_threadpool", 784 | "tiff", 785 | ] 786 | 787 | [[package]] 788 | name = "inflate" 789 | version = "0.4.5" 790 | source = "registry+https://github.com/rust-lang/crates.io-index" 791 | checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff" 792 | dependencies = [ 793 | "adler32", 794 | ] 795 | 796 | [[package]] 797 | name = "instant" 798 | version = "0.1.12" 799 | source = "registry+https://github.com/rust-lang/crates.io-index" 800 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 801 | dependencies = [ 802 | "cfg-if", 803 | ] 804 | 805 | [[package]] 806 | name = "itoa" 807 | version = "0.4.8" 808 | source = "registry+https://github.com/rust-lang/crates.io-index" 809 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 810 | 811 | [[package]] 812 | name = "itoa" 813 | version = "1.0.1" 814 | source = "registry+https://github.com/rust-lang/crates.io-index" 815 | checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" 816 | 817 | [[package]] 818 | name = "jpeg-decoder" 819 | version = "0.1.22" 820 | source = "registry+https://github.com/rust-lang/crates.io-index" 821 | checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2" 822 | 823 | [[package]] 824 | name = "jpeg-decoder" 825 | version = "0.2.2" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "105fb082d64e2100074587f59a74231f771750c664af903f1f9f76c9dedfc6f1" 828 | dependencies = [ 829 | "rayon", 830 | ] 831 | 832 | [[package]] 833 | name = "js-sys" 834 | version = "0.3.56" 835 | source = "registry+https://github.com/rust-lang/crates.io-index" 836 | checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04" 837 | dependencies = [ 838 | "wasm-bindgen", 839 | ] 840 | 841 | [[package]] 842 | name = "json-patch" 843 | version = "0.2.6" 844 | source = "registry+https://github.com/rust-lang/crates.io-index" 845 | checksum = "f995a3c8f2bc3dd52a18a583e90f9ec109c047fa1603a853e46bcda14d2e279d" 846 | dependencies = [ 847 | "serde", 848 | "serde_json", 849 | "treediff", 850 | ] 851 | 852 | [[package]] 853 | name = "kuchiki" 854 | version = "0.8.1" 855 | source = "registry+https://github.com/rust-lang/crates.io-index" 856 | checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 857 | dependencies = [ 858 | "cssparser", 859 | "html5ever", 860 | "matches", 861 | "selectors", 862 | ] 863 | 864 | [[package]] 865 | name = "lazy_static" 866 | version = "1.4.0" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 869 | 870 | [[package]] 871 | name = "lebe" 872 | version = "0.5.1" 873 | source = "registry+https://github.com/rust-lang/crates.io-index" 874 | checksum = "7efd1d698db0759e6ef11a7cd44407407399a910c774dd804c64c032da7826ff" 875 | 876 | [[package]] 877 | name = "libc" 878 | version = "0.2.119" 879 | source = "registry+https://github.com/rust-lang/crates.io-index" 880 | checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4" 881 | 882 | [[package]] 883 | name = "libflate" 884 | version = "1.1.2" 885 | source = "registry+https://github.com/rust-lang/crates.io-index" 886 | checksum = "d2d57e534717ac3e0b8dc459fe338bdfb4e29d7eea8fd0926ba649ddd3f4765f" 887 | dependencies = [ 888 | "adler32", 889 | "crc32fast", 890 | "libflate_lz77", 891 | ] 892 | 893 | [[package]] 894 | name = "libflate_lz77" 895 | version = "1.1.0" 896 | source = "registry+https://github.com/rust-lang/crates.io-index" 897 | checksum = "39a734c0493409afcd49deee13c006a04e3586b9761a03543c6272c9c51f2f5a" 898 | dependencies = [ 899 | "rle-decode-fast", 900 | ] 901 | 902 | [[package]] 903 | name = "lock_api" 904 | version = "0.4.6" 905 | source = "registry+https://github.com/rust-lang/crates.io-index" 906 | checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b" 907 | dependencies = [ 908 | "scopeguard", 909 | ] 910 | 911 | [[package]] 912 | name = "log" 913 | version = "0.4.14" 914 | source = "registry+https://github.com/rust-lang/crates.io-index" 915 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 916 | dependencies = [ 917 | "cfg-if", 918 | ] 919 | 920 | [[package]] 921 | name = "mac" 922 | version = "0.1.1" 923 | source = "registry+https://github.com/rust-lang/crates.io-index" 924 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 925 | 926 | [[package]] 927 | name = "maplit" 928 | version = "1.0.2" 929 | source = "registry+https://github.com/rust-lang/crates.io-index" 930 | checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 931 | 932 | [[package]] 933 | name = "markup5ever" 934 | version = "0.10.1" 935 | source = "registry+https://github.com/rust-lang/crates.io-index" 936 | checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 937 | dependencies = [ 938 | "log", 939 | "phf 0.8.0", 940 | "phf_codegen", 941 | "string_cache", 942 | "string_cache_codegen", 943 | "tendril", 944 | ] 945 | 946 | [[package]] 947 | name = "matches" 948 | version = "0.1.9" 949 | source = "registry+https://github.com/rust-lang/crates.io-index" 950 | checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 951 | 952 | [[package]] 953 | name = "md5" 954 | version = "0.7.0" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 957 | 958 | [[package]] 959 | name = "memchr" 960 | version = "2.4.1" 961 | source = "registry+https://github.com/rust-lang/crates.io-index" 962 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 963 | 964 | [[package]] 965 | name = "memoffset" 966 | version = "0.6.5" 967 | source = "registry+https://github.com/rust-lang/crates.io-index" 968 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 969 | dependencies = [ 970 | "autocfg", 971 | ] 972 | 973 | [[package]] 974 | name = "miniz_oxide" 975 | version = "0.3.7" 976 | source = "registry+https://github.com/rust-lang/crates.io-index" 977 | checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 978 | dependencies = [ 979 | "adler32", 980 | ] 981 | 982 | [[package]] 983 | name = "miniz_oxide" 984 | version = "0.4.4" 985 | source = "registry+https://github.com/rust-lang/crates.io-index" 986 | checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 987 | dependencies = [ 988 | "adler", 989 | "autocfg", 990 | ] 991 | 992 | [[package]] 993 | name = "miniz_oxide" 994 | version = "0.5.1" 995 | source = "registry+https://github.com/rust-lang/crates.io-index" 996 | checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082" 997 | dependencies = [ 998 | "adler", 999 | ] 1000 | 1001 | [[package]] 1002 | name = "nanorand" 1003 | version = "0.6.1" 1004 | source = "registry+https://github.com/rust-lang/crates.io-index" 1005 | checksum = "729eb334247daa1803e0a094d0a5c55711b85571179f5ec6e53eccfdf7008958" 1006 | dependencies = [ 1007 | "getrandom 0.2.5", 1008 | ] 1009 | 1010 | [[package]] 1011 | name = "native-tls" 1012 | version = "0.2.8" 1013 | source = "registry+https://github.com/rust-lang/crates.io-index" 1014 | checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d" 1015 | dependencies = [ 1016 | "lazy_static", 1017 | "libc", 1018 | "log", 1019 | "openssl", 1020 | "openssl-probe", 1021 | "openssl-sys", 1022 | "schannel", 1023 | "security-framework", 1024 | "security-framework-sys", 1025 | "tempfile", 1026 | ] 1027 | 1028 | [[package]] 1029 | name = "new_debug_unreachable" 1030 | version = "1.0.4" 1031 | source = "registry+https://github.com/rust-lang/crates.io-index" 1032 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1033 | 1034 | [[package]] 1035 | name = "nodrop" 1036 | version = "0.1.14" 1037 | source = "registry+https://github.com/rust-lang/crates.io-index" 1038 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1039 | 1040 | [[package]] 1041 | name = "num-integer" 1042 | version = "0.1.44" 1043 | source = "registry+https://github.com/rust-lang/crates.io-index" 1044 | checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 1045 | dependencies = [ 1046 | "autocfg", 1047 | "num-traits", 1048 | ] 1049 | 1050 | [[package]] 1051 | name = "num-iter" 1052 | version = "0.1.42" 1053 | source = "registry+https://github.com/rust-lang/crates.io-index" 1054 | checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59" 1055 | dependencies = [ 1056 | "autocfg", 1057 | "num-integer", 1058 | "num-traits", 1059 | ] 1060 | 1061 | [[package]] 1062 | name = "num-rational" 1063 | version = "0.4.0" 1064 | source = "registry+https://github.com/rust-lang/crates.io-index" 1065 | checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" 1066 | dependencies = [ 1067 | "autocfg", 1068 | "num-integer", 1069 | "num-traits", 1070 | ] 1071 | 1072 | [[package]] 1073 | name = "num-traits" 1074 | version = "0.2.14" 1075 | source = "registry+https://github.com/rust-lang/crates.io-index" 1076 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 1077 | dependencies = [ 1078 | "autocfg", 1079 | ] 1080 | 1081 | [[package]] 1082 | name = "num_cpus" 1083 | version = "1.13.1" 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" 1085 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1086 | dependencies = [ 1087 | "hermit-abi", 1088 | "libc", 1089 | ] 1090 | 1091 | [[package]] 1092 | name = "num_threads" 1093 | version = "0.1.3" 1094 | source = "registry+https://github.com/rust-lang/crates.io-index" 1095 | checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" 1096 | dependencies = [ 1097 | "libc", 1098 | ] 1099 | 1100 | [[package]] 1101 | name = "once_cell" 1102 | version = "1.10.0" 1103 | source = "registry+https://github.com/rust-lang/crates.io-index" 1104 | checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9" 1105 | 1106 | [[package]] 1107 | name = "opaque-debug" 1108 | version = "0.2.3" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 1111 | 1112 | [[package]] 1113 | name = "openssl" 1114 | version = "0.10.38" 1115 | source = "registry+https://github.com/rust-lang/crates.io-index" 1116 | checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95" 1117 | dependencies = [ 1118 | "bitflags", 1119 | "cfg-if", 1120 | "foreign-types", 1121 | "libc", 1122 | "once_cell", 1123 | "openssl-sys", 1124 | ] 1125 | 1126 | [[package]] 1127 | name = "openssl-probe" 1128 | version = "0.1.5" 1129 | source = "registry+https://github.com/rust-lang/crates.io-index" 1130 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1131 | 1132 | [[package]] 1133 | name = "openssl-sys" 1134 | version = "0.9.72" 1135 | source = "registry+https://github.com/rust-lang/crates.io-index" 1136 | checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb" 1137 | dependencies = [ 1138 | "autocfg", 1139 | "cc", 1140 | "libc", 1141 | "pkg-config", 1142 | "vcpkg", 1143 | ] 1144 | 1145 | [[package]] 1146 | name = "os_pipe" 1147 | version = "1.0.1" 1148 | source = "registry+https://github.com/rust-lang/crates.io-index" 1149 | checksum = "2c92f2b54f081d635c77e7120862d48db8e91f7f21cef23ab1b4fe9971c59f55" 1150 | dependencies = [ 1151 | "libc", 1152 | "winapi", 1153 | ] 1154 | 1155 | [[package]] 1156 | name = "parking_lot" 1157 | version = "0.11.2" 1158 | source = "registry+https://github.com/rust-lang/crates.io-index" 1159 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1160 | dependencies = [ 1161 | "instant", 1162 | "lock_api", 1163 | "parking_lot_core", 1164 | ] 1165 | 1166 | [[package]] 1167 | name = "parking_lot_core" 1168 | version = "0.8.5" 1169 | source = "registry+https://github.com/rust-lang/crates.io-index" 1170 | checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" 1171 | dependencies = [ 1172 | "cfg-if", 1173 | "instant", 1174 | "libc", 1175 | "redox_syscall", 1176 | "smallvec", 1177 | "winapi", 1178 | ] 1179 | 1180 | [[package]] 1181 | name = "percent-encoding" 1182 | version = "2.1.0" 1183 | source = "registry+https://github.com/rust-lang/crates.io-index" 1184 | checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1185 | 1186 | [[package]] 1187 | name = "pest" 1188 | version = "2.1.3" 1189 | source = "registry+https://github.com/rust-lang/crates.io-index" 1190 | checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 1191 | dependencies = [ 1192 | "ucd-trie", 1193 | ] 1194 | 1195 | [[package]] 1196 | name = "pest_derive" 1197 | version = "2.1.0" 1198 | source = "registry+https://github.com/rust-lang/crates.io-index" 1199 | checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0" 1200 | dependencies = [ 1201 | "pest", 1202 | "pest_generator", 1203 | ] 1204 | 1205 | [[package]] 1206 | name = "pest_generator" 1207 | version = "2.1.3" 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" 1209 | checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55" 1210 | dependencies = [ 1211 | "pest", 1212 | "pest_meta", 1213 | "proc-macro2", 1214 | "quote", 1215 | "syn", 1216 | ] 1217 | 1218 | [[package]] 1219 | name = "pest_meta" 1220 | version = "2.1.3" 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" 1222 | checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d" 1223 | dependencies = [ 1224 | "maplit", 1225 | "pest", 1226 | "sha-1", 1227 | ] 1228 | 1229 | [[package]] 1230 | name = "phf" 1231 | version = "0.8.0" 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" 1233 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1234 | dependencies = [ 1235 | "phf_macros 0.8.0", 1236 | "phf_shared 0.8.0", 1237 | "proc-macro-hack", 1238 | ] 1239 | 1240 | [[package]] 1241 | name = "phf" 1242 | version = "0.10.1" 1243 | source = "registry+https://github.com/rust-lang/crates.io-index" 1244 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1245 | dependencies = [ 1246 | "phf_macros 0.10.0", 1247 | "phf_shared 0.10.0", 1248 | "proc-macro-hack", 1249 | ] 1250 | 1251 | [[package]] 1252 | name = "phf_codegen" 1253 | version = "0.8.0" 1254 | source = "registry+https://github.com/rust-lang/crates.io-index" 1255 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1256 | dependencies = [ 1257 | "phf_generator 0.8.0", 1258 | "phf_shared 0.8.0", 1259 | ] 1260 | 1261 | [[package]] 1262 | name = "phf_generator" 1263 | version = "0.8.0" 1264 | source = "registry+https://github.com/rust-lang/crates.io-index" 1265 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1266 | dependencies = [ 1267 | "phf_shared 0.8.0", 1268 | "rand 0.7.3", 1269 | ] 1270 | 1271 | [[package]] 1272 | name = "phf_generator" 1273 | version = "0.10.0" 1274 | source = "registry+https://github.com/rust-lang/crates.io-index" 1275 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1276 | dependencies = [ 1277 | "phf_shared 0.10.0", 1278 | "rand 0.8.5", 1279 | ] 1280 | 1281 | [[package]] 1282 | name = "phf_macros" 1283 | version = "0.8.0" 1284 | source = "registry+https://github.com/rust-lang/crates.io-index" 1285 | checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1286 | dependencies = [ 1287 | "phf_generator 0.8.0", 1288 | "phf_shared 0.8.0", 1289 | "proc-macro-hack", 1290 | "proc-macro2", 1291 | "quote", 1292 | "syn", 1293 | ] 1294 | 1295 | [[package]] 1296 | name = "phf_macros" 1297 | version = "0.10.0" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 1300 | dependencies = [ 1301 | "phf_generator 0.10.0", 1302 | "phf_shared 0.10.0", 1303 | "proc-macro-hack", 1304 | "proc-macro2", 1305 | "quote", 1306 | "syn", 1307 | ] 1308 | 1309 | [[package]] 1310 | name = "phf_shared" 1311 | version = "0.8.0" 1312 | source = "registry+https://github.com/rust-lang/crates.io-index" 1313 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1314 | dependencies = [ 1315 | "siphasher", 1316 | ] 1317 | 1318 | [[package]] 1319 | name = "phf_shared" 1320 | version = "0.10.0" 1321 | source = "registry+https://github.com/rust-lang/crates.io-index" 1322 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1323 | dependencies = [ 1324 | "siphasher", 1325 | ] 1326 | 1327 | [[package]] 1328 | name = "pin-project" 1329 | version = "1.0.10" 1330 | source = "registry+https://github.com/rust-lang/crates.io-index" 1331 | checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" 1332 | dependencies = [ 1333 | "pin-project-internal", 1334 | ] 1335 | 1336 | [[package]] 1337 | name = "pin-project-internal" 1338 | version = "1.0.10" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" 1341 | dependencies = [ 1342 | "proc-macro2", 1343 | "quote", 1344 | "syn", 1345 | ] 1346 | 1347 | [[package]] 1348 | name = "pkg-config" 1349 | version = "0.3.24" 1350 | source = "registry+https://github.com/rust-lang/crates.io-index" 1351 | checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe" 1352 | 1353 | [[package]] 1354 | name = "png" 1355 | version = "0.16.8" 1356 | source = "registry+https://github.com/rust-lang/crates.io-index" 1357 | checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" 1358 | dependencies = [ 1359 | "bitflags", 1360 | "crc32fast", 1361 | "deflate 0.8.6", 1362 | "miniz_oxide 0.3.7", 1363 | ] 1364 | 1365 | [[package]] 1366 | name = "png" 1367 | version = "0.17.5" 1368 | source = "registry+https://github.com/rust-lang/crates.io-index" 1369 | checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba" 1370 | dependencies = [ 1371 | "bitflags", 1372 | "crc32fast", 1373 | "deflate 1.0.0", 1374 | "miniz_oxide 0.5.1", 1375 | ] 1376 | 1377 | [[package]] 1378 | name = "ppv-lite86" 1379 | version = "0.2.16" 1380 | source = "registry+https://github.com/rust-lang/crates.io-index" 1381 | checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1382 | 1383 | [[package]] 1384 | name = "precomputed-hash" 1385 | version = "0.1.1" 1386 | source = "registry+https://github.com/rust-lang/crates.io-index" 1387 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1388 | 1389 | [[package]] 1390 | name = "proc-macro-hack" 1391 | version = "0.5.19" 1392 | source = "registry+https://github.com/rust-lang/crates.io-index" 1393 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 1394 | 1395 | [[package]] 1396 | name = "proc-macro2" 1397 | version = "1.0.36" 1398 | source = "registry+https://github.com/rust-lang/crates.io-index" 1399 | checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" 1400 | dependencies = [ 1401 | "unicode-xid", 1402 | ] 1403 | 1404 | [[package]] 1405 | name = "quick-error" 1406 | version = "2.0.1" 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" 1408 | checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 1409 | 1410 | [[package]] 1411 | name = "quote" 1412 | version = "1.0.15" 1413 | source = "registry+https://github.com/rust-lang/crates.io-index" 1414 | checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" 1415 | dependencies = [ 1416 | "proc-macro2", 1417 | ] 1418 | 1419 | [[package]] 1420 | name = "rand" 1421 | version = "0.7.3" 1422 | source = "registry+https://github.com/rust-lang/crates.io-index" 1423 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1424 | dependencies = [ 1425 | "getrandom 0.1.16", 1426 | "libc", 1427 | "rand_chacha 0.2.2", 1428 | "rand_core 0.5.1", 1429 | "rand_hc", 1430 | "rand_pcg", 1431 | ] 1432 | 1433 | [[package]] 1434 | name = "rand" 1435 | version = "0.8.5" 1436 | source = "registry+https://github.com/rust-lang/crates.io-index" 1437 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1438 | dependencies = [ 1439 | "libc", 1440 | "rand_chacha 0.3.1", 1441 | "rand_core 0.6.3", 1442 | ] 1443 | 1444 | [[package]] 1445 | name = "rand_chacha" 1446 | version = "0.2.2" 1447 | source = "registry+https://github.com/rust-lang/crates.io-index" 1448 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1449 | dependencies = [ 1450 | "ppv-lite86", 1451 | "rand_core 0.5.1", 1452 | ] 1453 | 1454 | [[package]] 1455 | name = "rand_chacha" 1456 | version = "0.3.1" 1457 | source = "registry+https://github.com/rust-lang/crates.io-index" 1458 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1459 | dependencies = [ 1460 | "ppv-lite86", 1461 | "rand_core 0.6.3", 1462 | ] 1463 | 1464 | [[package]] 1465 | name = "rand_core" 1466 | version = "0.5.1" 1467 | source = "registry+https://github.com/rust-lang/crates.io-index" 1468 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1469 | dependencies = [ 1470 | "getrandom 0.1.16", 1471 | ] 1472 | 1473 | [[package]] 1474 | name = "rand_core" 1475 | version = "0.6.3" 1476 | source = "registry+https://github.com/rust-lang/crates.io-index" 1477 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1478 | dependencies = [ 1479 | "getrandom 0.2.5", 1480 | ] 1481 | 1482 | [[package]] 1483 | name = "rand_hc" 1484 | version = "0.2.0" 1485 | source = "registry+https://github.com/rust-lang/crates.io-index" 1486 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1487 | dependencies = [ 1488 | "rand_core 0.5.1", 1489 | ] 1490 | 1491 | [[package]] 1492 | name = "rand_pcg" 1493 | version = "0.2.1" 1494 | source = "registry+https://github.com/rust-lang/crates.io-index" 1495 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 1496 | dependencies = [ 1497 | "rand_core 0.5.1", 1498 | ] 1499 | 1500 | [[package]] 1501 | name = "rayon" 1502 | version = "1.5.1" 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" 1504 | checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 1505 | dependencies = [ 1506 | "autocfg", 1507 | "crossbeam-deque", 1508 | "either", 1509 | "rayon-core", 1510 | ] 1511 | 1512 | [[package]] 1513 | name = "rayon-core" 1514 | version = "1.9.1" 1515 | source = "registry+https://github.com/rust-lang/crates.io-index" 1516 | checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 1517 | dependencies = [ 1518 | "crossbeam-channel", 1519 | "crossbeam-deque", 1520 | "crossbeam-utils", 1521 | "lazy_static", 1522 | "num_cpus", 1523 | ] 1524 | 1525 | [[package]] 1526 | name = "redox_syscall" 1527 | version = "0.2.11" 1528 | source = "registry+https://github.com/rust-lang/crates.io-index" 1529 | checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c" 1530 | dependencies = [ 1531 | "bitflags", 1532 | ] 1533 | 1534 | [[package]] 1535 | name = "redox_users" 1536 | version = "0.4.0" 1537 | source = "registry+https://github.com/rust-lang/crates.io-index" 1538 | checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" 1539 | dependencies = [ 1540 | "getrandom 0.2.5", 1541 | "redox_syscall", 1542 | ] 1543 | 1544 | [[package]] 1545 | name = "regex" 1546 | version = "1.5.5" 1547 | source = "registry+https://github.com/rust-lang/crates.io-index" 1548 | checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" 1549 | dependencies = [ 1550 | "aho-corasick", 1551 | "memchr", 1552 | "regex-syntax", 1553 | ] 1554 | 1555 | [[package]] 1556 | name = "regex-syntax" 1557 | version = "0.6.25" 1558 | source = "registry+https://github.com/rust-lang/crates.io-index" 1559 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 1560 | 1561 | [[package]] 1562 | name = "remove_dir_all" 1563 | version = "0.5.3" 1564 | source = "registry+https://github.com/rust-lang/crates.io-index" 1565 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1566 | dependencies = [ 1567 | "winapi", 1568 | ] 1569 | 1570 | [[package]] 1571 | name = "rle-decode-fast" 1572 | version = "1.0.3" 1573 | source = "registry+https://github.com/rust-lang/crates.io-index" 1574 | checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 1575 | 1576 | [[package]] 1577 | name = "rustc_version" 1578 | version = "0.4.0" 1579 | source = "registry+https://github.com/rust-lang/crates.io-index" 1580 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1581 | dependencies = [ 1582 | "semver", 1583 | ] 1584 | 1585 | [[package]] 1586 | name = "rustversion" 1587 | version = "1.0.6" 1588 | source = "registry+https://github.com/rust-lang/crates.io-index" 1589 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" 1590 | 1591 | [[package]] 1592 | name = "ryu" 1593 | version = "1.0.9" 1594 | source = "registry+https://github.com/rust-lang/crates.io-index" 1595 | checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" 1596 | 1597 | [[package]] 1598 | name = "same-file" 1599 | version = "1.0.6" 1600 | source = "registry+https://github.com/rust-lang/crates.io-index" 1601 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1602 | dependencies = [ 1603 | "winapi-util", 1604 | ] 1605 | 1606 | [[package]] 1607 | name = "schannel" 1608 | version = "0.1.19" 1609 | source = "registry+https://github.com/rust-lang/crates.io-index" 1610 | checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 1611 | dependencies = [ 1612 | "lazy_static", 1613 | "winapi", 1614 | ] 1615 | 1616 | [[package]] 1617 | name = "scoped_threadpool" 1618 | version = "0.1.9" 1619 | source = "registry+https://github.com/rust-lang/crates.io-index" 1620 | checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" 1621 | 1622 | [[package]] 1623 | name = "scopeguard" 1624 | version = "1.1.0" 1625 | source = "registry+https://github.com/rust-lang/crates.io-index" 1626 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1627 | 1628 | [[package]] 1629 | name = "security-framework" 1630 | version = "2.6.1" 1631 | source = "registry+https://github.com/rust-lang/crates.io-index" 1632 | checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 1633 | dependencies = [ 1634 | "bitflags", 1635 | "core-foundation", 1636 | "core-foundation-sys", 1637 | "libc", 1638 | "security-framework-sys", 1639 | ] 1640 | 1641 | [[package]] 1642 | name = "security-framework-sys" 1643 | version = "2.6.1" 1644 | source = "registry+https://github.com/rust-lang/crates.io-index" 1645 | checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 1646 | dependencies = [ 1647 | "core-foundation-sys", 1648 | "libc", 1649 | ] 1650 | 1651 | [[package]] 1652 | name = "selectors" 1653 | version = "0.22.0" 1654 | source = "registry+https://github.com/rust-lang/crates.io-index" 1655 | checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 1656 | dependencies = [ 1657 | "bitflags", 1658 | "cssparser", 1659 | "derive_more", 1660 | "fxhash", 1661 | "log", 1662 | "matches", 1663 | "phf 0.8.0", 1664 | "phf_codegen", 1665 | "precomputed-hash", 1666 | "servo_arc", 1667 | "smallvec", 1668 | "thin-slice", 1669 | ] 1670 | 1671 | [[package]] 1672 | name = "semver" 1673 | version = "1.0.6" 1674 | source = "registry+https://github.com/rust-lang/crates.io-index" 1675 | checksum = "a4a3381e03edd24287172047536f20cabde766e2cd3e65e6b00fb3af51c4f38d" 1676 | 1677 | [[package]] 1678 | name = "serde" 1679 | version = "1.0.136" 1680 | source = "registry+https://github.com/rust-lang/crates.io-index" 1681 | checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" 1682 | dependencies = [ 1683 | "serde_derive", 1684 | ] 1685 | 1686 | [[package]] 1687 | name = "serde_derive" 1688 | version = "1.0.136" 1689 | source = "registry+https://github.com/rust-lang/crates.io-index" 1690 | checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" 1691 | dependencies = [ 1692 | "proc-macro2", 1693 | "quote", 1694 | "syn", 1695 | ] 1696 | 1697 | [[package]] 1698 | name = "serde_json" 1699 | version = "1.0.79" 1700 | source = "registry+https://github.com/rust-lang/crates.io-index" 1701 | checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" 1702 | dependencies = [ 1703 | "itoa 1.0.1", 1704 | "ryu", 1705 | "serde", 1706 | ] 1707 | 1708 | [[package]] 1709 | name = "serde_with" 1710 | version = "1.12.0" 1711 | source = "registry+https://github.com/rust-lang/crates.io-index" 1712 | checksum = "ec1e6ec4d8950e5b1e894eac0d360742f3b1407a6078a604a731c4b3f49cefbc" 1713 | dependencies = [ 1714 | "rustversion", 1715 | "serde", 1716 | "serde_with_macros", 1717 | ] 1718 | 1719 | [[package]] 1720 | name = "serde_with_macros" 1721 | version = "1.5.1" 1722 | source = "registry+https://github.com/rust-lang/crates.io-index" 1723 | checksum = "12e47be9471c72889ebafb5e14d5ff930d89ae7a67bbdb5f8abb564f845a927e" 1724 | dependencies = [ 1725 | "darling", 1726 | "proc-macro2", 1727 | "quote", 1728 | "syn", 1729 | ] 1730 | 1731 | [[package]] 1732 | name = "serialize-to-javascript" 1733 | version = "0.1.1" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 1736 | dependencies = [ 1737 | "serde", 1738 | "serde_json", 1739 | "serialize-to-javascript-impl", 1740 | ] 1741 | 1742 | [[package]] 1743 | name = "serialize-to-javascript-impl" 1744 | version = "0.1.1" 1745 | source = "registry+https://github.com/rust-lang/crates.io-index" 1746 | checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 1747 | dependencies = [ 1748 | "proc-macro2", 1749 | "quote", 1750 | "syn", 1751 | ] 1752 | 1753 | [[package]] 1754 | name = "servo_arc" 1755 | version = "0.1.1" 1756 | source = "registry+https://github.com/rust-lang/crates.io-index" 1757 | checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 1758 | dependencies = [ 1759 | "nodrop", 1760 | "stable_deref_trait", 1761 | ] 1762 | 1763 | [[package]] 1764 | name = "sha-1" 1765 | version = "0.8.2" 1766 | source = "registry+https://github.com/rust-lang/crates.io-index" 1767 | checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" 1768 | dependencies = [ 1769 | "block-buffer 0.7.3", 1770 | "digest 0.8.1", 1771 | "fake-simd", 1772 | "opaque-debug", 1773 | ] 1774 | 1775 | [[package]] 1776 | name = "sha1" 1777 | version = "0.6.1" 1778 | source = "registry+https://github.com/rust-lang/crates.io-index" 1779 | checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 1780 | dependencies = [ 1781 | "sha1_smol", 1782 | ] 1783 | 1784 | [[package]] 1785 | name = "sha1_smol" 1786 | version = "1.0.0" 1787 | source = "registry+https://github.com/rust-lang/crates.io-index" 1788 | checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 1789 | 1790 | [[package]] 1791 | name = "sha2" 1792 | version = "0.10.2" 1793 | source = "registry+https://github.com/rust-lang/crates.io-index" 1794 | checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 1795 | dependencies = [ 1796 | "cfg-if", 1797 | "cpufeatures", 1798 | "digest 0.10.3", 1799 | ] 1800 | 1801 | [[package]] 1802 | name = "siphasher" 1803 | version = "0.3.10" 1804 | source = "registry+https://github.com/rust-lang/crates.io-index" 1805 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 1806 | 1807 | [[package]] 1808 | name = "smallvec" 1809 | version = "1.8.0" 1810 | source = "registry+https://github.com/rust-lang/crates.io-index" 1811 | checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" 1812 | 1813 | [[package]] 1814 | name = "spin" 1815 | version = "0.9.2" 1816 | source = "registry+https://github.com/rust-lang/crates.io-index" 1817 | checksum = "511254be0c5bcf062b019a6c89c01a664aa359ded62f78aa72c6fc137c0590e5" 1818 | dependencies = [ 1819 | "lock_api", 1820 | ] 1821 | 1822 | [[package]] 1823 | name = "stable_deref_trait" 1824 | version = "1.2.0" 1825 | source = "registry+https://github.com/rust-lang/crates.io-index" 1826 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1827 | 1828 | [[package]] 1829 | name = "string_cache" 1830 | version = "0.8.3" 1831 | source = "registry+https://github.com/rust-lang/crates.io-index" 1832 | checksum = "33994d0838dc2d152d17a62adf608a869b5e846b65b389af7f3dbc1de45c5b26" 1833 | dependencies = [ 1834 | "lazy_static", 1835 | "new_debug_unreachable", 1836 | "parking_lot", 1837 | "phf_shared 0.10.0", 1838 | "precomputed-hash", 1839 | "serde", 1840 | ] 1841 | 1842 | [[package]] 1843 | name = "string_cache_codegen" 1844 | version = "0.5.1" 1845 | source = "registry+https://github.com/rust-lang/crates.io-index" 1846 | checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97" 1847 | dependencies = [ 1848 | "phf_generator 0.8.0", 1849 | "phf_shared 0.8.0", 1850 | "proc-macro2", 1851 | "quote", 1852 | ] 1853 | 1854 | [[package]] 1855 | name = "strsim" 1856 | version = "0.10.0" 1857 | source = "registry+https://github.com/rust-lang/crates.io-index" 1858 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1859 | 1860 | [[package]] 1861 | name = "syn" 1862 | version = "1.0.86" 1863 | source = "registry+https://github.com/rust-lang/crates.io-index" 1864 | checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" 1865 | dependencies = [ 1866 | "proc-macro2", 1867 | "quote", 1868 | "unicode-xid", 1869 | ] 1870 | 1871 | [[package]] 1872 | name = "sysctl" 1873 | version = "0.4.4" 1874 | source = "registry+https://github.com/rust-lang/crates.io-index" 1875 | checksum = "1123645dfaf2b5eac6b6c88addafc359c789b8ef2a770ecaef758c1ddf363ea4" 1876 | dependencies = [ 1877 | "bitflags", 1878 | "byteorder", 1879 | "libc", 1880 | "thiserror", 1881 | "walkdir", 1882 | ] 1883 | 1884 | [[package]] 1885 | name = "tar" 1886 | version = "0.4.38" 1887 | source = "registry+https://github.com/rust-lang/crates.io-index" 1888 | checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 1889 | dependencies = [ 1890 | "filetime", 1891 | "libc", 1892 | "xattr", 1893 | ] 1894 | 1895 | [[package]] 1896 | name = "tauri-bundler" 1897 | version = "1.0.0-rc.3" 1898 | source = "registry+https://github.com/rust-lang/crates.io-index" 1899 | checksum = "807ef0a3a3ee78e877a36fb501fdeb23b111a00586a69bc2f91424a926d19e37" 1900 | dependencies = [ 1901 | "anyhow", 1902 | "ar", 1903 | "attohttpc", 1904 | "bitness", 1905 | "dirs-next", 1906 | "glob", 1907 | "handlebars", 1908 | "heck", 1909 | "hex", 1910 | "icns", 1911 | "image", 1912 | "libflate", 1913 | "md5", 1914 | "os_pipe", 1915 | "regex", 1916 | "serde", 1917 | "serde_json", 1918 | "sha2", 1919 | "strsim", 1920 | "tar", 1921 | "tauri-utils", 1922 | "tempfile", 1923 | "termcolor", 1924 | "thiserror", 1925 | "time 0.3.7", 1926 | "toml", 1927 | "uuid", 1928 | "walkdir", 1929 | "winreg", 1930 | "zip", 1931 | ] 1932 | 1933 | [[package]] 1934 | name = "tauri-utils" 1935 | version = "1.0.0-rc.3" 1936 | source = "registry+https://github.com/rust-lang/crates.io-index" 1937 | checksum = "21f11483d205c77d1ec398e80566485101696335983e69832cc6c41ab1e07266" 1938 | dependencies = [ 1939 | "ctor", 1940 | "glob", 1941 | "heck", 1942 | "html5ever", 1943 | "json-patch", 1944 | "kuchiki", 1945 | "phf 0.10.1", 1946 | "serde", 1947 | "serde_json", 1948 | "serde_with", 1949 | "serialize-to-javascript", 1950 | "thiserror", 1951 | "url", 1952 | "walkdir", 1953 | ] 1954 | 1955 | [[package]] 1956 | name = "tempfile" 1957 | version = "3.3.0" 1958 | source = "registry+https://github.com/rust-lang/crates.io-index" 1959 | checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1960 | dependencies = [ 1961 | "cfg-if", 1962 | "fastrand", 1963 | "libc", 1964 | "redox_syscall", 1965 | "remove_dir_all", 1966 | "winapi", 1967 | ] 1968 | 1969 | [[package]] 1970 | name = "tendril" 1971 | version = "0.4.2" 1972 | source = "registry+https://github.com/rust-lang/crates.io-index" 1973 | checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33" 1974 | dependencies = [ 1975 | "futf", 1976 | "mac", 1977 | "utf-8", 1978 | ] 1979 | 1980 | [[package]] 1981 | name = "termcolor" 1982 | version = "1.1.3" 1983 | source = "registry+https://github.com/rust-lang/crates.io-index" 1984 | checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1985 | dependencies = [ 1986 | "winapi-util", 1987 | ] 1988 | 1989 | [[package]] 1990 | name = "thin-slice" 1991 | version = "0.1.1" 1992 | source = "registry+https://github.com/rust-lang/crates.io-index" 1993 | checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 1994 | 1995 | [[package]] 1996 | name = "thiserror" 1997 | version = "1.0.30" 1998 | source = "registry+https://github.com/rust-lang/crates.io-index" 1999 | checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 2000 | dependencies = [ 2001 | "thiserror-impl", 2002 | ] 2003 | 2004 | [[package]] 2005 | name = "thiserror-impl" 2006 | version = "1.0.30" 2007 | source = "registry+https://github.com/rust-lang/crates.io-index" 2008 | checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 2009 | dependencies = [ 2010 | "proc-macro2", 2011 | "quote", 2012 | "syn", 2013 | ] 2014 | 2015 | [[package]] 2016 | name = "threadpool" 2017 | version = "1.8.1" 2018 | source = "registry+https://github.com/rust-lang/crates.io-index" 2019 | checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 2020 | dependencies = [ 2021 | "num_cpus", 2022 | ] 2023 | 2024 | [[package]] 2025 | name = "tiff" 2026 | version = "0.7.1" 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" 2028 | checksum = "0247608e998cb6ce39dfc8f4a16c50361ce71e5b52e6d24ea1227ea8ea8ee0b2" 2029 | dependencies = [ 2030 | "flate2", 2031 | "jpeg-decoder 0.1.22", 2032 | "weezl", 2033 | ] 2034 | 2035 | [[package]] 2036 | name = "time" 2037 | version = "0.1.43" 2038 | source = "registry+https://github.com/rust-lang/crates.io-index" 2039 | checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 2040 | dependencies = [ 2041 | "libc", 2042 | "winapi", 2043 | ] 2044 | 2045 | [[package]] 2046 | name = "time" 2047 | version = "0.3.7" 2048 | source = "registry+https://github.com/rust-lang/crates.io-index" 2049 | checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" 2050 | dependencies = [ 2051 | "itoa 1.0.1", 2052 | "libc", 2053 | "num_threads", 2054 | ] 2055 | 2056 | [[package]] 2057 | name = "tinyvec" 2058 | version = "1.5.1" 2059 | source = "registry+https://github.com/rust-lang/crates.io-index" 2060 | checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2" 2061 | dependencies = [ 2062 | "tinyvec_macros", 2063 | ] 2064 | 2065 | [[package]] 2066 | name = "tinyvec_macros" 2067 | version = "0.1.0" 2068 | source = "registry+https://github.com/rust-lang/crates.io-index" 2069 | checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2070 | 2071 | [[package]] 2072 | name = "toml" 2073 | version = "0.5.8" 2074 | source = "registry+https://github.com/rust-lang/crates.io-index" 2075 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" 2076 | dependencies = [ 2077 | "serde", 2078 | ] 2079 | 2080 | [[package]] 2081 | name = "treediff" 2082 | version = "3.0.2" 2083 | source = "registry+https://github.com/rust-lang/crates.io-index" 2084 | checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 2085 | dependencies = [ 2086 | "serde_json", 2087 | ] 2088 | 2089 | [[package]] 2090 | name = "typenum" 2091 | version = "1.15.0" 2092 | source = "registry+https://github.com/rust-lang/crates.io-index" 2093 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 2094 | 2095 | [[package]] 2096 | name = "ucd-trie" 2097 | version = "0.1.3" 2098 | source = "registry+https://github.com/rust-lang/crates.io-index" 2099 | checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 2100 | 2101 | [[package]] 2102 | name = "uname" 2103 | version = "0.1.1" 2104 | source = "registry+https://github.com/rust-lang/crates.io-index" 2105 | checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" 2106 | dependencies = [ 2107 | "libc", 2108 | ] 2109 | 2110 | [[package]] 2111 | name = "unicode-bidi" 2112 | version = "0.3.7" 2113 | source = "registry+https://github.com/rust-lang/crates.io-index" 2114 | checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f" 2115 | 2116 | [[package]] 2117 | name = "unicode-normalization" 2118 | version = "0.1.19" 2119 | source = "registry+https://github.com/rust-lang/crates.io-index" 2120 | checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 2121 | dependencies = [ 2122 | "tinyvec", 2123 | ] 2124 | 2125 | [[package]] 2126 | name = "unicode-xid" 2127 | version = "0.2.2" 2128 | source = "registry+https://github.com/rust-lang/crates.io-index" 2129 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 2130 | 2131 | [[package]] 2132 | name = "url" 2133 | version = "2.2.2" 2134 | source = "registry+https://github.com/rust-lang/crates.io-index" 2135 | checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 2136 | dependencies = [ 2137 | "form_urlencoded", 2138 | "idna", 2139 | "matches", 2140 | "percent-encoding", 2141 | "serde", 2142 | ] 2143 | 2144 | [[package]] 2145 | name = "utf-8" 2146 | version = "0.7.6" 2147 | source = "registry+https://github.com/rust-lang/crates.io-index" 2148 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2149 | 2150 | [[package]] 2151 | name = "uuid" 2152 | version = "0.8.2" 2153 | source = "registry+https://github.com/rust-lang/crates.io-index" 2154 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 2155 | dependencies = [ 2156 | "getrandom 0.2.5", 2157 | "sha1", 2158 | ] 2159 | 2160 | [[package]] 2161 | name = "vcpkg" 2162 | version = "0.2.15" 2163 | source = "registry+https://github.com/rust-lang/crates.io-index" 2164 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2165 | 2166 | [[package]] 2167 | name = "version_check" 2168 | version = "0.9.4" 2169 | source = "registry+https://github.com/rust-lang/crates.io-index" 2170 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2171 | 2172 | [[package]] 2173 | name = "walkdir" 2174 | version = "2.3.2" 2175 | source = "registry+https://github.com/rust-lang/crates.io-index" 2176 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2177 | dependencies = [ 2178 | "same-file", 2179 | "winapi", 2180 | "winapi-util", 2181 | ] 2182 | 2183 | [[package]] 2184 | name = "wasi" 2185 | version = "0.9.0+wasi-snapshot-preview1" 2186 | source = "registry+https://github.com/rust-lang/crates.io-index" 2187 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2188 | 2189 | [[package]] 2190 | name = "wasi" 2191 | version = "0.10.2+wasi-snapshot-preview1" 2192 | source = "registry+https://github.com/rust-lang/crates.io-index" 2193 | checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 2194 | 2195 | [[package]] 2196 | name = "wasm-bindgen" 2197 | version = "0.2.79" 2198 | source = "registry+https://github.com/rust-lang/crates.io-index" 2199 | checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06" 2200 | dependencies = [ 2201 | "cfg-if", 2202 | "wasm-bindgen-macro", 2203 | ] 2204 | 2205 | [[package]] 2206 | name = "wasm-bindgen-backend" 2207 | version = "0.2.79" 2208 | source = "registry+https://github.com/rust-lang/crates.io-index" 2209 | checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca" 2210 | dependencies = [ 2211 | "bumpalo", 2212 | "lazy_static", 2213 | "log", 2214 | "proc-macro2", 2215 | "quote", 2216 | "syn", 2217 | "wasm-bindgen-shared", 2218 | ] 2219 | 2220 | [[package]] 2221 | name = "wasm-bindgen-macro" 2222 | version = "0.2.79" 2223 | source = "registry+https://github.com/rust-lang/crates.io-index" 2224 | checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01" 2225 | dependencies = [ 2226 | "quote", 2227 | "wasm-bindgen-macro-support", 2228 | ] 2229 | 2230 | [[package]] 2231 | name = "wasm-bindgen-macro-support" 2232 | version = "0.2.79" 2233 | source = "registry+https://github.com/rust-lang/crates.io-index" 2234 | checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc" 2235 | dependencies = [ 2236 | "proc-macro2", 2237 | "quote", 2238 | "syn", 2239 | "wasm-bindgen-backend", 2240 | "wasm-bindgen-shared", 2241 | ] 2242 | 2243 | [[package]] 2244 | name = "wasm-bindgen-shared" 2245 | version = "0.2.79" 2246 | source = "registry+https://github.com/rust-lang/crates.io-index" 2247 | checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2" 2248 | 2249 | [[package]] 2250 | name = "weezl" 2251 | version = "0.1.5" 2252 | source = "registry+https://github.com/rust-lang/crates.io-index" 2253 | checksum = "d8b77fdfd5a253be4ab714e4ffa3c49caf146b4de743e97510c0656cf90f1e8e" 2254 | 2255 | [[package]] 2256 | name = "wildmatch" 2257 | version = "2.1.0" 2258 | source = "registry+https://github.com/rust-lang/crates.io-index" 2259 | checksum = "d6c48bd20df7e4ced539c12f570f937c6b4884928a87fee70a479d72f031d4e0" 2260 | 2261 | [[package]] 2262 | name = "winapi" 2263 | version = "0.3.9" 2264 | source = "registry+https://github.com/rust-lang/crates.io-index" 2265 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2266 | dependencies = [ 2267 | "winapi-i686-pc-windows-gnu", 2268 | "winapi-x86_64-pc-windows-gnu", 2269 | ] 2270 | 2271 | [[package]] 2272 | name = "winapi-i686-pc-windows-gnu" 2273 | version = "0.4.0" 2274 | source = "registry+https://github.com/rust-lang/crates.io-index" 2275 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2276 | 2277 | [[package]] 2278 | name = "winapi-util" 2279 | version = "0.1.5" 2280 | source = "registry+https://github.com/rust-lang/crates.io-index" 2281 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2282 | dependencies = [ 2283 | "winapi", 2284 | ] 2285 | 2286 | [[package]] 2287 | name = "winapi-x86_64-pc-windows-gnu" 2288 | version = "0.4.0" 2289 | source = "registry+https://github.com/rust-lang/crates.io-index" 2290 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2291 | 2292 | [[package]] 2293 | name = "winreg" 2294 | version = "0.10.1" 2295 | source = "registry+https://github.com/rust-lang/crates.io-index" 2296 | checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 2297 | dependencies = [ 2298 | "winapi", 2299 | ] 2300 | 2301 | [[package]] 2302 | name = "xattr" 2303 | version = "0.2.2" 2304 | source = "registry+https://github.com/rust-lang/crates.io-index" 2305 | checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c" 2306 | dependencies = [ 2307 | "libc", 2308 | ] 2309 | 2310 | [[package]] 2311 | name = "zip" 2312 | version = "0.5.13" 2313 | source = "registry+https://github.com/rust-lang/crates.io-index" 2314 | checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815" 2315 | dependencies = [ 2316 | "byteorder", 2317 | "bzip2", 2318 | "crc32fast", 2319 | "flate2", 2320 | "thiserror", 2321 | "time 0.1.43", 2322 | ] 2323 | --------------------------------------------------------------------------------