Initial commit

This commit is contained in:
Kevin Stillhammer
2024-08-23 23:58:26 +02:00
commit 18498fc78f
61 changed files with 261875 additions and 0 deletions

4
.eslintignore Normal file
View File

@@ -0,0 +1,4 @@
dist/
lib/
node_modules/
jest.config.js

57
.eslintrc.json Normal file
View File

@@ -0,0 +1,57 @@
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"camelcase": "off",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
}
}

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
* text=auto eol=lf
dist/** -diff linguist-generated=true

11
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
- package-ecosystem: npm
directory: /
schedule:
interval: daily

18
.github/python.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"problemMatcher": [
{
"owner": "python",
"pattern": [
{
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$",
"file": 1,
"line": 2
},
{
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$",
"message": 2
}
]
}
]
}

48
.github/release-drafter.yml vendored Normal file
View File

@@ -0,0 +1,48 @@
name-template: 'v$RESOLVED_VERSION 🌈'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: "🚨 Breaking changes"
labels:
- "breaking-change"
- title: "✨ New features"
labels:
- "new-feature"
- title: "🐛 Bug fixes"
labels:
- "bugfix"
- title: "🚀 Enhancements"
labels:
- "enhancement"
- "refactor"
- "performance"
- title: "🧰 Maintenance"
labels:
- "maintenance"
- "ci"
- title: "📚 Documentation"
labels:
- "documentation"
- title: "⬆️ Dependency updates"
labels:
- "dependencies"
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
- 'breaking-change'
minor:
labels:
- 'minor'
- 'new-feature'
- 'enhancement'
patch:
labels:
- 'patch'
- 'bugfix'
default: patch
template: |
## Changes
$CHANGES

53
.github/workflows/check-dist.yml vendored Normal file
View File

@@ -0,0 +1,53 @@
# `dist/index.js` is a special file in Actions.
# When you reference an action with `uses:` in a workflow,
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --text -v
exit 1
fi
id: diff
# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/

71
.github/workflows/codeql-analysis.yml vendored Normal file
View File

@@ -0,0 +1,71 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '31 7 * * 3'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'TypeScript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
source-root: src
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

19
.github/workflows/release-drafter.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
---
name: Release Drafter
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
update_release_draft:
name: ✏️ Draft release
runs-on: ubuntu-latest
steps:
- name: 🚀 Run Release Drafter
uses: release-drafter/release-drafter@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -0,0 +1,49 @@
name: 'test-cache-windows'
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-setup-cache:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup with cache
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
- run: uv sync
working-directory: __tests__\fixtures\uv-project
test-restore-cache:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
needs: test-setup-cache
steps:
- uses: actions/checkout@v4
- name: Restore with cache
id: restore
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
- name: Cache was hit
run: |
if ($env:CACHE_HIT -ne "true") {
exit 1
}
env:
CACHE_HIT: ${{ steps.restore.outputs.cache-hit }}
- run: uv sync
working-directory: __tests__\fixtures\uv-project

83
.github/workflows/test-cache.yml vendored Normal file
View File

@@ -0,0 +1,83 @@
name: 'test-cache'
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-setup-cache:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14]
steps:
- uses: actions/checkout@v4
- name: Setup with cache
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-restore-cache:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14]
needs: test-setup-cache
steps:
- uses: actions/checkout@v4
- name: Restore with cache
id: restore
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
- name: Cache was hit
run: |
if [ "$CACHE_HIT" != "true" ]; then
exit 1
fi
env:
CACHE_HIT: ${{ steps.restore.outputs.cache-hit }}
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-setup-cache-local:
runs-on: oracle-aarch64
steps:
- uses: actions/checkout@v4
- name: Setup with cache
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
cache-local-path: /tmp/uv-cache
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-restore-cache-local:
runs-on: oracle-aarch64
needs: test-setup-cache-local
steps:
- uses: actions/checkout@v4
- name: Restore with cache
id: restore
uses: ./
with:
enable-cache: true
cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}
cache-local-path: /tmp/uv-cache
- name: Cache was hit
run: |
if [ "$CACHE_HIT" != "true" ]; then
exit 1
fi
env:
CACHE_HIT: ${{ steps.restore.outputs.cache-hit }}
- run: uv sync
working-directory: __tests__/fixtures/uv-project

View File

@@ -0,0 +1,29 @@
name: 'test-windows'
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-default-version:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Should not be on path
run: |
if (!(Get-Command -Name "uv" -ErrorAction SilentlyContinue)) {
exit 0
} else {
exit 1
}
- name: Setup uv
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: uv sync
working-directory: __tests__\fixtures\uv-project

90
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,90 @@
name: 'test'
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: |
npm install
- run: |
npm run all
test-default-version:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
steps:
- uses: actions/checkout@v4
- name: Install default version
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-specific-version:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
uv-version: ['latest','0.2.0','0.3.0']
steps:
- uses: actions/checkout@v4
- name: Install version ${{ matrix.uv-version }}
uses: ./
with:
version: ${{ matrix.uv-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-checksum:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, oracle-aarch64]
checksum: ['4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd']
exclude:
- os: oracle-aarch64
checksum: '4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd'
include:
- os: oracle-aarch64
checksum: 'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8'
steps:
- uses: actions/checkout@v4
- name: Checksum matches expected
uses: ./
with:
version: '0.3.2'
checksum: ${{ matrix.checksum }}
github-token: ${{ secrets.GITHUB_TOKEN }}
test-without-github-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install default version
uses: ./
- run: uv sync
working-directory: __tests__/fixtures/uv-project
test-uvx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install default version
uses: ./
- run: uvx ruff --version

View File

@@ -0,0 +1,26 @@
name: 'Update default version and checksums'
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Update default version and checksums
id: update-default-version
run: node dist/update-default-version/index.js src/download/checksum/known-checksums.ts action.yml ${{ secrets.GITHUB_TOKEN }}
- run: npm install && npm run all
- name: Create Pull Request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
commit-message: "chore: update checksums"
title: "chore: update default version to ${{ steps.update-default-version.outputs.latest-version }}"
body: "chore: update default version to ${{ steps.update-default-version.outputs.latest-version }}"
base: main
labels: "automated-pr,bugfix"
branch: update-default-version-pr
delete-branch: true

View File

@@ -0,0 +1,19 @@
---
name: Update Major Minor Tags
# yamllint disable-line rule:truthy
on:
push:
branches-ignore:
- '**'
tags:
- 'v*.*.*'
jobs:
update_major_minor_tags:
name: Make sure major and minor tags are up to date on a patch release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Update semver
uses: haya14busa/action-update-semver@v1.2.1

99
.gitignore vendored Normal file
View File

@@ -0,0 +1,99 @@
# Dependency directory
node_modules
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
jspm_packages/
# TypeScript v1 declaration files
typings/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# OS metadata
.DS_Store
Thumbs.db
# Ignore built ts files
__tests__/runner/*
lib/**/*

3
.prettierignore Normal file
View File

@@ -0,0 +1,3 @@
dist/
lib/
node_modules/

10
.prettierrc.json Normal file
View File

@@ -0,0 +1,10 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid"
}

1
CODEOWNERS Normal file
View File

@@ -0,0 +1 @@
* @eifinger

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2024 Kevin Stillhammer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

178
README.md Normal file
View File

@@ -0,0 +1,178 @@
# setup-uv
Set up your GitHub Actions workflow with a specific version of [uv](https://docs.astral.sh/uv/).
* Install a version of uv and add it to the path
* Cache the installed version of uv to speed up consecutive runs on self-hosted runners
* Register problem matchers for error output
* Optional: Cache the uv cache
* Optional: Verify the checksum of the downloaded uv executable
## Usage
Example workflow will be added later
### Install specific version
You can also specify a specific version of uv
```yaml
- name: Install a specific version
uses: eifinger/setup-uv@v1
with:
version: '0.3.0'
```
### Install latest version
By default this action installs the version defined as `default` in `action.yml`.
This gets automatically updated in a new release of this action when a new version of uv is released.
If you don't want to wait for a new release of this action you can use use `version: latest`.
> [!WARNING]
> Using the `latest` version means that the uv executable gets downloaded every single time instead of loaded from the tools cache.
> This can take up to 20s depending on the download speed.
> This does not affect the uv cache.
```yaml
- name: Install a specific version
uses: eifinger/setup-uv@v1
with:
version: 'latest'
```
### Validate checksum
You can also specify a checksum to validate the downloaded file.
Checksums up to the default version are automatically verified by this action.
The sha265 hashes can be found on the [releases page](https://github.com/astral-sh/uv/releases)
of the uv repo.
```yaml
- name: Install a specific version and validate the checksum
uses: eifinger/setup-uv@v1
with:
version: '0.3.1'
checksum: 'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8'
```
### Enable caching
If you enable caching the [uv cache](https://docs.astral.sh/uv/concepts/cache/) will
be cached to the GitHub Actions Cache. This can speed up runs which can reuse the cache
by several minutes. The cache will always be reused on self-hosted runners.
You can optionally define a custom cache key suffix.
```yaml
- name: Enable caching and define a custom cache key suffix
id: setup-uv
uses: eifinger/setup-uv@v1
with:
enable-cache: true
cache-suffix: 'optional-suffix'
```
When the cache was successfully restored the output `cache-hit` will be set to `true` and you can use it in subsequent steps.
For the example above you can use it like this:
```yaml
- name: Do something if the cache was restored
if: steps.setup-uv.outputs.cache-hit == 'true'
run: echo "Cache was restored"
```
#### Local cache path
If you want to save the cache to a local path other than the default path (`/tmp/setup-uv-cache`)
you can specify the path with the `cache-local-path` input.
```yaml
- name: Define a custom uv cache path
uses: eifinger/setup-uv@v1
with:
enable-cache: true
cache-local-path: '/path/to/cache'
```
#### Cache dependency glob
If you want to control when the cache is invalidated you can specify a glob pattern with the `cache-dependency-glob` input.
The cache will be invalidated if any file matching the glob pattern changes.
The glob matches files relative to the repository root.
```yaml
- name: Define a custom cache dependency glob
uses: eifinger/setup-uv@v1
with:
enable-cache: true
cache-dependency-glob: 'uv.lock'
```
```yaml
- name: Define a custom cache dependency glob
uses: eifinger/setup-uv@v1
with:
enable-cache: true
cache-dependency-glob: '**requirements*.txt'
```
### API rate limit
To avoid hitting the error `API rate limit exceeded` you can supply a GitHub token with the `github-token` input.
```yaml
- name: Install uv and supply a GitHub token
uses: eifinger/setup-uv@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```
## How it works
This action downloads uv from the releases of the [uv repo](https://github.com/astral-sh/uv) and uses the [GitHub Actions Toolkit](https://github.com/actions/toolkit) to cache it as a tool to speed up consecutive runs on self-hosted runners.
The installed version of uv is then added to the runner path so other steps can just use it by calling `uv`.
## FAQ
### Do I still need actions/setup-python when using this action?
No! This action was modelled as a drop-in replacement for `actions/setup-python` when using uv.
A simple example workflow could look like this:
```yaml
- name: Checkout the repository
uses: actions/checkout@main
- name: Install the latest version of uv
uses: eifinger/setup-uv@v1
with:
enable-cache: true
- name: Sync dependencies
run: uv sync
- name: Test
run: uv run pytest
```
### What is the default version?
By default this action installs the version defined as `default` in `action.yml`.
When a new release of uv is published this triggers an automatic release of this action with the new version as `default`.
If you have to know the version installed for other steps of your workflow you can use the `uv-version` output:
```yaml
- name: Checkout the repository
uses: actions/checkout@latest
- name: Install the default version of uv
id: setup-uv
uses: eifinger/setup-uv@v1
- name: Print the installed version
run: echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}"
```
---
[<img src="https://raw.githubusercontent.com/eifinger/setup-uv/main/docs/images/bmc-button.svg" width=150 height=40 style="margin: 5px"/>](https://www.buymeacoffee.com/eifinger)
[<img src="https://raw.githubusercontent.com/eifinger/setup-uv/main/docs/images/paypal-button.svg" width=150 height=40 style="margin: 5px"/>](https://paypal.me/kevinstillhammer)

View File

@@ -0,0 +1,37 @@
import {expect, test, it} from '@jest/globals'
import {
isknownVersion,
validateChecksum
} from '../../../src/download/checksum/checksum'
test('checksum should match', async () => {
const validChecksum =
'f3da96ec7e995debee7f5d52ecd034dfb7074309a1da42f76429ecb814d813a3'
const filePath = '__tests__/fixtures/checksumfile'
// string params don't matter only test the checksum mechanism, not known checksums
await validateChecksum(
validChecksum,
filePath,
'aarch64',
'pc-windows-msvc',
'1.2.3'
)
})
type KnownVersionFixture = {version: string; known: boolean}
it.each<KnownVersionFixture>([
{
version: '0.3.0',
known: true
},
{
version: '0.0.15',
known: false
}
])(
'isknownVersion should return $known for version $version',
({version, known}) => {
expect(isknownVersion(version)).toBe(known)
}
)

View File

@@ -0,0 +1 @@
Random file content

View File

View File

@@ -0,0 +1,13 @@
[project]
name = "uv-project"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ruff>=0.6.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

View File

@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from uv-project!"

38
__tests__/fixtures/uv-project/uv.lock generated Normal file
View File

@@ -0,0 +1,38 @@
version = 1
requires-python = ">=3.12"
[[package]]
name = "ruff"
version = "0.6.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/23/f4/279d044f66b79261fd37df76bf72b64471afab5d3b7906a01499c4451910/ruff-0.6.2.tar.gz", hash = "sha256:239ee6beb9e91feb8e0ec384204a763f36cb53fb895a1a364618c6abb076b3be", size = 2460281 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/72/4b/47dd7a69287afb4069fa42c198e899463605460a58120196711bfcf0446b/ruff-0.6.2-py3-none-linux_armv6l.whl", hash = "sha256:5c8cbc6252deb3ea840ad6a20b0f8583caab0c5ef4f9cca21adc5a92b8f79f3c", size = 9695871 },
{ url = "https://files.pythonhosted.org/packages/ae/c3/8aac62ac4638c14a740ee76a755a925f2d0d04580ab790a9887accb729f6/ruff-0.6.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:17002fe241e76544448a8e1e6118abecbe8cd10cf68fde635dad480dba594570", size = 9459354 },
{ url = "https://files.pythonhosted.org/packages/2f/cf/77fbd8d4617b9b9c503f9bffb8552c4e3ea1a58dc36975e7a9104ffb0f85/ruff-0.6.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3dbeac76ed13456f8158b8f4fe087bf87882e645c8e8b606dd17b0b66c2c1158", size = 9163871 },
{ url = "https://files.pythonhosted.org/packages/05/1c/765192bab32b79efbb498b06f0b9dcb3629112b53b8777ae1d19b8209e09/ruff-0.6.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:094600ee88cda325988d3f54e3588c46de5c18dae09d683ace278b11f9d4d534", size = 10096250 },
{ url = "https://files.pythonhosted.org/packages/08/d0/86f3cb0f6934c99f759c232984a5204d67a26745cad2d9edff6248adf7d2/ruff-0.6.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:316d418fe258c036ba05fbf7dfc1f7d3d4096db63431546163b472285668132b", size = 9475376 },
{ url = "https://files.pythonhosted.org/packages/cd/cc/4c8d0e225b559a3fae6092ec310d7150d3b02b4669e9223f783ef64d82c0/ruff-0.6.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d72b8b3abf8a2d51b7b9944a41307d2f442558ccb3859bbd87e6ae9be1694a5d", size = 10295634 },
{ url = "https://files.pythonhosted.org/packages/db/96/d2699cfb1bb5a01c68122af43454c76c31331e1c8a9bd97d653d7c82524b/ruff-0.6.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:2aed7e243be68487aa8982e91c6e260982d00da3f38955873aecd5a9204b1d66", size = 11024941 },
{ url = "https://files.pythonhosted.org/packages/8b/a9/6ecd66af8929e0f2a1ed308a4137f3521789f28f0eb97d32c2ca3aa7000c/ruff-0.6.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d371f7fc9cec83497fe7cf5eaf5b76e22a8efce463de5f775a1826197feb9df8", size = 10606894 },
{ url = "https://files.pythonhosted.org/packages/e4/73/2ee4cd19f44992fedac1cc6db9e3d825966072f6dcbd4032f21cbd063170/ruff-0.6.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8f310d63af08f583363dfb844ba8f9417b558199c58a5999215082036d795a1", size = 11552886 },
{ url = "https://files.pythonhosted.org/packages/60/4c/c0f1cd35ce4a93c54a6bb1ee6934a3a205fa02198dd076678193853ceea1/ruff-0.6.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7db6880c53c56addb8638fe444818183385ec85eeada1d48fc5abe045301b2f1", size = 10264945 },
{ url = "https://files.pythonhosted.org/packages/c4/89/e45c9359b9cdd4245512ea2b9f2bb128a997feaa5f726fc9e8c7a66afadf/ruff-0.6.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1175d39faadd9a50718f478d23bfc1d4da5743f1ab56af81a2b6caf0a2394f23", size = 10100007 },
{ url = "https://files.pythonhosted.org/packages/06/74/0bd4e0a7ed5f6908df87892f9bf60a2356c0fd74102d8097298bd9b4f346/ruff-0.6.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5b939f9c86d51635fe486585389f54582f0d65b8238e08c327c1534844b3bb9a", size = 9559267 },
{ url = "https://files.pythonhosted.org/packages/54/03/3dc6dc9419f276f05805bf888c279e3e0b631284abd548d9e87cebb93aec/ruff-0.6.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d0d62ca91219f906caf9b187dea50d17353f15ec9bb15aae4a606cd697b49b4c", size = 9905304 },
{ url = "https://files.pythonhosted.org/packages/5c/5b/d6a72a6a6bbf097c09de468326ef5fa1c9e7aa5e6e45979bc0d984b0dbe7/ruff-0.6.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:7438a7288f9d67ed3c8ce4d059e67f7ed65e9fe3aa2ab6f5b4b3610e57e3cb56", size = 10341480 },
{ url = "https://files.pythonhosted.org/packages/79/a9/0f2f21fe15ba537c46598f96aa9ae4a3d4b9ec64926664617ca6a8c772f4/ruff-0.6.2-py3-none-win32.whl", hash = "sha256:279d5f7d86696df5f9549b56b9b6a7f6c72961b619022b5b7999b15db392a4da", size = 7961901 },
{ url = "https://files.pythonhosted.org/packages/b0/80/fff12ffe11853d9f4ea3e5221e6dd2e93640a161c05c9579833e09ad40a7/ruff-0.6.2-py3-none-win_amd64.whl", hash = "sha256:d9f3469c7dd43cd22eb1c3fc16926fb8258d50cb1b216658a07be95dd117b0f2", size = 8783320 },
{ url = "https://files.pythonhosted.org/packages/56/91/577cdd64cce5e74d3f8b5ecb93f29566def569c741eb008aed4f331ef821/ruff-0.6.2-py3-none-win_arm64.whl", hash = "sha256:f28fcd2cd0e02bdf739297516d5643a945cc7caf09bd9bcb4d932540a5ea4fa9", size = 8225886 },
]
[[package]]
name = "uv-project"
version = "0.1.0"
source = { editable = "." }
dependencies = [
{ name = "ruff" },
]
[package.metadata]
requires-dist = [{ name = "ruff" }]

38
action.yml Normal file
View File

@@ -0,0 +1,38 @@
name: 'Python setup uv'
description: 'Set up your GitHub Actions workflow with a specific version of uv'
author: 'eifinger'
inputs:
version:
description: 'The version of uv to install'
default: '0.3.2'
checksum:
description: 'The checksum of the uv version to install'
required: false
github-token:
description: 'Used to increase the rate limit when retrieving versions and downloading uv.'
required: false
enable-cache:
description: 'Enable caching of the uv cache'
default: 'false'
cache-dependency-glob:
description: 'Glob pattern to match files relative to the repository root to control the cache. e.g. "uv.lock"'
required: false
cache-suffix:
description: 'Suffix for the cache key'
required: false
cache-local-path:
description: 'Local path to store the cache.'
default: '/tmp/setup-uv-cache'
outputs:
uv-version:
description: "The installed uv version. Useful when using latest."
cache-hit:
description: "A boolean value to indicate a cache entry was found"
runs:
using: 'node20'
main: 'dist/setup/index.js'
post: 'dist/save-cache/index.js'
post-if: success()
branding:
icon: 'package'
color: 'blue'

84943
dist/save-cache/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/save-cache/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/save-cache/sourcemap-register.js generated vendored Normal file

File diff suppressed because one or more lines are too long

453
dist/setup/37.index.js generated vendored Normal file
View File

@@ -0,0 +1,453 @@
"use strict";
exports.id = 37;
exports.ids = [37];
exports.modules = {
/***/ 4037:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "toFormData": () => (/* binding */ toFormData)
/* harmony export */ });
/* harmony import */ var fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2777);
/* harmony import */ var formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8010);
let s = 0;
const S = {
START_BOUNDARY: s++,
HEADER_FIELD_START: s++,
HEADER_FIELD: s++,
HEADER_VALUE_START: s++,
HEADER_VALUE: s++,
HEADER_VALUE_ALMOST_DONE: s++,
HEADERS_ALMOST_DONE: s++,
PART_DATA_START: s++,
PART_DATA: s++,
END: s++
};
let f = 1;
const F = {
PART_BOUNDARY: f,
LAST_BOUNDARY: f *= 2
};
const LF = 10;
const CR = 13;
const SPACE = 32;
const HYPHEN = 45;
const COLON = 58;
const A = 97;
const Z = 122;
const lower = c => c | 0x20;
const noop = () => {};
class MultipartParser {
/**
* @param {string} boundary
*/
constructor(boundary) {
this.index = 0;
this.flags = 0;
this.onHeaderEnd = noop;
this.onHeaderField = noop;
this.onHeadersEnd = noop;
this.onHeaderValue = noop;
this.onPartBegin = noop;
this.onPartData = noop;
this.onPartEnd = noop;
this.boundaryChars = {};
boundary = '\r\n--' + boundary;
const ui8a = new Uint8Array(boundary.length);
for (let i = 0; i < boundary.length; i++) {
ui8a[i] = boundary.charCodeAt(i);
this.boundaryChars[ui8a[i]] = true;
}
this.boundary = ui8a;
this.lookbehind = new Uint8Array(this.boundary.length + 8);
this.state = S.START_BOUNDARY;
}
/**
* @param {Uint8Array} data
*/
write(data) {
let i = 0;
const length_ = data.length;
let previousIndex = this.index;
let {lookbehind, boundary, boundaryChars, index, state, flags} = this;
const boundaryLength = this.boundary.length;
const boundaryEnd = boundaryLength - 1;
const bufferLength = data.length;
let c;
let cl;
const mark = name => {
this[name + 'Mark'] = i;
};
const clear = name => {
delete this[name + 'Mark'];
};
const callback = (callbackSymbol, start, end, ui8a) => {
if (start === undefined || start !== end) {
this[callbackSymbol](ui8a && ui8a.subarray(start, end));
}
};
const dataCallback = (name, clear) => {
const markSymbol = name + 'Mark';
if (!(markSymbol in this)) {
return;
}
if (clear) {
callback(name, this[markSymbol], i, data);
delete this[markSymbol];
} else {
callback(name, this[markSymbol], data.length, data);
this[markSymbol] = 0;
}
};
for (i = 0; i < length_; i++) {
c = data[i];
switch (state) {
case S.START_BOUNDARY:
if (index === boundary.length - 2) {
if (c === HYPHEN) {
flags |= F.LAST_BOUNDARY;
} else if (c !== CR) {
return;
}
index++;
break;
} else if (index - 1 === boundary.length - 2) {
if (flags & F.LAST_BOUNDARY && c === HYPHEN) {
state = S.END;
flags = 0;
} else if (!(flags & F.LAST_BOUNDARY) && c === LF) {
index = 0;
callback('onPartBegin');
state = S.HEADER_FIELD_START;
} else {
return;
}
break;
}
if (c !== boundary[index + 2]) {
index = -2;
}
if (c === boundary[index + 2]) {
index++;
}
break;
case S.HEADER_FIELD_START:
state = S.HEADER_FIELD;
mark('onHeaderField');
index = 0;
// falls through
case S.HEADER_FIELD:
if (c === CR) {
clear('onHeaderField');
state = S.HEADERS_ALMOST_DONE;
break;
}
index++;
if (c === HYPHEN) {
break;
}
if (c === COLON) {
if (index === 1) {
// empty header field
return;
}
dataCallback('onHeaderField', true);
state = S.HEADER_VALUE_START;
break;
}
cl = lower(c);
if (cl < A || cl > Z) {
return;
}
break;
case S.HEADER_VALUE_START:
if (c === SPACE) {
break;
}
mark('onHeaderValue');
state = S.HEADER_VALUE;
// falls through
case S.HEADER_VALUE:
if (c === CR) {
dataCallback('onHeaderValue', true);
callback('onHeaderEnd');
state = S.HEADER_VALUE_ALMOST_DONE;
}
break;
case S.HEADER_VALUE_ALMOST_DONE:
if (c !== LF) {
return;
}
state = S.HEADER_FIELD_START;
break;
case S.HEADERS_ALMOST_DONE:
if (c !== LF) {
return;
}
callback('onHeadersEnd');
state = S.PART_DATA_START;
break;
case S.PART_DATA_START:
state = S.PART_DATA;
mark('onPartData');
// falls through
case S.PART_DATA:
previousIndex = index;
if (index === 0) {
// boyer-moore derrived algorithm to safely skip non-boundary data
i += boundaryEnd;
while (i < bufferLength && !(data[i] in boundaryChars)) {
i += boundaryLength;
}
i -= boundaryEnd;
c = data[i];
}
if (index < boundary.length) {
if (boundary[index] === c) {
if (index === 0) {
dataCallback('onPartData', true);
}
index++;
} else {
index = 0;
}
} else if (index === boundary.length) {
index++;
if (c === CR) {
// CR = part boundary
flags |= F.PART_BOUNDARY;
} else if (c === HYPHEN) {
// HYPHEN = end boundary
flags |= F.LAST_BOUNDARY;
} else {
index = 0;
}
} else if (index - 1 === boundary.length) {
if (flags & F.PART_BOUNDARY) {
index = 0;
if (c === LF) {
// unset the PART_BOUNDARY flag
flags &= ~F.PART_BOUNDARY;
callback('onPartEnd');
callback('onPartBegin');
state = S.HEADER_FIELD_START;
break;
}
} else if (flags & F.LAST_BOUNDARY) {
if (c === HYPHEN) {
callback('onPartEnd');
state = S.END;
flags = 0;
} else {
index = 0;
}
} else {
index = 0;
}
}
if (index > 0) {
// when matching a possible boundary, keep a lookbehind reference
// in case it turns out to be a false lead
lookbehind[index - 1] = c;
} else if (previousIndex > 0) {
// if our boundary turned out to be rubbish, the captured lookbehind
// belongs to partData
const _lookbehind = new Uint8Array(lookbehind.buffer, lookbehind.byteOffset, lookbehind.byteLength);
callback('onPartData', 0, previousIndex, _lookbehind);
previousIndex = 0;
mark('onPartData');
// reconsider the current character even so it interrupted the sequence
// it could be the beginning of a new sequence
i--;
}
break;
case S.END:
break;
default:
throw new Error(`Unexpected state entered: ${state}`);
}
}
dataCallback('onHeaderField');
dataCallback('onHeaderValue');
dataCallback('onPartData');
// Update properties for the next call
this.index = index;
this.state = state;
this.flags = flags;
}
end() {
if ((this.state === S.HEADER_FIELD_START && this.index === 0) ||
(this.state === S.PART_DATA && this.index === this.boundary.length)) {
this.onPartEnd();
} else if (this.state !== S.END) {
throw new Error('MultipartParser.end(): stream ended unexpectedly');
}
}
}
function _fileName(headerValue) {
// matches either a quoted-string or a token (RFC 2616 section 19.5.1)
const m = headerValue.match(/\bfilename=("(.*?)"|([^()<>@,;:\\"/[\]?={}\s\t]+))($|;\s)/i);
if (!m) {
return;
}
const match = m[2] || m[3] || '';
let filename = match.slice(match.lastIndexOf('\\') + 1);
filename = filename.replace(/%22/g, '"');
filename = filename.replace(/&#(\d{4});/g, (m, code) => {
return String.fromCharCode(code);
});
return filename;
}
async function toFormData(Body, ct) {
if (!/multipart/i.test(ct)) {
throw new TypeError('Failed to fetch');
}
const m = ct.match(/boundary=(?:"([^"]+)"|([^;]+))/i);
if (!m) {
throw new TypeError('no or bad content-type header, no multipart boundary');
}
const parser = new MultipartParser(m[1] || m[2]);
let headerField;
let headerValue;
let entryValue;
let entryName;
let contentType;
let filename;
const entryChunks = [];
const formData = new formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__/* .FormData */ .Ct();
const onPartData = ui8a => {
entryValue += decoder.decode(ui8a, {stream: true});
};
const appendToFile = ui8a => {
entryChunks.push(ui8a);
};
const appendFileToFormData = () => {
const file = new fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__/* .File */ .$B(entryChunks, filename, {type: contentType});
formData.append(entryName, file);
};
const appendEntryToFormData = () => {
formData.append(entryName, entryValue);
};
const decoder = new TextDecoder('utf-8');
decoder.decode();
parser.onPartBegin = function () {
parser.onPartData = onPartData;
parser.onPartEnd = appendEntryToFormData;
headerField = '';
headerValue = '';
entryValue = '';
entryName = '';
contentType = '';
filename = null;
entryChunks.length = 0;
};
parser.onHeaderField = function (ui8a) {
headerField += decoder.decode(ui8a, {stream: true});
};
parser.onHeaderValue = function (ui8a) {
headerValue += decoder.decode(ui8a, {stream: true});
};
parser.onHeaderEnd = function () {
headerValue += decoder.decode();
headerField = headerField.toLowerCase();
if (headerField === 'content-disposition') {
// matches either a quoted-string or a token (RFC 2616 section 19.5.1)
const m = headerValue.match(/\bname=("([^"]*)"|([^()<>@,;:\\"/[\]?={}\s\t]+))/i);
if (m) {
entryName = m[2] || m[3] || '';
}
filename = _fileName(headerValue);
if (filename) {
parser.onPartData = appendToFile;
parser.onPartEnd = appendFileToFormData;
}
} else if (headerField === 'content-type') {
contentType = headerValue;
}
headerValue = '';
headerField = '';
};
for await (const chunk of Body) {
parser.write(chunk);
}
parser.end();
return formData;
}
/***/ })
};
;
//# sourceMappingURL=37.index.js.map

1
dist/setup/37.index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

87675
dist/setup/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/setup/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1056
dist/setup/licenses.txt generated vendored Normal file
View File

@@ -0,0 +1,1056 @@
@actions/cache
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/core
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/exec
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/glob
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/http-client
MIT
Actions Http Client for Node.js
Copyright (c) GitHub, Inc.
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/io
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/tool-cache
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@azure/abort-controller
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-auth
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-http
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-lro
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-paging
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-tracing
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/core-util
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/logger
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@azure/storage-blob
MIT
The MIT License (MIT)
Copyright (c) 2020 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@fastify/busboy
MIT
Copyright Brian White. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
@opentelemetry/api
Apache-2.0
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@vercel/ncc
MIT
Copyright 2018 ZEIT, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
asynckit
MIT
The MIT License (MIT)
Copyright (c) 2016 Alex Indigo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
balanced-match
MIT
(MIT)
Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
brace-expansion
MIT
MIT License
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
combined-stream
MIT
Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
concat-map
MIT
This software is released under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
delayed-stream
MIT
Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
form-data
MIT
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
mime-db
MIT
(The MIT License)
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
mime-types
MIT
(The MIT License)
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
minimatch
ISC
The ISC License
Copyright (c) Isaac Z. Schlueter and Contributors
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
node-fetch
MIT
The MIT License (MIT)
Copyright (c) 2016 David Frank
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
sax
ISC
The ISC License
Copyright (c) Isaac Z. Schlueter and Contributors
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
====
`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
License, as follows:
Copyright Mathias Bynens <https://mathiasbynens.be/>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
semver
ISC
The ISC License
Copyright (c) Isaac Z. Schlueter and Contributors
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
tr46
MIT
tslib
0BSD
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
tunnel
MIT
The MIT License (MIT)
Copyright (c) 2012 Koichi Kobayashi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
undici
MIT
MIT License
Copyright (c) Matteo Collina and Undici contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
uuid
MIT
The MIT License (MIT)
Copyright (c) 2010-2020 Robert Kieffer and other contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
webidl-conversions
BSD-2-Clause
# The BSD 2-Clause License
Copyright (c) 2014, Domenic Denicola
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
whatwg-url
MIT
The MIT License (MIT)
Copyright (c) 20152016 Sebastian Mayr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
xml2js
MIT
Copyright 2010, 2011, 2012, 2013. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
xmlbuilder
MIT
The MIT License (MIT)
Copyright (c) 2013 Ozgur Ozcitak
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

1
dist/setup/sourcemap-register.js generated vendored Normal file

File diff suppressed because one or more lines are too long

35031
dist/update-checksums/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/update-checksums/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/update-checksums/sourcemap-register.js generated vendored Normal file

File diff suppressed because one or more lines are too long

34791
dist/update-default-version/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/update-default-version/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/update-default-version/sourcemap-register.js generated vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,15 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="545" height="153" viewBox="0 0 545 153">
<defs>
<style>
.cls-1{fill:#009ee3;}.cls-1,.cls-2,.cls-3{fill-rule:evenodd;}.cls-2{fill:#113984;}.cls-3{fill:#172c70;}</style>
</defs>
<title>paypal-seeklogo.com</title>
<path transform="scale(1, 1)" d="M0 24.48C0 10.9601 10.9601 0 24.48 0H520.2C533.72 0 544.68 10.9601 544.68 24.48V128.52C544.68 142.04 533.72 153 520.2 153H24.48C10.9601 153 0 142.04 0 128.52V24.48Z" fill="#ebf2ff"/>
<g transform="scale(0.8, 0.8) translate(45, 25)">
<path class="cls-1" d="M192.95,386.87h38.74c20.8,0,28.63,10.53,27.42,26-2,25.54-17.44,39.67-37.92,39.67H210.85c-2.81,0-4.7,1.86-5.46,6.9L201,488.74c-0.29,1.9-1.29,3-2.79,3.15H173.87c-2.29,0-3.1-1.75-2.5-5.54l14.84-93.93C186.79,388.66,188.85,386.87,192.95,386.87Z" transform="translate(-143.48 -354.54)"/>
<path class="cls-2" d="M361.14,385.13c13.07,0,25.13,7.09,23.48,24.76-2,21-13.25,32.62-31,32.67H338.11c-2.23,0-3.31,1.82-3.89,5.55l-3,19.07c-0.45,2.88-1.93,4.3-4.11,4.3H312.68c-2.3,0-3.1-1.47-2.59-4.76L322,390.29c0.59-3.76,2-5.16,4.57-5.16h34.54Zm-23.5,40.92h11.75c7.35-.28,12.23-5.37,12.72-14.55,0.3-5.67-3.53-9.73-9.62-9.7l-11.06.05-3.79,24.2h0Zm86.21,39.58c1.32-1.2,2.66-1.82,2.47-.34l-0.47,3.54c-0.24,1.85.49,2.83,2.21,2.83h12.82c2.16,0,3.21-.87,3.74-4.21l7.9-49.58c0.4-2.49-.21-3.71-2.1-3.71H436.32c-1.27,0-1.89.71-2.22,2.65l-0.52,3.05c-0.27,1.59-1,1.87-1.68.27-2.39-5.66-8.49-8.2-17-8-19.77.41-33.1,15.42-34.53,34.66-1.1,14.88,9.56,26.57,23.62,26.57,10.2,0,14.76-3,19.9-7.7h0ZM413.11,458c-8.51,0-14.44-6.79-13.21-15.11s9.19-15.11,17.7-15.11,14.44,6.79,13.21,15.11S421.63,458,413.11,458h0Zm64.5-44h-13c-2.68,0-3.77,2-2.92,4.46l16.14,47.26L462,488.21c-1.33,1.88-.3,3.59,1.57,3.59h14.61a4.47,4.47,0,0,0,4.34-2.13l49.64-71.2c1.53-2.19.81-4.49-1.7-4.49H516.63c-2.37,0-3.32.94-4.68,2.91l-20.7,30L482,416.82C481.46,415,480.11,414,477.62,414Z" transform="translate(-143.48 -354.54)"/>
<path class="cls-1" d="M583.8,385.13c13.07,0,25.13,7.09,23.48,24.76-2,21-13.25,32.62-31,32.67H560.78c-2.23,0-3.31,1.82-3.89,5.55l-3,19.07c-0.45,2.88-1.93,4.3-4.11,4.3H535.35c-2.3,0-3.1-1.47-2.59-4.76l11.93-76.45c0.59-3.76,2-5.16,4.57-5.16H583.8Zm-23.5,40.92h11.75c7.35-.28,12.23-5.37,12.72-14.55,0.3-5.67-3.53-9.73-9.62-9.7l-11.06.05-3.79,24.2h0Zm86.21,39.58c1.32-1.2,2.66-1.82,2.47-.34l-0.47,3.54c-0.24,1.85.49,2.83,2.21,2.83h12.82c2.16,0,3.21-.87,3.74-4.21l7.9-49.58c0.4-2.49-.21-3.71-2.1-3.71H659c-1.27,0-1.89.71-2.22,2.65l-0.52,3.05c-0.27,1.59-1,1.87-1.68.27-2.39-5.66-8.49-8.2-17-8-19.77.41-33.1,15.42-34.53,34.66-1.1,14.88,9.56,26.57,23.62,26.57,10.2,0,14.76-3,19.9-7.7h0ZM635.78,458c-8.51,0-14.44-6.79-13.21-15.11s9.19-15.11,17.7-15.11,14.44,6.79,13.21,15.11S644.29,458,635.78,458h0Zm59.13,13.74h-14.8a1.75,1.75,0,0,1-1.81-2l13-82.36a2.55,2.55,0,0,1,2.46-2h14.8a1.75,1.75,0,0,1,1.81,2l-13,82.36A2.55,2.55,0,0,1,694.91,471.76Z" transform="translate(-143.48 -354.54)"/>
<path class="cls-2" d="M168.72,354.54h38.78c10.92,0,23.88.35,32.54,8,5.79,5.11,8.83,13.24,8.13,22-2.38,29.61-20.09,46.2-43.85,46.2H185.2c-3.26,0-5.41,2.16-6.33,8l-5.34,34c-0.35,2.2-1.3,3.5-3,3.66H146.6c-2.65,0-3.59-2-2.9-6.42L160.9,361C161.59,356.62,164,354.54,168.72,354.54Z" transform="translate(-143.48 -354.54)"/>
<path class="cls-3" d="M179.43,435.29l6.77-42.87c0.59-3.76,2.65-5.56,6.75-5.56h38.74c6.41,0,11.6,1,15.66,2.85-3.89,26.36-20.94,41-43.26,41H185C182.44,430.72,180.56,432,179.43,435.29Z" transform="translate(-143.48 -354.54)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

9
jest.config.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}

13254
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"name": "setup-uv",
"version": "1.0.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of uv",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build -o dist/setup src/setup-uv.ts && ncc build -o dist/save-cache src/save-cache.ts && ncc build -o dist/update-default-version src/update-default-version.ts",
"test": "jest",
"act": "act pull_request -W .github/workflows/test.yml --container-architecture linux/amd64 -s GITHUB_TOKEN=\"$(gh auth token)\"",
"update-default-version": "node dist/update-default-version/index.js src/download/checksum/known-checksums.ts action.yml \"$(gh auth token)\"",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eifinger/setup-uv.git"
},
"keywords": [
"actions",
"python",
"setup",
"uv"
],
"author": "@eifinger",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^20.1.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
}
}

63
src/cache/restore-cache.ts vendored Normal file
View File

@@ -0,0 +1,63 @@
import * as cache from '@actions/cache'
import * as glob from '@actions/glob'
import * as core from '@actions/core'
import path from 'path'
import {cacheDependencyGlob, cacheLocalPath, cacheSuffix} from '../utils/inputs'
import {getArch, getPlatform} from '../utils/platforms'
export const STATE_CACHE_KEY = 'cache-key'
export const STATE_CACHE_MATCHED_KEY = 'cache-matched-key'
const CACHE_VERSION = '1'
const fullCacheDependencyGlob = `${process.env['GITHUB_WORKSPACE']}${path.sep}${cacheDependencyGlob}`
export async function restoreCache(version: string): Promise<void> {
const cacheKey = await computeKeys(version)
let matchedKey: string | undefined
core.info(
`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`
)
try {
matchedKey = await cache.restoreCache([cacheLocalPath], cacheKey)
} catch (err) {
const message = (err as Error).message
core.warning(message)
core.setOutput('cache-hit', false)
return
}
core.saveState(STATE_CACHE_KEY, cacheKey)
handleMatchResult(matchedKey, cacheKey)
}
async function computeKeys(version: string): Promise<string> {
let cacheDependencyPathHash = '-'
if (fullCacheDependencyGlob !== '') {
cacheDependencyPathHash += await glob.hashFiles(fullCacheDependencyGlob)
if (cacheDependencyPathHash === '-') {
throw new Error(
`No file in ${process.cwd()} matched to [${cacheDependencyGlob}], make sure you have checked out the target repository`
)
}
}
const suffix = cacheSuffix ? `-${cacheSuffix}` : ''
return `setup-uv-${CACHE_VERSION}-${getArch()}-${getPlatform()}-${version}${cacheDependencyPathHash}${suffix}`
}
function handleMatchResult(
matchedKey: string | undefined,
primaryKey: string
): void {
if (!matchedKey) {
core.info(`No GitHub Actions cache found for key: ${primaryKey}`)
core.setOutput('cache-hit', false)
return
}
core.saveState(STATE_CACHE_MATCHED_KEY, matchedKey)
core.info(
`uv cache restored from GitHub Actions cache with key: ${matchedKey}`
)
core.setOutput('cache-hit', true)
}

View File

@@ -0,0 +1,55 @@
import * as fs from 'fs'
import * as crypto from 'crypto'
import * as core from '@actions/core'
import {KNOWN_CHECKSUMS} from './known-checksums'
import {Architecture, Platform} from '../../utils/platforms'
export async function validateChecksum(
checkSum: string | undefined,
downloadPath: string,
arch: Architecture,
platform: Platform,
version: string
): Promise<void> {
let isValid = true
if (checkSum !== undefined && checkSum !== '') {
isValid = await validateFileCheckSum(downloadPath, checkSum)
} else {
core.debug(`Checksum not provided. Checking known checksums.`)
const key = `${arch}-${platform}-${version}`
if (key in KNOWN_CHECKSUMS) {
const knownChecksum = KNOWN_CHECKSUMS[`${arch}-${platform}-${version}`]
core.debug(`Checking checksum for ${arch}-${platform}-${version}.`)
isValid = await validateFileCheckSum(downloadPath, knownChecksum)
} else {
core.debug(`No known checksum found for ${key}.`)
}
}
if (!isValid) {
throw new Error(`Checksum for ${downloadPath} did not match ${checkSum}.`)
}
core.debug(`Checksum for ${downloadPath} is valid.`)
}
async function validateFileCheckSum(
filePath: string,
expected: string
): Promise<boolean> {
return new Promise((resolve, reject) => {
const hash = crypto.createHash('sha256')
const stream = fs.createReadStream(filePath)
stream.on('error', err => reject(err))
stream.on('data', chunk => hash.update(chunk))
stream.on('end', () => {
const actual = hash.digest('hex')
resolve(actual === expected)
})
})
}
export function isknownVersion(version: string): boolean {
const pattern = new RegExp(`^.*-.*-${version}$`)
return Object.keys(KNOWN_CHECKSUMS).some(key => pattern.test(key))
}

View File

@@ -0,0 +1,3015 @@
// AUTOGENERATED_DO_NOT_EDIT
export const KNOWN_CHECKSUMS: {[key: string]: string} = {
'undefined-0.3.2':
'1aadddb260b5a9f3d44f5832a834b55a6fd1573bb657d62759495dcdbe212507',
'aarch64-apple-darwin-0.3.2':
'a70cbfbf3bb5c08b2f84963b4f12c94e08fbb2468ba418a3bfe1066fbe9e7218',
'aarch64-unknown-linux-gnu-0.3.2':
'6be360abe140f6818844aa3fdf6a3d004b2337b9c240be77c348bcf1f032e877',
'aarch64-unknown-linux-musl-0.3.2':
'65735e2776fae9ee3f4604f6d3c562f1f7cae203e428a6d8824a37379f469d77',
'arm-unknown-linux-musleabihf-0.3.2':
'68818f6b349260ae60bae969dfa048f45e4196c74a0639c4b9c3591cc0f56dcf',
'armv7-unknown-linux-gnueabihf-0.3.2':
'474b62fbbd461792e224dbc5e883a4bfe23f85aa2e3d45b6f1fda1b5be1ab0f3',
'armv7-unknown-linux-musleabihf-0.3.2':
'b66b76824df42c3057a9ed440a2d1630533a8fa1fbab3c99f237cecb0cbafc47',
'i686-pc-windows-msvc-0.3.2':
'26ddb27546bb7fc97758aed476938bd4469d9a6698292909b6e7820c48a3eead',
'i686-unknown-linux-gnu-0.3.2':
'44b11e3cb4e0e6e51e3a78738fa17da251975434b0d538dd6219fc221b520585',
'i686-unknown-linux-musl-0.3.2':
'37a8728fd5125990b4de3468a3f12b7242f336852c5c2b27fe14a81a7df6b579',
'powerpc64-unknown-linux-gnu-0.3.2':
'd4f02f9781be8e0bd2dc87481b1aa045cb37f2bb83cef20272a1a506ccffc9a8',
'powerpc64le-unknown-linux-gnu-0.3.2':
'6ca624ec97b6f13a65d8d0d4b854634b48e6b7b6f9dcd1433ebb584ee3164fcd',
'powerpc64le-unknown-linux-musl-0.3.2':
'7a50bf8228ec8ca60dc5ca1a1aaad4ece43d2ff08e32c0178ac0c5e652126372',
's390x-unknown-linux-gnu-0.3.2':
'b0ffeeba7605cab0058713be4f23a9772f8dcc0218d760ee22635f9caf4c56de',
'x86_64-apple-darwin-0.3.2':
'7b54003989387079ca27b8895a11abba7ccae60712641592c81e0edab4c668dd',
'x86_64-pc-windows-msvc-0.3.2':
'ee77cedd463673505bf6c060eb8149f3d3965c46090bbf76595d2b05a95e596b',
'x86_64-unknown-linux-gnu-0.3.2':
'4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd',
'x86_64-unknown-linux-musl-0.3.2':
'38d18a40c0bdf02f98f3ee35749c295638be37fb8699aa626ca5c87d0ad42512',
'undefined-0.3.1':
'5dce72d45cbbc0b661325e5f585440b977e095b6a29601059f509065f86ff9ae',
'aarch64-apple-darwin-0.3.1':
'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8',
'aarch64-unknown-linux-gnu-0.3.1':
'6d57e45392f7cffe62853f1f35382e8ac9d52f1061c97ecace28dbf50243e7e1',
'aarch64-unknown-linux-musl-0.3.1':
'2465eb291940c51cdf84c68d2a699d4026f7030cdaeb2a4e2801a3c4c0213f19',
'arm-unknown-linux-musleabihf-0.3.1':
'dba9127924bd5e809600b1554a8b91f8abde511cbe9ddb5027a9749254c7a531',
'armv7-unknown-linux-gnueabihf-0.3.1':
'e95c07dced47f3c6444c66f52378bfbcc0015281bda2ad79d308421a458b5384',
'armv7-unknown-linux-musleabihf-0.3.1':
'8c58b4ce189d5e1add276eaaf3d69c77de340cbbe79fec375333de00e4e360dc',
'i686-pc-windows-msvc-0.3.1':
'f5d15af65e0782f2459770afacb3ce8c5a4916566399e357c951618edbd27c9d',
'i686-unknown-linux-gnu-0.3.1':
'22508ed628b2966ec0cac3264db99337059f8c1cf70c0db0ee88d7d27f3e181f',
'i686-unknown-linux-musl-0.3.1':
'223b6920226ff5af37178b0511112d82af6dbcb24dd78230d972a17de6a4a0ae',
'powerpc64-unknown-linux-gnu-0.3.1':
'c4eb8e06853c0e1accb6ef7976ee52ffe21631709a3ff63f4a1523ecafd7354d',
'powerpc64le-unknown-linux-gnu-0.3.1':
'540aa375abc43c5fcb39e646ab7e3ebc14ebfb95264575c81b8c9c335ab4122f',
'powerpc64le-unknown-linux-musl-0.3.1':
'387459fa2cdfa3f9814c8a2de2a864a0be6ce159f76e831cd249f4b659edda5a',
's390x-unknown-linux-gnu-0.3.1':
'b469bd51615edb3ec245b0aeb9338d074a8832856029b331f2a949946e921cd9',
'x86_64-apple-darwin-0.3.1':
'8a4fc632bf32b49a08d1994e6a4054b535eb7f0eb85e618f30fae86375b34cab',
'x86_64-pc-windows-msvc-0.3.1':
'e57ebd003eee92edfaa909fffec3214aa032590566851edc5ce55824c4aacf8a',
'x86_64-unknown-linux-gnu-0.3.1':
'1ad8815d46435ab29923d84717dd0f8ee467be055cff5c4ba1d9855882a6ae19',
'x86_64-unknown-linux-musl-0.3.1':
'e9f8396a2c06d6c06c36338b795e2978645c2b3b0e6915537e1860dd0cd951ab',
'undefined-0.3.0':
'1f52cb03becdae308666b75ff6b193ca55267a762ecf98d99f8f4cc8cbfe5a5a',
'aarch64-apple-darwin-0.3.0':
'232935b3b2c187c4f8dc8bf533875bd7163d06a6fab625a1770689b337cbfded',
'aarch64-unknown-linux-gnu-0.3.0':
'27fca2b1fda6870e1e6d376276cf0e7d3ca87b7e5c3062ef1301d9e5266cfa39',
'aarch64-unknown-linux-musl-0.3.0':
'55bc78ee396f3b9847d28a83edbeeb557edd78462b782459d95fa9cad86cca5e',
'arm-unknown-linux-musleabihf-0.3.0':
'9305f0214f16eda22e72f4dd08c6b980243fe16a43b6efcaf11227efd1aa5d9e',
'armv7-unknown-linux-gnueabihf-0.3.0':
'e949eb495b199e6c5853f6b051e3c7db84c044453e443d7b7892aef4eb08f5bd',
'armv7-unknown-linux-musleabihf-0.3.0':
'c466e061a8547a669e216321738d02ca5c864eb4ab3feac53a51a681a07cb2d7',
'i686-pc-windows-msvc-0.3.0':
'1dbe4b2b9829bb11cdb3ec64e916749f6224f0db0a65bbba69570a8aa1289e2c',
'i686-unknown-linux-gnu-0.3.0':
'b5a7fb7e649de9fb0342fd42c3bb1c5e6dd25d96096e08af99caa276fa44dc07',
'i686-unknown-linux-musl-0.3.0':
'569ed9ac409ebce382e1583c33705e159bb960e79f9fe58feb9a357676be3607',
'powerpc64-unknown-linux-gnu-0.3.0':
'0e075944b22557da941677ff25fa21677cd1eaf8302782dd2c94643494f667e6',
'powerpc64le-unknown-linux-gnu-0.3.0':
'6886c917446d6b954eff5c688596a4216e9418560166271eac1caa722847350c',
'powerpc64le-unknown-linux-musl-0.3.0':
'560583853792f5e3e4d40594436d5f75cdbc9a4e304d6f781f601b9eeaafbfd1',
's390x-unknown-linux-gnu-0.3.0':
'72b1b81523466a0fbe388bbde0a6926ed0af4884cb46d1e46ed1c0232a076cab',
'x86_64-apple-darwin-0.3.0':
'8f3abf9bc7f49ddf85b1ebb4e5a5dd2032b6e7a4492fb5fce4b70ee4a9938733',
'x86_64-pc-windows-msvc-0.3.0':
'b8b693699b46d2063cf92ada07671a309f14ccb99b34f9b3f927f7fa08b24c19',
'x86_64-unknown-linux-gnu-0.3.0':
'06e38986b2923882ad250ac42c9e5db3295bde33693aa9a63b8d32632daba007',
'x86_64-unknown-linux-musl-0.3.0':
'194d2a550af3e334f693f6afd716d66adc90445805e72bfa8108f36714ed7431',
'undefined-0.2.37':
'bad5e3e29e3a795a789dfdce52b4ae4c252f95572539b075bc938870e6e7c1df',
'aarch64-apple-darwin-0.2.37':
'35786030f926e3d34d186edc0ea3989698e57755852af9ae4b39da5109abcbfa',
'aarch64-unknown-linux-gnu-0.2.37':
'ac1b4688074f5a2eab1fbe331e76b5f5766e143a8eac87f64f24379168b971f9',
'aarch64-unknown-linux-musl-0.2.37':
'ddec1dd3aced1a209645c0d4c8fc9bd9f3c6a4577c43a854efd6708440f34f14',
'arm-unknown-linux-musleabihf-0.2.37':
'd99c5c44ae042249b50720d3979aa5b82f61838ee76474a250ced23c09475a85',
'armv7-unknown-linux-gnueabihf-0.2.37':
'3fe173e1e1d2f1bf0196bf8a140f39bc4eee34d16c6f758e552bf2a40f82b579',
'armv7-unknown-linux-musleabihf-0.2.37':
'dd5a3225a8f39a4621425079f867decea4638e21d65cc9fc6803f1f6d4e22f6b',
'i686-pc-windows-msvc-0.2.37':
'4c024f88c23359f8c0a61a31f93197e1fcc0b6e2ed2ea17733b99494b75078c8',
'i686-unknown-linux-gnu-0.2.37':
'a041764c46d872124b4ba390bf1a9263fb52fe1b17cfbd5af85a0deaf66ade1e',
'i686-unknown-linux-musl-0.2.37':
'b307f7dd65a3175aee4283603c0107496de14e431614ab10060d89f4c9ceaf31',
'powerpc64-unknown-linux-gnu-0.2.37':
'c4bee003a56938110c1e9d1c1843837149f20696c35d148567b1106223f06200',
'powerpc64le-unknown-linux-gnu-0.2.37':
'c54213db80c976487f54e5521f73010029da1bcdd22136a52a9976deca30db9e',
'powerpc64le-unknown-linux-musl-0.2.37':
'8da6a98b7bec35b6333b33872c641a52070331192da840ea5716fbd182f66e27',
's390x-unknown-linux-gnu-0.2.37':
'5603fbd953a980203c9f6adec0482165a3b8274b2202a9fe46e1ec3168d4386e',
'x86_64-apple-darwin-0.2.37':
'13185dd359d6b3c3c0e170711b2939f3512741ec64c436e0bef83813e94a6691',
'x86_64-pc-windows-msvc-0.2.37':
'ea51e0dfdc0c1884d116b5a12b589e65bb47d0b2d071d6da4a23f453585be144',
'x86_64-unknown-linux-gnu-0.2.37':
'2aa80df3a7120a13fe8cfd0ced688a6285e58c40cfa878e6de817356914df485',
'x86_64-unknown-linux-musl-0.2.37':
'a4ec0d06361c27a87111212623559da332382c2ead25c1f4c9386adee9905b62',
'undefined-0.2.36':
'6e7e0950c5808eea0bda615ab5d2e9fa517434edc0c17d0766cd47606241c060',
'aarch64-apple-darwin-0.2.36':
'89f0f76695ee554cdfae60245667b795ffeac7e4d52c0b7fa90bb46d4cf95d59',
'aarch64-unknown-linux-gnu-0.2.36':
'8bbc36002d398b5d9febe93be913d42d2844944451189cad6ff2b844c604f499',
'aarch64-unknown-linux-musl-0.2.36':
'921a5c069a74608e63e7292d606b1cf0096ffd0914f28bd825968ac66ab3a77f',
'arm-unknown-linux-musleabihf-0.2.36':
'349369041c1c86c69bcbdbc3fa2bb0d03e864a95db5e50ef0c04ee67c4e0d428',
'armv7-unknown-linux-gnueabihf-0.2.36':
'42d15ec25a0e04fcda9e6e7501e8cc51d17e593a8758ec76e686381336ec6302',
'armv7-unknown-linux-musleabihf-0.2.36':
'eaed31f496ce42bccbe17eab69d36351c67d3832f9c7740e33c34a3edf5c5451',
'i686-pc-windows-msvc-0.2.36':
'b8a3fcaf5e66ae916f31d8c1df8a7d32558eb8e852087c6038cc80fb3e04dace',
'i686-unknown-linux-gnu-0.2.36':
'1f0515ebd04690b5f09b5a55531eff3595fc778d021bf6b33b5d5dbfdd76ce0a',
'i686-unknown-linux-musl-0.2.36':
'07bb7a141abfe23d0fbdf30e0840865671f491228288cd851d943a984ff5982b',
'powerpc64-unknown-linux-gnu-0.2.36':
'9ec964f73faa23b52e8022086fbffc8f77dbe346e5a17344967a290c10ea0143',
'powerpc64le-unknown-linux-gnu-0.2.36':
'f7cf2055c9048faebd75665487d20a55812e37535c6f8393a97f715f40482433',
'powerpc64le-unknown-linux-musl-0.2.36':
'03c3221271bbde6333be35e7bdf0576a73165f8f35c48e33cf09b8e14f907718',
's390x-unknown-linux-gnu-0.2.36':
'91788d177f47e3a6db63d5d619f622814b1407b673c311873b4868f223eb2ca5',
'x86_64-apple-darwin-0.2.36':
'a8c08a6c978b0ef87c00012d892d936324dc9a6881efefbd028622b69c903aa5',
'x86_64-pc-windows-msvc-0.2.36':
'ae6e07bd2c0843a0ffd18959a519c125bcc444d4ad1b71c00e7c3734bed0777e',
'x86_64-unknown-linux-gnu-0.2.36':
'6fbea0801c1698d00b2300b220d4f72a4edeb0406877ac6d774f4ff385b6fbe2',
'x86_64-unknown-linux-musl-0.2.36':
'd3543c84d8b2da5d8f08b6f2e87e792aa7626c47cb65458c7b92e68e8614d3a8',
'undefined-0.2.35':
'19425afc472eb6e7ff6c4abc28ed2582af977aab1b1d7f15db34ec9579ef9095',
'aarch64-apple-darwin-0.2.35':
'e07fd0ed3b5e92ce9018f8775aa76cfd891fae8cb0a1627d5a861158fdbbe32a',
'aarch64-unknown-linux-gnu-0.2.35':
'41d1a15fbd346ca3b33e8c60e54bc36df11a8e8655e98e25801847c270e1b6f9',
'aarch64-unknown-linux-musl-0.2.35':
'b8c920e4d335f09ab032087e0f27b4beda00248577ae708fbebf0362f7b19818',
'arm-unknown-linux-musleabihf-0.2.35':
'd50f55d2cdcca7aa7542e73482106fa8413541ad17da47a2a9be612a0b53dc74',
'armv7-unknown-linux-gnueabihf-0.2.35':
'322b8564e20a860d5d6e0d9de950f2f0d8204ed7b7a9605f25c0039cb01ac6a4',
'armv7-unknown-linux-musleabihf-0.2.35':
'5f2a37d0414c8585770721139fcad061f123f312ca85faebc70f8836bc5b0c30',
'i686-pc-windows-msvc-0.2.35':
'2bd193bb68095b21b86a1126a6fe7740a36bd76cdbb606f51b0da6f19214487a',
'i686-unknown-linux-gnu-0.2.35':
'44719f49c7e7d634db35d9656f2f168fc13042ab87ee9afe8f04c864a3c341b9',
'i686-unknown-linux-musl-0.2.35':
'2cb162263ee067df2a10c3f9c9959835862aebc17402b7e0decff4a0dda30b45',
'powerpc64-unknown-linux-gnu-0.2.35':
'31ca8623f79926496f78d335839d13d15c66c7e164804604e8f4535be4f5be19',
'powerpc64le-unknown-linux-gnu-0.2.35':
'b1d797f9a9f413f3d3f884accd47a97c84d64145407d458e4442b4d011aa39b6',
'powerpc64le-unknown-linux-musl-0.2.35':
'fc7e73e1af403cb91a0b4d6bb3d133facf93d0c28c188bdb5f9294d4e1e0e657',
's390x-unknown-linux-gnu-0.2.35':
'f52ffe9ceb3817df9a999194ab32fb8f997707a44e6597dcede0df238fc14c77',
'x86_64-apple-darwin-0.2.35':
'f8159e1977b00cf99e120858253ee675a66669b820e63af7f7e7e91cf6a3b9da',
'x86_64-pc-windows-msvc-0.2.35':
'1bbb2a9a81f609a5f257ed066e25902bba995ca2ade3cbd4839703ffbd221071',
'x86_64-unknown-linux-gnu-0.2.35':
'f1a9bcbcc3e085fb5ee6a79f5778373fe27fa192d95fc47db20c596789dd1b97',
'x86_64-unknown-linux-musl-0.2.35':
'bec7f54d33aaff97098157b4893b9d4a93200c2902772cba13d60c266a54d087',
'undefined-0.2.34':
'2c8167c6b14738d2d94cc864cbcc5a2f4b45d9136f8cbed348dba937a03927fc',
'aarch64-apple-darwin-0.2.34':
'2eebf71aa924d8d977983394c212cb3ad99f6e241e77702822e8f407c8e231e0',
'aarch64-unknown-linux-gnu-0.2.34':
'022b805b4d0360e4441fb94262e6a4cdcde9038aabe156242ba833e1ed00e0c3',
'aarch64-unknown-linux-musl-0.2.34':
'227cd1dabb4ebb98e51c1b7735fa94dea96e14db7efb2d3d76b48c87a61a3d28',
'arm-unknown-linux-musleabihf-0.2.34':
'b71616ec27d83325f0b1f5a801181da201c2bc0c148c20006a40e48adaf2ad6f',
'armv7-unknown-linux-gnueabihf-0.2.34':
'5e3ff5bbb4159b7a2f9768caab5bcb692756509566ef52fd5eca129b2e0949b6',
'armv7-unknown-linux-musleabihf-0.2.34':
'7366c01e5996b7d5251423ae37bc3646e919b39a0d9f1fbde25e3215134a006f',
'i686-pc-windows-msvc-0.2.34':
'34035c24e9c6dcf1164f10fee22e12fd03b329479233986909458df3259cf22f',
'i686-unknown-linux-gnu-0.2.34':
'99c3873d4bc3816c383c0e2686de1066be1ca8ff546e29e418e435296df13ae0',
'i686-unknown-linux-musl-0.2.34':
'e659c3d71edba36fec7b9d742c5c4c3172a22bc409d713bb2d944a8a916d221c',
'powerpc64-unknown-linux-gnu-0.2.34':
'e5b4e6c20f5f79abbc4e9eb3881ea2b1edae1ad747980d7a2e062f3be09478df',
'powerpc64le-unknown-linux-gnu-0.2.34':
'125035676a19c335f6c8af34ccf69d5df144183c13649e823cc0959886a11cae',
'powerpc64le-unknown-linux-musl-0.2.34':
'728c7750d408d3300437fb79b74b126e5b49382b45b45fa22d49195ebd19b2cc',
's390x-unknown-linux-gnu-0.2.34':
'0da036696c1decfa388ebaf98e779e8085fd2bb76a91128bf2445fe32c84c053',
'x86_64-apple-darwin-0.2.34':
'62764007f4553f3677ef86e864097405d1b054e8a62e89f047e545816347491c',
'x86_64-pc-windows-msvc-0.2.34':
'd237ebacb6f4a651fbad3af702f29b8262b825e070c87e9020d5164936459393',
'x86_64-unknown-linux-gnu-0.2.34':
'cee114bb3c73a4be5066660d71eea1ac996378f567ba69fb7f29c688289245cd',
'x86_64-unknown-linux-musl-0.2.34':
'd1d49d2d3e1e2e2ba547b6cad8b1ad279cdbf622fe5b3fe3b6d470d7a06e3c92',
'undefined-0.2.33':
'7dbdfb20366d96745ab9e48c0d8bd0a88926f0eef4675876fd45e4ecc3942cb2',
'aarch64-apple-darwin-0.2.33':
'a2602b99e71bc04d7eb11df00b87be068727bb47fc415f7fcbd24dae49c947a3',
'aarch64-unknown-linux-gnu-0.2.33':
'd4d24e221c5f1c9b0f2bb39b919c933259175bb9db37845a92d31bf241f28035',
'aarch64-unknown-linux-musl-0.2.33':
'9d4ba96eee49b9483fd55ab1b376ed4b9f88f0f9d155c0e48e7280d3cc388d4e',
'arm-unknown-linux-musleabihf-0.2.33':
'9940e8f34a702e6944ce953208c1abac7bc9fcbe8348dd76c3b5eb62c1125126',
'armv7-unknown-linux-gnueabihf-0.2.33':
'08b9a84370acc5ea1631a8fff94bf7522305612da3c24c612fc1d4fb5ecd3839',
'armv7-unknown-linux-musleabihf-0.2.33':
'fa5a2cdd3714a2f4b8d6f64c86b988e6c7189d67411814a6c20905992201d16c',
'i686-pc-windows-msvc-0.2.33':
'69c5d28aa75d0ce3fa5466736e2e156db48514cd7c9c44e6bc6515994944695d',
'i686-unknown-linux-gnu-0.2.33':
'176caa5100e047b32e84c0c7ce1a31f74610b3f94266f5aa3f86d02417fcdfb6',
'i686-unknown-linux-musl-0.2.33':
'f0d93ceced329740403cde3c0e6f44325aee40b5619c3fc855e602f1829bf731',
'powerpc64-unknown-linux-gnu-0.2.33':
'7aa9bf5a765801bdfda72b491d716cf08eea7d4821c41698217732a403b7eac2',
'powerpc64le-unknown-linux-gnu-0.2.33':
'329aab924d8572d6aa19e2c2e225beb5bcca8bf04e62cc023941aaa06768fd6d',
'powerpc64le-unknown-linux-musl-0.2.33':
'1c99451ea9d95732e78bf3c612bce889a1815cf333406857b170986739fda597',
's390x-unknown-linux-gnu-0.2.33':
'095a4b15583e21d521e7954b5da62d5a08b69a08cdfb8847b3b5318e054c29ce',
'x86_64-apple-darwin-0.2.33':
'0d4a2c20e1d0e06c83a60fac0d85bff46cd5312f146dd0f6bf35b63ae8f7a9fe',
'x86_64-pc-windows-msvc-0.2.33':
'c080525062c3d803e63ef493002f234056dd6efe6d0281d86d672510702823d3',
'x86_64-unknown-linux-gnu-0.2.33':
'e62a4123e6b77c9dd22f133212f7bac638077ebde73daa20fea3bef3ac51c84c',
'x86_64-unknown-linux-musl-0.2.33':
'5f6842bd7a800a83c568b7a2cf18f4d9428e929e7ea91d55cc8d53e0a0c10c42',
'undefined-0.2.32':
'b7694bd29041e5315cbd7194253bb865a51369e19897d7b6b303f4d6255477db',
'aarch64-apple-darwin-0.2.32':
'5084b7544da648d3467440f87a3f2929ca7c593a311a3b77271b638ca7664f3c',
'aarch64-unknown-linux-gnu-0.2.32':
'97879b661787586ab3a747d9a65a0c295d9ed445001b5860f9ff2923ef07d824',
'aarch64-unknown-linux-musl-0.2.32':
'b3fff6bb0ae62154c5d17256b40f3d568a7bd7037e4839cb672545b16cd8622f',
'arm-unknown-linux-musleabihf-0.2.32':
'9b3957aea729f36d823a59ae0dba033860f5904cb42215d55c7857d2d1fb3340',
'armv7-unknown-linux-gnueabihf-0.2.32':
'c3afbf787fa9b2cc8fcfaa74cf0fc723d224d56b514b0851dc0901747b03fbc4',
'armv7-unknown-linux-musleabihf-0.2.32':
'33941dd54c28c6b56f105cd198e7ca7ea480676bda71b0c5e31b55a1493c4acb',
'i686-pc-windows-msvc-0.2.32':
'7a449bc0fe9326d31ad809c8cfbe19ba2b67b28c9dc631bb6f1696334442d928',
'i686-unknown-linux-gnu-0.2.32':
'1c91f7ad89b5697a33906be435fe6b9fad903916096ef61f034257252a8e4c86',
'i686-unknown-linux-musl-0.2.32':
'ba1b6775f17d1522a6ba69655bfe792ba0b4c9ed481edec08ee56bd74d0d5368',
'powerpc64-unknown-linux-gnu-0.2.32':
'e5e0d7b9ce6db091ccd8b642d11e65205650cb9b02514fdcc9ca35b699cce0f6',
'powerpc64le-unknown-linux-gnu-0.2.32':
'60534e2567ee4b84922d4b6e39000a2709bfa7f2cb162c8c0a2274f3c4ccd2d1',
'powerpc64le-unknown-linux-musl-0.2.32':
'732bb92926d033e22bf65c671ecca31f5a08f15b696fa944e7f57d70a4823f1f',
's390x-unknown-linux-gnu-0.2.32':
'80420ca075a995f2171b68d6311a304da59461c39594db88d146079f2656b51e',
'x86_64-apple-darwin-0.2.32':
'e86f3bd4e7c30b0e4094d1eff520d762fdfac9e55da785db23b0139b675aeda9',
'x86_64-pc-windows-msvc-0.2.32':
'1725fafdcc1390574b8682805ec31ebc9287085f562dc7ac6a64b186abaf1b0d',
'x86_64-unknown-linux-gnu-0.2.32':
'c676266d23c8dbe7832c44f37832c4e4ecf21781b7b0560bf27b270bedb14462',
'x86_64-unknown-linux-musl-0.2.32':
'e7deca89ca4e273c57adc45cd91e83377c74916feb9ece311cc93c8a8ab2c2e5',
'undefined-0.2.31':
'81dcedc57262b565ba3f9f6a20d368a2be304bbe845121f849d1c75c6d4b53c9',
'aarch64-apple-darwin-0.2.31':
'34938bcc045b35a646aa768d660755e838a23ab224ea3687dc577299da227fb3',
'aarch64-unknown-linux-gnu-0.2.31':
'f8d46c40c3f6ff762e5f0408a151f4e2ce97ff878625b0c9bd5ca13f14e576e8',
'aarch64-unknown-linux-musl-0.2.31':
'f2bdf2132993b1dfe50ee610e9df2a56cd89f0346d9d8a5cc3275b47c4c5e7a0',
'arm-unknown-linux-musleabihf-0.2.31':
'8c4628e19a571ca7480b48c6ea739efeae2abfe08e07fb8f8e7b0f49887af223',
'armv7-unknown-linux-gnueabihf-0.2.31':
'8e7879750c682fbd3619ced0770a43afa902865a839cc84fe361bf5a9f55154a',
'armv7-unknown-linux-musleabihf-0.2.31':
'051c6f44f5f1607ea5f11d8a73cc91064a29c7293d6d050d2d7ae34c9d1ec680',
'i686-pc-windows-msvc-0.2.31':
'382c7007bdfa6f02d436b552fee33d2d2beec5335410b9fe308067c094f95742',
'i686-unknown-linux-gnu-0.2.31':
'dcecee22480a73c9a31fcf76cd633ab4c4befb10180e61b1b298e78a85ea7f8a',
'i686-unknown-linux-musl-0.2.31':
'990d1ac694f8d4bc31b79a0a64817d0781f0c59a42e57136cf9165dbb7aeab2f',
'powerpc64-unknown-linux-gnu-0.2.31':
'3b556388d586f24e37c6e6478b97d4519a402b564b7a70f1ee5f4d86352547ee',
'powerpc64le-unknown-linux-gnu-0.2.31':
'c2219e0285a14b8d1dbbcbae750ef9b66a3567e862bec3fc2f55e465941f78fe',
'powerpc64le-unknown-linux-musl-0.2.31':
'1756ca439bfcc86b40ed3d987170439212c54118a5741a0af662892817e46f93',
's390x-unknown-linux-gnu-0.2.31':
'98a83bcfdeaff40772f7338538ea8a1b94ae60a94b20e552a80efd0ef4db7add',
'x86_64-apple-darwin-0.2.31':
'8674abad2d95099de054c92a9310d95466932176548a57916fb5f1c5674db790',
'x86_64-pc-windows-msvc-0.2.31':
'e5779b76db0ae0334221a1dc9956b97dc10969735750777717551397a2b48e31',
'x86_64-unknown-linux-gnu-0.2.31':
'351278978126eb9a74c4d735d3ee2191de5cd492fcc1615cc4c1107ad3e632ff',
'x86_64-unknown-linux-musl-0.2.31':
'003e8ea52e2b8383009f5d2bc78becc27f6c97bd9f6837140162cc25247a465b',
'undefined-0.2.30':
'1961bf9f481364dfd34c2fa1922152d0901f230de444b168f2d7e29c5b48de5d',
'aarch64-apple-darwin-0.2.30':
'387f24ebf55f304352bc5fc4638ca251112ab682291a00290de3753a1b5092f7',
'aarch64-unknown-linux-gnu-0.2.30':
'3cb0b65d21961dc36044562b9ba9462320e1106bb40f55e5ec03614c83a8fe0d',
'aarch64-unknown-linux-musl-0.2.30':
'4b4e5fb2ca63fee674a32ed99e1c371d4dcfe194787c3bddc7bef37b4ae3fd24',
'arm-unknown-linux-musleabihf-0.2.30':
'aa68e7f58b1b6b31481f104893f44acdd57ab712f17429f3bb6ba03ac3fee370',
'armv7-unknown-linux-gnueabihf-0.2.30':
'355672634f530981171c67c7d99bda999bfd66b4273d0d292ce3f5db25118213',
'armv7-unknown-linux-musleabihf-0.2.30':
'b3fa035bb0b493ab7bb65ff4d5c6c6740a8804815acfbd50c718ec03f6876e33',
'i686-pc-windows-msvc-0.2.30':
'2ce7b022fab83161cf9b26a8413702ab328c2f01a530a2739712527acd769068',
'i686-unknown-linux-gnu-0.2.30':
'6777ab4ee773df50790da19586afe41507dd9b4c69db39e09154cc013e066aa5',
'i686-unknown-linux-musl-0.2.30':
'2145948b75e56106618e2b7a9cea916194cca7768c7e83a3e06095e4690f214d',
'powerpc64-unknown-linux-gnu-0.2.30':
'7287d8034db3f1e071ea1098f7fc0cf8fd853c7731d37f59e374e9c771d92026',
'powerpc64le-unknown-linux-gnu-0.2.30':
'b7c8a829b869e11e64ca9fa1d748b5094e1841c6487f017b70117d826dfe6c46',
'powerpc64le-unknown-linux-musl-0.2.30':
'cb83556e2cb6f6d7731c436dd3ad1b048d323622d6d37ecbb3e320d7dd0c6d39',
's390x-unknown-linux-gnu-0.2.30':
'c8f623ad3da4bc425185fc026b52b80a86b796955dc65ccaf67e7a4778bb05c6',
'x86_64-apple-darwin-0.2.30':
'4048630dcfca6946dd8b7f2e8ff38dbc54a9e47ae50f9e04a372081c413e0b66',
'x86_64-pc-windows-msvc-0.2.30':
'8cae7297892b5cd947fc8dc9ef045dc82c8a3c948413cbc68aa46285b888031c',
'x86_64-unknown-linux-gnu-0.2.30':
'572a09703b40680191f4da33ffad2ae57cee93f0007f1eb25b84d241b0b418f2',
'x86_64-unknown-linux-musl-0.2.30':
'430aa21ca5c6eea5731dd5f3f8c0a364160a6e2d7153dcc0b3941ecc06947000',
'undefined-0.2.29':
'4cc0762718440d622e351871e568dbbd1b4325a0a362bea4158adc81bf81826b',
'aarch64-apple-darwin-0.2.29':
'34e214671c640b72e7805ae4802ad774f9e7636d59361b6434f38950af0fc6c3',
'aarch64-unknown-linux-gnu-0.2.29':
'ada417de9049b4e16cc4b31de1096e19835bd971569f6462d3c6d24ce75006b9',
'aarch64-unknown-linux-musl-0.2.29':
'77607a17959e650fa085a28f74b120db065833957a8306ee458a06e331433a21',
'arm-unknown-linux-musleabihf-0.2.29':
'fc91ac746a94ae16bfb1fbb0fff159d9df6e40b7ce67f91dc7ba7984d417912f',
'armv7-unknown-linux-gnueabihf-0.2.29':
'9ddfcbac00d7594e3c99ea4a97fe3a63895266a5993ae458e70e05e6834e3247',
'armv7-unknown-linux-musleabihf-0.2.29':
'62dc5eb5430aca18e02b0f8b156716bdcda15ff4a7605f4129500d6f18d157d7',
'i686-pc-windows-msvc-0.2.29':
'0ff66ebe55fca07d6637b39ff9b9cf8169c726d5c3d3776e232b8cee2b04b22a',
'i686-unknown-linux-gnu-0.2.29':
'719d62f7e8e48fb746454c817f8ba094958f673bcef3bfbf0a3fe21b9d9fa296',
'i686-unknown-linux-musl-0.2.29':
'c204569e573555810c54cd7fdb96cac3ecc1014d69fb3017b44270413313a212',
'powerpc64-unknown-linux-gnu-0.2.29':
'c4e63df2e3843c1fa9919df76d00996ec2f8d733b81f13673c7f09ddc5e8fd85',
'powerpc64le-unknown-linux-gnu-0.2.29':
'b18ed91775d1a715f975c91a3b9a16f53b7c5e25ee6d9101493f1091c425edbc',
'powerpc64le-unknown-linux-musl-0.2.29':
'7a35b550385b8131561de362d769da1477b3c22a9eb3c9a42f4e758971d56b01',
's390x-unknown-linux-gnu-0.2.29':
'47c3b46b281c46a1379a9ec3e11748e44c33b613582f294f3fb5794270c49d90',
'x86_64-apple-darwin-0.2.29':
'8536255454ef7c9875d64baf7616cfdad6ce263270860f34b6ec38f02faffa0d',
'x86_64-pc-windows-msvc-0.2.29':
'45456b9383097670a5f05ecb1288f9d6b7f7d84889ae7b6022130feaae834334',
'x86_64-unknown-linux-gnu-0.2.29':
'1199ddcaba212d1909d934b7edfe24ee39f6ac60cfce1a558d74d082f9763937',
'x86_64-unknown-linux-musl-0.2.29':
'a7529403581edef6e1e34d1b7c321540e526105aedaea1672cb0f37cc1b5da0c',
'undefined-0.2.28':
'4d42d64676b09efb34a01c867a6fe2acf9cfe9be8d8886b08177f837bd615234',
'aarch64-apple-darwin-0.2.28':
'b84fc81eecdeda15f9cedc1634685104463798903ad2241f46994bec17bdc5be',
'aarch64-unknown-linux-gnu-0.2.28':
'103fa6a5e68562376351d174bedb5013dcc52b0a7a27258336b87a7186aa10be',
'aarch64-unknown-linux-musl-0.2.28':
'bf23111a512596da533ad21ef94ea1758957f0f12ca9a306b298617affa4db8d',
'arm-unknown-linux-musleabihf-0.2.28':
'0b0113d0326fae2e99c9ac6b8a66607f74aadae7e9868149439472fe6c3fabfc',
'armv7-unknown-linux-gnueabihf-0.2.28':
'6e50f4f5690f0135b30d0f6e4cbbceec1909bdef10b1996abb42042b6b28c64b',
'armv7-unknown-linux-musleabihf-0.2.28':
'ec9bcd417ccd5608d8f6f053b84497204704c6439c04e80ccc9cd4ec379a3fc3',
'i686-pc-windows-msvc-0.2.28':
'75de1d50a1f5d19de6794375762ab8afefb0b0c4704d6c599e5af6cee84ad0e3',
'i686-unknown-linux-gnu-0.2.28':
'b01214f008a456aef5acd9043fe13ffadd8bc7975912f288a4afc7f26ae1136f',
'i686-unknown-linux-musl-0.2.28':
'ded399ffdfda93b56c78a29eb3889f7e8c0700348af73207972940e66fb45c43',
'powerpc64-unknown-linux-gnu-0.2.28':
'5e1cda75b920f9478f4711a3420ddad07d2d25b5f7eae93430968a7af57568f4',
'powerpc64le-unknown-linux-gnu-0.2.28':
'0b246ecc617ac22c75170bf9db20ba03fee0df46f7adf6b42a3f949f5316e380',
'powerpc64le-unknown-linux-musl-0.2.28':
'8928c0ed5e2a5ca68989d823ac813592c25de7c2c2e77c999cb79f50b6c9425f',
's390x-unknown-linux-gnu-0.2.28':
'b865fec71668ab77aee6f6ffc823a3fc4f92ac04d0746755e1fb624fd3fd7f75',
'x86_64-apple-darwin-0.2.28':
'52da204e0117cb65471ff2e17b449f69adb6091720e0290721aa2a9d7947f6d6',
'x86_64-pc-windows-msvc-0.2.28':
'7635ff298ddfde400e00054ba31d88a139dbfec234578f10376984f3e0aa36e2',
'x86_64-unknown-linux-gnu-0.2.28':
'9c6cbe9f7d7b2abcb45e028d82a5986b951af76a587c93c99922ba0e71c7f21c',
'x86_64-unknown-linux-musl-0.2.28':
'ba2656952c1dd29e400a9d21a7b923b26f1cc8a4b29468e7c99fa4613034d837',
'undefined-0.2.27':
'2dc0595cca3a3167832c87ddb340138fa77e682472791ff9c4bf4ddf39a7364e',
'aarch64-apple-darwin-0.2.27':
'd071d3063933e2e98322619bd4318594e84b7f6ce4f6c5c13a2ef424b0704bb7',
'aarch64-unknown-linux-gnu-0.2.27':
'c390e4791f3bcb44041d326f6a7aabb2498a610d2b1d28964c3fa8de97fa7dc3',
'aarch64-unknown-linux-musl-0.2.27':
'f7ad07f32e01dfdbd6b217c7f6acd7822eb6600d9992d204b93bfa0749bc6b29',
'arm-unknown-linux-musleabihf-0.2.27':
'41df51f4a9de2258973c6f0b80d6122475f18909d3905135d9b0defcb0222737',
'armv7-unknown-linux-gnueabihf-0.2.27':
'0316c82068bd34faee8a26bff0b85c25951a10fc54bc2ec5bfae64dc00e4a58d',
'armv7-unknown-linux-musleabihf-0.2.27':
'8553382a71fbd84e351f732ece7513e1b36a294dfb2949d956a45e389a397b6b',
'i686-pc-windows-msvc-0.2.27':
'6183e4fecfe5404dc69d9cc23c248441ba25a21541c8046c8a27b09a63f224b7',
'i686-unknown-linux-gnu-0.2.27':
'4def707256649e6ad40ad33c8c00464d163728a969e54baf94f9d8463b4b89d8',
'i686-unknown-linux-musl-0.2.27':
'383bdad28c1a571856aee566f37f888c65fa36385d9e0fff50950dd4280d09c3',
'powerpc64-unknown-linux-gnu-0.2.27':
'bc7161175d823aa92d27402e137d1753da1a37fb6d2f7fe534e829bf7f9317cf',
'powerpc64le-unknown-linux-gnu-0.2.27':
'bd8eb63b1e3de60279c8daa045f3f738f4f533787302fa0199275b8624831f8f',
'powerpc64le-unknown-linux-musl-0.2.27':
'9eff96f3761db33e7043cabdc38b5e49011929dc777ee44f1ea3c4747ee07dd9',
's390x-unknown-linux-gnu-0.2.27':
'4a8e46f67995c86e955416907b4b37558f9df6786851e943ae896f22fb6a3bbb',
'x86_64-apple-darwin-0.2.27':
'56be1ded925e7c1852f8853f7637942786ae379c0ecdbc88cf101f17f8413129',
'x86_64-pc-windows-msvc-0.2.27':
'1ea0b0623c362c47c6d00801e09ddf948cc27cc18200e5390469e279dfb85d29',
'x86_64-unknown-linux-gnu-0.2.27':
'224cdff5d82ff7053d1a9bf61e5ae89961d536eb2da8a4a13b93a49a0ab434bf',
'x86_64-unknown-linux-musl-0.2.27':
'2fa8e18d3804863c1355ef8b0688530c1a57b1981be69476641a8dc87c812d60',
'undefined-0.2.26':
'1ff81cb3c0618cfcde78b67ac1b1267a09ebef69826e20599aa92ed6e57b6321',
'aarch64-apple-darwin-0.2.26':
'e99954e3853a367497f66ed5ec1460cbe0c527e5664732eb2407ffc375cb3207',
'aarch64-unknown-linux-gnu-0.2.26':
'93595aa21aecddfafb3573db9b83761a33d12f9c20ce38bd0840262fdbcd94f8',
'aarch64-unknown-linux-musl-0.2.26':
'824c3a1e4eba63370232998dfb34964afcebd00fc79b4c7b4e9a1c5d749cf08f',
'arm-unknown-linux-musleabihf-0.2.26':
'100c1bbb2b5f09b7c2ca0e9ce9b0c36e8870a2f8c536b24a8098b4bb5375edb7',
'armv7-unknown-linux-gnueabihf-0.2.26':
'd42cd9db133bb16faa844f46baba52184a3cba5ad6f428bdfb0f3a5d85d01951',
'armv7-unknown-linux-musleabihf-0.2.26':
'370e1a42247359f275dd2e68b6e7279b1718f7ce8148492a291c7851effd7291',
'i686-pc-windows-msvc-0.2.26':
'ce1118475dfd9636c873b5d135f2f238f522f069955653805def0196ba2c227d',
'i686-unknown-linux-gnu-0.2.26':
'81408c83605c95ad7f5431100293970c040a2f78651f8de6269784999c283932',
'i686-unknown-linux-musl-0.2.26':
'c6b6dabebbf86c533f75150f67be276d0a934c13db1922597cacc086cd64e6c2',
'powerpc64-unknown-linux-gnu-0.2.26':
'7c094b2a084288d586bad962330648c19c02faf421590c1542c4c961db5b28f6',
'powerpc64le-unknown-linux-gnu-0.2.26':
'ee28b5db562c13f9262799cd407373734ef4aac229f4436cf4478117ab70d2dc',
'powerpc64le-unknown-linux-musl-0.2.26':
'577babbcfaf8ca472286b492164ac49e0209a18a014b93b340be73c563bbb915',
's390x-unknown-linux-gnu-0.2.26':
'f08d8559b2f73c3b112edd8414bcba3a94d0a1bc986099a2d24e4a24ba68ceee',
'x86_64-apple-darwin-0.2.26':
'f7dfea29cd87f8e8ad893fc50fbdd06270de392c79fa42f6e9ef8ebb61ce6c5d',
'x86_64-pc-windows-msvc-0.2.26':
'7bd19cc12f927dcd29e61ea1ad428d4c7315a01561d05ce32d6f9c09ee5ce972',
'x86_64-unknown-linux-gnu-0.2.26':
'f70997db1acf979b626e23236c289bfbf418e17ffd18a7956d8cf44e6f3f5522',
'x86_64-unknown-linux-musl-0.2.26':
'aa61951a7101f9de68265425a64ea2320d2ac1857001293274a338becef63180',
'undefined-0.2.25':
'71916afae3d93c2147a08324c8455cb4d49a168ceec5123fea7bc4fac5977703',
'aarch64-apple-darwin-0.2.25':
'79887e314f1614352852b45aad55bb533b45add7ba239faa50cc0122665a941d',
'aarch64-unknown-linux-gnu-0.2.25':
'2d45144527eb5aaa1e073f1046d510b8854f24553bbbf883d0971ac10721a1ce',
'aarch64-unknown-linux-musl-0.2.25':
'34fe01cb0ed953aab2584231875b7f112d306955a92d674edcae4632c475bd2f',
'arm-unknown-linux-musleabihf-0.2.25':
'368bd210f1ac181879d8394480672243e10710d41fbaaff46d5195a5f13f7ed4',
'armv7-unknown-linux-gnueabihf-0.2.25':
'a107c831168cd40131be62193cc9ee8516868542e14d08c649d7767bf74077f8',
'armv7-unknown-linux-musleabihf-0.2.25':
'b3e910c7c857dee9436ecce2a5c706a5f70c8e443e10c007a994741d5f0ead54',
'i686-pc-windows-msvc-0.2.25':
'4d787b0549b4ded295ada22a5fb6764588bedbcd83e73a1185292c756922dfe8',
'i686-unknown-linux-gnu-0.2.25':
'8f16d242447721557bdd8b5a4eb97c06d031e02f5f3acaa6c3a0dbc210fd0bb6',
'i686-unknown-linux-musl-0.2.25':
'9c0ab30932a97e8ed1b64a6ddcff313b32eba2a51a46b5aff595df1af5b6b91c',
'powerpc64-unknown-linux-gnu-0.2.25':
'f36f267441929b6dc21459a8244b70477877e03ad0a72e5cadce4518f81c141e',
'powerpc64le-unknown-linux-gnu-0.2.25':
'2ad2221281afd1f68e8746a0ca630cf2b31d03d017b6bb1dd624975b35a1f70c',
'powerpc64le-unknown-linux-musl-0.2.25':
'57ed0874e885ed1318f10d65971ee6fa91365cb958a5f5f0005975e4754782f5',
's390x-unknown-linux-gnu-0.2.25':
'39d33889705863efcbfc08ef840ce7e6b0a823dc9bd5b80f5001f732c0f1d83c',
'x86_64-apple-darwin-0.2.25':
'ed21c9ee096bb7306eaf3ff39307461452ace0221a132d45f6919ddd5972949d',
'x86_64-pc-windows-msvc-0.2.25':
'7e55a0ae316797723acc2974a658a5aaf0b94ec9ecc90cf62b94da64da223a8f',
'x86_64-unknown-linux-gnu-0.2.25':
'7f3396784a504ffb3d2190312b4a7c5330f08906ef22bcf544fe20ecde30081c',
'x86_64-unknown-linux-musl-0.2.25':
'c92951cc355ba7de4897d538e8d420c7b32f810945dcd664f55d50a936331629',
'undefined-0.2.24':
'5d5a694112d8463c0003cbb295cd29697500c4a0a60920466b0a5c50e43bba2d',
'aarch64-apple-darwin-0.2.24':
'49d55dd8a8f2adfb83d1feaee5bf40c20169b411e3809e3455ff0d96bae4f388',
'aarch64-unknown-linux-gnu-0.2.24':
'0232b3d2ad506df099ec488b48a7801e7a51118bd6b5c48b081d5d172ee63ea9',
'aarch64-unknown-linux-musl-0.2.24':
'56bd0db80905d0f5eeba51aa33872727aa40e3dda65c86a584c095ac05609509',
'arm-unknown-linux-musleabihf-0.2.24':
'63d0a438b8ae0e080a5321b668d72a0b40ed9e9f09240592020dc55a39edf762',
'armv7-unknown-linux-gnueabihf-0.2.24':
'c2650b42b0211cca495cbb8ccadd200256876cd02f70ce5ccb03e4eb6782c16d',
'armv7-unknown-linux-musleabihf-0.2.24':
'51ad3c67b2730040858d59e71b4d3cb8f32e7ef6e1c2b03023cc8518c92c1794',
'i686-pc-windows-msvc-0.2.24':
'3995fbf5a09bcdfc54824ccd0969a975844d586a5fe5dc689f0b8d36eec6e5e6',
'i686-unknown-linux-gnu-0.2.24':
'dfb662a3dbb7bd1d5da4dbb20805484d8ba7e9d8cc1f6884e737ffdb3106cba2',
'i686-unknown-linux-musl-0.2.24':
'ebb6d14796fb172b03f2ed561d68c6a0f7468173dd9c2f34823dc868bed6ee90',
'powerpc64-unknown-linux-gnu-0.2.24':
'3d7abf03072c74c6d841979d444add3d44eea3ef2955ea5bf2968549c9ad8b2d',
'powerpc64le-unknown-linux-gnu-0.2.24':
'40e3fa0cdb1da02314c998ba0dde02cbc0ef60dfc75eddbe7a51e5bf83e0db28',
'powerpc64le-unknown-linux-musl-0.2.24':
'c89746e4807e8a960f681faefc9fcbbc9cf6c261153791f893f90b3ce8b2dc39',
's390x-unknown-linux-gnu-0.2.24':
'ae088d02d3435bf7e7dd15f72ea8b92888a92762cc7d6830a1a8c9f9cb8c1635',
'x86_64-apple-darwin-0.2.24':
'dbb918c9d55b99cfe1c995cc330b6b1dac29379e320c35a84e7bc6bc0e0a55f4',
'x86_64-pc-windows-msvc-0.2.24':
'a044e2cbdfaaea36d15a7c8091d12e2ae81784329116fdf967a573b792fc1fd5',
'x86_64-unknown-linux-gnu-0.2.24':
'24a0c6758a4f533c37193592fd0a9a37a61fb583a4b6abd0bb81b83127d86336',
'x86_64-unknown-linux-musl-0.2.24':
'cb91cb5111e9eb4f1be7c4b8e467380e65b41c5f19ad956f613b290deaa838c9',
'undefined-0.2.23':
'd5fe4b3aa545d6bc43cb5fb2a27d3f24f53762472d345b06d0d03a2e27614f86',
'aarch64-apple-darwin-0.2.23':
'1d41beb151ace9621a0e729d661cfb04d6375bffdaaf0e366d1653576ce3a687',
'aarch64-unknown-linux-gnu-0.2.23':
'c35042255239b75d29b9fd4b0845894b91284ed3ff90c2595d0518b4c8902329',
'aarch64-unknown-linux-musl-0.2.23':
'60a122ac03b4187ddf716995f5f87838ff0edf9bfac372202c5c05269a32537d',
'arm-unknown-linux-musleabihf-0.2.23':
'643666522fb27c45b8cbb12533b57519ede6c1c1a61c1597e9c632888080d55c',
'armv7-unknown-linux-gnueabihf-0.2.23':
'2e284e7718176306b0d042a65143ff5b2c6453f33cadc1ebb19aedbb4f70ec95',
'armv7-unknown-linux-musleabihf-0.2.23':
'27408e6dcdca9437d7813f7122ef08b2de4e21c90c0c1784c32998dcb9f5ed7c',
'i686-pc-windows-msvc-0.2.23':
'8f7e83f5c09320d1ed32dee5773c4c122797c194ce27922cb03889c54d927eac',
'i686-unknown-linux-gnu-0.2.23':
'1cbd6066b8e39445f36cc621b982a053a917708bd5f13d1624484677449bd854',
'i686-unknown-linux-musl-0.2.23':
'a3e68f5c51efdbc63edfda7f3f830d381964458d46a42b993f8847d4369e0818',
'powerpc64-unknown-linux-gnu-0.2.23':
'2644acd3c6fb902b14325a2a60b324bec6617ce90ff73fe4df15d2ca26ca5572',
'powerpc64le-unknown-linux-gnu-0.2.23':
'ca16c9456d297e623164e3089d76259c6d70ac40c037dd2068accc3bb1b09d5e',
'powerpc64le-unknown-linux-musl-0.2.23':
'ee6596b3241df3884ce77780833051ce4a3700a83e82e1704cb60981db8f8801',
's390x-unknown-linux-gnu-0.2.23':
'55f8c2aa089f382645fce9eed3ee002f2cd48de4696568e7fd63105a02da568c',
'x86_64-apple-darwin-0.2.23':
'960d2ae6ec31bcf5da3f66083dedc527712115b97ee43eae903d74a43874fa72',
'x86_64-pc-windows-msvc-0.2.23':
'66f80537301c686a801b91468a43dbeb0881bd6d51857078c24f29e5dca8ecf1',
'x86_64-unknown-linux-gnu-0.2.23':
'4384db514959beb4de1dcdf7f1f2d5faf664f7180820b0e7a521ef2147e33d1d',
'x86_64-unknown-linux-musl-0.2.23':
'c7b80246dad84eadf288c26128f6504fa27529f21091ccf7d5f9450fbc229dd4',
'undefined-0.2.22':
'd390a2990caffab099f129a10b0393dab81a7043dbd93d514e05034368e052d5',
'aarch64-apple-darwin-0.2.22':
'ed44fcb929f8cef958ed9e6de350d542f7392a43331d3605c4fcbf418e204c5c',
'aarch64-unknown-linux-gnu-0.2.22':
'2fa9b4647ac17dcc050abb8ed1547b8c87e3d914bde3e045b51ddc16946a4e57',
'aarch64-unknown-linux-musl-0.2.22':
'1855c439577523fd2a3e1afb19712fd80eb59d63c92fa29d24afb7f68c8ba88c',
'arm-unknown-linux-musleabihf-0.2.22':
'bba9175deeb797714c629543276a98fb834c58d85d8edce47d28c90e2e600e07',
'armv7-unknown-linux-gnueabihf-0.2.22':
'dcb1fcea336bf36bc5880c2ea29e1f32b10296f3b14ff6f3f2ffd8667a2146f7',
'armv7-unknown-linux-musleabihf-0.2.22':
'de1a29702d5fc14be20b21e0ba7b513d84f4debe8c5ff49a66ae333060fdd767',
'i686-pc-windows-msvc-0.2.22':
'aa5b36bdc88a16c92d5ca93c4a9325bb82eb875507d363ec28cb6e5ee694e8ed',
'i686-unknown-linux-gnu-0.2.22':
'00002ada635ce3f17a97a4eca7361eb6ac065db342540dc31e743920a723b92f',
'i686-unknown-linux-musl-0.2.22':
'c98fd1af293fb19bdeac03320f83ff328b4575478ca30845f7172e9491c5bb05',
'powerpc64-unknown-linux-gnu-0.2.22':
'98dc7f3d818368190389aa008b5873df84a470c40c94f5f339655c50af0cdb89',
'powerpc64le-unknown-linux-gnu-0.2.22':
'cb9096be1041b49b09b3f407059bab3a4b68219fc407f05dd441c58b40299c0a',
'powerpc64le-unknown-linux-musl-0.2.22':
'4c0d300931775be6069dd5fa095077a639e780b5c890885035df9fb3f4dcbbd7',
's390x-unknown-linux-gnu-0.2.22':
'acdc4f3e01327209883e0578a077a69e46be0a0ce95f53c742d64ac753f93610',
'x86_64-apple-darwin-0.2.22':
'cb03b461250b688e39b19feaa0853d842e5d4193e262c9d4db2d15faafc54dcc',
'x86_64-pc-windows-msvc-0.2.22':
'6ab3ed27e38e3a2c4a3a4880b87b8d607fa14589860aebbb1a34064d792d54ad',
'x86_64-unknown-linux-gnu-0.2.22':
'65cd2e2c3660779f8a1fb02eac488b540d1ae30f3a80a381f8a7859d0b76bf06',
'x86_64-unknown-linux-musl-0.2.22':
'8e165482df8590a620bea0411023c4c345f14301b733a9b6f6ca93e730947aba',
'undefined-0.2.21':
'29a224acdb53a5478e12260672547e3d84a14c972c64f3e154553ccd813f8400',
'aarch64-apple-darwin-0.2.21':
'5b3925fc797bc5e168b5883a5ba2ff6c5751a1c900748c132f01d1ee5c87d24e',
'aarch64-unknown-linux-gnu-0.2.21':
'77ff74dcda1e08d757632eee8c6aa3928d1e52dddb460056a0c7224c888d2956',
'aarch64-unknown-linux-musl-0.2.21':
'3ae6f0de1698b257052d5b1a05809a0f17db64fb6b1e80ffc64b659840105002',
'arm-unknown-linux-musleabihf-0.2.21':
'af4467849e6815b89067b9133dead64d0c912b9d2645a80b0dad575c01ff4912',
'armv7-unknown-linux-gnueabihf-0.2.21':
'ec15bee0208d23966a5ae6f2dfd07e38ca8656960a5caf26970d3a91f055e34b',
'armv7-unknown-linux-musleabihf-0.2.21':
'5671278eb619ee82615ab8e7be2251763d57d5b210d317d92c40d6bff0c6c418',
'i686-pc-windows-msvc-0.2.21':
'7740b290f6efdfc73d24977e4dc86be144865ca92ec106cb8e0b206f7b77b80f',
'i686-unknown-linux-gnu-0.2.21':
'ec323eb0b67103da905e24de5c6ee4036da22068c439f098b93d4c206e6764b8',
'i686-unknown-linux-musl-0.2.21':
'118a1a3c0484a392ccf9388cd296bdbaa1e8b5479772efd69056ac99119c0aa5',
'powerpc64-unknown-linux-gnu-0.2.21':
'0fbf9a1b148b86511a0c167f3dc7e5fd228c784af0d3fe8d8c99e024ed2fa1d5',
'powerpc64le-unknown-linux-gnu-0.2.21':
'ff49e7dbd25e98932b5207100916c1d6a6c624a620d37aabbc307bc97be53674',
'powerpc64le-unknown-linux-musl-0.2.21':
'29e32e5b7bb5facb8eddec8e9146f3b20074fa73dfd3555c985b79c10d3c55fd',
's390x-unknown-linux-gnu-0.2.21':
'897414d24d13a202a6f9a437408da64cb26e10bbbb5820571e0de2b4d540fa99',
'x86_64-apple-darwin-0.2.21':
'92eec02ae5ff8ef4b4070cf6ef787a2ee3bfc6ca910b61669a8615e2149d6595',
'x86_64-pc-windows-msvc-0.2.21':
'bf4946c5a8751cc63def72aaa53a9a0c1ca015876b9ec144cc389ef4901dbc4a',
'x86_64-unknown-linux-gnu-0.2.21':
'bb6ff8fa0ac1d86a32b1ef615ec52acb5c8230f803146ad4ceeaba8aaa26a787',
'x86_64-unknown-linux-musl-0.2.21':
'90b0903364aa45e588ac2b269d70e871180f81df0f7c603d6b17742fccc660b3',
'undefined-0.2.20':
'f248835e7b801bfd0dd9e70716257604fa6760cdf92573ae6419dd35ce7a9058',
'aarch64-apple-darwin-0.2.20':
'519bd42c022a41187984234a040c3f00a3eb4bcb189f101c0fa48fe70b953357',
'aarch64-unknown-linux-gnu-0.2.20':
'b97b67c7f65025729da8194f8b0e21ffbd91a1210fbbc89279dc46d5342a3e4d',
'aarch64-unknown-linux-musl-0.2.20':
'bef8bdd253acc9a82269e5574ab4843b0d70a1935235805bb470eae3ceaa2fee',
'arm-unknown-linux-musleabihf-0.2.20':
'2caeadb57638fae11cab25094975201d3f8573fe6f752e628b89d61447f7abe4',
'armv7-unknown-linux-gnueabihf-0.2.20':
'faa32b09015770fa5a72557a04236a7be61f06bbef77a6707c658be791adf039',
'armv7-unknown-linux-musleabihf-0.2.20':
'ba1be06d8aec4b5247b5d09032f37fd4aa8f54acd07b05db18351d61a93e0cf5',
'i686-pc-windows-msvc-0.2.20':
'c4430939e934ca8ba2b079138728a22600d32572fe315ac1811f8a40b062534d',
'i686-unknown-linux-gnu-0.2.20':
'6c8c4e58391c508eed5f8506257d421f3fe13464fc8672b5995bf6243d46fad5',
'i686-unknown-linux-musl-0.2.20':
'4a4f8a73f29362e40e9de94749f988e691665102ca2bd6501f39248735c40647',
'powerpc64-unknown-linux-gnu-0.2.20':
'aa557c951623d746ea30b4ae107fc37ce7328196929d5cf38beecf2c1c60555b',
'powerpc64le-unknown-linux-gnu-0.2.20':
'1ef60183bf6de0c1da96fa027a8b3847da289222aa4bd5ac81255aa614e36fc7',
'powerpc64le-unknown-linux-musl-0.2.20':
'56c880df3b97d2a1c0ac6812ba174d4b7e1362fd256ce8b29f029adabfdaf28c',
's390x-unknown-linux-gnu-0.2.20':
'455863a0850d211aad8c94b61778b2c30cc7d5639ae0d5607549f1d56372f706',
'x86_64-apple-darwin-0.2.20':
'41018b406133a2ee5e51d8f35c990999c2bb96ce457864ac9883a0f9dcb49c58',
'x86_64-pc-windows-msvc-0.2.20':
'74d2f2c945da68a2aa8f0f277229f3b172c7aec1072cd990d866c25ecbe21410',
'x86_64-unknown-linux-gnu-0.2.20':
'bafad50e1b8b8b89083df115cdbad6e991747fd6ecb52ca407d6b5533ddb150f',
'x86_64-unknown-linux-musl-0.2.20':
'1c27fd144912433d7f12b58b00eebb80a7ad9a1864b22b1ba41b07b5998a743b',
'undefined-0.2.19':
'9186f4961698b35b1812eef5dcd6973accb3eaa980a571c964f6f91ca71da5ff',
'aarch64-apple-darwin-0.2.19':
'539f2cb812f0596b3f56d41a92662f6e102094587ff07f0793bd015d21cda54b',
'aarch64-unknown-linux-gnu-0.2.19':
'7ba7454ceca1b789e74637b5cc8d1353d6a87ae3985dedd16869c036e3b4d02e',
'aarch64-unknown-linux-musl-0.2.19':
'a9932edc68680dc388bf13cb21132f4d0aa13bf9c31c1c1f4febf1415ad51923',
'arm-unknown-linux-musleabihf-0.2.19':
'71dedaf8f40e3939b8ad493093584d03046c607cb7e7c155de7eb0c8e0da2830',
'armv7-unknown-linux-gnueabihf-0.2.19':
'17b44738383b1a5fe7ad592be61c543048022c09c649759c589a74a00fa3afb5',
'armv7-unknown-linux-musleabihf-0.2.19':
'6c287d699c95cffbb30520d27d7b80ce1971b336bd387f72391340acac434c86',
'i686-pc-windows-msvc-0.2.19':
'68977cc3fde46c61a80ea451651f3b6789ee2a8cb67a4e5fbfc7db93022d9e1a',
'i686-unknown-linux-gnu-0.2.19':
'5ed1da9e25968be4581ff301a9034e8e82f2206686f504734015c348b94333eb',
'i686-unknown-linux-musl-0.2.19':
'236c3fde87ee06c2b49372e184f2fca84f82ea3daa36e85ac884f7459b18ebf7',
'powerpc64-unknown-linux-gnu-0.2.19':
'9ecdf74c9846c271e78e300f1db8cf3762ace6d9ba1f2e9d6e695cc64fb2e746',
'powerpc64le-unknown-linux-gnu-0.2.19':
'fc8bedb7f7b35905fd5e1180466593e2ad35788994f7d61c6605ff985bb61aff',
'powerpc64le-unknown-linux-musl-0.2.19':
'a5d1f2b9686ed2466e9e588d8ada686130318015693ef1a7064651347063bd05',
's390x-unknown-linux-gnu-0.2.19':
'6b68ee8a45062e9a6d3be5de5c0fddf49f8669c2b2b897432f0a55e99fed57ea',
'x86_64-apple-darwin-0.2.19':
'1b8bd98a1ffb5823b499d914d8fc430b6bb96b3f97bedf06b67c60f084e366ca',
'x86_64-pc-windows-msvc-0.2.19':
'b704c9c6e5e18e1c822e44f118902468df76245eca8831c5f8d4dd1223c0fbda',
'x86_64-unknown-linux-gnu-0.2.19':
'71132ec5c59ec865d73877f2f7f4ff75cd2f56a93d967c1a91ef797bdc87ff93',
'x86_64-unknown-linux-musl-0.2.19':
'6e8a64434d3baf03fd64f58016a9a37b08a8561db6979b807de8feb55d94502d',
'undefined-0.2.18':
'5919f79b42997129e5a456bb5910086d0043dda20e505d12f7f57f0a2669ae74',
'aarch64-apple-darwin-0.2.18':
'979ddc0aa7b068632bf4c517bbb6d97798b95c54dfeaca9ba653df91989ed958',
'aarch64-unknown-linux-gnu-0.2.18':
'5cc1535801398ad74e5fc8a5cf5a619d3e806b8b7de6b973b33c02b9b2584ffe',
'aarch64-unknown-linux-musl-0.2.18':
'473ae75c6e9ed1f63f0c0c556ac6ca4718457903c3652adf07c8d46655133e31',
'arm-unknown-linux-musleabihf-0.2.18':
'7fb75cfe47c50f9306eea91f1d713a0f76dacefc92b6a35271b7af90e024bac5',
'armv7-unknown-linux-gnueabihf-0.2.18':
'c0ff7d440ccd43666d813da4dce5e90a1c6b90e3dfc951ed868a38c488ebff07',
'armv7-unknown-linux-musleabihf-0.2.18':
'1c99194b715b74f0bbab9ba2f350bcbdc4e101f056d81ce35f62736b951b212f',
'i686-pc-windows-msvc-0.2.18':
'554b9b65eee4f30b70ff2d3b1c2cee07600eef176c235d8639aacdca799610c4',
'i686-unknown-linux-gnu-0.2.18':
'efd8fbe10f88622479611cac0ad18d7e5614a9335d655e64be8e30db6ea749cc',
'i686-unknown-linux-musl-0.2.18':
'9d991b27482edc0891c8aa2750e95aa4f8007f3af9746d90f0176462a2cb3a09',
'powerpc64-unknown-linux-gnu-0.2.18':
'0dde2eea6496139c10bad1e7e1d49d210bc47f294dde158db65f78eabcc363a1',
'powerpc64le-unknown-linux-gnu-0.2.18':
'4515b5741a0cd2596526f4504429bbd8e6122c384ffd9211023771aa042c6815',
'powerpc64le-unknown-linux-musl-0.2.18':
'48ce3450450a0314a6b7996f53145e273c3a2013c1771b56449c275d9260575b',
's390x-unknown-linux-gnu-0.2.18':
'4c3826eabcb81aeb187a3de95fa3e3f3c784fb71539be05ea56a963b3d97fe4d',
'x86_64-apple-darwin-0.2.18':
'140158512a43d8266fbbc550dad7ed3f27953d5bb5bc7a3e91e94ed3c1c1773e',
'x86_64-pc-windows-msvc-0.2.18':
'16dff877e19f61d094af35878a00b592302a1794c1c27afb1b194106931e9e59',
'x86_64-unknown-linux-gnu-0.2.18':
'e5a0bde1e0fe57a7ea1d26bdb582c636ba742c3db8a10d0a965536da7004abd7',
'x86_64-unknown-linux-musl-0.2.18':
'4472cd12522d96566be88545f1520dc5099f12f47df297f54f9239fc1af0ed87',
'undefined-0.2.17':
'6bfe8c67c849a87271a47d6c54672b860a1b37fba5bdb2928f6b912719edac55',
'aarch64-apple-darwin-0.2.17':
'7dc5fe97867ac3bbcbeabf32fb76b3caaf12141b5e20926ed81353f9a2ff7dcb',
'aarch64-unknown-linux-gnu-0.2.17':
'5037a966a2422f40c63d36982d46f10362383c128ce1707a56b4339b44a50c94',
'aarch64-unknown-linux-musl-0.2.17':
'910edd0a8db6ff39baaad0f7f77b2ce74e0111b6b83a4439e2e02d5b82404e1d',
'arm-unknown-linux-musleabihf-0.2.17':
'6e72744e9cadf1649397acceb006f27c9cdce3dcc2876fb73a887d8914166791',
'armv7-unknown-linux-gnueabihf-0.2.17':
'a5f18a5f739402e9c2a6b5a4dafe0ead37125bedc7c03a74a9a92e4682a0f49c',
'armv7-unknown-linux-musleabihf-0.2.17':
'fcf11ba75a1d21c49d53474c51b612de1627fbb97c23bd7752d64d178740014e',
'i686-pc-windows-msvc-0.2.17':
'ed5dc4a4341e7af3d92ef0649df6152b555b16e09c072c43f7f39b9d5bdce784',
'i686-unknown-linux-gnu-0.2.17':
'd1d478429fdaeadd56ce280bd43460275bd131cd44f9878987d9d7a5caa4f398',
'i686-unknown-linux-musl-0.2.17':
'8fcafe168ae2eb4de6891c0d0d5c0c598af87b552d99d2c4d15deca824236cd2',
'powerpc64-unknown-linux-gnu-0.2.17':
'b2601121c8df47bdb430da2bf85848b7e38ff5df1150d8ea980d8ab7b4f5551e',
'powerpc64le-unknown-linux-gnu-0.2.17':
'1f94aeda1cf36d401073ae21d9dc4acafed761d41074795f622ffa1fbd4a3677',
'powerpc64le-unknown-linux-musl-0.2.17':
'a3599741a236d088cb418f446e491b661c042ebd9f23e15f6cadcfe2833a6609',
's390x-unknown-linux-gnu-0.2.17':
'4dccbee34457c45f4fb9df5760094d402db7642a3a5665ccbc271293dc19b746',
'x86_64-apple-darwin-0.2.17':
'78137a1b9d6fd1f8f5f0d4208829dd5f89b6505c314192c0fa2a35d6faff5e91',
'x86_64-pc-windows-msvc-0.2.17':
'e77465f8a964cf0cbd932af506df6ca42ce288e6db4df312c53f27b05c7c09e5',
'x86_64-unknown-linux-gnu-0.2.17':
'd49537780cd9cd5621bbc34e6864356487155cd4a7540035e1b0acb0d1017def',
'x86_64-unknown-linux-musl-0.2.17':
'20184a870ba25416b61d46c387853afd27d9a8df3f0598ee6878a315db5c7302',
'undefined-0.2.16':
'f215cd4c173a71cfc2427b5cb3c42e321ade41350051a1ca7a9c898ed502ff2c',
'aarch64-apple-darwin-0.2.16':
'9a19728c43c35a2d5f97f2bf85b0dc7b508e1931738f0d95e2354f0f745196e1',
'aarch64-unknown-linux-gnu-0.2.16':
'f50584835c2099d5dcfff4fe4292719871ea40661d6fb124f732c81b131ac2cf',
'aarch64-unknown-linux-musl-0.2.16':
'47af1d071daf655fea352a440f533f3ad7dfbdfc2314160ac14b31815d959c37',
'arm-unknown-linux-musleabihf-0.2.16':
'5ab0424e8c18776c809f0c1e7f6e925f7e478c36b2260b24f2694d1293e5f8c2',
'armv7-unknown-linux-gnueabihf-0.2.16':
'9d4a66d55c273ae5f265ee979899faa6636823b1dbaf4079085e108adfcb916c',
'armv7-unknown-linux-musleabihf-0.2.16':
'384ffae2d98a0f2211d1353eb66031710e452838349fdad115503b26a3dc01d1',
'i686-pc-windows-msvc-0.2.16':
'8b140cb56029585fb95685410f17eb866a4d6dae9d63de4fba14268e17730951',
'i686-unknown-linux-gnu-0.2.16':
'902439f172d22dde421681d54994fcc9bc66ac412baf1dab978fc061342bc4e3',
'i686-unknown-linux-musl-0.2.16':
'1e02d7e7e06dd44c1cd077bd645427af7f04901e685ba3fbcc2691d024906470',
'powerpc64-unknown-linux-gnu-0.2.16':
'68209030923b2276df8dbcec9ae3a0efd9f7166419018e7d282dcbbc5043e97d',
'powerpc64le-unknown-linux-gnu-0.2.16':
'9c0ef3b12fc81337612841f3d0588d60e5cd6f40ff533c546218c5f8f3b30935',
'powerpc64le-unknown-linux-musl-0.2.16':
'd41c74bda5a383cd71667ad7d38a7a5af667a82fd83df997ebd0547a5050a5ee',
's390x-unknown-linux-gnu-0.2.16':
'ca828149fa733859b4837b3aae69e253cd336d690ab6af6fca8726f5498d21f6',
'x86_64-apple-darwin-0.2.16':
'1457a592a56326ac67ca12db89f8cc175634d36bd17a2efa7b605a9f81edcb31',
'x86_64-pc-windows-msvc-0.2.16':
'0eceb9b4c9ec8049ac15455ee79100bdd2e9db2153977da7d9788ba792e1eaeb',
'x86_64-unknown-linux-gnu-0.2.16':
'0a6cebd98cda27fe3f49853a686ca050fbfef2da7871f6cf4065c5e9a7b2233d',
'x86_64-unknown-linux-musl-0.2.16':
'e4efe763ad24e32b658e33b38cde271694f2fff7c2eb07cca5a267d600c1f718',
'undefined-0.2.15':
'902d06ac01ebd1ac7fcda81f514b04c6d79a1bafd70305b18e9b1d387cfc7025',
'aarch64-apple-darwin-0.2.15':
'7342fba0eeb0ea204eb4ec6311378e76d43bd237ad0576872aca3345914b024d',
'aarch64-unknown-linux-gnu-0.2.15':
'939998c380bb95b4fbc15bc00c43c1b1fc1fc30d02638aeca6113f02a99c608f',
'aarch64-unknown-linux-musl-0.2.15':
'3f5c7c25e4099854330b3a21bb9670d3cdcf3ec3c0eb9f8bee7e42c5098cc5a1',
'arm-unknown-linux-musleabihf-0.2.15':
'2b53a33e0f46f2c37f949d12d420f666e93f8286ed371a1bc5b1406899ab5ff3',
'armv7-unknown-linux-gnueabihf-0.2.15':
'1f8712bd2b6c11533d4defea1f2e7e3972b9db887ef26a4c33f452a8492891ea',
'armv7-unknown-linux-musleabihf-0.2.15':
'0bb582c399933b7affce3c9f5992a6aa7f7bf596fbd43e08623a08dff564fbc3',
'i686-pc-windows-msvc-0.2.15':
'339014778ebae1bfaf327217c137997ef272047626c857bd3fe84286af61a7a0',
'i686-unknown-linux-gnu-0.2.15':
'8c5e80b94a84ab14b91de827858c076b0501a85de40c7ba917070a929e914a18',
'i686-unknown-linux-musl-0.2.15':
'148fb4554317f84cb27e563707cff8acd35a5b3f668f27a45005e076833cd4ce',
'powerpc64-unknown-linux-gnu-0.2.15':
'c533ec6526e7c338c79c38181c94b88b5d80c5a1ec8d7182a0aac3b6448caa46',
'powerpc64le-unknown-linux-gnu-0.2.15':
'681b607989c135d17215a3442fb0e6b11d5c5ea90973eacc6f3aaf2f7b1520d7',
'powerpc64le-unknown-linux-musl-0.2.15':
'a39e8898c033b86e3432e177d9d6ee7da5f9ffcd1624b894bce92d6fdd58bf56',
's390x-unknown-linux-gnu-0.2.15':
'2fe5fe764afdb8e4f6f752f17400013af4c0ed60fbc91eabfe5b05483f30fb82',
'x86_64-apple-darwin-0.2.15':
'dd7ff73cbab1c65b3f2d110bf025d0c74ca2aee3001e38e808d7b1816f49a6cd',
'x86_64-pc-windows-msvc-0.2.15':
'c1ffecd50d417b3de667da0fee07b577abeffd5f9d6762501818252b3aa6c7a8',
'x86_64-unknown-linux-gnu-0.2.15':
'f9c06177f2153336c3a96f9ab54d881126447cde1cb5d00ed771223427692e9c',
'x86_64-unknown-linux-musl-0.2.15':
'3151e375fdb6c73765a8cae5048790c52366cae4593e89365549587f24406837',
'undefined-0.2.14':
'528d2dc187720d6338c5dc84809f64633cd969262c5a0f6a2bc0bddffa1ff8c0',
'aarch64-apple-darwin-0.2.14':
'0a78382f3e93514d51257243313a420646a2316da47bc4bc194bb66ed2e50ee5',
'aarch64-unknown-linux-gnu-0.2.14':
'5461797a801f3752cab99b63b206dcf54de037283d93f03adba736179f099d31',
'aarch64-unknown-linux-musl-0.2.14':
'3b315856284f2d4c2a6e3b19fd6c5eae87334c37f1a7dfdaad3f696b976dae72',
'arm-unknown-linux-musleabihf-0.2.14':
'40b481cb4ad70be8afe62fdb62c6b4f4f90a6a3cc6061950f58e4d92b13e58b9',
'armv7-unknown-linux-gnueabihf-0.2.14':
'bf7ceff49dd3ceb384316c6bd85b037a9b5c830074166f57d6ad6fc8b42fbb75',
'armv7-unknown-linux-musleabihf-0.2.14':
'3e246f87058d03d0879c0a2dc287aa352785fa8a37e166b6c322b7ad1e79fe49',
'i686-pc-windows-msvc-0.2.14':
'97d1cd6da0bbdfcda220167c0309b50ff294304d273d59a5b30076e31a8b9deb',
'i686-unknown-linux-gnu-0.2.14':
'7f41c2d76af64bb5fa790516a43d86dda8c03b1ba5b57f1b2db9cea7eb836a53',
'i686-unknown-linux-musl-0.2.14':
'28d924aaf00228b35d0219a4e0b87846bcc515c6575f3712733cdf614716e9ae',
'powerpc64-unknown-linux-gnu-0.2.14':
'd20a64a746d24e49fc85d46064538fb2c84778131340abe345192c1d62c29357',
'powerpc64le-unknown-linux-gnu-0.2.14':
'1bc57215f96f156d784761c616de0a1c7d90aecf145c5f7e401add537db17106',
'powerpc64le-unknown-linux-musl-0.2.14':
'2fbb0995b0a34d3cc2a97e3a5c4aa0e8b6b3b52d432a082f566112eaae1c490c',
's390x-unknown-linux-gnu-0.2.14':
'8b025f335dc7066dae5646114b7fa0e9026a12a05b8909acccaf9c6348298d7b',
'x86_64-apple-darwin-0.2.14':
'402525d3a113fbdcc687ca408d42cb104ce18e8e030dc05b83381ca4f9ea76ec',
'x86_64-pc-windows-msvc-0.2.14':
'a4c00d69418061c1566e758e85f3f6fc1532908453d03cd9f9aeba03d0bf640b',
'x86_64-unknown-linux-gnu-0.2.14':
'79b2582675bd93c7d632e71a667478a3b1eed101669944e64c848f7240ab4725',
'x86_64-unknown-linux-musl-0.2.14':
'c0f760078a326b6f861d0eb4e9a04bccd0bdeed6cf72f284efa698e54ba83c77',
'undefined-0.2.13':
'9ae345ea16f8c61997d8434153a20a1e95ba11fc46013ac951c70d3fcb77c8ec',
'aarch64-apple-darwin-0.2.13':
'f588388d2b13f77e4526e619f618a306b6b026a96975fbfb2c6dd1ded134cb72',
'aarch64-unknown-linux-gnu-0.2.13':
'f342442088a56a8a5e4af6781501870bed1b388b37ac2e9deb250cd1d0dc1845',
'aarch64-unknown-linux-musl-0.2.13':
'56151690ccd6a12205478212dd16013d1969e3ef808a66f99809da850a49ed29',
'arm-unknown-linux-musleabihf-0.2.13':
'ef70483125e00033ed6bd5f9b0c4cfd377db54897284cd7d1d25e2ca6224312a',
'armv7-unknown-linux-gnueabihf-0.2.13':
'20f96f8a6b2dee8a6013bc12b243b718027e5a34c9fceb4baef7e85e530f9da8',
'armv7-unknown-linux-musleabihf-0.2.13':
'59b50354236a4a3919ecf9619bb5791936724351e6d1f96a18969d0e5df2dc51',
'i686-pc-windows-msvc-0.2.13':
'644e97188d6f4d96e0b149992958c20cce928ad0f4ab4800e0fed70ae16198ef',
'i686-unknown-linux-gnu-0.2.13':
'aa94cec4368c615297aa4d81ab81c9034b4a40d66c75854002f0e26857e659a5',
'i686-unknown-linux-musl-0.2.13':
'152cabfaf4c433d6904c5f68c2771b0c5ad207e356ef96867680faeb9bba0c8d',
'powerpc64-unknown-linux-gnu-0.2.13':
'7f6bcf0354c87993bdcb76ca0ce3b6211703d19f08bef2cd3306b75cda6ff8ad',
'powerpc64le-unknown-linux-gnu-0.2.13':
'0f38a41264be0ef325f8d438f34ea95c002736b3c092e3276518a2253c4ff923',
'powerpc64le-unknown-linux-musl-0.2.13':
'081e0c31a971c3755108a6c70c90fb68a2b0829f995665aa5df1002eaa4945ec',
's390x-unknown-linux-gnu-0.2.13':
'dc843c32e51ee3fb46381699bffbc4b6040c51083a1dc7d6c597582b84956aa7',
'x86_64-apple-darwin-0.2.13':
'6262eba42ebb9035a574b74c5ea253a41353fb4b6b264600e3b05b1a7f4cabc0',
'x86_64-pc-windows-msvc-0.2.13':
'898ce45b3767ea97429426a7bd0ec54d070eb9e29ff2b072bdcf288bf6ddc9a1',
'x86_64-unknown-linux-gnu-0.2.13':
'3f96048fa1b82eca14d45bbcc86714cd0dee19a73ef9311da6707faa308ec25f',
'x86_64-unknown-linux-musl-0.2.13':
'2121a2184aaa0e4c7ef599358dc2bfd20e5a07a1373c302b6fedf79f2ba0778d',
'undefined-0.2.12':
'322c672b515d240ae4a588dbf18086f0b5cdbc288335668c32cb6554cb3551bb',
'aarch64-apple-darwin-0.2.12':
'cd9ca2c17a32f08dc03a6430fb99c16cb2eec1350a4857292df6a600d71a1467',
'aarch64-unknown-linux-gnu-0.2.12':
'8e57c9baf43f80a4b0eca7d5fd0de9152b99ec22809ecfd8350ab4317ae1d629',
'aarch64-unknown-linux-musl-0.2.12':
'74981df43332e9ca6abd2855d73e0d1f5565d3f724c60f4a67bf0c09d84902a9',
'arm-unknown-linux-musleabihf-0.2.12':
'50c8f8178978679455da0b14e5b03039001c39270d8fd1e51dde9addd45f3cb6',
'armv7-unknown-linux-gnueabihf-0.2.12':
'cdcda5bef68ecb96c593a1389349b19d6a52a2c235308e6aaade522f67def730',
'armv7-unknown-linux-musleabihf-0.2.12':
'b1c55e5e3b1cd5310318572d5243d7ba725c413e0a20d6a77987ea00dcfafbe4',
'i686-pc-windows-msvc-0.2.12':
'4bd4c4fbe449799d0ffd179b6432712c4843d1b802ea79b582989d3cd9eda6e8',
'i686-unknown-linux-gnu-0.2.12':
'301351fa77cf03bb0584c45deb36f0049223f404250ba31d69ebdf689ffae9cb',
'i686-unknown-linux-musl-0.2.12':
'379de8132478143542aeac0a4b4310eb2ed172927561ec9cdf11cda2ccd87a2b',
'powerpc64-unknown-linux-gnu-0.2.12':
'9dd50c32d2c3a41a43e5f08fb34cdf829bba0d2222abffcd20429f2dd19cc6a4',
'powerpc64le-unknown-linux-gnu-0.2.12':
'53b30539dcb80d074e8d33eae582745a155ff0c3291d816c0596332a980e6389',
'powerpc64le-unknown-linux-musl-0.2.12':
'9d9af6a119f15cec26e90e18dbdbf004a8ddfe9078e1877bb43a7ba87172150b',
's390x-unknown-linux-gnu-0.2.12':
'df8a4b496f5307a27c4a8b90e356d4b508b3aab24ddfc5904f7ec53bc3bc5cb8',
'x86_64-apple-darwin-0.2.12':
'71f6c77cf22b8cdd04aa561fe4bd1da8720351359a7c04740bce6a68fdf582a4',
'x86_64-pc-windows-msvc-0.2.12':
'5a1b374ac29e1b65ca581573f175ec3c8071cd09eb73f127d9081d37a0ac21cc',
'x86_64-unknown-linux-gnu-0.2.12':
'7a0c67d32844afadd2d964d9d6ecb769a56e122e1423efce53e7554a33fb5c6f',
'x86_64-unknown-linux-musl-0.2.12':
'a617fdeb285e0dbb13a0f37f802b80be1fe5272a44f752d62d1425ea56428170',
'undefined-0.2.11':
'75555dfd78bfd30f0b32e7515413319920bd1fcc88c4130c4fe02516dbd2bc58',
'aarch64-apple-darwin-0.2.11':
'abcc9dd4234623defca3ee8c1b36d2b3662d5fd12c90727e1111b8e1592fb9ba',
'aarch64-unknown-linux-gnu-0.2.11':
'ccdf23e44d3479ffe61bb68b61af5a014bcb76397f19b2a85587f55a6cc7a98e',
'aarch64-unknown-linux-musl-0.2.11':
'f4f5b8f496d655206a4bfd28c54192a225da1274d04fa3ff6ff74df1e756c400',
'arm-unknown-linux-musleabihf-0.2.11':
'2579a68e7e434f0c47d3af460bf6c0570759761dcf1fa834f2df87abcfa0ee18',
'armv7-unknown-linux-gnueabihf-0.2.11':
'f76c811a073bd0feea69555270fd0437e7b4c085d604a3949d2dd98b418b1597',
'armv7-unknown-linux-musleabihf-0.2.11':
'45463088ca59aadb7cd0343f98e1892198799e24b19873c8885433d72673c6c3',
'i686-pc-windows-msvc-0.2.11':
'fb7e8b6647fca55e627a2df40c811e2d1af8a5f9bd802122b5b93edcbb605aaf',
'i686-unknown-linux-gnu-0.2.11':
'13e7682d48e802c16e41ca97c0b137eed9302caff943464f9ef43dc1de2dc8e8',
'i686-unknown-linux-musl-0.2.11':
'64f849ed7de03cd4ae08759224a3065677a4164f42318c8e6c883f28c443e698',
'powerpc64-unknown-linux-gnu-0.2.11':
'5cf33f99dc3318989c8e14697677ee5bb9029c38c60b44c69e9f58d8e8cd8417',
'powerpc64le-unknown-linux-gnu-0.2.11':
'70a3c979624bc22307708d84ef9dda1739672606804b68badd6a01b88ec5d4e9',
'powerpc64le-unknown-linux-musl-0.2.11':
'a3ec1fdfbe0551d9ddd522eec0040a13eabeb8081d8114a8bbe3ea6b1efc5df5',
's390x-unknown-linux-gnu-0.2.11':
'57ac8fcb1880cda4551bad47065e434ed020b6b2a401fb655861813bec1de223',
'x86_64-apple-darwin-0.2.11':
'b0c3cf377363bb0bc0917bcf8efa08590e3ec86a3713debb51b0a5efe7a48e9a',
'x86_64-pc-windows-msvc-0.2.11':
'07ee4e64fe871de647f0580348f317475906162398604b96bd5c52d99fd2778a',
'x86_64-unknown-linux-gnu-0.2.11':
'4a6188b172cb8d43e59c91dad8cdc4418ed0b395b09e4198ba4661cbcdbb40eb',
'x86_64-unknown-linux-musl-0.2.11':
'063afd8753870e147cf5d7c6273748d585f758d43d8df4bc04121667b7d5a6fe',
'undefined-0.2.10':
'faf7b657b53a31d8d47cca58b33379d14f4701165a1867e61039a961274a45ff',
'aarch64-apple-darwin-0.2.10':
'a099cd4dc28f879e023ce221697e07a2089b12dc42099dd240a2e64d5cf428be',
'aarch64-unknown-linux-musl-0.2.10':
'fffdf595dd2a231b372b685a2e25589bd8d537fea252b28678565f01e5b8bddc',
'arm-unknown-linux-musleabihf-0.2.10':
'c1ccd50c4f3a18dcdd46d44d285313a84a9a2b36e8a676e4935e339362794489',
'armv7-unknown-linux-gnueabihf-0.2.10':
'38c30fa3c5e3c97db50396609619c17741c860c36e13ee210e387c94c59ce1ff',
'armv7-unknown-linux-musleabihf-0.2.10':
'36b38e5124202686aa79ee7d872419746aa3675e34fa7782be489fe310cd4440',
'i686-pc-windows-msvc-0.2.10':
'e4130ec5fd7af4d52ecf39144a15ff7926e7994a14a1c2e75f66d8c352f74bda',
'i686-unknown-linux-gnu-0.2.10':
'0ceaf9b11a1173497e96c5f74b2d13a8cecd9d794eb4096b8eb21537aefc0a6f',
'i686-unknown-linux-musl-0.2.10':
'078a21bfdd32363b989e28903d37d9a3114e5ec76683339abedaaebe2b78e57c',
'powerpc64-unknown-linux-gnu-0.2.10':
'5ea1aa731bfafe544b754daf06b987d50a569944ffebb856512bf016ae747b68',
'powerpc64le-unknown-linux-gnu-0.2.10':
'd9122acabde5b4bca92fecb83abdb4eb9e2310b8985ea0c02028d6605dcb7d9f',
'powerpc64le-unknown-linux-musl-0.2.10':
'cba75fdad8751c443db162af15a0ba730ceda6f0a32d58d0f794be906e518a69',
's390x-unknown-linux-gnu-0.2.10':
'eac781c177f900b3175e24b38da8d20d2a985e7e1b7cb8a2506a663ba930ae94',
'x86_64-apple-darwin-0.2.10':
'd81a89883ea4ed47a115f4b4947cfe20db26b91d28a08287554eb594efc20cab',
'x86_64-pc-windows-msvc-0.2.10':
'f1df811e31940bb50c7f07a1e94eea0b7e3344f0e5ebed9e57a61f7c7857deef',
'x86_64-unknown-linux-gnu-0.2.10':
'99b25a80e170fde54b299c05f4c071c7130ed85db45fe8e7663cef44f09aac5f',
'x86_64-unknown-linux-musl-0.2.10':
'5ab4daa64daad2fc53624c1e88dca7166424526713e6fcbe8e34e80f23ee612d',
'undefined-0.2.9':
'd1c2b96c86aa8f928d8f49c3addcbab35bc6c1a6609ae7ed64bfccc3135ec448',
'aarch64-apple-darwin-0.2.9':
'ebcbfb397dc045356e1b758176b83fe192bf6cede3ac307e30e6934c54ef45a5',
'aarch64-unknown-linux-musl-0.2.9':
'b8d055a0279c52021238a92e41bd6076813fac3ae77f4a3235b8aa4e2d398c0a',
'arm-unknown-linux-musleabihf-0.2.9':
'f21a687de862282ed42f8f515a9221ef2d4b4e831a634c83837eba5ade3bed35',
'armv7-unknown-linux-gnueabihf-0.2.9':
'9c43a432b9e02b126e2a1e42262b8ecc7d5715e9183c0fdccfdb6a98911067ae',
'armv7-unknown-linux-musleabihf-0.2.9':
'fa57fc9740b58b7db4cecbbb3e93a92f73dd30267965097504736ea6982e67b0',
'i686-pc-windows-msvc-0.2.9':
'c68cbadfe1242f8f47469481773b9b7ec09b0b1bfa99cd545a170a3c4a3d294a',
'i686-unknown-linux-gnu-0.2.9':
'530a4070e2fe5733a0f1ea262033e83638f283fd80fccf81c0e445a68bf47f60',
'i686-unknown-linux-musl-0.2.9':
'68410fd939715734af7d0d7f2a770cb786996604af688f260db94e17f2aeb8e9',
'powerpc64-unknown-linux-gnu-0.2.9':
'04c59c34f3895e9484f40c05fe6fdd2bb1e17a919d4b9cdfd99633a2f52d2ef6',
'powerpc64le-unknown-linux-gnu-0.2.9':
'15a1902193c2654031fd7fafc416f434c36524d86a827e085b35580f83ced93a',
'powerpc64le-unknown-linux-musl-0.2.9':
'9c1ae1bbb60b334d3249e4fbfb6ee2c3b52854764a3e4f6e6a612c4b96542826',
's390x-unknown-linux-gnu-0.2.9':
'444f7bc74488219e6157136638696fdf6bad37f3090e324e6e843318ff09abb6',
'x86_64-apple-darwin-0.2.9':
'30f22cbe600b657cf6e987a05740194c2f1822f394b1c60e15621989b28b6591',
'x86_64-pc-windows-msvc-0.2.9':
'32057b35feb2dbdb8de32bda75c8621a00f2aa619cfcc6d4cb5506b3b6ba6d63',
'x86_64-unknown-linux-gnu-0.2.9':
'83438964a0be35ddded2099ea64599706e7c7a7de575429ce4df78e20d57774d',
'x86_64-unknown-linux-musl-0.2.9':
'28e583284cdbbd5e3796c4db2c94997f805b5c632d73dcd9a25ddb3dfa9453b7',
'undefined-0.2.8':
'dad41d5189d272b0cca9a87b3bb16c7a74241b9051ebf2b6fd5e94a0659a35fb',
'aarch64-apple-darwin-0.2.8':
'ce64cb16c5e0dd567ba926926a67c569d9138c5162685ed5a40639b2c9163275',
'aarch64-unknown-linux-musl-0.2.8':
'8f4bc88fbb7c498224122047f3f559b93e145753032d59782037ccf2969360b0',
'arm-unknown-linux-musleabihf-0.2.8':
'095db570c8c5d0b8033d605984d2a0513585232b6c44f0255365c1bc016a12c6',
'armv7-unknown-linux-gnueabihf-0.2.8':
'c88b3f63ea7b3727500545edf0a6c1581a34ab5328fa2503e7c40911dce9e26d',
'armv7-unknown-linux-musleabihf-0.2.8':
'0063e160561a5928d73a8d89714aff77c51adbb62f4f1f4f0f438d7d3a03b4ec',
'i686-pc-windows-msvc-0.2.8':
'dd3bcf604e2538625affbcda1e4e61ef1b27aa4515081ac13afaba92ed7ded02',
'i686-unknown-linux-gnu-0.2.8':
'7643a101a02befca1cc3a5c830fc51a157f54bee2afc1eb098686972a9079810',
'i686-unknown-linux-musl-0.2.8':
'71a792c953f782efb1648170abef72ce4ac0ca4dafa101719d87798dca5e7833',
'powerpc64-unknown-linux-gnu-0.2.8':
'fa4afad36eb706bebea001d335aeab753b164ac6870267a6f6dc1f7dd70c03db',
'powerpc64le-unknown-linux-gnu-0.2.8':
'43bf0cd00751c0332c9016c7b30dd2a6c753f0922dc5a1ccaba45e8b6afa4621',
'powerpc64le-unknown-linux-musl-0.2.8':
'a0f15bd3e80e8b97affda7d24e2143c7dd99fcb7c8c8e948bad849d4a3658e52',
's390x-unknown-linux-gnu-0.2.8':
'106264c325eeeb17e7d8ec5f1b30a31129d4ebe2c97f54dc88fde16be7177a11',
'x86_64-apple-darwin-0.2.8':
'8eafabb094127b35d472e8219047d4596652a9a645189f829f6bdb1b4786f282',
'x86_64-pc-windows-msvc-0.2.8':
'1ee50b71511cf7007b07843562fc2467dee81cb8baf488e8cc0ea0b58ee12ebc',
'x86_64-unknown-linux-gnu-0.2.8':
'ce9f8fca5faef55af4fb83343143bb403ecef518f9118e97a37ccfbf1ccadfc3',
'x86_64-unknown-linux-musl-0.2.8':
'6f155b9b9d2b1baba811bd0c1aba0306a39ac547dd6eeb3906f692d3cec86984',
'undefined-0.2.7':
'dafefc3926d85052bd3dc07e28ebd8ecde0ae575bbf80b5c5bab80fdc3a3ba84',
'aarch64-apple-darwin-0.2.7':
'b9a0e6c501afbc4b47f07a199927d0783857013736c1c8c2d173201175139e45',
'aarch64-unknown-linux-musl-0.2.7':
'40e4fba3abcc76d5f69dc420cbc457ccc7bd7003a07e6caa0a2a8a803b339e31',
'arm-unknown-linux-musleabihf-0.2.7':
'5ec601accbc0b3a3cae4c8223dae977c4233313a246888ee5bf2adf381e07910',
'armv7-unknown-linux-gnueabihf-0.2.7':
'a960192da71ba05438d1ab3632ee5a22c8b02dea087f9c054c224803870c9571',
'armv7-unknown-linux-musleabihf-0.2.7':
'62bd71eb14a9e6149e7277a7cc3f5ab61e291a861d2cb252544353972183427e',
'i686-pc-windows-msvc-0.2.7':
'51144d9d46629f0c260988ff486fe1720ad049fce7cbea201fa861752172d26f',
'i686-unknown-linux-gnu-0.2.7':
'f35314685a233ee0b769cbac99d552f2feb21dcdf5f24bbf069b34dc5a26edf0',
'i686-unknown-linux-musl-0.2.7':
'41afe171469eb811b50fbc6f45c97db842019f3c8707fbf992335eecd78125d6',
'powerpc64-unknown-linux-gnu-0.2.7':
'd84c24bc570589cbf61b35bff7b3b2b7a56fdcd5ba64f53602a0ab8009e07bd7',
'powerpc64le-unknown-linux-gnu-0.2.7':
'f9ed8c319e5dc5920f5cc4455e088ac7768a858bed95eecec330f1e99e47d903',
'powerpc64le-unknown-linux-musl-0.2.7':
'8fbc6d52c63680cc6857b55cf8f025740a807a58c59ccadba87300f7103e0551',
's390x-unknown-linux-gnu-0.2.7':
'e1d74dce851c3ef82e347221b36247f649d12e5bdfba5c91b211caee7de004b9',
'x86_64-apple-darwin-0.2.7':
'fa3f52a05222d4cefba742e2db029f85c41b7e539c1f748b2583be42b806de91',
'x86_64-pc-windows-msvc-0.2.7':
'5a9b7053ae9d25cd28abdd8fb10a8c5353dc0212594013216da5905eb7515360',
'x86_64-unknown-linux-gnu-0.2.7':
'080bedb35224afca73cb424629e3512b529398f96353c4cdf59fe6cdceac5034',
'x86_64-unknown-linux-musl-0.2.7':
'ebc3de0f88e8cdc211fa914124f201b91037c0ba5f30f2614e630295a147c833',
'undefined-0.2.6':
'c822fc118367829825775874c19d14bb9415804a2c5efa6dfbb302b1fb18ae0e',
'aarch64-apple-darwin-0.2.6':
'f985057f3ef9a101ca4d485337f8b5800d894277f4dbbda50dfef5e0e1d352e4',
'aarch64-unknown-linux-musl-0.2.6':
'41606b5c24e40ae2bcf71d9f8fc28b1f3e1399950ee324aa9925621d5bf1bc0e',
'arm-unknown-linux-musleabihf-0.2.6':
'854f619dfcc52b26e89189b8c8fce3a5041bdd1408cd867d87c9e4751caff6de',
'armv7-unknown-linux-gnueabihf-0.2.6':
'f1194ec0b18cda58537698c5b417f9464d8258334d69049fc32c40c3b8dd173c',
'armv7-unknown-linux-musleabihf-0.2.6':
'5ec8d44a6ef6c732a91463a2c4f6817a71efa0838db6924e2bc889a48118f493',
'i686-pc-windows-msvc-0.2.6':
'abff721157dcf759582735e4c9b366cbde1487d6d8a7d1fb50e1a20fd37d6b4e',
'i686-unknown-linux-gnu-0.2.6':
'e1868d5f0e345d454a8895b09d2e62dd1886bdf01cbeb6d494be9e24a2717b1f',
'i686-unknown-linux-musl-0.2.6':
'abd36ef7319182876fa2bde268f378cf3351036158c6ca9e45996b58f4e54ef6',
'powerpc64-unknown-linux-gnu-0.2.6':
'55b6480dcea50327c20b835fe81a30d685224c5022cabadf364b59a258967e8b',
'powerpc64le-unknown-linux-gnu-0.2.6':
'e8de807c6b42e602b8aa05885627225a33b65d4155c514b58b7bc853d02b792e',
'powerpc64le-unknown-linux-musl-0.2.6':
'6ddc687f19bbb1f9279cf36d3ac05d8ccb7bde1c7b19f1787cd5ac427943fd17',
's390x-unknown-linux-gnu-0.2.6':
'f596c5420cfc7eb608cc7c560d57047985ff1882d2e95c681e42ce85213adb3e',
'x86_64-apple-darwin-0.2.6':
'8e3a83165f751174041fbe0063cc063f4206270c0a187b55941f52e8a9f132cb',
'x86_64-pc-windows-msvc-0.2.6':
'b359026e348df4e3cc12fc8411992ade3fc5bb5debe334669515383681088a18',
'x86_64-unknown-linux-gnu-0.2.6':
'02c7803b6209a80cdc8a4867a02ca6cb6a622f0d83f5276770a8d5636a89a396',
'x86_64-unknown-linux-musl-0.2.6':
'5efba2047b1e72dbecd64e707d0063f6dc49c22f8ba467480e665534c5f6a17d',
'undefined-0.2.5':
'798f49225017610715474781467463a0dc48be1708973b0001e547c98c7c5f58',
'aarch64-apple-darwin-0.2.5':
'a827cb84658d321de0a029b7207b99fa6e20b99f0c1ab8d24484497b3b87c0e2',
'aarch64-unknown-linux-musl-0.2.5':
'f465b75f0129bfb1e47902a14731460aec5cc71d9586a19ad19a644fd2fa7a5e',
'arm-unknown-linux-musleabihf-0.2.5':
'd630b4b3716d4c4da9118d2d5c083e2fe6b7c769dcae39d4c8546ee3709aa0bb',
'armv7-unknown-linux-gnueabihf-0.2.5':
'3341aa26179eb68f6b6c7bcdf44a0c3f5dbea3f43905920f4c018410fb3d46eb',
'armv7-unknown-linux-musleabihf-0.2.5':
'8be8dacd13b0ea18720b818e536bd80d83ac30eba4d37e8913aeaecf9e2feeb7',
'i686-pc-windows-msvc-0.2.5':
'13cb20dcf23792bc7ad8d73c2e4f003702606f6e9821c1ac8eaf089f6e98f57f',
'i686-unknown-linux-gnu-0.2.5':
'8432f9d68840fe56a21a8542681045447dcab18b75f43a073bc28c4d5c1b8157',
'i686-unknown-linux-musl-0.2.5':
'52540ed8ddf78ec80db95cf54618e6e4fd4cdceab860cbea9a8fafa957c98983',
'powerpc64-unknown-linux-gnu-0.2.5':
'0a4891a6e8fe2ccd4c17196fad8215fe6611d74a89a7b2569d3fca3546103300',
'powerpc64le-unknown-linux-gnu-0.2.5':
'8717ac07d0684b618f112bfb9a7926490511cecebeed8f125b25f4969dba663b',
'powerpc64le-unknown-linux-musl-0.2.5':
'c9811d9a90b3babf6c384d0a10d38f38e5109b604dcc68564f2c1216a3afb21f',
's390x-unknown-linux-gnu-0.2.5':
'70bbb790f817b1e0d930bea18bfa688d8177362aee8a49b83f1fe88d9123f86d',
'x86_64-apple-darwin-0.2.5':
'8e5808450482b5533c6b33096952b0cfca0a7020d7524c0132616926a9f58878',
'x86_64-pc-windows-msvc-0.2.5':
'bd6c8e30fad5bb2207c2f7248c375034a9becc3ce905bd94322f9d70e9cc6b20',
'x86_64-unknown-linux-gnu-0.2.5':
'5eb13622b4450b3756f2395c261315562c48f405208cd1a160fe47e43fc85da1',
'x86_64-unknown-linux-musl-0.2.5':
'dc591b1322d0ad2d3561c6d18657c5c5c34ff9addaa588645a062cd60d14f0dd',
'undefined-0.2.4':
'073532db6eaf44da32d9a9536f6c48f1c8d450340969234a1b6ac322811758d4',
'aarch64-apple-darwin-0.2.4':
'2edcd05f37e6f1c44aba1388086768dbc53777473c354feef3033fcb5cc3434a',
'aarch64-unknown-linux-musl-0.2.4':
'8bec0692741573c6f150321cdb9be14b1dd22f91fbdb1a87c9b94a184a6ef753',
'arm-unknown-linux-musleabihf-0.2.4':
'c86f3a90d91fbe659708928493a69e35b1a79b2b4bf47d5941a5230ed9412462',
'armv7-unknown-linux-gnueabihf-0.2.4':
'59e781c25a16e667b57f76b8b99bfc31b85ca94811ddd95c549045928f80c3cb',
'armv7-unknown-linux-musleabihf-0.2.4':
'5a89f32071ace6e5d0501fdf7fe787f2739f89df862dfe1d1d48eaef09abc0ae',
'i686-pc-windows-msvc-0.2.4':
'4e6255288f9041070bb0736b4626ddbe9b8933ff5e067224584c9ca14867902f',
'i686-unknown-linux-gnu-0.2.4':
'7f78cc0b7f0316500539f8c9e4f4077c2a94d015673c1aa6ac9402dc8f35ebd4',
'i686-unknown-linux-musl-0.2.4':
'97df66100411c14f30639b8cb97b42365422f462e0a5d1acc0770f1d468cf258',
'powerpc64-unknown-linux-gnu-0.2.4':
'52b2c0dde7367c0424363092f276dc07d4fafa7a5696fc34849975717c53b5f0',
'powerpc64le-unknown-linux-gnu-0.2.4':
'14c765959084196deba0e4f858fec071b03fd70ec9176e7414e7cee88d6d8e0d',
'powerpc64le-unknown-linux-musl-0.2.4':
'118d70b310f2a4029bf15146d5e574c8b987144b13e235b76bb909654bbf8881',
's390x-unknown-linux-gnu-0.2.4':
'175c5c05689bb332f74927c4001d1a72866bcf8f5b7fd4f2ac766eb30119882b',
'x86_64-apple-darwin-0.2.4':
'a5bd83234920728797fc523e2aa3605c45c7c3ca760e611c4071943cf109e58d',
'x86_64-pc-windows-msvc-0.2.4':
'60599a616c7ea04b2c6a4baac30de0b70e3d934795b672eef73298fdf187656a',
'x86_64-unknown-linux-gnu-0.2.4':
'2c470b016f749063080fefc5dd19176bd25b9761033df9df7b5ab914eba1a8e5',
'x86_64-unknown-linux-musl-0.2.4':
'd795a27ccc2a47e8939b02296780c58377342ca35b51a518e36fa6b62291eabc',
'undefined-0.2.3':
'aa6349670507cf6ce80d832d488391b82b48a9f4511c868886758349d62664de',
'aarch64-apple-darwin-0.2.3':
'20e466f87ebeda26da0fff5306ad998375fe1e27d2514e4b4f5711f9fad6bcee',
'aarch64-unknown-linux-musl-0.2.3':
'8574f4d4c56b87eb0e9041f984d8e79d98c53d2183533c2196f8a6dd16944929',
'arm-unknown-linux-musleabihf-0.2.3':
'092dd369d4336989dffc7114006c069c851a0a09b463e0522e06704fe002d149',
'armv7-unknown-linux-gnueabihf-0.2.3':
'cf2925523919708024d7a99a24318faa252a5fd1264e19aad936295ba65ab97e',
'armv7-unknown-linux-musleabihf-0.2.3':
'04512d5e3d68a6b4f8bcaa8e94d0e196ca0f525a387c45272d3efbcf87ad846e',
'i686-pc-windows-msvc-0.2.3':
'4f9c95a4f10ca3a35ef3d7c84b02ee473826ca3089c0e701c84efaf9bc5dd1dc',
'i686-unknown-linux-gnu-0.2.3':
'1e9a60953f4c7910bc2a28e1b131cad975c4e0b8e4c1616a2c494160badfd330',
'i686-unknown-linux-musl-0.2.3':
'fc5e7a35c7b229eb8be9c38901ffd29ecdbc7bcf4a54cca21c477f8d10f8cdb0',
'powerpc64-unknown-linux-gnu-0.2.3':
'079dd937d5c71ae1ec72ed47a3d78afbe73a1281094f4fb49884758752d28f06',
'powerpc64le-unknown-linux-gnu-0.2.3':
'a6ceeeae7a98c410b97d72a26a6ce5d53115c4883672008a5c614fdf3519e18e',
'powerpc64le-unknown-linux-musl-0.2.3':
'c093aad7e88ce3edd7a971b6921e3365c017cebdda704366249db13b143d8cb0',
's390x-unknown-linux-gnu-0.2.3':
'0f817aac0d53f0d362b23399d49c5c113c9cd1a7c60cc0d1677dd4306d3c2858',
'x86_64-apple-darwin-0.2.3':
'79c28e2121d4299a2190ab0c8f149d676a6d623a4396c86cda947a9280f494a8',
'x86_64-pc-windows-msvc-0.2.3':
'c02509cee8e75ac1e17ea0101c4e0d624a8e4e033eb74d3fd50d7f06d30ff949',
'x86_64-unknown-linux-gnu-0.2.3':
'd94b9f679b3718ed0f62eee1126f02f1552301b7dc473a7dc3727f20b889e057',
'x86_64-unknown-linux-musl-0.2.3':
'872113d59455f86700d23b4589bd2767491fb7ee4e21c0a62a9f2555c631045b',
'undefined-0.2.2':
'e7ca19e90cc640ac96756b52cdae640d03e427fbce92643a00883cc530487ffd',
'aarch64-apple-darwin-0.2.2':
'4533c5a3f81f64dbcf9fd154cfa5e1cf904e4d9698eca63ec6a209f554a0beb9',
'aarch64-unknown-linux-gnu-0.2.2':
'fa01c8584e6dbea991e9f14e50ad33e51c1a321cabedae738075fe58ee5a3ab7',
'aarch64-unknown-linux-musl-0.2.2':
'2f004af91dc4e5e18074724e3f6ddf074026e264a2ecd27fad067d152e739893',
'arm-unknown-linux-musleabihf-0.2.2':
'3d6038f9d043209c9b135743e766ea11ddd26d25721a21b2494d72233f470090',
'armv7-unknown-linux-gnueabihf-0.2.2':
'2e680d9b99deae3939da2d5bab5997e12713a2991a326a412c117c3471d41d32',
'armv7-unknown-linux-musleabihf-0.2.2':
'9363ea6707d8451b78980cc2a4baef357d9f86ed2e1bc877f68140c5ec47aa3f',
'i686-pc-windows-msvc-0.2.2':
'e3c321c02572db320f1f6555da93fa0a2550cee84be49df8890f45dba49cc31c',
'i686-unknown-linux-gnu-0.2.2':
'e81b97d0dc2756b7ca632d1344d9dcdf0dd3d127f1c4b134c338a05b28454e8a',
'i686-unknown-linux-musl-0.2.2':
'54d79ac9d9f04637176f1eca20917c27993f1cc5040e9f73d2672ba5f414d044',
'powerpc64-unknown-linux-gnu-0.2.2':
'9811a9021a302229a487bb717f643d96c2746691773c552f0c43294b0935a78b',
'powerpc64le-unknown-linux-gnu-0.2.2':
'386bb032c291e0f2c24fa6866588e632eeb999ebac6ab20ce7aaee97f046ba4b',
'powerpc64le-unknown-linux-musl-0.2.2':
'28540d8ca31c5d7568bfb361d7a28a0b5f20ef9f08086d5cc70fda07ad9fb250',
's390x-unknown-linux-gnu-0.2.2':
'237b3a93ac0d9ccf7d841f89ee0e7b122ae21a0e637ff8149e1faf7a4f55550a',
'x86_64-apple-darwin-0.2.2':
'4c0acbde53ce0fec440379c112bcc6beafd924dbbd6717d97e92245473d1e51a',
'x86_64-pc-windows-msvc-0.2.2':
'fdfede202032b74e3a3e94034c26e23607b4a4326625953f48eae74c1f7d4d0b',
'x86_64-unknown-linux-gnu-0.2.2':
'd19904a4eb2dca1b654639e82fc0327957c73427e504492005645f62d2205a3b',
'x86_64-unknown-linux-musl-0.2.2':
'82c4759fd56e932fd94642172ebea98cb55f4fbaafc4d00038ce425b08a5547f',
'undefined-0.2.1':
'2b7e04835f90d280458fbc473a2d4f47cf960d97769764deb059d0e85a978c45',
'aarch64-apple-darwin-0.2.1':
'bb50bd8c7844ecc366c6dd99205d8cadefaae3a8bc10ea03d51e3e3634426b45',
'aarch64-unknown-linux-gnu-0.2.1':
'e26270d4d3a2f0273ed40e1a237e085500f4db85255ed7d17ebaaa48123a0122',
'aarch64-unknown-linux-musl-0.2.1':
'6ab4c698ee4d2efc2ad9db2d832d47b77feaa4944e8ac90bedb78eae76c0ad76',
'arm-unknown-linux-musleabihf-0.2.1':
'0f58165c9947ea4a2178076fcf31f28186185f73537ff7e77aadcc04225cca0d',
'armv7-unknown-linux-gnueabihf-0.2.1':
'8d36878c23be2c560bb2a14d9fb8e4d418dc14593bd2d7b4ad93aef82eed6d6a',
'armv7-unknown-linux-musleabihf-0.2.1':
'f714dc140fd40d149659ced54ac2d5e9532957afc4d66c3071131b648e417f3e',
'i686-pc-windows-msvc-0.2.1':
'65e6f8c12bd9feb46b0d415d2af9fb4bf018756c1158931a1e8adaa075ad41cb',
'i686-unknown-linux-gnu-0.2.1':
'ce3973a4f332ef0ff996e1dcd7cfcbbcde977a5eb5febe118c4bd1387da66ee2',
'i686-unknown-linux-musl-0.2.1':
'de3a0be9533980e74f1f6d834960cb3cda326a9aa33f86de18238ec9eca148c9',
'powerpc64-unknown-linux-gnu-0.2.1':
'f60a5e600c56cac45289d738264ba99c27c1e345c7e75f41a01d65a3f78d4098',
'powerpc64le-unknown-linux-gnu-0.2.1':
'b49dd3b2e9691daaa9793f1fced2b32edf0998ef55c630b5dcf18670005bdb73',
'powerpc64le-unknown-linux-musl-0.2.1':
'068a869b16d7a1310d895c6bca1b6a6dd6c6b6b5d2c7998433d10b59aee0ff11',
's390x-unknown-linux-gnu-0.2.1':
'0d79f0c4ad50f6c397889723c22db136d7f819c21576d0a40fb8b762d136b80e',
'x86_64-apple-darwin-0.2.1':
'438b30b81e86b95118ceeee0f8e2a2e018dccb22a5ef83985728610715336d62',
'x86_64-pc-windows-msvc-0.2.1':
'959a818ecf5869d69a4689c3984c5c87c915d898d8327ced120806e0b2f0f699',
'x86_64-unknown-linux-gnu-0.2.1':
'623069deb38e4f2d47054388fdf1e4f9a676853fa42080d3b9bf52cd812c75b5',
'x86_64-unknown-linux-musl-0.2.1':
'd8af260263364fed8f2d4ba7c1c404bbf30f587cbc2a97807b6f8d5a1feb4cab',
'undefined-0.2.0':
'352d767c63e4b8ad10d30f705b62121291c2492e1df3eab26ef6dc94948fe090',
'aarch64-apple-darwin-0.2.0':
'fc2c917a8c2b1567b1d035f4a8122750f900cd813409f9d80bbd287e2597dfae',
'aarch64-unknown-linux-musl-0.2.0':
'3504273e59259c6307446a2c7c1f49f194e8c7d8b79474cdfac97696a655fc34',
'arm-unknown-linux-musleabihf-0.2.0':
'b4664ef3e726bd5569912e4ebab338263b5da150985513fcace4481b8422a09f',
'armv7-unknown-linux-gnueabihf-0.2.0':
'202f293aee0e156611898ef95313be812f9de6273412a27a530370763c5a5daf',
'armv7-unknown-linux-musleabihf-0.2.0':
'afa807e1ce8fdaed8fcb372a0ca46cacd39572d1e87613d4df583936bd8bbfdb',
'i686-pc-windows-msvc-0.2.0':
'd65d94ade914f7507dc93122561e47996c5e0861bdcccdabe794bcd5c9185f82',
'i686-unknown-linux-gnu-0.2.0':
'ac307c2cc67d81c3e22b0cb9af0e808551df4c1b50d1f92ee41bf6f07523ab3e',
'i686-unknown-linux-musl-0.2.0':
'f81963f737b1398d4c3c5ee0d370e7c4706936949e82ae42b52e54fbcc1840fd',
'powerpc64-unknown-linux-gnu-0.2.0':
'5bfcd8a0061edde591868437fe061728c4ae0fcedbe5a2671628eeda35b444ba',
'powerpc64le-unknown-linux-gnu-0.2.0':
'd1338054af7e09ea91016fb0e3656646774e0223859498d814c7495b8a008c94',
'powerpc64le-unknown-linux-musl-0.2.0':
'90fce3a907c1124391408bb5f71a795264a226c8fe31b58ae1808fbe802de043',
's390x-unknown-linux-gnu-0.2.0':
'e9554cd1d54f00675f768a47b7d68cf541214256d4db9b7d2c60ddab3e85bcd5',
'x86_64-apple-darwin-0.2.0':
'5ac4c95dee24980ced348a86cfe4e114cfcef442ca3cc11046cf8b6edc65f58b',
'x86_64-pc-windows-msvc-0.2.0':
'd716371c39d9075f664f9c30697fe0987fcad79a3d403f79b87f30e1022656e7',
'x86_64-unknown-linux-gnu-0.2.0':
'a14c9317e2c000475851100c83c20ae725e998511b1ff890006d70532567a822',
'x86_64-unknown-linux-musl-0.2.0':
'44a6168281d2fe1226f4af6c94b068006dc458a7b98ff4d4dac1991e161eb678',
'undefined-0.1.45':
'79fee4ffca82be961a2cf79b024506a672a4e5ea1f924c1174ce3a2e5bfee54f',
'aarch64-apple-darwin-0.1.45':
'4990c1ca07e87ea215085c798294205057efd7ed97d7d5f4c76e840fc366753c',
'aarch64-unknown-linux-gnu-0.1.45':
'71ff02cac3e257e12d35fe9bbd6dc096858ec23e218b069b5ec6e5157db39e1b',
'aarch64-unknown-linux-musl-0.1.45':
'7ca9c40f40b1b9f9673f78475a08e45b5c367bf3d73052896ee57a5f434872a6',
'arm-unknown-linux-musleabihf-0.1.45':
'64526323d11e496ff7012821424be3bb102ca2b74bf47392fbdac4991674a650',
'armv7-unknown-linux-gnueabihf-0.1.45':
'c26b07ccb7e35595addc328bfcb99356343b12d59c4d3f9676aebd7aec24163d',
'armv7-unknown-linux-musleabihf-0.1.45':
'dd2fa3ecfaf7a73e86fcb7f3945873b242a3f863742530afc98921cc0daf30b1',
'i686-pc-windows-msvc-0.1.45':
'b010c1ddf3c0de9ec25068e1f7026b369df453b78c6619634da9cdd14aa9d810',
'i686-unknown-linux-gnu-0.1.45':
'2f14d4d41617b0358aadbf1bc8d77db60ca27200a8bdf66b8fd87fe66a18575a',
'i686-unknown-linux-musl-0.1.45':
'bca68fe4228aebd2f5f9572a6cc70fe4a1d0c146a2d64135f264e4ae355bc3d4',
'powerpc64-unknown-linux-gnu-0.1.45':
'f62159477309071a00fef10f0f0305e527bb6ffa1dac99650de365ba4ad6a2bd',
'powerpc64le-unknown-linux-gnu-0.1.45':
'b67882e3778107610793c64048d07ad0d8e9ac627ef215f43ea45cbe074e25fd',
'powerpc64le-unknown-linux-musl-0.1.45':
'1c19bf1fad5e032c812fb084826ce5630081a2863a4aa529f1689e091f340499',
's390x-unknown-linux-gnu-0.1.45':
'85f6ee976f34bca558da5117613a16dde793e3b05395463cff0f3d3547ca309e',
'x86_64-apple-darwin-0.1.45':
'b820364764eb628a89e11b25acd3fe19dfce436546f4f7c8dc38ede3f7d939df',
'x86_64-pc-windows-msvc-0.1.45':
'3de68132a6316e346f2ae3847dcedaa13ee89a8672b91544bc7d31f49362f20e',
'x86_64-unknown-linux-gnu-0.1.45':
'11341c386088233e197707a30fd9b13233deb222fd366cd39f9daf8e5924c7db',
'x86_64-unknown-linux-musl-0.1.45':
'ceac15973402e27c6c9b1077e35249437b2cbc26f60fc90be31114c47631884b',
'undefined-0.1.44':
'295c120a2b63297d929ee9592c9b1993435a0c6907436d14f8bb93cff5ac4800',
'aarch64-apple-darwin-0.1.44':
'154d45db602d5c4f8dbffb0e038fee581f161963f5562568be565625ac7bc753',
'aarch64-unknown-linux-gnu-0.1.44':
'afb7039f033546d55730dae38a106dd56b358117a565a42bf3ebda9c48db53c6',
'aarch64-unknown-linux-musl-0.1.44':
'3a461fb08697104ac5ff9749a6b370af87b95ad83008978ceffa7d0564fdc8c7',
'arm-unknown-linux-musleabihf-0.1.44':
'db0371a9995d3d6c9ec9a7528ca535d0a5def1177127032360b374817030a71d',
'armv7-unknown-linux-gnueabihf-0.1.44':
'a89e4114aa9855c9070e74c06f663213da614dc145ad21c0ec1aa5f0fa294c30',
'armv7-unknown-linux-musleabihf-0.1.44':
'eeff1ff78345df0e86dc8f3144ea7af47d50ce9400f0d73798964a399167b250',
'i686-pc-windows-msvc-0.1.44':
'c0f74ab851a704b8dfe6afd6bc7fad9d23947561d6c2da1a6cd5274a762c6c4f',
'i686-unknown-linux-gnu-0.1.44':
'6e68901f49540494274fbccb83feda57bef7ef137443228669c790f5f1a14fc9',
'i686-unknown-linux-musl-0.1.44':
'592020dd3bbe026d657341b0a7b28daaa57a68626585491a70863ae9f63a4769',
'powerpc64-unknown-linux-gnu-0.1.44':
'1af1b7839ff2a5cfebc7997fc579cc61a34c8ac4c838edfc07cae7318f1c3ed9',
'powerpc64le-unknown-linux-gnu-0.1.44':
'cdd52a058a4243f9e3c5a4c2ba8edacb969df09623344e45a7adfe5e61e83cfc',
's390x-unknown-linux-gnu-0.1.44':
'3022aa438b64de7e75c8adea6b1e9650874f63d6e317e4c294d24e41e53d1621',
'x86_64-apple-darwin-0.1.44':
'0c2deb646f49ad7dbf8db9a9a7fa839b76654569d97b1ccd9d18bea89a34b3e0',
'x86_64-pc-windows-msvc-0.1.44':
'f876f8c0867707db2d653973caf9ea306d65503ec772d0df9c02b6d0973fc7df',
'x86_64-unknown-linux-gnu-0.1.44':
'68e8fda65c987cc104bdf7ae1eb332477733d44a27823032826f9370928568b2',
'x86_64-unknown-linux-musl-0.1.44':
'1df53dac9e3a81df6fbbef36e23cd932b1cf0fad9016d943fef63d2ca284bd02',
'undefined-0.1.43':
'0d57d370baf24dcb00ce59f6ab0d3dc2ceee41bd2c870a73fa517d3747d34a4b',
'aarch64-apple-darwin-0.1.43':
'e52c5f38cbcbd238fc40382252e2d40df3df1bbcc1302da86c19324285e9d27c',
'aarch64-unknown-linux-gnu-0.1.43':
'9dd96e89be41fa12b1101ac921265538871d99947ca3b31c87713f3edc6140ea',
'aarch64-unknown-linux-musl-0.1.43':
'f0667c6d7e412ad40e5bbe5964e7448afefaa07d1d9c1a820090f3d555f9184d',
'arm-unknown-linux-musleabihf-0.1.43':
'940a297a5ee1833239632c28c5570e661ff7281607e6c6da003167b70ac28d27',
'armv7-unknown-linux-gnueabihf-0.1.43':
'1adc03865b683480c454994fd6a679607de2843e96a94d470c1e89abced8105a',
'armv7-unknown-linux-musleabihf-0.1.43':
'84010f6b5010caba4186c7824004000687d326f91a9570e176a23ec627d5a83d',
'i686-pc-windows-msvc-0.1.43':
'5e1896d8d83a58c8b02c328c1bcd852515ff760253622b9508228a062120f9c7',
'i686-unknown-linux-gnu-0.1.43':
'ce026f056c1d4cbab5bfef762d1d08f8833191d595151550419d45e4b3a5303f',
'i686-unknown-linux-musl-0.1.43':
'da54678dc50154ed8254308cf6f0c51c6e3fd34cf1f74f418dbdade980705fea',
'powerpc64-unknown-linux-gnu-0.1.43':
'2bc10fa243971de5c7aa2ca1d993b431dbd191ffc0858071c4418f08983f642d',
'powerpc64le-unknown-linux-gnu-0.1.43':
'b624d9c4ebe991f52452b038848e3d23eba9aaa790ff1727520d21f9efa876a8',
's390x-unknown-linux-gnu-0.1.43':
'd3f707cf4547669431eeb557b097682265c1534e8745a029ad48fd9eacc1c11e',
'x86_64-apple-darwin-0.1.43':
'cf86ff709df440f3bf745af81217484d49fb9d5d6d896f3a9e1b9fd7956cc643',
'x86_64-pc-windows-msvc-0.1.43':
'5765acc5bd938e3dd9e47b2807e9552129de466f31cb835b3c0da3029c46def7',
'x86_64-unknown-linux-gnu-0.1.43':
'62217d8a269cd8901e84e3e197133cdb719a1fa37cd6f4afb07fab001163d247',
'x86_64-unknown-linux-musl-0.1.43':
'c27d81bd87b60ca7bd0119316f0026b231c0418638255400b54e1094140367b0',
'undefined-0.1.42':
'70ad9addeb1259afe4077ed6266c1d9359929cc5fe0311463e52275600814564',
'aarch64-apple-darwin-0.1.42':
'd49e7dea59668962765b8aa2f3a4512b03c166042e380e7a6fec971146ce11e4',
'aarch64-unknown-linux-gnu-0.1.42':
'd4f1192eb260fb67a7b2f69313474c5a08bb3feb777b6ce6e9a74b3c12d22374',
'aarch64-unknown-linux-musl-0.1.42':
'3836a7a5147f6e8826ccfe7b0a081b16b26922ef8359c26b5d678fb50c36ad21',
'arm-unknown-linux-musleabihf-0.1.42':
'354f1d937911f9683dc5f249a4bdd09c637f34b078cd7a2ab0df1133126066b7',
'armv7-unknown-linux-gnueabihf-0.1.42':
'7ef29721204772ab0584acf4d98a43f7a7c54a3beae090b4c443128336492bcd',
'armv7-unknown-linux-musleabihf-0.1.42':
'bada2af1a5cd37573ad88271e8ad6cdd8e038aa88335d667180d91cee4728445',
'i686-pc-windows-msvc-0.1.42':
'7c31034d3869d0b38c64c3b5c066676e0f0e03b1598bc51d931d958bce4ef214',
'i686-unknown-linux-gnu-0.1.42':
'cd7395cb8bf4380f895d88912d872470eae7656e549fec1c2fcf404ab84018d1',
'i686-unknown-linux-musl-0.1.42':
'0eacdfc8d3fe450fa8203797ce1cacc9a6b43e9e4bcabf2901ddd5804b1f84cb',
'powerpc64-unknown-linux-gnu-0.1.42':
'e7b900e759cc429baea47c6f200bf70517207388392c268bdf3dcea98727d271',
'powerpc64le-unknown-linux-gnu-0.1.42':
'03da000f9ca22693e45b729d90eac800014d5dcefec22b74553ea6bebc0b3790',
's390x-unknown-linux-gnu-0.1.42':
'c9d6d0ead67084fde129e1672d14b56507cd4bc6bb96aef6b0ba6ed0ce085da4',
'x86_64-apple-darwin-0.1.42':
'b510fb1ba6b039acac0e1b4278ef0b8e935feea4dc8006c68e3ac4cf793a0876',
'x86_64-pc-windows-msvc-0.1.42':
'57d82e1b0507aa7b4f2259e411dde942876888265aff04ae1eaa3575ab53fced',
'x86_64-unknown-linux-gnu-0.1.42':
'cf3ca3ffbd1971ccef9b4d6cf703c8cf1730b824888bf63a7f1ede13943ddf7d',
'x86_64-unknown-linux-musl-0.1.42':
'ba96ab47ec0366abc78f8f91613d9fed314da8ff414262535a7dc605caea5a9c',
'undefined-0.1.41':
'8aff538cd8cb640bb12b669a6e4a09f5c077c4d39d22be1245bb93965b5a249b',
'aarch64-apple-darwin-0.1.41':
'c493ac2c5170d656499b7aa4a06d0c20d1c42b8b3b006b72661c747626cb7133',
'aarch64-unknown-linux-gnu-0.1.41':
'84c7427e700888ed4fd8ccd368c69cf28212eac4a81ead1ce376631e51127a1f',
'aarch64-unknown-linux-musl-0.1.41':
'a334362acc469af8928df113e881638e23582d0b86eef133a58c047e904a3974',
'arm-unknown-linux-musleabihf-0.1.41':
'8348e5cf28b04ca15e8f2d04a38ffd43daccfa3b1dd82cefafcdca8b692fcf9a',
'armv7-unknown-linux-gnueabihf-0.1.41':
'e0e5b30a899924516c574d9159fadcce008f5f11a5dccbdf95eaa35c24b28c67',
'armv7-unknown-linux-musleabihf-0.1.41':
'b4ea7eee3c6b2ed72d0f0602304f64d405ed4dc600c8879309c9876818c5e5ce',
'i686-pc-windows-msvc-0.1.41':
'd090a0e918b889e963f681322a3f0901d2dae78be15afc2907ded13a8534c815',
'i686-unknown-linux-gnu-0.1.41':
'21b6ad517cf12b5ff2eb030b0dd523ca49e16d9d99136328f1e8197ec50d981c',
'i686-unknown-linux-musl-0.1.41':
'40ed1d7ee942d25458e9d59a27a261cbaaa3433a966aadc141e48deeaa58b243',
'powerpc64-unknown-linux-gnu-0.1.41':
'799f5a7e1ad802a8e5a7dcf3f340bbaf3ea74cc330cd0294cd9787064cd271a0',
'powerpc64le-unknown-linux-gnu-0.1.41':
'1d80e8205503dab569b7d5d4f833a32b7163bd7770917321185e078e84f64298',
's390x-unknown-linux-gnu-0.1.41':
'd8ee3120408bff3313832d623debb8d2dea79ce05427daf534ee5f54e9360d81',
'x86_64-apple-darwin-0.1.41':
'af544d0fb0d902b5e4ad1ce574b9bcd1ced6718ede9f7a2c2c163c531b10c602',
'x86_64-pc-windows-msvc-0.1.41':
'0d9567b67a6cc6404c4163f8b661561502440eb68698ad7be1197276717f8d75',
'x86_64-unknown-linux-gnu-0.1.41':
'8d4782acbea2c04f34d90df25c8a7cce62e3673949d3be4a2baaf610385d5db4',
'x86_64-unknown-linux-musl-0.1.41':
'9b0058e9fc92c96e3530ec4e1a998e435214cb3905e7284e09cf7c68f1c33c01',
'undefined-0.1.40':
'c842a83107554c3a90451e7e6d935aa9d3d066bc25e1cba5c66b80c10754384f',
'aarch64-apple-darwin-0.1.40':
'28e92ed4534fa5085050fe51db0a641c319377e6498e5ee98d892ae91139f603',
'aarch64-unknown-linux-gnu-0.1.40':
'452cd7ec339345d4067f27b6db672f02db942bb525c80c510bc3bdd7596d74b3',
'aarch64-unknown-linux-musl-0.1.40':
'b2fcf9819a5fb53aa98a0fc19ecee6bcd862969886de9d63fffe9b3270d284d6',
'arm-unknown-linux-musleabihf-0.1.40':
'cbeada3fbd6c380aa5524e8e963558da11a214d9c416da64428d92af555567f6',
'armv7-unknown-linux-gnueabihf-0.1.40':
'7ae8180326f005e12dfc8be04c2f88c54efba020d5bdfe49608e1b3407956e55',
'armv7-unknown-linux-musleabihf-0.1.40':
'0c1aa0c94457412d466798e565aefbd11e9de4e1b2d4dc9ac0ae45c91d01857f',
'i686-pc-windows-msvc-0.1.40':
'c985f0339bc7375fab00b4a06d1e215017516188040202dae9d6147196a4bd60',
'i686-unknown-linux-gnu-0.1.40':
'e1e5c191d4b5634be80a7f4e79484d58190848253a43c678b8c9a8811483fe93',
'i686-unknown-linux-musl-0.1.40':
'2b6cc95ea515a50d8da69536eb68478009ec7ae0fc94a13f584be11eedc4a4f9',
'powerpc64-unknown-linux-gnu-0.1.40':
'e7d56ee62672e809ddcc7f90b863d5f1a0d314fb613647abc830526b0161b975',
'powerpc64le-unknown-linux-gnu-0.1.40':
'8c5217c8b58824f1939748818fbd0eb57d35196b361c1dad774bbb2ff0b38869',
's390x-unknown-linux-gnu-0.1.40':
'60689531d1a4308396dfacc16a466749730fdcc9c5fced509172349a2f5d9b58',
'x86_64-apple-darwin-0.1.40':
'9b29374bc79dc4cca9b6e82e420867a06806651f814081987927fec5bc3ea85a',
'x86_64-pc-windows-msvc-0.1.40':
'bf3845b59aaf6bb383c6caf89eae949a18106387be154fb5b2ae9a4e4ed646a4',
'x86_64-unknown-linux-gnu-0.1.40':
'd9175308fcd2bd4b953b05cee66a022380ba493c01b2d35884684719d599299c',
'x86_64-unknown-linux-musl-0.1.40':
'7a5a1173ba3319f176167bd32544ad5d8edf0f38c753820b5627b036c74aabad',
'undefined-0.1.39':
'56e3247a49c76a42c7f686292d8f706110a308c45153913b165657f8db8bcbf7',
'aarch64-apple-darwin-0.1.39':
'35e320cfa41c8902d66e2c491b5b2d2414e1c6443177c660736de657c66fb2c2',
'aarch64-unknown-linux-gnu-0.1.39':
'62b24363f21c07e02f62cf8e298ee6ec30e844006f3a52ac55c02903c755586d',
'aarch64-unknown-linux-musl-0.1.39':
'1a77b4cd4bf6ab52efc780fb252097184c23f81233a8f508e49939eb2e6e690b',
'arm-unknown-linux-musleabihf-0.1.39':
'c8f628862e665199b82826db24db3007c16c361c8d0f31d8dfbd4be2d7aefdfb',
'armv7-unknown-linux-gnueabihf-0.1.39':
'63342dac1cac572f8f12b179d91fcb0527f115f6a7ef17ba7aa24b699854cf39',
'armv7-unknown-linux-musleabihf-0.1.39':
'a9013c428f1505e21e56715e6c91a4e45367b7eb341a14a51663e61305cf7162',
'i686-pc-windows-msvc-0.1.39':
'53e4c2ae32318699a5f6c4c7f19f1dd114b39b15e63704be902ff894b428dfed',
'i686-unknown-linux-gnu-0.1.39':
'f0280538ed9bc68283606e4db031f9cc4c4c8404dc5719e9d1f03f705762966c',
'i686-unknown-linux-musl-0.1.39':
'baa9ef041ed3834d7e5869b10945bb804449e23ea0ffbe91a9475bc4c4e83fe2',
'powerpc64-unknown-linux-gnu-0.1.39':
'5d0312a1ee77d652115a21021f47e374886e84e8d986f3a1bcaa7e5851cd2767',
'powerpc64le-unknown-linux-gnu-0.1.39':
'07b1856e71c35f93ef5359c54f63d819841762316bf4d7c2774e178412d9090c',
's390x-unknown-linux-gnu-0.1.39':
'773725ad1e02d6f4c90494fad5309a7cb4ce03b2e377fad336fecd895bc42dd2',
'x86_64-apple-darwin-0.1.39':
'cf5393f17de6961c7140d68f80e09c1f43ef47f8fac923ccd41896cce698f296',
'x86_64-pc-windows-msvc-0.1.39':
'a44eb417b0c1e1c7cffd7349b8019d684f6200d0b5cfaef7dc322e8312bb254c',
'x86_64-unknown-linux-gnu-0.1.39':
'e748caea4ddafd3aebba771f4e8f51fe5aa517b71151a648269b3be982a349a1',
'x86_64-unknown-linux-musl-0.1.39':
'dc57b6f64ae82fe604390e05cf66092fe598ae0fd0fdea9d568f6c4874fb3fe2',
'undefined-0.1.38':
'1fde633a2c16b51e43f346681471b3daf26e2b918a6d13de170eada19945774a',
'aarch64-apple-darwin-0.1.38':
'9ed4dee0e0f3da47fc85264fed79ea118f66043481ad71182c21e838f4f207dc',
'aarch64-unknown-linux-gnu-0.1.38':
'8d5afd982060a11748a46b4ca8ef9a2aec52ea4736419dc7c0dc53ad98843454',
'aarch64-unknown-linux-musl-0.1.38':
'b15f7f84f0975825f6f0e2f10ec0ad49ad3bb48d6b7bd89f058e578a939cf383',
'arm-unknown-linux-musleabihf-0.1.38':
'df7fd36d0de1d751f091c431d955b9d0a5cdcc74f446bdd65b91aad97cd016d2',
'armv7-unknown-linux-gnueabihf-0.1.38':
'e0a55e1dde1d1421a10d4706a8e79f37039fd57026f02e629e93b6feea504cfe',
'armv7-unknown-linux-musleabihf-0.1.38':
'b1371b764e2840e5a4ef3567a36626b4aaac2ede2165d42e5ac19683ae4beaf1',
'i686-pc-windows-msvc-0.1.38':
'4acad6296bb67eb9900fefd0ccca8af7d770f485f40c0545120e7b452ef7a0dc',
'i686-unknown-linux-gnu-0.1.38':
'c7065c75b52ba3b9eabb69378e01a1a5d4ca0f80545dcb8a027080fdfcb112a3',
'i686-unknown-linux-musl-0.1.38':
'b65b24356366655aa112c18205d3214fd5fd3eca80888392f7b1e25d215f70e5',
'powerpc64-unknown-linux-gnu-0.1.38':
'2eaad33bb7d742498aec2dc6ff52ebc82103347db74ccdf202e0dbe2047815a9',
'powerpc64le-unknown-linux-gnu-0.1.38':
'a1110c55b4383fb0dc967ae0ee3950499915d34d69d10c08c39d66340f28651a',
's390x-unknown-linux-gnu-0.1.38':
'537202439156061acea27ef3be90c524368ceffa642f43333dbce223c35be866',
'x86_64-apple-darwin-0.1.38':
'f35f8e07f66109867f10bce591188e5a54a822344517bf5150fcd28c616b744e',
'x86_64-pc-windows-msvc-0.1.38':
'decfffd2e6e707b7b51b0981a51d6d277e8c15aa904be3c820dbd46b35a35a95',
'x86_64-unknown-linux-gnu-0.1.38':
'9b19bf6067ebb2e200211a300f0721e35144424f8f0f703dfc50c0bc745f69df',
'x86_64-unknown-linux-musl-0.1.38':
'29635ef915c1bb4048720e6b5e19f424a5a5f3934adef5a0e036295256c098df',
'undefined-0.1.37':
'158c7d7a9bfe2dc8430eeaa1e985a883d241745fba1acfb75e8d2242169983bf',
'aarch64-apple-darwin-0.1.37':
'1a160798d79a626a06e16634d77315e9dbe363ab6bfdaef424f7b5bffd30cab7',
'aarch64-unknown-linux-gnu-0.1.37':
'd59ed726780815d48f95bf4f7a2d9c41aaa05fc746d5a8af49ae11d7e1f3f34b',
'aarch64-unknown-linux-musl-0.1.37':
'd86cc49c68c9efd1116fe164f4be14d096d20f846ea50fb02148cb44ed3d920f',
'arm-unknown-linux-musleabihf-0.1.37':
'2ad8488bbc2f519bcd2a4435aea33ba79c0dc71fd61f90d898964a02068b8aab',
'armv7-unknown-linux-gnueabihf-0.1.37':
'86441af7ba294abf25ffd60a452955db4e8610490bdaf8c054976bb31d96baa3',
'armv7-unknown-linux-musleabihf-0.1.37':
'7b813fdcadffd54e629dc65541edf2d90d043083e32def8332bf87ce2443f583',
'i686-pc-windows-msvc-0.1.37':
'e676cacfd871e33e7c4972ae241ed6362e20159261f9da8545a3816e436b59b0',
'i686-unknown-linux-gnu-0.1.37':
'bf4c37a3aa6ee61a409c89261593909756dbbd86b0819d5003dc3ac83aa081e1',
'i686-unknown-linux-musl-0.1.37':
'ecf205ac1196602877ad24d1c5fef5c8688d66262d358fe818155190ff0ad8a0',
'powerpc64-unknown-linux-gnu-0.1.37':
'4a0cc47732dada5ee1e1392fe6ddf6e2947a6bcb0b61e83936eaf1ebd363b5e7',
'powerpc64le-unknown-linux-gnu-0.1.37':
'70764f4145e931dfbc195b4f6c2ac592a776b34402480de8dc6145cf2196b7e2',
's390x-unknown-linux-gnu-0.1.37':
'222b3567a5ce77b4ee0b8732cd18a34a88e31e0c5230c652609da922b83d7d36',
'x86_64-apple-darwin-0.1.37':
'61502d8054f12aafd56ff193abca0606f688fb7d84cea40e94ff3de5a0cc950f',
'x86_64-pc-windows-msvc-0.1.37':
'6bc00aec8b4731a7883b88d27450c959055a24a1f5858777313addbe850a7cad',
'x86_64-unknown-linux-gnu-0.1.37':
'33cb815958a3e84b929dc06d42bf5170a5a5eb60b413f2243b4e62e75edc3e49',
'x86_64-unknown-linux-musl-0.1.37':
'2c591eaa0be3711dce1ad6d07a7564c8738b5c16b009c84037727f94c073a962',
'undefined-0.1.36':
'1d7cf52af7406ddabc4feb66dee5c4573f7b22a5ff73fd8a5b47dec7897c8e7e',
'aarch64-apple-darwin-0.1.36':
'd37641e38512b7e55b9eda7f8a6cb831375b5f1e86f0f326dfe0e6a8602ca7b6',
'aarch64-unknown-linux-gnu-0.1.36':
'c64b7d23c3e27346a5b31a95fc16663407bc72aee0b17eb0aa9d069e312e606e',
'aarch64-unknown-linux-musl-0.1.36':
'89740c2cb16bb57dfb125764fb889f86b225cba0b8691b2bbf30baf96d2348c9',
'arm-unknown-linux-musleabihf-0.1.36':
'a802fd2c6ccd2ca8dcfe85fd2c5fb58689c5c082e6ce8e3aa1b1436031c70879',
'armv7-unknown-linux-gnueabihf-0.1.36':
'07b8fcdcde9f43c94ab4d5296c1e8c86f41589f4d8d15f124311bd3c1f019777',
'armv7-unknown-linux-musleabihf-0.1.36':
'78026455886e3c264eb952c92d2795d19cffddf529651a2d8f20cadac4ad31f8',
'i686-pc-windows-msvc-0.1.36':
'e945b6a176ee08d7440703eb4a975a8b7d383b8e9b480f724dc5d614a90a080a',
'i686-unknown-linux-gnu-0.1.36':
'b1ef60a4b5b153a3c11e9177e2d72f334e1c7d9311bea75d42faa8ac8c9d4e42',
'i686-unknown-linux-musl-0.1.36':
'7fbc9f02618d22f54644c29c65cf6d5ff3cd813f1fcc26cdeaf3ae393057f604',
'powerpc64-unknown-linux-gnu-0.1.36':
'678a5fba4ec6b6d52d6de833a447b288869df501ba33399ddb437977bac14efc',
'powerpc64le-unknown-linux-gnu-0.1.36':
'873a0531ba05ff56ee452365e4ef9c40acd4c4e6225c250e6a6c4c65d728ef70',
's390x-unknown-linux-gnu-0.1.36':
'14b4956ea11f85a43031509c6d01e8bb941d946f974d405f3cf5dc65500f47fe',
'x86_64-apple-darwin-0.1.36':
'30e3e1156c38e335b969d999b83d9e9f6fa5d497c80e5cdf1c43339cdbbd02bd',
'x86_64-pc-windows-msvc-0.1.36':
'fd43e117e08414970f84cddc6300c5fbd5096be8f9c981d5b3464c28720ddcfb',
'x86_64-unknown-linux-gnu-0.1.36':
'7108a5709273156a176394d6da4b64f63b3c658e350657978eb1ba4c9e287e02',
'x86_64-unknown-linux-musl-0.1.36':
'3c95bc263adcab13ae5c7e9a0c97e9de5037f8926294cf22902d04eb99f951ef',
'undefined-0.1.35':
'033df44758caf9a2d81675419c9ba3bfd9a15255e670078b236b373a6ca8cef9',
'aarch64-apple-darwin-0.1.35':
'd5c0740e4a64c5d79150f1e819d903ec6281906bfce433bfe599312de7994435',
'aarch64-unknown-linux-gnu-0.1.35':
'70721a0535ab34354b2fab1461c6ccfc5949943ad34bfec179f4558aa331635c',
'aarch64-unknown-linux-musl-0.1.35':
'59e4100cdad71bcbf4618516ba860b1829c3b2f255bee00794b5ae1823cd1388',
'arm-unknown-linux-musleabihf-0.1.35':
'4832abf5ab1c3d238e35a1634c6cb62148f5fb722e48d498c1cb10876efaecb5',
'armv7-unknown-linux-gnueabihf-0.1.35':
'ebdda308333bf6ee351f0f225d7076697c316e6f671a23caa8922f876ba2627c',
'armv7-unknown-linux-musleabihf-0.1.35':
'6ea7e2e6953bf3afcc973fea7aaf12ada410407432d86e7665ccd641c503d739',
'i686-pc-windows-msvc-0.1.35':
'af6066ee9197a675a6138a118d3125890468ea036c81d3d3327329830ad3d587',
'i686-unknown-linux-gnu-0.1.35':
'9ad7c1b2a4555b37e54f3e999482d0301e8d030ce3e99627b0fcb1435e853203',
'i686-unknown-linux-musl-0.1.35':
'41be10fbc59cbd7a059f0fbd33440c7b034086d36395546856f2076cb562b4c4',
'powerpc64-unknown-linux-gnu-0.1.35':
'df17a85fb14b5e295bf45a2e371ca0f78463ac66b5fa6d1c1f51f22f3eed592c',
'powerpc64le-unknown-linux-gnu-0.1.35':
'd6300efc3079c3d7fbc861a1907c76c9e9f79bb0b3b6effd39bfeefb38bc9bc3',
's390x-unknown-linux-gnu-0.1.35':
'6fcece3d517c4a47e4dd40ef8cf40c18bafa88c22f7846abe80f10ae494260a9',
'x86_64-apple-darwin-0.1.35':
'9de159d413f235d791377ecc7266b6c1b076c8a638772f04e6dc05fca32b6b4a',
'x86_64-pc-windows-msvc-0.1.35':
'543ed32847307ef50b5d21c1f9f4968e1e8c97e75a5899f80de5a6c26cd61888',
'x86_64-unknown-linux-gnu-0.1.35':
'ae2081221ea244e4998b89c408421e9922499fecf371c7310cfa0e951bff2a9e',
'x86_64-unknown-linux-musl-0.1.35':
'9abd44dfd8958e251a3b29a1eb95f152fef94f38fcef8bf534b86fd94ef89e35',
'undefined-0.1.34':
'ff93be812726a344252374ba1751b0089237439077a30c9214fb9a44bc32582b',
'aarch64-apple-darwin-0.1.34':
'40233daeac0eca7ea233b79a8f312fb9d85913fc74547031c81f2ec7c3f3aae0',
'aarch64-unknown-linux-gnu-0.1.34':
'e4fac2f30a2c8e1773b08d4f50994c484a8166f64fc2cf0ed19ccac62f5d01a9',
'aarch64-unknown-linux-musl-0.1.34':
'e13bc0a5fa7aebdb83627cccb95d50d202d6c1d08ec3bc8ff035abc6c5438edf',
'arm-unknown-linux-musleabihf-0.1.34':
'ad0fb8ab07cf301192a829684c8f3b0fc3d024d7e75297c2ed4dddd8d249fc89',
'armv7-unknown-linux-gnueabihf-0.1.34':
'48b5588ad3ff90944a13c24744a14964b68a99fac7694d9a79f4cf38aa38b386',
'armv7-unknown-linux-musleabihf-0.1.34':
'7591b8ee28f1c79b9fa35a32a3f3af32012a221f01851a9747e2686dffe735d6',
'i686-pc-windows-msvc-0.1.34':
'1dd6e548b6f3f661152fed143257184439b819334d7f1124aab015a4919dd4e6',
'i686-unknown-linux-gnu-0.1.34':
'e5b8ac197e33d4884cdeaedf48a90bda44dabff330c194ca55ceff769dd8dcb9',
'i686-unknown-linux-musl-0.1.34':
'2d43d99471b8dc32f6776559769d9dca1c9b587445f9be12ae751d7c58947f06',
'powerpc64-unknown-linux-gnu-0.1.34':
'a6774692b35f66f871c537e0133d4e1ea629862c73dccd6221307a609f7b4cf8',
'powerpc64le-unknown-linux-gnu-0.1.34':
'8ac52b6ad77eb013fa289b42f465b9ab8ba5f861cd76c828c69aca6121682cd8',
's390x-unknown-linux-gnu-0.1.34':
'2d394cf56c1f81b434e45aa0df61b48241675a5b5c97b91b6d511827aa0f2ea4',
'x86_64-apple-darwin-0.1.34':
'2f6933cf0e10e99cb3575deebcad5cc143961a3da167c4b21eff4d600ef872ec',
'x86_64-pc-windows-msvc-0.1.34':
'98c824618c808cf4ae1af16c5341086f0038e0dc1ae7e0a805c872d6fcc033b7',
'x86_64-unknown-linux-gnu-0.1.34':
'1d3b075c89e5763ddbd19efdaf03d6ad96a753db889a28f5127227c40bb9f0bc',
'x86_64-unknown-linux-musl-0.1.34':
'bd162c354d0406c5ce91c0b16d130a62edbac6528ecd90a7f5b3f2d315f12df3',
'undefined-0.1.33':
'54a67168f4c5cdf44f4197e948cf4ecb65e71001f49584d79eab82358bbda813',
'aarch64-apple-darwin-0.1.33':
'6e6af126bfc34a9d0e02641bd99fda1201a81356455ee4f196b760b3d995cb7a',
'aarch64-unknown-linux-gnu-0.1.33':
'12f04ed3437f06ce6fc0384958e4dbb74c441bd9b46d5f83b8342c6c9247da97',
'aarch64-unknown-linux-musl-0.1.33':
'580542f3997a10191091cbc1f142e1526afb9e98aa6ba0a709245cfde2d99d99',
'arm-unknown-linux-musleabihf-0.1.33':
'febb8276163a99d18fadb04f9dbe298e613b1716c5721a3e2433c2da0fd9b69e',
'armv7-unknown-linux-gnueabihf-0.1.33':
'0302de0a1f48ae05a3a0f7d7924f8845012628fbc55da590037d433bc5977e8f',
'armv7-unknown-linux-musleabihf-0.1.33':
'db82699a990ab3f37709dd0108a336d1cf3e9d3d0f5cd906795eb1a1d0758714',
'i686-pc-windows-msvc-0.1.33':
'753a1ef176fc87846a48eafdda3b0b5e0a3e0e70a746f6868e6c8c097c6322c3',
'i686-unknown-linux-gnu-0.1.33':
'7b55900bfb6423541fdb129ca34396efb614ebfcb8e40027d7861907278f9258',
'i686-unknown-linux-musl-0.1.33':
'302f5755e99fe449664135069e60be7bfbd931d09e22f6447fc0f64c82a464bd',
'powerpc64-unknown-linux-gnu-0.1.33':
'8b007854d21401c41cf2084e21664981aaaa7cbfa5df71365858d12470323823',
'powerpc64le-unknown-linux-gnu-0.1.33':
'02ed93b767b1d4a2d69c61932366104bd016417980cf71c1f898fcd93ec74232',
's390x-unknown-linux-gnu-0.1.33':
'4341f067c105607d971dca3d9c79cac59b3e8cf4f8f61a50fe87b6236d97cc44',
'x86_64-apple-darwin-0.1.33':
'3e32e8242b32c1231a45888134b5615f45bfd938fc865d82f270a9ca76ab1a90',
'x86_64-pc-windows-msvc-0.1.33':
'b5adf2b7abdd72ab763a1a65624bdbde178797387c461a6e12803157dbf62fee',
'x86_64-unknown-linux-gnu-0.1.33':
'c582cf587db50ae4dd50360c5bc5dffce110c7e457f1dc1955fc6ad447bdfcce',
'x86_64-unknown-linux-musl-0.1.33':
'6a9877d92235c225ba82d18a6960489a8463716ce1f858f793b971f4aa2f7abb',
'undefined-0.1.32':
'c0fad19c5c03cfbf104ccb8e21c510aa556f5d296ad83a5faa737b4dc763a932',
'aarch64-apple-darwin-0.1.32':
'2f33ca87c17c27d6c2e7ac45b26e19de1a07fcd5e9312670a7bbb90634278414',
'aarch64-unknown-linux-gnu-0.1.32':
'ffd433c6508a165f29688694b436289214c5f4569ee62e4b8b00a95dcd661cee',
'aarch64-unknown-linux-musl-0.1.32':
'5b19aeef841ad88313afa80dd56198af6a33c3be2f890936e88e5ee197b914f9',
'arm-unknown-linux-musleabihf-0.1.32':
'ee9a2df7647689dac93f7e98f0f71ea04977b9cbf899a56b061aca594542a8c0',
'armv7-unknown-linux-gnueabihf-0.1.32':
'ec316ac2dc8d5b8ba81e3f19f4550bbdefa5c36ef2a8a7bc90afcc82f37e3f96',
'armv7-unknown-linux-musleabihf-0.1.32':
'43c0dce83f4450ee6442ad768071f834e0d4dadedf333e3d6ff9d2e9b23f0487',
'i686-pc-windows-msvc-0.1.32':
'df848217d4ef5f7a0d55572ac307bccd0052d97c5be21437ec717bb9e461d85e',
'i686-unknown-linux-gnu-0.1.32':
'93c79fa1bfc8d558176cdb5a457c106e3327a5a00c01127d099310fcf312c8d7',
'i686-unknown-linux-musl-0.1.32':
'c6804b16c453d08acfb0a62a9e537d526447df06bf6eba2e70b407dd620ccecc',
'powerpc64-unknown-linux-gnu-0.1.32':
'2b69efb247e543134ac2a5cc662b90f73ed1a2f23eb0a09475db16a82ba7bfa7',
'powerpc64le-unknown-linux-gnu-0.1.32':
'a421a69614e9600df89761193f947f8a1411636dd676a7eaef2f8a38e30d6a51',
's390x-unknown-linux-gnu-0.1.32':
'4a6e350dfe0b13b56a0877ec033f97c6e24283dd99c9664c755a9ff79a97fd06',
'x86_64-apple-darwin-0.1.32':
'd3450c42b890767f2bad09e496f35f392e0d52f502a0d12b207371852b013a44',
'x86_64-pc-windows-msvc-0.1.32':
'4df4192f5c7824bdfaecd4d3d8fb6310ced6e0980592d5d44b7afed88ef89ff0',
'x86_64-unknown-linux-gnu-0.1.32':
'281204339346c00f395332cec43de65bcdd3675a7dbe17b5d8d1292d7854679a',
'x86_64-unknown-linux-musl-0.1.32':
'a9dc63f9f48a1964340488e4d139d64b59fc14b06733a165af06d1857980dc97',
'undefined-0.1.31':
'b5b97391649fb35d588a7f741339e8862b731d2d31448462758428cbd8c51536',
'aarch64-apple-darwin-0.1.31':
'b00f0d2fbeb2806790b18294c0bf82ae8e69043a7da29d456b369202b261aef1',
'aarch64-unknown-linux-gnu-0.1.31':
'9de4de11f1297a96aa731cf2f8ed7bc2e85405692dd3216d50685062b877ec75',
'aarch64-unknown-linux-musl-0.1.31':
'fc4127da459a7f7264662faca4c697c71ac5c5a13dc92354520453e1f62426fd',
'arm-unknown-linux-musleabihf-0.1.31':
'b2781e289f12f47e7f6af9e908c404e9fb47c74935f3c5d71f6bd34e68c2f88d',
'armv7-unknown-linux-gnueabihf-0.1.31':
'3ef451b3f6dd065a17b3f25d945e3ff0084e2d29c2487ba2cac01f55caa19368',
'armv7-unknown-linux-musleabihf-0.1.31':
'ed6888e8c090593857b9112af8cdf918053e09cf26cb960af73c66f2fe708e1c',
'i686-pc-windows-msvc-0.1.31':
'84b3a4480643c722d7b5a53b219d9e4546b428b9acd5bf003584e3d458b61a4a',
'i686-unknown-linux-gnu-0.1.31':
'01e6a76d251f692fa18630b99b0dc941b11ac9d08cd01622272892f6a75708a6',
'i686-unknown-linux-musl-0.1.31':
'8e3a1312a7d54dc05e661c2af91164b27ec6ba992d37af7c32611c83d970b00e',
'powerpc64-unknown-linux-gnu-0.1.31':
'74ec1054cde973ee495dddc95026f12fa7cf584c1b67b728cdcad118d6524b33',
'powerpc64le-unknown-linux-gnu-0.1.31':
'cdb328074d4f795fee91fbe7e6930149f8b7b5a7921d96e5d7c00b574a4583bf',
's390x-unknown-linux-gnu-0.1.31':
'90fc1a8614195626642470d4e31b52fd3ac27d5d12df4fe81e008568822c5017',
'x86_64-apple-darwin-0.1.31':
'c10ba963e651ab09a5b1cbb8ac1d0ee74c8f7dca99eab7d41cb9a35b5b7c06b7',
'x86_64-pc-windows-msvc-0.1.31':
'980833bbbbcffb3cf0e2abaf8963cdccfcb4cd378ed980a4168be124efda5c0a',
'x86_64-unknown-linux-gnu-0.1.31':
'f5b4508eb49d8d65fdc712267d18312f4e3d67f168a8d9b4bb24a28bafdaa831',
'x86_64-unknown-linux-musl-0.1.31':
'02ba313bd081d2a99137f123e30692c991d0c6d9e190bdf403fe5b1a53c2bc2e',
'undefined-0.1.30':
'72c816316dc84a6daceadfb856b70f046db7d1a473a16a8bdea5041c786c1693',
'aarch64-apple-darwin-0.1.30':
'2efee289f003bf2033a44396886836dbff9d4e76ad2e0ef6d81d7a39a1068c49',
'aarch64-unknown-linux-gnu-0.1.30':
'169e02774fed015ee7e780b614548f2c0aa9041a6cfb99b7f57cd9bfdebcb367',
'aarch64-unknown-linux-musl-0.1.30':
'35883d461fa233b076a9643e4ca5b0f61ddf0dfc46d545156793beec673acac6',
'arm-unknown-linux-musleabihf-0.1.30':
'673f9a4297e555507cc3e0228693b94d0e2f689022cd04076c49df2b0e84b6ea',
'armv7-unknown-linux-gnueabihf-0.1.30':
'79475a7560e463c484acee1f0da822c32316bc08086445717b5cbb813821593e',
'armv7-unknown-linux-musleabihf-0.1.30':
'168ddee00a64eef97a709084ebafb822bf47ac1fc4962cf44d60a64fb5b8d4c5',
'i686-pc-windows-msvc-0.1.30':
'9c057e5bb6e86da7477fddea1f942cc605c7b780071875fb9b4c3b1931083199',
'i686-unknown-linux-gnu-0.1.30':
'2e3e0925aead2a8e6e2a5dbaa36ac8c292758398d412eab6b01c0651d956df1d',
'i686-unknown-linux-musl-0.1.30':
'6df4acabcc41139433f24d37e4acceeb576826f651b815f3f363afe467e5c5ae',
'powerpc64-unknown-linux-gnu-0.1.30':
'57b9885562cc038d0e784c5875e9e03c7dd13f0b6b3f5fceffb573891ed1b68f',
'powerpc64le-unknown-linux-gnu-0.1.30':
'02f5f9e086980b4429d51c8e73ee5098f69f00edd0684465cc15ee7e2d5eeac0',
's390x-unknown-linux-gnu-0.1.30':
'e16fdb1ca6941eafdc4ff992ce8e7905c493da3a64000dd7bd362bfc75766627',
'x86_64-apple-darwin-0.1.30':
'a99071ba49044263a24be61aa8341bed035d15f3f1023e3e29eb4522d978a485',
'x86_64-pc-windows-msvc-0.1.30':
'0f8a4b6d093a91b638ac1c9683ed484c491e19911249ce64c26cd31501a90206',
'x86_64-unknown-linux-gnu-0.1.30':
'bf102d20cf00bd2c001610570b6cd1409b63db3f5cef6b55e386d64f3d4724a5',
'x86_64-unknown-linux-musl-0.1.30':
'ff073ae9fce030fab64d1b93fc7a4688a0495eecac7316d55e4dc08a9283a326',
'undefined-0.1.29':
'dad20061d2e13b281925c26f6e1f0872852d095774b241ca8d963a13da4f4249',
'aarch64-apple-darwin-0.1.29':
'a5f4cf59f873ea6ffb8d1c11468936f508e444dba0c8278b8f550e811bcfe77f',
'aarch64-unknown-linux-gnu-0.1.29':
'f4227d02eecfe3f2a7cfb42b25630dd5a4e5f5144231b84b5acdf6be0158a468',
'aarch64-unknown-linux-musl-0.1.29':
'22bf69e1cef9958774751b2770278a0aebaf132c51c04cc6800f0884a18273c3',
'arm-unknown-linux-musleabihf-0.1.29':
'54b34a71c3d3f011f9920caf0b8a9081a62ec16c77e0c69e947c888782f5f6e6',
'armv7-unknown-linux-gnueabihf-0.1.29':
'86c73423657e91cc4e5e1d541f6a061678bb098bb23b74fc44d79524523031af',
'armv7-unknown-linux-musleabihf-0.1.29':
'76108491438a15f9acae142afdec5ca0ea31437ea909240a2534bd7aa45ac96e',
'i686-pc-windows-msvc-0.1.29':
'3dac7e8f710f723accadaf876b7034cd1108509e95fb1ad7fff3a8bf579bda3e',
'i686-unknown-linux-gnu-0.1.29':
'e117aa0b4b1f588699a4259d4e7485938b6aa00d2ab21093ab0047304450fdf1',
'i686-unknown-linux-musl-0.1.29':
'690682d5103b907e43c9704fdd26e5f09ad68894b8135db823b391adef654a91',
'powerpc64-unknown-linux-gnu-0.1.29':
'27aa0b5c7e2278ad74afb27f1f2843ccd6bc0c1c8674e6a10e0bcec73e660012',
'powerpc64le-unknown-linux-gnu-0.1.29':
'90cf042117be9de01e9e2348a7200954fc25c6989b41b4d5e995b8f42dfa5fcc',
's390x-unknown-linux-gnu-0.1.29':
'4242e2cf825ca433947d44d985eecb11460638f1a8427cc9fe6fa6b70de86c6f',
'x86_64-apple-darwin-0.1.29':
'cb51b2f22f06e99f79ee85f3d353a93a9c25ad674f150490e391166a97fa6db8',
'x86_64-pc-windows-msvc-0.1.29':
'7926be66598e6c0f2b07c6db72a1d9c61f7b1cce72663266dcdcbf4055e1c9a3',
'x86_64-unknown-linux-gnu-0.1.29':
'59e9df30439a01e6852da3f62615d6e6fb8fd79029ee86c7ffdd3fc06c76a84e',
'x86_64-unknown-linux-musl-0.1.29':
'72b43a0e804d033d4064b57acfbd95671abfb0d2c0ddf11bfaf779efdad03e94',
'undefined-0.1.28':
'd6d23768a49cc7ba3a67cded5e826370c6f9e7f5ce6aa69743c5a5deb2f7e08e',
'aarch64-apple-darwin-0.1.28':
'3892e0a04ced4e8a1c900a7577a0c0805f362c5cbe13abc9c822215cb8f2317c',
'aarch64-unknown-linux-gnu-0.1.28':
'6615631b7f8eab6841de405f1978114bba290540fc8b581d4581133dd43d3635',
'aarch64-unknown-linux-musl-0.1.28':
'e6b3421876506904f6aee949303403f5065b00a3be3b799fc921c88e9652bacf',
'arm-unknown-linux-musleabihf-0.1.28':
'23ae513903449d357a452553b9f4f59d7b852507615ddc79136a3c1cec48e5d0',
'armv7-unknown-linux-gnueabihf-0.1.28':
'e6595be0cc281eda4833ea6d398d030a0f8a4f23634004b83a6c0e52805cce78',
'armv7-unknown-linux-musleabihf-0.1.28':
'f24ddffcb5270cb297a5ecdc6a4c59f8be74e47772ddefa26ab2f36339be53bd',
'i686-pc-windows-msvc-0.1.28':
'1eddf62f14320c1049294d2aa3ddefc10f8d309a64735e9b06b1a02e587bc134',
'i686-unknown-linux-gnu-0.1.28':
'6f5627bce734f3a4d3fecb20a047346158d166970e38600eb4c2e4381a3749d6',
'i686-unknown-linux-musl-0.1.28':
'411d3c65c0fe26abc5d6fdc81b3fa5b8a9baf4b431897a52c840779ff1483cd4',
'powerpc64-unknown-linux-gnu-0.1.28':
'39cbd9850e5f40eee31d72403321e00faea9179406d6a670db79b3698eaadf8f',
'powerpc64le-unknown-linux-gnu-0.1.28':
'5a32ff73dbbb335a4b30326ff40b731ce91118d8c792967e274bf43c8811ddc9',
's390x-unknown-linux-gnu-0.1.28':
'09b41889c9a2c6735f8e8106c31570840ada321c7e574c4e9180ef8e4670f6bc',
'x86_64-apple-darwin-0.1.28':
'a126c460b6cb471c5a9df400773a1e918fdb481db13ce56d072feb5487cb13e8',
'x86_64-pc-windows-msvc-0.1.28':
'5ef7961cf2f35e6df6029c7c83ca3fd08042c9c8b2c692cdeccb19c2a19eb7a6',
'x86_64-unknown-linux-gnu-0.1.28':
'8047abff126ceb1a0e6c3e4f7a6420568e3421b485533f22f30767302ebae235',
'x86_64-unknown-linux-musl-0.1.28':
'2c50282284cf8fdbfa605f6c7c7f2c407be858cc1d36c545571d302da24480c8',
'undefined-0.1.27':
'ca9be4a2ba3ed1bbe4f91530fd65f44e704f968f12c80728d755712f7e5c9d18',
'aarch64-apple-darwin-0.1.27':
'c805ff702e7b5557277154e5d97b0456c811475a704590de8f4e14679efd276b',
'aarch64-unknown-linux-gnu-0.1.27':
'ab1eb8b6e1f7ff05083a03811e33dac1324b20d109747be2aa8f8503800a949b',
'aarch64-unknown-linux-musl-0.1.27':
'7c07173dede199d35061e53827901808dd3cee423ff983e16cc6f5af3343b145',
'arm-unknown-linux-musleabihf-0.1.27':
'ee63d702ddba49e41ecb4073c1ccb75199d61f805b749b9c240c7ae706e641b6',
'armv7-unknown-linux-gnueabihf-0.1.27':
'8a0d62408d061c240fd2db5a50424eae1b37868dbfef9693d8aac2604755a327',
'armv7-unknown-linux-musleabihf-0.1.27':
'3082a815c196f75d80b7104268d6d0c7eb188445fbf5a556d744fd07c371ff94',
'i686-pc-windows-msvc-0.1.27':
'159ae0ab972533827a8a1374145506dc7c761e41f932318b90c5f704d04b6579',
'i686-unknown-linux-gnu-0.1.27':
'1e44735218fec4f95abe3b113c1f7001255a8867166bb007b051f2c930fe0ed3',
'i686-unknown-linux-musl-0.1.27':
'7cc8aab8f6893736847a39075986ed35acc30f75c943202381e287dc3d5a78da',
'powerpc64-unknown-linux-gnu-0.1.27':
'e12e774e4caee36410362bce92ce57f08d438a29178152bc03d097809941b733',
'powerpc64le-unknown-linux-gnu-0.1.27':
'721b6e0dafdd8465d19a22104fc500eb81e9dee1792faba032eec0cea2a9fbca',
's390x-unknown-linux-gnu-0.1.27':
'4e0697704f335912178816063cec97a5d43da5723e029559ffa245ed6fb73b27',
'x86_64-apple-darwin-0.1.27':
'd2382aa0fa9e42be04bb04132b94765d3f69aeac79c9d4ad3b6066269d0195be',
'x86_64-pc-windows-msvc-0.1.27':
'7e045d7976419e954d8e527f42c27b1726a81ef835747b2b1e4440eb05312b06',
'x86_64-unknown-linux-gnu-0.1.27':
'ffdea092d716bcce4483b29b52c8a14645f4c12c5aa4c012249963d333a0ca7a',
'x86_64-unknown-linux-musl-0.1.27':
'573115039c44ab9c83990bfe9cffdec0ed3d2ee03ad81bb4c391b5e95dbea50b',
'undefined-0.1.26':
'b1187944b39dc0426397b1554fb5c6a862fffdcf4ae46254835b6b286e42b4ab',
'aarch64-apple-darwin-0.1.26':
'37e5e9359c6eb943d31ff0082b0ec5327c93b572a2eafedc8266963181dbb1d0',
'aarch64-unknown-linux-gnu-0.1.26':
'17ebc81973124e4c1c0958ce0eeabb541553d74bccad5a055ab2d33dddd4051b',
'aarch64-unknown-linux-musl-0.1.26':
'9bcedf6847f85a687806a63af1c78d81ad86136074519a2de41120cea1d59ba1',
'arm-unknown-linux-musleabihf-0.1.26':
'b4c4f3acbb11a61074b17c2c3cc18dba861da23cc2f2f512104d4c2710261111',
'armv7-unknown-linux-gnueabihf-0.1.26':
'7c310d13ba517a5cb1e7210b2969a224490d099d2da0012b02613f8448aa7428',
'armv7-unknown-linux-musleabihf-0.1.26':
'1c5900b15c11483d6cc1ecf6aa5c49f5807c2280c8a0333bcd7e47db75635ce0',
'i686-pc-windows-msvc-0.1.26':
'45ad6ac84cf7d4a4195fa96011fb902c7c05221cb65dcb0b84aeeb0194125c76',
'i686-unknown-linux-gnu-0.1.26':
'5f30097ff062c718c40178b904cd654f1259f7ee012db7c102d31af650047602',
'i686-unknown-linux-musl-0.1.26':
'0beb787beb1b8491248977a6407231462b27e47a7678027b3a540bf5f08076b9',
'powerpc64-unknown-linux-gnu-0.1.26':
'576afce4b7a8b8f51b7ac4adb7c93525f6fdf6527e0bbd7a2f0329f3cfb73f89',
'powerpc64le-unknown-linux-gnu-0.1.26':
'98654b9dbf6696391d7362fcf8bb7604afef8e999ffcb645694350e77eb064d8',
's390x-unknown-linux-gnu-0.1.26':
'7ff5028b7939b346ec195443df9f18155501a1829800d70d9b0face999a4db09',
'x86_64-apple-darwin-0.1.26':
'431a180adf346d96b39f3477a4f26b53741819e0fe411c276c2aa07b90b0a4f5',
'x86_64-pc-windows-msvc-0.1.26':
'874ce589229f3423cd2824dbc4fc1af7c933d0dde544d5883fd68012aaa44f7d',
'x86_64-unknown-linux-gnu-0.1.26':
'27e4edfa8f12986430c2f6265653b7fca3dec9cd8709692b7fb353c5c0f4db82',
'x86_64-unknown-linux-musl-0.1.26':
'39738b23bcedb73e51f2010aac87e759d6b31463af40fba27b5e72cfdb42dd95',
'undefined-0.1.25':
'a5f31208af15c9a4c739abdb04a8daaf4a791c905ec8b95ef4402e7af8d3ccf9',
'aarch64-apple-darwin-0.1.25':
'4971997b9e3abe7fcb6635676db8f3e1d94c4e1939a21024639e6ed08129e512',
'aarch64-unknown-linux-gnu-0.1.25':
'5ab29171ee0b08f2eb3c53416857c4e4737b23fc43ca1e5ec6647e8cd15f94f6',
'aarch64-unknown-linux-musl-0.1.25':
'00b8aa7808e99bb6e8ae07a125f171a4235e3e3f50eb4ac5754bb065ee89df3c',
'arm-unknown-linux-musleabihf-0.1.25':
'24ff2311900171455e909e369e071b419dba3554fa45c01c61e14731f81c936c',
'armv7-unknown-linux-gnueabihf-0.1.25':
'adf4f27836d7dd8e5fbe243eeb15088a47d0aff30e4ed8f0dee5e098e790efd4',
'armv7-unknown-linux-musleabihf-0.1.25':
'b4c36a4eec6fb6f03ef3f7df1b19384d8b0132563e28f67422c557c66a0975f7',
'i686-pc-windows-msvc-0.1.25':
'd647fc906d07c080743b0b0b5eec4e8b40258016b79cff042c47e0ef84464d60',
'i686-unknown-linux-gnu-0.1.25':
'73376185add2a603281bd8d01cca84b9a432228e81d8ab3d801a7493a82d991d',
'i686-unknown-linux-musl-0.1.25':
'ddf82492c02474371c5cae6bc1dabd6f78c307264a8b494300d9eeda443921c0',
'powerpc64-unknown-linux-gnu-0.1.25':
'730ffc370137f938e3dcfd4a3e93ee3824f159aef94d9e992a4791f485501a86',
'powerpc64le-unknown-linux-gnu-0.1.25':
'e8a57fcf40cb53dce733fb9d04f0e0284861992a33b92dec057147ef93bbe857',
's390x-unknown-linux-gnu-0.1.25':
'a8045c20f903ec32fbbecf63555379b36b7ce1f4b678912c251a501fc2690603',
'x86_64-apple-darwin-0.1.25':
'658de1759adad8218253f142959fba74b1857a3b77fe5e9c75497bea6ab61277',
'x86_64-pc-windows-msvc-0.1.25':
'101807a6fa761be68d02849c648007dbc2575c86014dc5b1cc6e3273a1e51440',
'x86_64-unknown-linux-gnu-0.1.25':
'8bcac2c9d93cf39d248e5284a2dce442a239f69923f999bf87ed39ec010e204a',
'x86_64-unknown-linux-musl-0.1.25':
'd42a18274d064eeb5bc9a14f48b175c7b5d814effd12cd5a32e8c37c1846cda0',
'undefined-0.1.24':
'9a9d91d1a5dcfecf5029931530d417fc3febf4c469d7d7b9567845c4210bb59b',
'aarch64-apple-darwin-0.1.24':
'e87bdea0fdd29327cc94f4be23e75e1894692423f714ef9afd544c3cef53ebea',
'aarch64-unknown-linux-gnu-0.1.24':
'1799b9fdca185a7efb3abdccdee1a6923c233642d2e84413e1e25bfbdf375db0',
'aarch64-unknown-linux-musl-0.1.24':
'c22b8089a79ca82897e5eeca2cd8a9122ef1423c9b73bf1a12e46895beb01106',
'arm-unknown-linux-musleabihf-0.1.24':
'c90fd4f848f5e87de6117c4f2d1ffe32e5b6347c6ba848427f6557451f117e86',
'armv7-unknown-linux-gnueabihf-0.1.24':
'5b729378de4018d9d722bd3daf60c8e0168ebcfbe6ca2a2eb12fb409c8b0979e',
'armv7-unknown-linux-musleabihf-0.1.24':
'8b3184c5339ac0a1221b1c2b43a1a788bcfa483cf99741257be3e54913aaadfe',
'i686-pc-windows-msvc-0.1.24':
'5fd539c4a8b4838e7ccbdc83270e654cf9dc695f6f70063646f7857c05d558fa',
'i686-unknown-linux-gnu-0.1.24':
'cb8fb04212fab42a5c0886f79d75d578d500676aadfe4549a47b3a880072efb4',
'i686-unknown-linux-musl-0.1.24':
'26c5e68560ee87a017f7ff304da8e38a5b81c8eb6c7c4e866167c14fbdba6421',
'powerpc64-unknown-linux-gnu-0.1.24':
'dc8af9b4d77af8a2f7969ea717f855733bd33179aa134cfafa8cf53399cbfe58',
'powerpc64le-unknown-linux-gnu-0.1.24':
'216cd6ddbad3d6249e516562df59d786cb98640cfa6e19a62043b86192afa97a',
's390x-unknown-linux-gnu-0.1.24':
'45d2fc92dbbcceb2c64176f5d795bb8259cb3f84b5e5f3b2f3d3809ff4e22531',
'x86_64-apple-darwin-0.1.24':
'f2cf50777bf50f004271be23d74b29fcefe80b98f0c5c3026c003df33cb3467d',
'x86_64-pc-windows-msvc-0.1.24':
'c2ac19c64314f45349c1db423b2b246800d9080f023c231a875de1e084e226eb',
'x86_64-unknown-linux-gnu-0.1.24':
'128c23c81dd74f9fa8fe18844b649c0060322ac13e0e1b3a9ceba259b0c10dc6',
'x86_64-unknown-linux-musl-0.1.24':
'8d2eb876a50c8bfd187fbf166dbadd2790ff41cd351a2e9667e43c97567bfdb0',
'undefined-0.1.23':
'5024e379b0f8cdd32a3682dda3bfe228e03876fadc51105af164b7d5f20590c9',
'aarch64-apple-darwin-0.1.23':
'5851419401ceaae8f902cf9f439409e7216abdad4f708fbaedd3d229041aff7c',
'aarch64-unknown-linux-gnu-0.1.23':
'fd322ad0454ad76ba642fecda02d4e2c12971c6c82affdb36f604b1fc9f3481a',
'aarch64-unknown-linux-musl-0.1.23':
'08bd62cafb09d2aea69baf144eb3d4417c9ec2119f02a69103322def653c6ad6',
'arm-unknown-linux-musleabihf-0.1.23':
'0215ea54d551052e90fe6062e574f6fc3888e57a07b5fd790d48750cae037033',
'armv7-unknown-linux-gnueabihf-0.1.23':
'fdb7687c0c3a0cd06c1364379f98641fc58481f05edc32f59dc679abbcab79bc',
'armv7-unknown-linux-musleabihf-0.1.23':
'17972bc9dc7d0d987dd9cb05f7be72dfa8f86c1835b9ccd483e762da20e0dc88',
'i686-pc-windows-msvc-0.1.23':
'8a03b0c564c9b7a82e7811b913b6db0502a05a59baffbc7a5453259f5527dd32',
'i686-unknown-linux-gnu-0.1.23':
'4c65c0772e1f6dbf99923c0564314638df36476c43f2cb394092c72cc79e6c65',
'i686-unknown-linux-musl-0.1.23':
'690afb97130c2d916ddb083c2c853765f6cdb477f28c3cc9e197a2ceae2622d2',
'powerpc64-unknown-linux-gnu-0.1.23':
'0a4bb782d4792b0f1f77249f08841ad82a33f9d46d9bc3f76b330bdcf6cf4726',
'powerpc64le-unknown-linux-gnu-0.1.23':
'bb5cc89be676f9c4e76fa2fc99fbcb9cb9d243f4f27050c115e84ef0824735ff',
's390x-unknown-linux-gnu-0.1.23':
'0e0f8d08ba4378184819bc02b11e52ceea1bb7aadcf5f70c7c4c01b598c9fd3f',
'x86_64-apple-darwin-0.1.23':
'172e1499a0a02770e7b2544921745596d5c3e7b650043460eda0758249342051',
'x86_64-pc-windows-msvc-0.1.23':
'ad1e99dffc902a3d58589e74180ed4399e59c144bef80cae2027414188f66892',
'x86_64-unknown-linux-gnu-0.1.23':
'81909f58ec476a40998e5ff2b81f8704195140305c8dea58aa041ec1a8e5aa06',
'x86_64-unknown-linux-musl-0.1.23':
'7748461ee4d8922b93843e1850e4dd2defbb1c0b3db8b3c062977637a9d6ffdf',
'undefined-0.1.22':
'20856f7aec12b8c576a8de8a3528de3cdb35789cc3609be580133b59942256c3',
'aarch64-apple-darwin-0.1.22':
'4768499576438c1d7c741b5dc907a5778fd7f52c88555c1eda7288c7c501a0bb',
'aarch64-unknown-linux-gnu-0.1.22':
'bec340cdf59d2451bb22189289e1cfc799c40073a3b40eea62c1efb69c4f13fd',
'aarch64-unknown-linux-musl-0.1.22':
'f8e56575b94adfd190807e248eedac0d4ea5298881e67c00c90f9f7b1940393b',
'arm-unknown-linux-musleabihf-0.1.22':
'e212ab59866890a08f6df8f744e64091609aecbc09eaaa407e70298f0c9fccee',
'armv7-unknown-linux-gnueabihf-0.1.22':
'631d1f8908570a4d0a158de5502f6822ecd80b090f1d71a4642432c988f03097',
'armv7-unknown-linux-musleabihf-0.1.22':
'bc10728ced9bbd5e95b7b55e87e7bdd5c3ed5784ce15350edc99638e9a4220f4',
'i686-pc-windows-msvc-0.1.22':
'e2620f54e81e89071c9bec1bb3ee2c20856a47290b940965a1c2a8f172a44e69',
'i686-unknown-linux-gnu-0.1.22':
'869b6b8587f5fde32dade9ecc1eabbf0a2c41395d0d5936ad7e0ac3d5d3539db',
'i686-unknown-linux-musl-0.1.22':
'7453ffa73990121103a0cec73ba1cfdb16141276c13925a6e043dd70f35381c1',
'powerpc64-unknown-linux-gnu-0.1.22':
'859f3bef8acadaa80c653748dfcb71bae18cc00024c4b74b28a6a3a9b8e058d1',
'powerpc64le-unknown-linux-gnu-0.1.22':
'd39570a41d46206ef04eb2e258e6d005db9cfb797f44cc810001341eb5d46076',
's390x-unknown-linux-gnu-0.1.22':
'46a306e508b48b3ba404ea10cf13ec18a44caa8851d1ef8e7cad90ac0d665d03',
'x86_64-apple-darwin-0.1.22':
'a46107c1844b21b96b6ed4c222925bcd8b1429ad24d56a3cf41ecb9732554a5a',
'x86_64-pc-windows-msvc-0.1.22':
'7c597a925a893d6e326d3dbb2971883728968ef815168048896ede472563bc35',
'x86_64-unknown-linux-gnu-0.1.22':
'9c17b11bd3991ae98b5333378127aba0ba51888b6969427259b51fbda6bbf955',
'x86_64-unknown-linux-musl-0.1.22':
'6f80cd8ad79c119ed6882bc9c5b8f860f7e554f87b97830a4ebf1e5b746d5e70',
'undefined-0.1.21':
'eae4d4641e57ef2eec75d9f76653b8a3a0dc0b91b3dcc8fbbb2ce4456a08fcfe',
'aarch64-apple-darwin-0.1.21':
'1e7788eb132a6e8b1c81829d81cdbb8ba0b26fe098320217284d4af4332fe606',
'aarch64-unknown-linux-gnu-0.1.21':
'a749bb07a4fb16dfc1942868544043483a233956a882af2944036cd081e54280',
'aarch64-unknown-linux-musl-0.1.21':
'2386ec124440ae73d3a74af4f80685210b2dc7a06266546f21987db557186242',
'armv7-unknown-linux-gnueabihf-0.1.21':
'0a6978192ca8a1a3c0ba9981a946a876c2ab6f06f6e223e79fe77d786b786e67',
'armv7-unknown-linux-musleabihf-0.1.21':
'53ceb4be6f4f036e482c22189c3198f755055725864c38df4cb5928b0e08b0de',
'i686-pc-windows-msvc-0.1.21':
'8713eda354e6dfe9b5d4802c3da111c76210dd7dc671df62fe2fbbfa50522ab8',
'i686-unknown-linux-gnu-0.1.21':
'667846071d7b7dc76d2425270ef569774d18defa59c6ea335c53cca27e1cd3ed',
'i686-unknown-linux-musl-0.1.21':
'531750c37b6aa1694f3e3999dedbe504dd9178196af66db8d9e9412136761143',
'powerpc64-unknown-linux-gnu-0.1.21':
'62713acd9cad5cefc99637f81d995b7d61a900f5a0a15d454ca30ceebd79bae1',
'powerpc64le-unknown-linux-gnu-0.1.21':
'95aad3d08499e9e369d49a02e70ec5ad3502cceedcc08d5de04c490406b1ed90',
's390x-unknown-linux-gnu-0.1.21':
'f781f57cd8976449e83f7233271021e57646eac516f81c61b284db54759545ab',
'x86_64-apple-darwin-0.1.21':
'02bf25cc3f25c6a70d4c7f40a23c1122aecb0191824e9fedea4814e8295d09e6',
'x86_64-pc-windows-msvc-0.1.21':
'd453b672f4db4a5fed1d7cefec2696b7c6e534f340da22f2d275b0e093c29e60',
'x86_64-unknown-linux-gnu-0.1.21':
'1926f6112b03934f9e4b5caf14f15dc284e5129d1f8572ec55269afb798ed3a7',
'x86_64-unknown-linux-musl-0.1.21':
'999773834330b6b20174f4486d2ddb19e51dc812291189cfb509aa1e1a3d6b6c',
'undefined-0.1.20':
'e0ae591d4c14f0cb6b67ca4d64183fec0130e08a623fdaa991ef707f10908865',
'aarch64-apple-darwin-0.1.20':
'7d6b1bb7e4e044a1f04a541703ea9de0df57111dab57863d82602d848556bc23',
'aarch64-unknown-linux-gnu-0.1.20':
'8dc61e683cbcfda8f3584cf3c58a70fb8f574e1b882e5c94c6b6bc3c00eff44f',
'aarch64-unknown-linux-musl-0.1.20':
'9a4337d01191a16cdc875ee8ee19f884e948a2b5ce8b07f8a7ec1672292cc63a',
'armv7-unknown-linux-gnueabihf-0.1.20':
'aa3ec54087cf351d2016f61ef327eb85117d005b1b6e21027996b7b12e9ce08f',
'armv7-unknown-linux-musleabihf-0.1.20':
'692c438a97afadf193c03ce2de4aee1dc5714ebdb3f8de6a52ed93411927eee4',
'i686-pc-windows-msvc-0.1.20':
'b20110c34f308608d2061786c334e6004e2e91ec165232689fb6c2a4209889c9',
'i686-unknown-linux-gnu-0.1.20':
'e1c1d3947fb72d83a6dc1498c0cebf6ec3be4c963543636ce8fe476731ced694',
'i686-unknown-linux-musl-0.1.20':
'035bfabc092e230a89fcacfd7e0e77ce7e70f03c4e76307cbaa80f2036a38829',
'powerpc64-unknown-linux-gnu-0.1.20':
'49ea75ecbcf149991ddb7ccb9401be88852ff0475e60d55d54bcd4abccf6181e',
'powerpc64le-unknown-linux-gnu-0.1.20':
'a40ccdc8dd695e5b3d767ecec98875615e94ac8cb4c3f81f990c7a619e85fc5d',
's390x-unknown-linux-gnu-0.1.20':
'b8afa3df67516e9ed86bfd6caf889a21337e20f03f356079e85546ac1912d731',
'x86_64-apple-darwin-0.1.20':
'baff815f3fe568af2440ae4da23b8a1a97c00c6c2710c980f0b0eaff22002ffd',
'x86_64-pc-windows-msvc-0.1.20':
'9be323847cfab082cb2dfa75a5f42631efcd7c1ffbab96d0f36cd7afef4a0c9a',
'x86_64-unknown-linux-gnu-0.1.20':
'88cc7354f27134acf45df679bd6e529191409183a936a974ead9ff2714c3e6ce',
'x86_64-unknown-linux-musl-0.1.20':
'db28ca169154ce55ea7356071dbbed94fc5cc94b3564cd58bb458342788ac45e',
'undefined-0.1.19':
'a0e28df167a8184016b0b8e571eed6d1aeac2cfe63b34e1a26bbb611ebe67657',
'aarch64-apple-darwin-0.1.19':
'1ac97b4bedad801cd5860a83e92e092e9e04246fd7028393ba6b5c2f76fc1dff',
'aarch64-unknown-linux-gnu-0.1.19':
'c9371f7189f129b01bce0a9923d6067ecd77de57860ec3071f163d7ee247fe45',
'aarch64-unknown-linux-musl-0.1.19':
'aa56f9002481cc5e3994d1afd61c03b766967946ceafb95d460203369f262eec',
'armv7-unknown-linux-gnueabihf-0.1.19':
'2d832319b08d16df798accec166f257afb5d308f17a93927f1f2e4b9f9b52e92',
'armv7-unknown-linux-musleabihf-0.1.19':
'bd404945a5f8a46b5b88c2a0fa1f23394cb02cc22c523fb6b248e77c629e6982',
'i686-pc-windows-msvc-0.1.19':
'0c22efc82e8aafd73b1183bebc36f5712df260df6b42b1b4649a16143c1a47bc',
'i686-unknown-linux-gnu-0.1.19':
'fb85b8910523422ccc81822614dac97cf8f2de258b535c7d177fc5932e64a766',
'i686-unknown-linux-musl-0.1.19':
'559720353183dbcb4c29ed359988159369660b80b41e6bc60b47ee48d74caeec',
'powerpc64-unknown-linux-gnu-0.1.19':
'9bb39a224f870c168a1fe5568a9bb16aa358899fe2a74c8870545c058270cf87',
'powerpc64le-unknown-linux-gnu-0.1.19':
'2c131f1139079ab740f8ab9b24865df3fa1d64d8a2f6608a331915e8ecf071ec',
's390x-unknown-linux-gnu-0.1.19':
'a8cd88c4a007e7bb6260f8b3a226611a3a509fc37d924af651e41ae9302a41fc',
'x86_64-apple-darwin-0.1.19':
'35a276f51381ba7497a3e1d7fec3c47688f485045d65d8922d7ec30f1da489cb',
'x86_64-pc-windows-msvc-0.1.19':
'41f9663eb2407ad661d0f204dcf479a93257a72be06d36e787b0dea93fcc2e0e',
'x86_64-unknown-linux-gnu-0.1.19':
'ab187b253f9f7ffb0063e827cf5efbedb0482d013ac619f6b28158941ca8d5f7',
'x86_64-unknown-linux-musl-0.1.19':
'10e5e7f2007f363717a69393c7c4fee3b7ca8f16d1ae7a4e2cbfa67f7bc41bc7',
'undefined-0.1.18':
'87d953dc58d3936c299609b1697b6d17ca85407edc177d293c98bb9451f8e5ff',
'aarch64-apple-darwin-0.1.18':
'1806f3ada6ab943d86aa45a336e690f66b160145fe85f2adb82f3fcaf4eef925',
'aarch64-unknown-linux-gnu-0.1.18':
'db4eaf43f593b4b7ae8bbd0235e850aa7a18b7e8d8a20141e99866d43967f868',
'aarch64-unknown-linux-musl-0.1.18':
'bd15842c9b530b544b21597cc2212e2e28b1e18b83a27d344482c9df6800c604',
'armv7-unknown-linux-gnueabihf-0.1.18':
'c2971d604eea6d3869bab0d7a292d16f5c8167d48f85b22f6c16fe27e947e26f',
'armv7-unknown-linux-musleabihf-0.1.18':
'4875b208471317c9a7212bb4cdab14b0b350ab35a9c21c7481ebbdf09b4983e9',
'i686-pc-windows-msvc-0.1.18':
'f4e17a94f14bc775dbef4fffc59ce6290e05806e93c348d60e82adc4d9850d51',
'i686-unknown-linux-gnu-0.1.18':
'6a06f1dddfe7dbfe8a09ff2c1d2971204095300edb5bd39ba3b6b289220d52b0',
'i686-unknown-linux-musl-0.1.18':
'12300f65ab5d023e3708327b826de20d7a0451539379fcbf223c6125d221a159',
'powerpc64-unknown-linux-gnu-0.1.18':
'fd8262bc61f6ca8f051b3f5abe0e5d5f5fb25002d0940760a949d5ed61838a97',
'powerpc64le-unknown-linux-gnu-0.1.18':
'557f836ed5c52678db56a90db9b5ce91396d80ce14ac94141a10eea57c44e693',
's390x-unknown-linux-gnu-0.1.18':
'651f6a6e81939f5e9ed781111f581b71a9ccd3f9dfd269a7d72ffd860d852e58',
'x86_64-apple-darwin-0.1.18':
'a54f1b97fef0d94834e77bb5c013b26be6e94ce888172c80d671453aa12e3cbd',
'x86_64-pc-windows-msvc-0.1.18':
'c34cf263728d784ec98eb6bfda4adb2d7e9ab5f649af8e22a05b60253f919668',
'x86_64-unknown-linux-gnu-0.1.18':
'605e49d8dc48081ef8ba32212df2f17f02e531c02de36b5caf417bd97818fc3a',
'x86_64-unknown-linux-musl-0.1.18':
'ed1e5264e84246f91e1f2dbb642eff24fbce273ded3bac337930a0c6ef9ad6b3',
'undefined-0.1.17':
'7ecfb6fc6c19e3c85cc2ecae0271da16b43bead58b2f0d91fd1c24d1c0f1ae0e',
'aarch64-apple-darwin-0.1.17':
'8f6d1b142dfc4d2040b86a94956eb3c2f5436fd0e889e0d0d1c59dbb8fbbf9de',
'aarch64-unknown-linux-gnu-0.1.17':
'f2aa28f1f9e35c67eb1f4e20d372eca5474c7421b0f1f416210f6542942c5a26',
'aarch64-unknown-linux-musl-0.1.17':
'34fd79808e301a31b884fe98ef2da209883d00f6253cd75df8966744075599ca',
'armv7-unknown-linux-gnueabihf-0.1.17':
'06ae3888af28eab2827e836acde849b4caa993c302a296e35b7275d16346ecba',
'armv7-unknown-linux-musleabihf-0.1.17':
'95bbff6685491e1c9768bb68e35e8a9973abfa65218fc36404f0ad03ddb9dd06',
'i686-pc-windows-msvc-0.1.17':
'7d90730e88affcc9ef564e75d477fa03d341d6bd0473b7ed8060bd5845a73548',
'i686-unknown-linux-gnu-0.1.17':
'7cb5dc29a6bc9d46758f121007d6ed9bedd0969db30214205a298c2b70805605',
'i686-unknown-linux-musl-0.1.17':
'70167e21f118995d5d64ad653eb17430bda962806b6d2df767773db6b33ba444',
'powerpc64-unknown-linux-gnu-0.1.17':
'40f920c10951a89a967b7d6722c74c88038b8c978e3651d5e99b9a1145604df4',
'powerpc64le-unknown-linux-gnu-0.1.17':
'e76e43e9eda10c3730e1b36856a510458a708cfab150a888c8a96ca21234de7f',
's390x-unknown-linux-gnu-0.1.17':
'de8ae6042474e876d1235a09a771a274f848db13c82229bc9d7d63d5c89f8ce6',
'x86_64-apple-darwin-0.1.17':
'957fbe84e1fb1a7e8b43ed4db7bd5ef5ea3b3f996c92144d5eaf6b3e259859cd',
'x86_64-pc-windows-msvc-0.1.17':
'bd7c736a62f8a102e31a425f4a614de586be30a7c5dbe782bec99c838edd8cdd',
'x86_64-unknown-linux-gnu-0.1.17':
'add91a881b3de0a2defa6cf363bbbbfb5dc58e85cff52e8164052e86fee73809',
'x86_64-unknown-linux-musl-0.1.17':
'd793d93fa5eac748c1ca84ae28f1ba3fbe6d0ec4093818f960e8378d3c012c3f',
'undefined-0.1.16':
'8cffa14f967e4900606afb952a1f5efe92e93a550792cd7ba77784fd7a149d0f',
'aarch64-apple-darwin-0.1.16':
'915b89c135b3890f086149cc50019fb6b243a26311dfe69d7f00204fb6035c87',
'aarch64-unknown-linux-gnu-0.1.16':
'ca18e5b1c9d776130d67e6b7a4f22d14e6abd65c84106fb8b3b2c097bff18f90',
'aarch64-unknown-linux-musl-0.1.16':
'64d8c04ce2b251e34f38f14eeca5d126a05a97bd5734ea77dab2c48a7923921f',
'armv7-unknown-linux-gnueabihf-0.1.16':
'216e542e2c7a22b2325ed7b0f94c1b6491c4dd3297fb595e166f7cce2ea6a0fa',
'armv7-unknown-linux-musleabihf-0.1.16':
'f886aba91e4a79f07899eb97dbde5ffcbcff93b750fff9ccd6a0361fc97c3fab',
'i686-pc-windows-msvc-0.1.16':
'6dbcc9df5402155a8514b60b07b48d09cb402ee34ed07a2450298d5e75b2ce11',
'i686-unknown-linux-gnu-0.1.16':
'ea109c8a25ff78e99318af5c0e8ef9348ff64af2ee718345a4a1e87d0e1e4820',
'i686-unknown-linux-musl-0.1.16':
'48f35670fffab656a342201eca3b6c1c0279cab52fc11b5b42fb87df8fff5297',
'powerpc64-unknown-linux-gnu-0.1.16':
'636ecb9fcf40a7e0d970ec0526cbc7803de8800d8f6945fa0005add0334c7770',
'powerpc64le-unknown-linux-gnu-0.1.16':
'2b07b26602e6d39481e3db5cebe3456190d281327590ef03279357d8b05305ee',
's390x-unknown-linux-gnu-0.1.16':
'9db4724da884ff01b394c7499b0520f977d10f20f697f6bb5e9b2e01d50470e2',
'x86_64-apple-darwin-0.1.16':
'daf6316c3e5e610ed99c1eb054bcf9dcc66f970b96a334f7bf6d4eb0d211736d',
'x86_64-pc-windows-msvc-0.1.16':
'73659c150df62c0c42d8f195763fc270a213383fbcf413f746bb026878fa1d93',
'x86_64-unknown-linux-gnu-0.1.16':
'84b15dbd298969ecf2bffb22a3e1003df085579d53d39a6bb87d5813a14e10f2',
'x86_64-unknown-linux-musl-0.1.16':
'1d76289dea83224d61eb84284f00136a1275234e7537baba44ca3c9e696dab05',
'undefined-0.1.15':
'55d165ea2c9ab28351c0f5f680c21a66bc8b8c7799ac39162ca5044d0e23a3f4',
'aarch64-apple-darwin-0.1.15':
'df9bab49d9a171bfafb619422ec8c88c0bea930fb69ddd6c8884420b9cf7a13d',
'aarch64-unknown-linux-gnu-0.1.15':
'33c5c5340b0c29381b0dcfc0458194800a74866301fd6f64efb1e77e4491beba',
'aarch64-unknown-linux-musl-0.1.15':
'ae21b106eb5dd26f76d163613746ae869ff5c6f111aad2a7b482f906a8de81f0',
'armv7-unknown-linux-gnueabihf-0.1.15':
'9bc6769404a17f24340ae39c1b23a495c405644d3c003719145d92596b1559f5',
'armv7-unknown-linux-musleabihf-0.1.15':
'5d678a5a06561c01e8052528186394a45eabcb37595c4540205c292d8d9f2f82',
'i686-pc-windows-msvc-0.1.15':
'84cfd219b31f5cde825d212012652ab326a81d621faf86c08b03b0b85e72ae4c',
'i686-unknown-linux-gnu-0.1.15':
'56ceeb2d72f0ae1fa2852b4951bb0c64c5502472a867532ca157c89e93ade4c2',
'i686-unknown-linux-musl-0.1.15':
'62b821fd3e94190b2f7427a6a805b0b9308e21383a8c3161bc4ab7d777ef40b0',
'powerpc64-unknown-linux-gnu-0.1.15':
'f06fbd8a50544d9e76d1e0a984a5fc17fcaddf237e28f2874d8a6f01ea5034a0',
'powerpc64le-unknown-linux-gnu-0.1.15':
'14f177d8e9c83356e57f7f3f54c1dcca28f47bd784278436207c6149244ee1d5',
's390x-unknown-linux-gnu-0.1.15':
'cb714eab80809c6b921c2b4f7b81e2c166c07a75c990032ee6d5e939986beabe',
'x86_64-apple-darwin-0.1.15':
'8cb18f0aa3d61dea3b3d8dc98aaea6b9f1f8677d43db89a0c69b53c86ad6a9c5',
'x86_64-pc-windows-msvc-0.1.15':
'dfe55955cc7ab137b0dfb186f0e6108f320d79383761d62415ea554167cecb42',
'x86_64-unknown-linux-gnu-0.1.15':
'00a37907aa7985e88584ab4765905b720fa8b9088d1bcae7611c10f398299c5d',
'x86_64-unknown-linux-musl-0.1.15':
'5f7378a55671fa53e32cf5cc8beaf2cca40db95a579faaaa1310399f9329d27c',
'undefined-0.1.14':
'19be86f31cbf3d4c5f7094fc77652c57cd05f70876d22df469d85c52b2108047',
'aarch64-apple-darwin-0.1.14':
'793d267ae803c4c59b9d825bbacd09d4f1a06579567a7ea9aa458e2986b5b778',
'aarch64-unknown-linux-gnu-0.1.14':
'fd82838503cd540c5a2aebb38b0c539912c858ff6b8e6c4b74b90a190442a0db',
'aarch64-unknown-linux-musl-0.1.14':
'ef9e8a2cb2a440d8b6b8fddd00f7d7d91b5f060ac8e2142b6ad778a85f00fda5',
'armv7-unknown-linux-gnueabihf-0.1.14':
'03ad6b59053a933de33a4779484ea275fa7e885a8dfe833153eb1cc24b3009ff',
'armv7-unknown-linux-musleabihf-0.1.14':
'ddebfea1674aeb6534181d034477c39d7ccc15065e34e7c9c4abe1333f5f0890',
'i686-pc-windows-msvc-0.1.14':
'365b29899ee7e83057850fc25e231a33f27671785724b0718bda07fce311de1a',
'i686-unknown-linux-gnu-0.1.14':
'f3983d685e27a55554b6107d59db017addebacf143daeceaf15f7a81a0286006',
'i686-unknown-linux-musl-0.1.14':
'84f6644fb06ef46478c68e55b367ecfceebbed80c7e3b5e2b8af70d7fdee6c87',
'powerpc64-unknown-linux-gnu-0.1.14':
'bd21243c9d1679e27ce5d0651cac380521743d20bf996ba146b7a98c9c975dd2',
'powerpc64le-unknown-linux-gnu-0.1.14':
'25f42e9e3fd230e7cc9f416143dd0aa6a5806f306a1abb4d02989edcf938000c',
's390x-unknown-linux-gnu-0.1.14':
'15ce4609be46217639b0b589398bbc6ead801cb42c750b0c734d51e2384e9be1',
'x86_64-apple-darwin-0.1.14':
'c8d471a0c6f5a710508284cc260005e2d535ecb255b5f2ddc8b362057d8cd80d',
'x86_64-pc-windows-msvc-0.1.14':
'eba641a900d26feb5158fb131a80bb7bbb4ce4bec71284753345f23f885414f9',
'x86_64-unknown-linux-gnu-0.1.14':
'394c421302ba972fffdd674a0a57f7189d8cc5a728fac8a175027abf833eee59',
'x86_64-unknown-linux-musl-0.1.14':
'3c26c7a3e236d9f5d10aa6f32a8751322e8719812424b0b05ede1023f16dbd52',
'undefined-0.1.13':
'859b13879d2a6f97c3c4d8928cb6a81b067b022b4e5b6c8e75bba099570bd0fe',
'aarch64-apple-darwin-0.1.13':
'9d7a71dbb75dbabcbaace98d06517caa691ec8dab8ecbda3afee44ac9cb1e1c3',
'aarch64-unknown-linux-gnu-0.1.13':
'16429c1a00b0a1fb653ae8a104d5af121bc765f047a7b750f356515c50c226c7',
'aarch64-unknown-linux-musl-0.1.13':
'c07044d21142e308961c1509975b71f52bc2f298497869ba40aa84fefa3807cd',
'armv7-unknown-linux-gnueabihf-0.1.13':
'7a62ee6b4e669ea1aec3ab05da021e59ae8b226f524fdc610e14cfafc5b513d7',
'armv7-unknown-linux-musleabihf-0.1.13':
'24c717aa7d4b8cc2e0b2378d2b6097adc376cb8422733a0478f0696ef4f2b5a9',
'i686-pc-windows-msvc-0.1.13':
'5e75f004ece194c6c0bbec894f229bae440556c3c43df6d6a33a93b287a6ef96',
'i686-unknown-linux-gnu-0.1.13':
'3a74bace4da3dbdc3f36e7720d7f6bc56098716e7c3e949664b301136fdf3dee',
'i686-unknown-linux-musl-0.1.13':
'd9c18676b96654a7133cf9a9f1dbfc47b37bf02ba8f7ab9f5f0307a3d6483311',
'powerpc64-unknown-linux-gnu-0.1.13':
'2ffd41af6962f46807f64a44e30c7d5faac3fa8faa1bb1dd65f03cd49e61f66c',
'powerpc64le-unknown-linux-gnu-0.1.13':
'9fcb334fa7d99f732628214f2af386183fccaa7abbf9157df0966b619f741131',
's390x-unknown-linux-gnu-0.1.13':
'e575fd873988078a20d99346ba0c4964e6fbc322700c8d2541e9fe9e07eee113',
'x86_64-apple-darwin-0.1.13':
'ad133fc0c67cbe2d578631d77d2f6442626c77a1e144bbda2912b7af9085e91a',
'x86_64-pc-windows-msvc-0.1.13':
'f61cc5c329abc535248cce0912fe01c20e7c99ae9bead6015842f8c5fd3cdfeb',
'x86_64-unknown-linux-gnu-0.1.13':
'2bfc6a542a3df6af6f56ccd8ec9f1b0596fff62b11650b0bdb830f10ee4e2d64',
'x86_64-unknown-linux-musl-0.1.13':
'5e771e72b3dd42d99a354fc4ce9be047e4d9fc1a653b2f551128a3b4fd533d28',
'undefined-0.1.12':
'e16d94a2d6365a99d88168175325bc1f9f7e9f72eadb136691150e3fdad4491b',
'aarch64-apple-darwin-0.1.12':
'c27629967760a84caeae66a130bb4c53dc1da0386122a4e67eeb19a0a163311e',
'aarch64-unknown-linux-gnu-0.1.12':
'84b611afe5b7234585999a9ed2e24b542b8d3cb438595f9564629cae6d6a7580',
'aarch64-unknown-linux-musl-0.1.12':
'c9abbf7d6c9ebe737e3b881243297eeb6d67b5a8fd458b9d55deb80b29b45fb8',
'armv7-unknown-linux-gnueabihf-0.1.12':
'1b3bd6f3e8d8080481af2c231fb72defd0d0c63eab2e28528ca420cfbc1b71cf',
'armv7-unknown-linux-musleabihf-0.1.12':
'd74b4a43ddd2601b18e2f4bedd9bcdd84bbd64fba2e4bfb169cda95bbabc88b4',
'i686-pc-windows-msvc-0.1.12':
'6424486541fbdb17c3dd9144e690e3e86c318374342f02db94fc2a369ba31a14',
'i686-unknown-linux-gnu-0.1.12':
'84caece3b6498801a9fca6ae91c341c4287a6f16d3a089199636259b00217bef',
'i686-unknown-linux-musl-0.1.12':
'3daee4d2580054255a78d73eba040a247b1bc1db559726a4be0a4029b9bd1006',
'powerpc64-unknown-linux-gnu-0.1.12':
'588ea9f541451f435eca5811d970e528cf599fc7054d258821f96a87af51eadc',
'powerpc64le-unknown-linux-gnu-0.1.12':
'91c60c49b0309f2f51919a6603eeb03ae32dd7ead8f9f3f390929703577a1ac6',
's390x-unknown-linux-gnu-0.1.12':
'54334b0bf35ef275a092f4567539066d4a25c59de08bee9dcfa1bb3eaa2348b8',
'x86_64-apple-darwin-0.1.12':
'5ce7d6c25e68cb96ed21773fba9bb9cebca81dac70ab7dce86e620eacf547f24',
'x86_64-pc-windows-msvc-0.1.12':
'c458aa2416bde29315d73356ac34f6639cf55305018bec226c0e310343d6af07',
'x86_64-unknown-linux-gnu-0.1.12':
'fb1f56e7485b6c94364d11f227107fdc74799e8c91ca5321c35e8a19828d7a72',
'x86_64-unknown-linux-musl-0.1.12':
'3d4fe441702e719156c373caffbfccd75254594113d8e3ef5e43d871fad7c722',
'undefined-0.1.11':
'ce4fd6fad4986f5ee738455e251825de4094f48c86555e9b4b3adafc1a88ed27',
'aarch64-apple-darwin-0.1.11':
'64e0aeae1d5135684c65e5d41741f1b2eba5c60e574dfef7386712b259066d95',
'aarch64-unknown-linux-gnu-0.1.11':
'56a7edd9bfadab67100bde6aca3012c9d7d8619405ebb360eae50b88ba2c6dff',
'aarch64-unknown-linux-musl-0.1.11':
'0c890bb996c6431149583a402d5bfc3124da92b6e65ec3ee3a961935b06f8cfd',
'armv7-unknown-linux-gnueabihf-0.1.11':
'd26ac8502154f45e080c8330c58842e33e2330a73937a8f8be0d02f0d20391ee',
'armv7-unknown-linux-musleabihf-0.1.11':
'b7b3e0ba037f28994bbe99abba47ca2fe651e451c533fa54927ab61d21bacb9f',
'i686-pc-windows-msvc-0.1.11':
'75e74c43bf6aeb3cd83a7b7a1f578c2247c48a03fa421317ca7f27f881c0890e',
'i686-unknown-linux-gnu-0.1.11':
'f8d63781a8a0d3452f7322268a4bfb3a6e06816b76deafde660d53bbc2d790d9',
'i686-unknown-linux-musl-0.1.11':
'fef030f0adb05a19072a8a4f042a5e8f55102633653cc092841ab5ea6fef342d',
'powerpc64-unknown-linux-gnu-0.1.11':
'de28ad908376178c3a66bb71a1e882bca9d30964c068c2d84e26982da5fa12b4',
'powerpc64le-unknown-linux-gnu-0.1.11':
'62454fa7c614b129bfdfebd8ed1928b66e379ba4f3da14750255fcd936890256',
's390x-unknown-linux-gnu-0.1.11':
'75915f9b4efb686247e6524cc467f7d498054915c1aa9888eafc5d3385c3e904',
'x86_64-apple-darwin-0.1.11':
'62f2c6696fdf8bf394662cad54244411b9e96908de9e52b3743955b0d94bd8d4',
'x86_64-pc-windows-msvc-0.1.11':
'e3e49f27f032c195f01d33df30dff16c9ce7d6ac60512c1af117fc4597d0e632',
'x86_64-unknown-linux-gnu-0.1.11':
'8b1d098549f46814ed40975db6e88aba2eb541196bea54753b08f789b6db8384',
'x86_64-unknown-linux-musl-0.1.11':
'a74b6e51ccf087f78814eecd449ad759f55a633015d9762f06d134394e6122fa',
'undefined-0.1.10':
'cf57c25c9b806efdc8f81ff1e66df985513caf28a4508b6399d1e125fabbe359',
'aarch64-apple-darwin-0.1.10':
'1febf66f3377f28d59cedaf16ca08fdf0b18a19dff201ee29cfd4c09b5672a7e',
'aarch64-unknown-linux-gnu-0.1.10':
'88d6b781dfaef6676eb1aae170a8dd18dc0935bb49e6ef4fff0cb33733d3b7ac',
'aarch64-unknown-linux-musl-0.1.10':
'bc7b0d6bbd58eb6eb00ef0fa3bc4ef2fb54c693c0027bcfec8787259de6ab9e3',
'armv7-unknown-linux-gnueabihf-0.1.10':
'c3a6624ce92cce721d32327b7354b656272ee593b1fe97ed8221b429b103a353',
'armv7-unknown-linux-musleabihf-0.1.10':
'b3ac69be2544c280acf6ef4aef660bbc78b000bfe08d46156833031359a3fe8f',
'i686-pc-windows-msvc-0.1.10':
'354b9be42669c2b3e90a3d0e900264fdab89212c0159551a4ef3d2bb273a84a4',
'i686-unknown-linux-gnu-0.1.10':
'665208a455b369b36af3558a2bc75248eb357d54eeaf84b6aa06673c69b7e5ee',
'i686-unknown-linux-musl-0.1.10':
'd2c152c9192eb565917089a2c5d0b5462d01a3e6799ae9e37fc11f4b32e97291',
'powerpc64-unknown-linux-gnu-0.1.10':
'69ab3b4a36ee75892e4a242fd030dbbe11f8028c84b318196496d8ce2e368fc3',
'powerpc64le-unknown-linux-gnu-0.1.10':
'6d037c45c46ceb8b760c8c80e37b0f9cb5cb194ec0ed152ee6b43b3700a1bd37',
's390x-unknown-linux-gnu-0.1.10':
'bd2bb41a6efb3df0f8336685708963d37cc019ab6782af2d9f5a0e8e08e5f199',
'x86_64-apple-darwin-0.1.10':
'349e36a0b1806d6760b7529384b94b450dffb0284bf541f50f1b9880a4c40667',
'x86_64-pc-windows-msvc-0.1.10':
'd2842d27994304c8613a1ef366386f1cc7d15c05fba3c48b5b115ccb4b59a88a',
'x86_64-unknown-linux-gnu-0.1.10':
'94c6a8bdde7151ea9587f866f47f5d376acedd90606c546bac9585d3ad5b4426',
'x86_64-unknown-linux-musl-0.1.10':
'ff6b01c23bab0333dc258d9decaeddd500d7bcfb3bd6a1c47c12b449e9430bfa',
'undefined-0.1.9':
'5ac47ac172b0d451bb9820174d2b1ddbf1f99a257d512f065735d3a0dec44854',
'aarch64-apple-darwin-0.1.9':
'0b92f201c4f48a54a23074001e490722d8a532043566f3b24fdfddcee5dbbb81',
'aarch64-unknown-linux-gnu-0.1.9':
'51e3791eff68824daf1360631aa2f11f98f3728d5d342cadef191f53e9321c61',
'aarch64-unknown-linux-musl-0.1.9':
'9b00d23f7d7267af182641df08c2c120271164c803f31e9cfb6de62ef1facb87',
'armv7-unknown-linux-gnueabihf-0.1.9':
'8e0c5b9838daf8403dbfc5f6befa54440afbbecc54eddb446265c6db3b3e91ba',
'armv7-unknown-linux-musleabihf-0.1.9':
'0569e3dd62ed50478f1b546d7c32bdfbbf8fc7a9bfd5331794733f89bc1ea114',
'i686-pc-windows-msvc-0.1.9':
'1b6bf7348f81c34912bdf7bf5ff57911849820f198dce12e737f635f87b79cda',
'i686-unknown-linux-gnu-0.1.9':
'3fed572fce343c86737e3912f86dce47a26611b07c86b2ff3be0f4936861a1d3',
'i686-unknown-linux-musl-0.1.9':
'e3f71bc7566e407c88caa0acf98fd2d7267a0e88ba53ca8d8ebd0018ef1a0ede',
'powerpc64-unknown-linux-gnu-0.1.9':
'c2918765883475223e63f9281fc43695f311162a5583e21bc20f86dc5bd124d8',
'powerpc64le-unknown-linux-gnu-0.1.9':
'6571b7c86c31db0e0bca2a002566c94a557968fd58b8f9c7d38539b89cac47ce',
's390x-unknown-linux-gnu-0.1.9':
'2c7c5a7409a6ecf47062b29342f4a792c689170d9bea4ae9e3db81c6a134bfd3',
'x86_64-apple-darwin-0.1.9':
'a2cbd617b00e26d633ce0622b97ef96282e4924d0aef222754412d2c2ab7e625',
'x86_64-pc-windows-msvc-0.1.9':
'0de903c0c36b91dd1d734d61a1677afbd80e6c0db3c91d775ba011d710866c60',
'x86_64-unknown-linux-gnu-0.1.9':
'4c6305655fba53bd68dcecebc622e172c9de369543539428a5449b4c6ee53ec0',
'x86_64-unknown-linux-musl-0.1.9':
'93f43d609bc6298af89519fc2a8ddcdc3a494110f64e7238c6f19639b3a45755',
'undefined-0.1.8':
'6ba549d17d0b699fa4c955cdc482bfd5a89d6ec4c382119ab1937f6d75c6770e',
'aarch64-apple-darwin-0.1.8':
'0993fce3759983899a83d6c2727576a4b35176d97c13d1bcbabd41e91f6147fb',
'aarch64-unknown-linux-gnu-0.1.8':
'6a8a4ffa1e7157563706e1fbb5b42936d94bbe57effab8b62aef06c69234558d',
'aarch64-unknown-linux-musl-0.1.8':
'f4ae032d4484c5493584b2effc5936627065440eb4c7fa1265b0f5da904f9538',
'armv7-unknown-linux-gnueabihf-0.1.8':
'eb223bf424c28f7d60f24b1a51a8903746c9020d94fb51c91a62024b5463bf2d',
'armv7-unknown-linux-musleabihf-0.1.8':
'eb060441259b20e77b6115a483d8505ff44cb358449dbcb3d72b9ae561ff7c11',
'i686-pc-windows-msvc-0.1.8':
'71d40d232f81acac3ec4ffeb9a732ec231945093867eae3b1008ed516f588c3c',
'i686-unknown-linux-gnu-0.1.8':
'aaf5320b5305621b5ef850e5dcda5e65946443980147015bdf19472ae3ea5360',
'i686-unknown-linux-musl-0.1.8':
'e68cd09932d18ccde2e48830eb068b5ac01f93d06b0c690f8035b9f3dcf07cd1',
'powerpc64-unknown-linux-gnu-0.1.8':
'3980df97930b76b5b93975321f8662db7f8518229079b383df667e88616afdff',
'powerpc64le-unknown-linux-gnu-0.1.8':
'c76e9a5e285c8f728853749c2cc0f39480d0b59c4215437df5055ae73a7659fc',
's390x-unknown-linux-gnu-0.1.8':
'ec5ed3af4632c6c8a23364bc88b2f9f2266602219be0eada354d4ad1d2496067',
'x86_64-apple-darwin-0.1.8':
'a6f9188e79a95f5220ce27185283d9aba2fc3ea8cdd2abb9d41eda08a9416fb2',
'x86_64-pc-windows-msvc-0.1.8':
'f7fa2a6ff10c3a0281014acabb463ac5b1ff7b3599b6f91e6f507c0fd52483ea',
'x86_64-unknown-linux-gnu-0.1.8':
'074267e2a2eaed2eb87c3ffc71eb1ce1c21c5594e079ec2f2d5d5ff6815cbdf4',
'x86_64-unknown-linux-musl-0.1.8':
'3d8d92513f85811d1383d74c2b5eeef75002b33f1dfcf48cb46c253c31297cc8',
'undefined-0.1.7':
'9729f66c74df1341f05b8e3ef4b02598caa234c1fdfd834adb7435b3ad7107a9',
'aarch64-apple-darwin-0.1.7':
'020cd34efacc144b7dcd0bd1813ca1e8153cbb281b6fb4506be80714ad2322da',
'aarch64-unknown-linux-gnu-0.1.7':
'e349b8e6959ec7840178e48bc06be3a6c41c35dabb7243bd7627ad0c8b9b962b',
'aarch64-unknown-linux-musl-0.1.7':
'8fec50377df06f83dab2248f7397de8250e531e24ef2d2f840e74b55469e4d64',
'armv7-unknown-linux-gnueabihf-0.1.7':
'd07ee44215d486aab894a054576f45efa65cbc45d026785187053aa33f8e195e',
'armv7-unknown-linux-musleabihf-0.1.7':
'f795784c9d352afbf3b7fdbe2109bbd664c65217e6cdbd55efa00f8c383ed2cd',
'i686-pc-windows-msvc-0.1.7':
'6acf1caed9ebc233a3de1cb9fe2ebf20253e4fa915cda65fa53a53a13c860f13',
'i686-unknown-linux-gnu-0.1.7':
'a7022f599dfa97fe21c0926c95b24d04379ec364c8210516525c837e7d19ec9d',
'i686-unknown-linux-musl-0.1.7':
'8045ed3acbf3190daebd5acd62e8707add1b0dd40b138cf9e49934eecb8622d8',
'powerpc64-unknown-linux-gnu-0.1.7':
'52245ab38a7f443e2951814ccb253e4aa11d7c183bbe3ffbd352d5afd6b8bd0a',
'powerpc64le-unknown-linux-gnu-0.1.7':
'1ee56598340ea158ffbfcd3b9ae50e30f3802df5554b1537971531a5b4c8fe23',
's390x-unknown-linux-gnu-0.1.7':
'179840bf7c06d0d99dbaca52b02a7d697bc43fb48fdf7327b1f4733511d1dc1d',
'x86_64-apple-darwin-0.1.7':
'4a98413d5edae3117d0c0960be2f91dedd88ca0975583819eb520279bcfae55c',
'x86_64-pc-windows-msvc-0.1.7':
'aa20b99f4d687fe95e0ad952300648bad9bc581d034f8fe9952bb1ce3272cc6d',
'x86_64-unknown-linux-gnu-0.1.7':
'60175158c359cf247e67b6499feca8d0848c75d95061b7552dd3c5500938ef63',
'x86_64-unknown-linux-musl-0.1.7':
'd0777ccaf989172b821f7c1a6d2f94b327e527a01ffbd3d5cec1d9d2321ca5db',
'undefined-0.1.6':
'0b1086d16d4fbba5dccb1aed7e8774fbb6d4feccd5cd42efd4509dce521ff698',
'aarch64-apple-darwin-0.1.6':
'3c6f147f2f45d0327803a690722d25ba4c23c4145cf08df971cba161567e448b',
'aarch64-unknown-linux-gnu-0.1.6':
'de9f62f4fbad55c6b8918006e02c65e9cb871d017263f4f1ec3ebb7b6ca87247',
'aarch64-unknown-linux-musl-0.1.6':
'e8a5e657a2837c5522a9f6d5c7b20384cdc53f8841c9190d34cfd251a0087385',
'armv7-unknown-linux-gnueabihf-0.1.6':
'324b4645fe37b68a33fdcd292ba026201c3321882f16ca8293decf943c360426',
'armv7-unknown-linux-musleabihf-0.1.6':
'e4ebba2ab004ea22aa59829bb774230b58e9c750b277a995c3247dcede63ad6f',
'i686-pc-windows-msvc-0.1.6':
'8e6d2180a42c468d72b1ac4bd2b16adfc16021286fe1aae34c27248158fbf25f',
'i686-unknown-linux-gnu-0.1.6':
'332a3a588e95ba99eddbe059d7cf330d98a5d11db4b7d24ef3e9472e046d944b',
'i686-unknown-linux-musl-0.1.6':
'32bd89273ce21fdc064c6bdebcbacc07e74d9ffcd237a2cbdabb522aa5952f7a',
'powerpc64-unknown-linux-gnu-0.1.6':
'7dff85ff980f80915247674288020b9e7050fb42286b73bfa8ea09c6def6aa96',
'powerpc64le-unknown-linux-gnu-0.1.6':
'ad3c76383c5c61e6510057658d013594bf9c34e0d80484de18b8f864ec4dc752',
's390x-unknown-linux-gnu-0.1.6':
'b58a9ff37ca400c22844e0e0d4aa691b11417b98afe4077a8f2b468aaadd602a',
'x86_64-apple-darwin-0.1.6':
'ac26fa53a156385781959487abe5112d5154bc395eaacbdb21e3ceb20ab5b835',
'x86_64-pc-windows-msvc-0.1.6':
'864a4142b671b1f67fa7e853094e83af8a71445463886f74552636ac7aaac985',
'x86_64-unknown-linux-gnu-0.1.6':
'7dc7a615ed6d613ad49d77c0e4a39361a97f43b842e8b14536a00db9671ce5ab',
'x86_64-unknown-linux-musl-0.1.6':
'4d956f457e0f5a2116d4138082f030488865c0c04aa7389a54f4f80ad0868119',
'undefined-0.1.5':
'90eeea76c1c1de3343f97be1f270c990c10193cdea7925a80913cd31aae71d45',
'aarch64-apple-darwin-0.1.5':
'dc62f02d9684e3453ef62d2b8775323a54d89a446e3dbbd94115e809dbd0aa56',
'aarch64-unknown-linux-gnu-0.1.5':
'23d4ac8e358ef51e436e0dc66f120cf5acb86c1cede69d8ee3bed0864a44efdf',
'aarch64-unknown-linux-musl-0.1.5':
'0b4f963239a69e03ea856e52b474c05be06417961ff7003e06bc0f0db1025f1b',
'armv7-unknown-linux-gnueabihf-0.1.5':
'53778c45a8d95bab74b096bad6e5071b45f7b9d379438c770dbebe119bbf55a6',
'armv7-unknown-linux-musleabihf-0.1.5':
'09a37f4749d1efe473aabe8bf7de3429a92456703741eaa5a41aa85eb3a08f51',
'i686-pc-windows-msvc-0.1.5':
'a50ef8b67c8f50e73a080dcf8e1b928c266a6c08d5c5ee8485b2b9e5a0cc57d3',
'i686-unknown-linux-gnu-0.1.5':
'8a9b3fa8c50ab85767db7c633589ce8aae6440ce615e3984c96aa2885b97d949',
'i686-unknown-linux-musl-0.1.5':
'16f37509d028e7dcd28679f9b24cfd5a21751531a05c8f79fefdbd385b81403f',
'powerpc64-unknown-linux-gnu-0.1.5':
'2788c0444cb62cf6536f3cec9996ec1eeba9daf9f039176920e5f55e1ee30e8f',
'powerpc64le-unknown-linux-gnu-0.1.5':
'08a4022f73326145ce468cac03169e1970685f0eb9bdb053bf61ec53f6f769ed',
's390x-unknown-linux-gnu-0.1.5':
'3763dd278fe3df1e911cb11fd104327a07dead0e642550ee817e956937da61e2',
'x86_64-apple-darwin-0.1.5':
'3559b67be0cc77a944323bafd5e70de8bd2933613f1825d7980fa0b22ba5f465',
'x86_64-pc-windows-msvc-0.1.5':
'5f3f000d8405d0f93756cefeccca7cf529effc0353d2c694a4b05d79be677ead',
'x86_64-unknown-linux-gnu-0.1.5':
'06e1530ca6dd161d7052a26cd08716276d8d6aee90d6e164cf4e05d4f5694312',
'x86_64-unknown-linux-musl-0.1.5':
'6d290240419ba81e789b458b3d0685bb3cf8c61d725fb43949b554c64a50ce9b',
'undefined-0.1.4':
'1fffbd35b2b8feb57d320b5032cd3972b6dbf99606929dc30b8959aaab1e97cd',
'aarch64-apple-darwin-0.1.4':
'20ddf1a3919664d427d2d5ebb9875d9fef39a9ffd6850c036591235678e42609',
'aarch64-unknown-linux-gnu-0.1.4':
'd0341732b39688b2464cceecaf617af40898eb80b1093ced778e91d13837e057',
'aarch64-unknown-linux-musl-0.1.4':
'f05108b90840554a42b3486c1779c283348131093ee459883e3af73c6bff9cd5',
'armv7-unknown-linux-gnueabihf-0.1.4':
'57fd95339e096d1f59641083bc58b42cd8e4b49ac355a40aed2613fbdaf5bafc',
'armv7-unknown-linux-musleabihf-0.1.4':
'9f0a39ce106970b437ab36cd7f04ed9e5790c79632a44c62e7eee3e97fb89fee',
'i686-pc-windows-msvc-0.1.4':
'55619ce61c7b1788cf6c490f45491a11656c1067e2e6e53a759e9eef338538b2',
'i686-unknown-linux-gnu-0.1.4':
'a3d55664de30d58ba26d34106fea81f2532d73afb47d6812efa884d0726dae39',
'i686-unknown-linux-musl-0.1.4':
'c08cdb5232797e88c3bcf817ff1d8c47c2096275574391e30417fd2cc3f7976f',
'powerpc64-unknown-linux-gnu-0.1.4':
'80ac83cbe2ee1b3c8632988d45d1e9873bd665d8ce03275f8c67cb8a5c4ffc6d',
'powerpc64le-unknown-linux-gnu-0.1.4':
'35fa6f4234785dd0a7362fe3e4521caddb8aec3645cc6b55fc196f0e22756019',
's390x-unknown-linux-gnu-0.1.4':
'9cfe751e4c0d0db2d3693f777966e2e4b9d01f3651314df87871d5807aa1fd7d',
'x86_64-apple-darwin-0.1.4':
'3b0648dffde1337a592963da1cf1e6167d54cb832128bba2a151b23b260decbc',
'x86_64-pc-windows-msvc-0.1.4':
'0e52e5e2f92599f839d2a69739343d80044fe3593f807c9415729f56cdf59673',
'x86_64-unknown-linux-gnu-0.1.4':
'1eb2f8ba39c231a310e41784980c8085eb747711ad59e430e75975a61a0a7fbf',
'x86_64-unknown-linux-musl-0.1.4':
'04789d4a7f5a50524679b0d7f440566cfe69873448f4128815fab1354d3a0bb0',
'undefined-0.1.3':
'0eeba5a57732dc3b0b81fe0b67f01986aac2580ef27275292b97bc1c48837014',
'aarch64-apple-darwin-0.1.3':
'f15e35d795cb370f6ae9d4107961acb3e7ab190196d6f6e1243ed8941947dcff',
'aarch64-unknown-linux-gnu-0.1.3':
'51d4d1c9fcd4db37535b8aa75698efcb38aeaf29a35ad969c2b17d099e7b9b89',
'aarch64-unknown-linux-musl-0.1.3':
'3e15d92c271a426b7bd3fa65e5947aa7d91c97202645eb8269fa483d58d49167',
'armv7-unknown-linux-gnueabihf-0.1.3':
'391828d0f9916852650de441d947e059a6a1c47eb2a96fcb4e3fecde385a6878',
'armv7-unknown-linux-musleabihf-0.1.3':
'7361f722e2cf3e8c16017778140be3f27f3a4a4f0167c1f25682a35dc374e8d4',
'i686-pc-windows-msvc-0.1.3':
'50370c13b2b841c9f48d66ee056caf369ed70ccfe465f1a7caa44457af494cdd',
'i686-unknown-linux-gnu-0.1.3':
'3516336206e39ced43d534e7319ed01722af68cba0b7d110921eb62e1db991cf',
'i686-unknown-linux-musl-0.1.3':
'0738d7d3a2e9bb13fcaa4c1001c2af00295f3e2f76441fb34edbb83a6ba0f433',
'powerpc64-unknown-linux-gnu-0.1.3':
'f5cc9474f9b19d0ad210454eb779b85e2cd3089f0f509da0995f1c90f86ec9cf',
'powerpc64le-unknown-linux-gnu-0.1.3':
'8bd935aa9c9f894e145de738cdd11b97ee8164ac6fee4915d3b5a5d3ac37d121',
's390x-unknown-linux-gnu-0.1.3':
'c044ef56eb600fff4c734da9912deaf3b20d962679fde9a88eb7de4cc3d77ad5',
'x86_64-apple-darwin-0.1.3':
'e08524327a9c3ca3f087dcec5fa6ab20c35f3714051034a97ea04eda19e7dc04',
'x86_64-pc-windows-msvc-0.1.3':
'c37479397b96f1576b08a2bb82d94fb5228918633b4605e0b580feefc5794467',
'x86_64-unknown-linux-gnu-0.1.3':
'785f82659bb563553adc08608abd65475bce99f080fd01e9f5a358d2e8ddb2a6',
'x86_64-unknown-linux-musl-0.1.3':
'f7355abd4f4013c573d7ae64c0a42986ffc6b08a73ee24e8bff74ee6335136df',
'undefined-0.1.2':
'ba37d11fcbf801bdacdbffac31817f6be7dc4b11155957e98ed94f65e171c436',
'aarch64-apple-darwin-0.1.2':
'13289f543d96c2506f7c3319e8bbc5fb944c8109374b61188593567dc2dae454',
'aarch64-unknown-linux-gnu-0.1.2':
'5d4a1e82e78080ba308a06ecc408b3f17a13077dd35174031ed37646a4c24bfd',
'aarch64-unknown-linux-musl-0.1.2':
'c869e839347f2fd9e0302d25470659df99918ad8bdfad2477a61393a32d1a361',
'armv7-unknown-linux-gnueabihf-0.1.2':
'67f6d19583bb24d628c6d3a97fd412a81b0f15f88491b6b244cda2832365d3a3',
'armv7-unknown-linux-musleabihf-0.1.2':
'7acbfaef69adffb9591766c1e6b25b5750ddac8c43bded8b8b6301852b3bb436',
'i686-pc-windows-msvc-0.1.2':
'7c923a8c0198da91094c96fe9bf9f737e09aa67f569b5c0f76b5f492b9394190',
'i686-unknown-linux-gnu-0.1.2':
'd5462c8746aaf8f36ca43829c6bc71f8ad303bec83d9173f44e1a3ad36d83871',
'i686-unknown-linux-musl-0.1.2':
'aa85ccbac61b7e8153dd7239f9757ca3a95fb01d0782949f554fd88a396edb29',
'powerpc64-unknown-linux-gnu-0.1.2':
'4055b1ce30f7786fa49fcc9dd7eb3b818aa8903930fc49a42dd11ce99507f8d9',
'powerpc64le-unknown-linux-gnu-0.1.2':
'd36b4d8c78ad8816a760f2d888d52c732b2eae5d62fc0830e6918a0732361c96',
's390x-unknown-linux-gnu-0.1.2':
'5829510eb1684d2f0f58ddab2e80313e5858d5e5be6e315b9b9a74c9742f6fac',
'x86_64-apple-darwin-0.1.2':
'20777b7f904ec9cf7e4f7ee19fe8a0b64afada1a7168908c14557130768f46b7',
'x86_64-pc-windows-msvc-0.1.2':
'35b7fdb10fad5e644125bfb3d7f5aff83d9aca24268701359e9fef767b8a4a15',
'x86_64-unknown-linux-gnu-0.1.2':
'89624cd11aa20bc4a841bdcb110940ecb9f05555d79c3f8f4758e34d76c5c7ca',
'x86_64-unknown-linux-musl-0.1.2':
'f69cbd79dfea3bd69c4db064565f9eaebb86db2c0ba0609c090be86366d5db42',
'undefined-0.1.1':
'525a76cf1603007fff9d1909126b2f2d3068b1cfa0e0f20dd41769a5efe87808',
'aarch64-apple-darwin-0.1.1':
'ff595133104cd486c7d852f68d5fa82bafddc7cedcc5087432fd55f0681af89a',
'aarch64-unknown-linux-gnu-0.1.1':
'4919f30de5b5321df003f4c73cd8d43e6d1b28da2050e221e7b574398a6c48d8',
'aarch64-unknown-linux-musl-0.1.1':
'1a4382a0e417658c531ad4377f3d2ef95c55cd0bf52b9e854b7a46dc7ba679fe',
'armv7-unknown-linux-gnueabihf-0.1.1':
'96f169f7bbc78bcef25f4a36ec51baf9cf2ecb4f3628267ca1cba780e9f4434a',
'armv7-unknown-linux-musleabihf-0.1.1':
'581d354ec9b3504a133863e2a7ffde8bec2cce12f13e9fffed8f8bcfb28e2a24',
'i686-pc-windows-msvc-0.1.1':
'f8abfe07f7c80e6f0b0bc41b827735e6342bfa14ef302195b23d9d548a3e4827',
'i686-unknown-linux-gnu-0.1.1':
'b976191b1a507b709e95efee48befbf41df0e31cb882a07d4c9a928070985a68',
'i686-unknown-linux-musl-0.1.1':
'ee9702c41ad0606c5b811b62acdbc5a82d814ddcf90b6d9e4f337ac6d5692f97',
'powerpc64-unknown-linux-gnu-0.1.1':
'62cbd638e66db9eddfe05a4d21eb9b3c611b81f8f941c0b93bd8e4c0adb80426',
'powerpc64le-unknown-linux-gnu-0.1.1':
'b0b8107d6f18c9ddfb287a5f25ff01c6b9505aae1e1001be19acfa0c0b024799',
's390x-unknown-linux-gnu-0.1.1':
'5b50e4cadb4e5ab9f2022c976f41c171fb92c4ed57b3366d8b89397d0de4735b',
'x86_64-apple-darwin-0.1.1':
'dde96aad74a1abd6ba3440eceebca2a5c9f29aecf9178dda0b10d1177cfa3a8d',
'x86_64-pc-windows-msvc-0.1.1':
'2f47b60169f343f0ee64cda77392aab96b77444e52b2e800d881263f33630abe',
'x86_64-unknown-linux-gnu-0.1.1':
'f9d426e72ae4fccb849cef5e944ab8391accde203966f6e309dcc2505379f341',
'x86_64-unknown-linux-musl-0.1.1':
'05fbfb6d1f46b2fda2bbb916b5e0c5e396dc01e8f5b14cc2a9b46f427539a380',
'undefined-0.1.0':
'e745f9958b6cf7c413f52d56e4005e0a8809bdc0237d26fd53555948f4fab8d8',
'aarch64-apple-darwin-0.1.0':
'955d8dcb920b0a544f3595ebf35b813912fefedf4e18f8ac6a984a0532f9e35e',
'aarch64-unknown-linux-gnu-0.1.0':
'fbd2a9edbe98517ba8eb89e8650a411498b5da7b5e6470f3a0cd072bd31f7b79',
'aarch64-unknown-linux-musl-0.1.0':
'492c26b75153aefae58a2f81f4582dc20e2c7b686b284dbb085a7bc0a6270430',
'armv7-unknown-linux-gnueabihf-0.1.0':
'674bf524bcd8b6ed0b9ed42873bcf18af09352ea91777ecec1f1c6bc174f9837',
'armv7-unknown-linux-musleabihf-0.1.0':
'8cfbe423184a860e805dc1b7a2df7b390e0c605cea77ad8dacd8968fca650a41',
'i686-pc-windows-msvc-0.1.0':
'75ae72a862cf609e2141eb5fbd8206cae861e9368c27eff72f34911739cb4a3e',
'i686-unknown-linux-gnu-0.1.0':
'961e44ac4d75e10f64154dcdefa40650767727fba08d73de140b8bb071db0918',
'i686-unknown-linux-musl-0.1.0':
'7db329f27696a0ea70cf36ea6a437eac6ac8740a462d130af1c96fa5c5ae7539',
'powerpc64-unknown-linux-gnu-0.1.0':
'0b5996241dbd3c774bbd76fbb682496367773871787132e3a917f251419ff647',
'powerpc64le-unknown-linux-gnu-0.1.0':
'2d53a5bdf82f26702d5e8db20981b048265040fde49e3e5f1bc8add56ca72ff4',
's390x-unknown-linux-gnu-0.1.0':
'd9ea9847f045366b428e679d9e44ccce53119f9ed6b2bd167563ef865097695a',
'x86_64-apple-darwin-0.1.0':
'e8e386f588f8fb1a51e309e89da771febda1dc34e99fce5ebf042211389e7c01',
'x86_64-pc-windows-msvc-0.1.0':
'd9a55a65d761831e073a9461a3d5f4462203e991b814522f27dad12ddfab0183',
'x86_64-unknown-linux-gnu-0.1.0':
'43a5253b18dee80d3e259dc0df39db39728296d0a506ab89974d3fc15d8e3a16',
'x86_64-unknown-linux-musl-0.1.0':
'9caa5b457d1adbd30b28444bfccb6c789702e3bb260e286d8f3278bd0cb02af6',
'undefined-0.0.5':
'5eaac1dcbcf6e25b7e2cf73aee3c9ced014605bcd3fe055e337e505ece443835',
'aarch64-apple-darwin-0.0.5':
'887f58afbcdb879bcb07a0d5f99106a10b8023d4b104882627a93798629c7ed8',
'aarch64-unknown-linux-gnu-0.0.5':
'ac9aa3b0ecb1655baafe87be9fdc6e4f904fc7856779e292e8d55d679867f033',
'aarch64-unknown-linux-musl-0.0.5':
'e7ae701ed98ccbe51ef07345c9721b73afac8e68d0c95f9739e2eb367856bf15',
'armv7-unknown-linux-gnueabihf-0.0.5':
'697804a6c83cf1fcfad284baaf72a7a5d03228759aefeccc191a4ed4d6e2ff89',
'armv7-unknown-linux-musleabihf-0.0.5':
'23d2fa787666ed1b4418d584758789805d0954e36e221ec9d58376b5630d3fcc',
'i686-pc-windows-msvc-0.0.5':
'ba05493ffbb4b848ac333278471f119c58bff3ff56a4de9c98449c3cde5b27d4',
'i686-unknown-linux-gnu-0.0.5':
'b867363feedcce39bb6935ad12a597e6474280f69b6c759cc0ee00d0d9859427',
'i686-unknown-linux-musl-0.0.5':
'40e56b614a64d0b2001738f41808f543cd3e43a0bcc4df70d4c28b92376ddf84',
'powerpc64-unknown-linux-gnu-0.0.5':
'0742fd23ced7fafba5ecd580bd47dacd5613acf4b962385909032f1f6d484cb7',
'powerpc64le-unknown-linux-gnu-0.0.5':
'a7f847c0490388a9f970559ff88f935d83373efda94f9db260cec26aa85f11a8',
's390x-unknown-linux-gnu-0.0.5':
'27fd1a54606ee68d07d5acd2a6000497f43fb1b87203a0c0c92da9cc77007c74',
'x86_64-apple-darwin-0.0.5':
'9a62a8b6d8cefb8716aae62e1deb34df18b4fa6cfc5069c5ef645193c5a9f6c6',
'x86_64-pc-windows-msvc-0.0.5':
'952e3e9ca0e88ad49c516ddaaa6625b0f818b34d83b3ff65f7557c3e07d90c2d',
'x86_64-unknown-linux-gnu-0.0.5':
'c0f3bc450ffac667dd3c12e2fb221177262d60ccac0521797bb4f4fef14cfad3',
'x86_64-unknown-linux-musl-0.0.5':
'705bbe04a93a9d4d9db5224c2f980a88bba272538a33a78ea2e966f46b4d5eb7'
}

View File

@@ -0,0 +1,39 @@
import {promises as fs} from 'fs'
import * as tc from '@actions/tool-cache'
export async function updateChecksums(
filePath: string,
downloadUrls: string[]
): Promise<void> {
await fs.rm(filePath)
await fs.appendFile(
filePath,
'// AUTOGENERATED_DO_NOT_EDIT\nexport const KNOWN_CHECKSUMS: {[key: string]: string} = {\n'
)
let firstLine = true
for (const downloadUrl of downloadUrls) {
const content = await downloadAssetContent(downloadUrl)
const checksum = content.split(' ')[0].trim()
const key = getKey(downloadUrl)
if (!firstLine) {
await fs.appendFile(filePath, ',\n')
}
await fs.appendFile(filePath, ` '${key}':\n '${checksum}'`)
firstLine = false
}
await fs.appendFile(filePath, '}\n')
}
function getKey(downloadUrl: string): string {
// https://github.com/astral-sh/uv/releases/download/0.3.2/uv-aarch64-apple-darwin.tar.gz.sha256
const parts = downloadUrl.split('/')
const fileName = parts[parts.length - 1]
const name = fileName.split('.')[0].split('uv-')[1]
const version = parts[parts.length - 2]
return `${name}-${version}`
}
async function downloadAssetContent(downloadUrl: string): Promise<string> {
const downloadPath = await tc.downloadTool(downloadUrl)
const content = await fs.readFile(downloadPath, 'utf8')
return content
}

View File

@@ -0,0 +1,64 @@
import * as core from '@actions/core'
import * as tc from '@actions/tool-cache'
import * as path from 'path'
import * as exec from '@actions/exec'
import {Architecture, Platform} from '../utils/platforms'
import {validateChecksum} from './checksum/checksum'
import {OWNER, REPO} from '../utils/utils'
export async function downloadLatest(
platform: Platform,
arch: Architecture,
checkSum: string | undefined,
githubToken: string | undefined
): Promise<{downloadDir: string; version: string}> {
const binary = `uv-${arch}-${platform}`
let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/latest/download/${binary}`
if (platform === 'pc-windows-msvc') {
downloadUrl += '.zip'
} else {
downloadUrl += '.tar.gz'
}
core.info(`Downloading uv from "${downloadUrl}" ...`)
const downloadDir = `${process.cwd()}${path.sep}uv`
const downloadPath = await tc.downloadTool(
downloadUrl,
downloadDir,
githubToken
)
let uvExecutablePath: string
let extracted: string
if (platform === 'pc-windows-msvc') {
extracted = await tc.extractZip(downloadPath)
uvExecutablePath = path.join(extracted, 'uv.exe')
} else {
extracted = await tc.extractTar(downloadPath)
uvExecutablePath = path.join(extracted, 'uv')
}
const version = await getVersion(uvExecutablePath)
await validateChecksum(checkSum, downloadPath, arch, platform, version)
return {downloadDir, version}
}
async function getVersion(uvExecutablePath: string): Promise<string> {
// Parse the output of `uv --version` to get the version
// The output looks like
// uv 0.3.1 (be17d132a 2024-08-21)
const options: exec.ExecOptions = {
silent: !core.isDebug()
}
const execArgs = ['--version']
let output = ''
options.listeners = {
stdout: (data: Buffer) => {
output += data.toString()
}
}
await exec.exec(uvExecutablePath, execArgs, options)
const parts = output.split(' ')
return parts[1]
}

View File

@@ -0,0 +1,48 @@
import * as core from '@actions/core'
import * as tc from '@actions/tool-cache'
import {OWNER, REPO, TOOL_CACHE_NAME} from '../utils/utils'
import path from 'path'
import {Architecture, Platform} from '../utils/platforms'
import {validateChecksum} from './checksum/checksum'
export function tryGetFromToolCache(
arch: Architecture,
version: string
): string | undefined {
core.debug(`Trying to get uv from tool cache for ${version}...`)
const cachedVersions = tc.findAllVersions(TOOL_CACHE_NAME, arch)
core.debug(`Cached versions: ${cachedVersions}`)
return tc.find(TOOL_CACHE_NAME, version, arch)
}
export async function downloadVersion(
platform: Platform,
arch: Architecture,
version: string,
checkSum: string | undefined,
githubToken: string | undefined
): Promise<string> {
const binary = `uv-${arch}-${platform}`
let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/download/${version}/${binary}`
if (platform === 'pc-windows-msvc') {
downloadUrl += '.zip'
} else {
downloadUrl += '.tar.gz'
}
core.info(`Downloading uv from "${downloadUrl}" ...`)
const downloadDir = `${process.cwd()}${path.sep}uv`
const downloadPath = await tc.downloadTool(
downloadUrl,
downloadDir,
githubToken
)
await validateChecksum(checkSum, downloadPath, arch, platform, version)
if (platform === 'pc-windows-msvc') {
await tc.extractZip(downloadPath)
} else {
tc.extractTar(downloadPath)
}
return downloadPath
}

36
src/save-cache.ts Normal file
View File

@@ -0,0 +1,36 @@
import * as cache from '@actions/cache'
import * as core from '@actions/core'
import {STATE_CACHE_MATCHED_KEY, STATE_CACHE_KEY} from './cache/restore-cache'
import {cacheLocalPath, enableCache} from './utils/inputs'
export async function run(): Promise<void> {
try {
if (enableCache) {
await saveCache()
}
} catch (error) {
const err = error as Error
core.setFailed(err.message)
}
process.exit(0)
}
async function saveCache(): Promise<void> {
const cacheKey = core.getState(STATE_CACHE_KEY)
const matchedKey = core.getState(STATE_CACHE_MATCHED_KEY)
if (!cacheKey) {
core.warning('Error retrieving cache key from state.')
return
} else if (matchedKey === cacheKey) {
// no change in target directories
core.info(`Cache hit occurred on key ${cacheKey}, not saving cache.`)
return
}
core.info(`Saving cache path: ${cacheLocalPath}`)
await cache.saveCache([cacheLocalPath], cacheKey)
core.info(`cache saved with the key: ${cacheKey}`)
}
run()

98
src/setup-uv.ts Normal file
View File

@@ -0,0 +1,98 @@
import * as core from '@actions/core'
import * as path from 'path'
import {downloadVersion, tryGetFromToolCache} from './download/download-version'
import {restoreCache} from './cache/restore-cache'
import {downloadLatest} from './download/download-latest'
import {Architecture, getArch, getPlatform, Platform} from './utils/platforms'
import {
cacheLocalPath,
checkSum,
enableCache,
githubToken,
version
} from './utils/inputs'
async function run(): Promise<void> {
const platform = getPlatform()
const arch = getArch()
try {
if (platform === undefined) {
throw new Error(`Unsupported platform: ${process.platform}`)
}
if (arch === undefined) {
throw new Error(`Unsupported architecture: ${process.arch}`)
}
const installedVersion = await setupUv(
platform,
arch,
version,
checkSum,
githubToken
)
addMatchers()
setCacheDir(cacheLocalPath)
if (enableCache) {
await restoreCache(installedVersion)
}
} catch (err) {
core.setFailed((err as Error).message)
}
process.exit(0)
}
async function setupUv(
platform: Platform,
arch: Architecture,
versionInput: string,
checkSum: string | undefined,
githubToken: string | undefined
): Promise<string> {
let installedPath: string | undefined
let downloadDir: string
let version: string
if (versionInput === 'latest') {
const result = await downloadLatest(platform, arch, checkSum, githubToken)
version = result.version
downloadDir = result.downloadDir
} else {
version = versionInput
installedPath = tryGetFromToolCache(arch, versionInput)
if (installedPath) {
core.info(`Found uv in tool-cache for ${versionInput}`)
return version
}
downloadDir = await downloadVersion(
platform,
arch,
versionInput,
checkSum,
githubToken
)
}
addUvToPath(downloadDir)
core.setOutput('uv-version', version)
core.info(`Successfully installed uv version ${version}`)
return version
}
function addUvToPath(cachedPath: string): void {
core.addPath(cachedPath)
core.info(`Added ${cachedPath} to the path`)
}
function setCacheDir(cacheLocalPath: string): void {
core.exportVariable('UV_CACHE_DIR', cacheLocalPath)
core.info(`Set UV_CACHE_DIR to ${cacheLocalPath}`)
}
function addMatchers(): void {
const matchersPath = path.join(__dirname, `..${path.sep}..`, '.github')
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`)
}
run()

View File

@@ -0,0 +1,65 @@
import * as github from '@actions/github'
import * as core from '@actions/core'
import {OWNER, REPO} from './utils/utils'
import {createReadStream, promises as fs} from 'fs'
import * as readline from 'readline'
import * as semver from 'semver'
import {updateChecksums} from './download/checksum/update-known-checksums'
async function run(): Promise<void> {
const checksumFilePath = process.argv.slice(2)[0]
const defaultVersionFilePath = process.argv.slice(2)[1]
const github_token = process.argv.slice(2)[2]
const octokit = github.getOctokit(github_token)
const response = await octokit.paginate(octokit.rest.repos.listReleases, {
owner: OWNER,
repo: REPO
})
const downloadUrls: string[] = response.flatMap(release =>
release.assets
.filter(asset => asset.name.endsWith('.sha256'))
.map(asset => asset.browser_download_url)
)
await updateChecksums(checksumFilePath, downloadUrls)
const latestVersion = response
.map(release => release.tag_name)
.sort(semver.rcompare)[0]
core.setOutput('latest-version', latestVersion)
await updateDefaultVersion(defaultVersionFilePath, latestVersion)
}
async function updateDefaultVersion(
filePath: string,
latestVersion: string
): Promise<void> {
const fileStream = createReadStream(filePath)
const rl = readline.createInterface({
input: fileStream
})
let foundDescription = false
const lines = []
for await (let line of rl) {
if (
!foundDescription &&
line.includes("description: 'The version of uv to install'")
) {
foundDescription = true
} else if (foundDescription && line.includes('default: ')) {
line = line.replace(/'[^']*'/, `'${latestVersion}'`)
foundDescription = false
}
lines.push(line)
}
await fs.writeFile(filePath, lines.join('\n'))
}
run()

9
src/utils/inputs.ts Normal file
View File

@@ -0,0 +1,9 @@
import * as core from '@actions/core'
export const version = core.getInput('version')
export const checkSum = core.getInput('checksum')
export const enableCache = core.getInput('enable-cache') === 'true'
export const cacheSuffix = core.getInput('cache-suffix') || ''
export const cacheLocalPath = core.getInput('cache-local-path')
export const githubToken = core.getInput('github-token')
export const cacheDependencyGlob = core.getInput('cache-dependency-glob')

33
src/utils/platforms.ts Normal file
View File

@@ -0,0 +1,33 @@
export type Platform =
| 'unknown-linux-gnu'
| 'unknown-linux-musl'
| 'unknown-linux-musleabihf'
| 'apple-darwin'
| 'pc-windows-msvc'
export type Architecture = 'i686' | 'x86_64' | 'aarch64'
export function getArch(): Architecture | undefined {
const arch = process.arch
const archMapping: {[key: string]: Architecture} = {
ia32: 'i686',
x64: 'x86_64',
arm64: 'aarch64'
}
if (arch in archMapping) {
return archMapping[arch]
}
}
export function getPlatform(): Platform | undefined {
const platform = process.platform
const platformMapping: {[key: string]: Platform} = {
linux: 'unknown-linux-gnu',
darwin: 'apple-darwin',
win32: 'pc-windows-msvc'
}
if (platform in platformMapping) {
return platformMapping[platform]
}
}

3
src/utils/utils.ts Normal file
View File

@@ -0,0 +1,3 @@
export const REPO = 'uv'
export const OWNER = 'astral-sh'
export const TOOL_CACHE_NAME = 'uv'

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
},
"exclude": ["node_modules", "**/*.test.ts"]
}