diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a179da9..2d4aeda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,7 @@ jobs: - name: Install cross if: matrix.use_cross - run: cargo install cross --locked + run: cargo install cross --version 0.2.5 --locked - name: Build run: ${{ matrix.use_cross && 'cross' || 'cargo' }} build --target ${{ matrix.target }} ${{ matrix.features }} --examples @@ -159,6 +159,16 @@ jobs: run: ${{ matrix.use_cross && 'cross' || 'cargo' }} test --target ${{ matrix.target }} ${{ matrix.features }} shell: bash + - name: Build Node addon (wasm2c) + if: ${{ !matrix.use_cross }} + run: node npm/scripts/build-native.js ${{ matrix.target }} + shell: bash + + - name: Test Node addon + if: ${{ !matrix.use_cross }} + run: node npm/test/smoke.js + shell: bash + - name: Build proxytester (release) run: ${{ matrix.use_cross && 'cross' || 'cargo' }} build --release --target ${{ matrix.target }} ${{ matrix.artifact_features }} --example proxytester shell: bash @@ -547,10 +557,13 @@ jobs: | tar xz --strip-components=1 -C "$HOME/wabt" echo "$HOME/wabt/bin" >> "$GITHUB_PATH" - run: cargo fmt --check + - run: cargo fmt --manifest-path npm/native/Cargo.toml --check - run: cargo clippy --all-features --all-targets -- -D warnings + - run: cargo clippy --manifest-path npm/native/Cargo.toml --all-targets -- -D warnings - run: cargo doc --no-deps --all-features env: RUSTDOCFLAGS: -D warnings + - run: npm run verify:packages licenses: name: licenses (deny + notices) @@ -582,4 +595,10 @@ jobs: echo "::error::ThirdPartyNotices.txt is out of date. Run: cargo about generate --all-features about.hbs > ThirdPartyNotices.txt" exit 1 fi + cargo about generate --manifest-path npm/native/Cargo.toml --config about.toml \ + --locked --fail --output-file npm/ThirdPartyNotices.generated.txt npm/about.hbs + if ! diff -u -B -w npm/ThirdPartyNotices.txt npm/ThirdPartyNotices.generated.txt; then + echo "::error::npm/ThirdPartyNotices.txt is out of date. Run: cargo about generate --manifest-path npm/native/Cargo.toml --config about.toml --locked --fail --output-file npm/ThirdPartyNotices.txt npm/about.hbs" + exit 1 + fi diff --git a/.gitignore b/.gitignore index 223f5b7..1d05748 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,8 @@ # CI drops pregenerated wasm2c output here for cross builds (see build.rs # OS_PROXY_RESOLVER_PAC_GUEST_C_DIR and .github/workflows/ci.yml). /pac-wasm-guest/generated +# Direct Cargo commands against the Node binding use its local target dir. +/npm/native/target +/npm/platforms/*/*.node +/npm/platforms/*/LICENSE.txt +/npm/platforms/*/ThirdPartyNotices.txt diff --git a/Cross.toml b/Cross.toml index ae1bfe5..8164ae5 100644 --- a/Cross.toml +++ b/Cross.toml @@ -12,3 +12,14 @@ [build.env] passthrough = ["OS_PROXY_RESOLVER_PAC_GUEST_C_DIR"] + +# Pin the cross-compilation CI toolchains instead of inheriting whatever images +# a future `cross` release selects. These images use glibc 2.23. +[target.x86_64-unknown-linux-gnu] +image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:0.2.5" + +[target.aarch64-unknown-linux-gnu] +image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:0.2.5" + +[target.armv7-unknown-linux-gnueabihf] +image = "ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:0.2.5" diff --git a/README.md b/README.md index a720b31..657138f 100644 --- a/README.md +++ b/README.md @@ -205,9 +205,43 @@ The benchmark cross-checks all engines and fails if the embedded backends (byte-identical engine sources) disagree on any URL; it also reports the size of the embedded AOT-compiled guest module. -Builds as both `rlib` and `cdylib`. Release automation with `cargo-dist` is a -natural fit (the CI matrix below already covers the seven targets) but is not -wired up yet. +Builds as both `rlib` and `cdylib`. + +## Node.js package + +`@vscode/os-proxy-resolver` exposes the resolver through Node-API, with +prebuilt addons for Windows and macOS x64/arm64 and glibc Linux +x64/arm64/armhf. The public package selects a platform-specific optional +dependency at runtime, so consumers install only the addon they need. Every +addon uses the `pac-engine-wasm2c` backend; consumers do not need Rust, a C +compiler, or WABT installed. + +Linux addons are built with the pinned glibc 2.28 sysroots from the shared +`vscode-engineering` npm pipeline and then inspected with that toolchain's +`objdump`; publishing fails if any final `.node` artifact requires a GLIBC +symbol newer than 2.28. This keeps them compatible with VS Code's glibc 2.28 +desktop baseline. + +```js +const { resolveProxy, ProxyResolver } = require('@vscode/os-proxy-resolver'); + +const proxies = await resolveProxy('https://example.com/'); +const resolver = new ProxyResolver(); +const subscription = resolver.onChange(() => { /* proxy config changed */ }); +resolver.offChange(subscription); +resolver.close(); +``` + +Resolution is dispatched to libuv's worker pool because PAC fetching, WPAD, +DNS, and operating-system APIs can block. The addon uses Node-API rather than +the Electron ABI, so the same binary works in supported Node.js and Electron +versions. + +The Azure Pipeline in [`azure-pipelines/publish.yml`](azure-pipelines/publish.yml) +uses the shared `vscode-engineering` npm-package template. It publishes all +seven native packages before the facade, with independent switches for npm +and the VS Code Azure Artifacts feed. Keep the version in the root and all +platform `package.json` files identical; `npm run verify:packages` checks this. ## CI diff --git a/azure-pipelines/publish.yml b/azure-pipelines/publish.yml new file mode 100644 index 0000000..e56e603 --- /dev/null +++ b/azure-pipelines/publish.yml @@ -0,0 +1,172 @@ +name: $(Date:yyyyMMdd)$(Rev:.r) + +trigger: + branches: + include: + - main +pr: none + +resources: + repositories: + - repository: templates + type: github + name: microsoft/vscode-engineering + ref: main + endpoint: Monaco + +parameters: + - name: publishPackage + displayName: Publish @vscode/os-proxy-resolver packages to npm + type: boolean + default: false + - name: publishPackageToAzureArtifacts + displayName: Publish @vscode/os-proxy-resolver packages to Azure Artifacts + type: boolean + default: false + +extends: + template: azure-pipelines/npm-package/pipeline.yml@templates + parameters: + npmPackages: + - name: os-proxy-resolver-win32-x64-msvc + packagePlatform: Windows + rustTargets: x86_64-pc-windows-msvc + workingDirectory: npm/platforms/win32-x64-msvc + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + - template: azure-pipelines/steps/build-windows-addon.yml@self + parameters: + target: x86_64-pc-windows-msvc + test: true + + - name: os-proxy-resolver-win32-arm64-msvc + dependsOn: os-proxy-resolver-win32-x64-msvc + packagePlatform: Windows + rustTargets: aarch64-pc-windows-msvc + workingDirectory: npm/platforms/win32-arm64-msvc + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + # The shared package template uses a Windows x64 agent. This addon is + # runtime-tested on the native windows-11-arm GitHub CI runner. + - template: azure-pipelines/steps/build-windows-addon.yml@self + parameters: + target: aarch64-pc-windows-msvc + + - name: os-proxy-resolver-darwin-x64 + dependsOn: os-proxy-resolver-win32-arm64-msvc + packagePlatform: MacOS + rustTargets: x86_64-apple-darwin + workingDirectory: npm/platforms/darwin-x64 + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + - template: azure-pipelines/steps/build-macos-addon.yml@self + parameters: + target: x86_64-apple-darwin + test: true + + - name: os-proxy-resolver-darwin-arm64 + dependsOn: os-proxy-resolver-darwin-x64 + packagePlatform: MacOS + rustTargets: aarch64-apple-darwin + workingDirectory: npm/platforms/darwin-arm64 + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + # The shared package template uses a macOS x64 agent. This addon is + # runtime-tested on the native macOS arm64 GitHub CI runner. + - template: azure-pipelines/steps/build-macos-addon.yml@self + parameters: + target: aarch64-apple-darwin + + - name: os-proxy-resolver-linux-x64-gnu + dependsOn: os-proxy-resolver-darwin-arm64 + packagePlatform: Linux + rustTargets: x86_64-unknown-linux-gnu + workingDirectory: npm/platforms/linux-x64-gnu + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + - template: azure-pipelines/common/steps/setup-linux-toolchains.yml@templates + parameters: + arch: x64 + nodeVersion: 22.x + - template: azure-pipelines/steps/build-linux-addon.yml@self + parameters: + target: x86_64-unknown-linux-gnu + test: true + + - name: os-proxy-resolver-linux-arm64-gnu + dependsOn: os-proxy-resolver-linux-x64-gnu + packagePlatform: Linux + rustTargets: aarch64-unknown-linux-gnu + workingDirectory: npm/platforms/linux-arm64-gnu + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + - template: azure-pipelines/common/steps/setup-linux-toolchains.yml@templates + parameters: + arch: arm64 + nodeVersion: 22.x + - template: azure-pipelines/steps/build-linux-addon.yml@self + parameters: + target: aarch64-unknown-linux-gnu + test: true + + - name: os-proxy-resolver-linux-arm-gnueabihf + dependsOn: os-proxy-resolver-linux-arm64-gnu + packagePlatform: Linux + rustTargets: armv7-unknown-linux-gnueabihf + workingDirectory: npm/platforms/linux-arm-gnueabihf + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + ghCreateTag: false + ghCreateRelease: false + testPlatforms: {} + buildSteps: + - template: azure-pipelines/common/steps/setup-linux-toolchains.yml@templates + parameters: + arch: arm + nodeVersion: 22.x + - template: azure-pipelines/steps/build-linux-addon.yml@self + parameters: + target: armv7-unknown-linux-gnueabihf + test: true + + - name: os-proxy-resolver + dependsOn: os-proxy-resolver-linux-arm-gnueabihf + workingDirectory: . + publishPackage: ${{ parameters.publishPackage }} + publishPackageToAzureArtifacts: ${{ parameters.publishPackageToAzureArtifacts }} + skipAPIScan: true + testPlatforms: {} + buildSteps: + - script: npm run verify:packages + displayName: Verify package versions \ No newline at end of file diff --git a/azure-pipelines/steps/build-linux-addon.yml b/azure-pipelines/steps/build-linux-addon.yml new file mode 100644 index 0000000..6b65027 --- /dev/null +++ b/azure-pipelines/steps/build-linux-addon.yml @@ -0,0 +1,39 @@ +parameters: + - name: target + type: string + - name: test + type: boolean + default: false + +steps: + - bash: | + set -e + mkdir -p "$(Agent.TempDirectory)/wabt" pac-wasm-guest/generated + curl -sSL "https://github.com/WebAssembly/wabt/releases/download/1.0.41/wabt-1.0.41-linux-x64.tar.gz" \ + | tar xz --strip-components=1 -C "$(Agent.TempDirectory)/wabt" + "$(Agent.TempDirectory)/wabt/bin/wasm2c" pac-wasm-guest/pac_guest.wasm --module-name pac_guest \ + -o pac-wasm-guest/generated/pac_guest.c + OS_PROXY_RESOLVER_PAC_GUEST_C_DIR=pac-wasm-guest/generated \ + npm/scripts/build-linux-native.sh ${{ parameters.target }} + displayName: Build Linux addon + + - ${{ if parameters.test }}: + - ${{ if eq(parameters.target, 'x86_64-unknown-linux-gnu') }}: + - script: npm run test:npm + displayName: Test Linux x64 addon + - ${{ else }}: + - bash: | + set -e + sudo docker run --rm --privileged \ + tonistiigi/binfmt:qemu-v10.0.4@sha256:8f58e6214f4cc9dc83ce8f5acad1ece508eb6b20e696a8c1e9f274481982c541 \ + --install arm64,arm + case '${{ parameters.target }}' in + aarch64-unknown-linux-gnu) platform=linux/arm64 ;; + armv7-unknown-linux-gnueabihf) platform=linux/arm/v7 ;; + *) echo 'Unsupported emulated target: ${{ parameters.target }}' >&2; exit 2 ;; + esac + sudo docker run --rm --platform "$platform" \ + -v "$(Build.SourcesDirectory):/workspace" -w /workspace \ + node:22.22.0-bookworm@sha256:20a424ecd1d2064a44e12fe287bf3dae443aab31dc5e0c0cb6c74bef9c78911c \ + node npm/test/smoke.js + displayName: Test Linux ARM addon under QEMU \ No newline at end of file diff --git a/azure-pipelines/steps/build-macos-addon.yml b/azure-pipelines/steps/build-macos-addon.yml new file mode 100644 index 0000000..7bd8d1f --- /dev/null +++ b/azure-pipelines/steps/build-macos-addon.yml @@ -0,0 +1,16 @@ +parameters: + - name: target + type: string + - name: test + type: boolean + default: false + +steps: + - bash: | + set -e + brew install wabt + wasm2c --version + node npm/scripts/build-native.js ${{ parameters.target }} + ${{ if parameters.test }}: + npm run test:npm + displayName: ${{ parameters.test && 'Build and test macOS addon' || 'Build macOS addon' }} \ No newline at end of file diff --git a/azure-pipelines/steps/build-windows-addon.yml b/azure-pipelines/steps/build-windows-addon.yml new file mode 100644 index 0000000..844944b --- /dev/null +++ b/azure-pipelines/steps/build-windows-addon.yml @@ -0,0 +1,25 @@ +parameters: + - name: target + type: string + - name: test + type: boolean + default: false + +steps: + - pwsh: | + $ErrorActionPreference = "Stop" + $wabt = "$(Agent.TempDirectory)/wabt" + New-Item -ItemType Directory -Force $wabt | Out-Null + curl.exe -sSL "https://github.com/WebAssembly/wabt/releases/download/1.0.41/wabt-1.0.41-windows-x64.tar.gz" -o "$wabt/wabt.tar.gz" + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + tar.exe -xzf "$wabt/wabt.tar.gz" --strip-components=1 -C $wabt + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + $env:OS_PROXY_RESOLVER_WASM2C = "$wabt/bin/wasm2c.exe" + & $env:OS_PROXY_RESOLVER_WASM2C --version + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + node npm/scripts/build-native.js ${{ parameters.target }} + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + ${{ if parameters.test }}: + npm run test:npm + if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + displayName: ${{ parameters.test && 'Build and test Windows addon' || 'Build Windows addon' }} \ No newline at end of file diff --git a/index.d.ts b/index.d.ts new file mode 100644 index 0000000..c156fea --- /dev/null +++ b/index.d.ts @@ -0,0 +1,91 @@ +/** + * The connection method for a resolved proxy entry. + * + * `http` covers both HTTP proxies and HTTPS proxies (TLS to the proxy). For an + * HTTPS proxy, {@link Proxy.host} is prefixed with `https://`. + */ +export type ProxyKind = 'direct' | 'http' | 'socks'; + +/** A single entry in an ordered proxy resolution result. */ +export interface Proxy { + /** How to connect to the destination. */ + kind: ProxyKind; + + /** + * The proxy endpoint. Omitted when {@link kind} is `direct`. + * + * HTTP and SOCKS endpoints normally use `host:port`. An HTTPS proxy uses + * `https://host:port` to distinguish TLS to the proxy from a plain HTTP + * proxy. The SOCKS4/SOCKS5 distinction is not preserved; consumers should + * try SOCKS5 first. + */ + host?: string; +} + +/** + * Resolves the proxy configuration for multiple URLs while retaining proxy + * configuration caches, change notifications, and failed-proxy state. + * + * Environment variables such as `HTTPS_PROXY` and `NO_PROXY` are captured + * when the resolver is constructed. Operating-system proxy settings remain + * dynamic and are watched for changes. + */ +export declare class ProxyResolver { + constructor(); + + /** + * Resolves the ordered proxy fallback list for an absolute URL. + * + * Try entries in array order until one succeeds. Resolution considers proxy + * environment variables first, then the operating-system configuration + * (including PAC and WPAD), and finally a direct connection. Potentially + * blocking native work runs outside the JavaScript event loop. + * + * @throws If `url` is invalid, has no host, or an operating-system API fails. + */ + resolve(url: string): Promise; + + /** + * A monotonically increasing value that changes when the operating-system + * proxy configuration may have changed. Cache consumers can store this with + * a resolution and compare it before reusing that result. + */ + readonly configGeneration: number; + + /** + * Reports that a connection through `proxy` failed. + * + * Subsequent resolutions demote that proxy to the end of the fallback list + * for a cooldown period. Reporting a direct entry has no effect. + */ + reportProxyFailed(proxy: Proxy): void; + + /** + * Registers a callback for operating-system proxy configuration changes. + * + * The callback runs on the JavaScript event loop and receives no payload; + * read {@link configGeneration} or resolve affected URLs again. The + * subscription does not keep the Node.js process alive. + * + * @returns A subscription identifier for {@link offChange}. + */ + onChange(callback: () => void): number; + + /** Unregisters a callback previously registered with {@link onChange}. */ + offChange(subscription: number): void; + + /** + * Unregisters all change callbacks owned by this resolver. + * + * The resolver remains usable for resolution after it is closed. + */ + close(): void; +} + +/** + * Resolves an absolute URL using a process-wide {@link ProxyResolver}. + * + * The returned array is an ordered fallback list. Use an explicit resolver + * when change notifications or failed-proxy reporting are needed. + */ +export declare function resolveProxy(url: string): Promise; \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..6188e72 --- /dev/null +++ b/index.js @@ -0,0 +1,35 @@ +'use strict'; + +const packages = { + 'darwin-arm64': '@vscode/os-proxy-resolver-darwin-arm64', + 'darwin-x64': '@vscode/os-proxy-resolver-darwin-x64', + 'linux-arm': '@vscode/os-proxy-resolver-linux-arm-gnueabihf', + 'linux-arm64': '@vscode/os-proxy-resolver-linux-arm64-gnu', + 'linux-x64': '@vscode/os-proxy-resolver-linux-x64-gnu', + 'win32-arm64': '@vscode/os-proxy-resolver-win32-arm64-msvc', + 'win32-x64': '@vscode/os-proxy-resolver-win32-x64-msvc', +}; + +const platform = `${process.platform}-${process.arch}`; +const packageName = packages[platform]; + +if (!packageName) { + throw new Error(`@vscode/os-proxy-resolver does not support ${platform}`); +} + +try { + require.resolve(packageName); +} catch (error) { + if (error && error.code === 'MODULE_NOT_FOUND') { + throw new Error( + `The native package ${packageName} is not installed. ` + + 'Ensure optional dependencies are enabled and npm_config_arch matches the target architecture.', + { cause: error } + ); + } + throw error; +} + +const binding = require(packageName); +exports.ProxyResolver = binding.ProxyResolver; +exports.resolveProxy = binding.resolveProxy; \ No newline at end of file diff --git a/npm/ThirdPartyNotices.txt b/npm/ThirdPartyNotices.txt new file mode 100644 index 0000000..867f5ee --- /dev/null +++ b/npm/ThirdPartyNotices.txt @@ -0,0 +1,1593 @@ +NOTICES + +This package incorporates material as listed below. + +--- + +## WABT wasm2c runtime (wasm-rt) + +The PAC engine compiles C generated by WABT's `wasm2c` tool from the +first-party PAC guest module together with WABT's wasm2c runtime sources. +The runtime is licensed under the Apache License 2.0: + +Copyright 2016- WebAssembly Community Group participants + +Licensed under the Apache License, Version 2.0 (the "License"); you may not +use these files except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0. + +--- + +## Rust crate dependencies + +The following third-party Rust crates are compiled into the native addon. +This section is generated by `cargo about generate`; do not edit it by hand. + +Overview of licenses used: +- MIT License (67 crates) +- Unicode License v3 (19 crates) +- ISC License (4 crates) +- Community Data License Agreement Permissive 2.0 (2 crates) +- Apache License 2.0 (1 crate) +- BSD 3-Clause "New" or "Revised" License (1 crate) + +-------------------------------------------------------------------------------- + +Apache License 2.0 + +Used by: + - ring 0.17.14 + + 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. + +-------------------------------------------------------------------------------- + +BSD 3-Clause "New" or "Revised" License + +Used by: + - subtle 2.6.1 + +Copyright (c) 2016-2017 Isis Agora Lovecruft, Henry de Valence. All rights reserved. +Copyright (c) 2016-2024 Isis Agora Lovecruft. 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. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +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. + +-------------------------------------------------------------------------------- + +Community Data License Agreement Permissive 2.0 + +Used by: + - webpki-roots 0.26.11 + - webpki-roots 1.0.8 + +# Community Data License Agreement - Permissive - Version 2.0 + +This is the Community Data License Agreement - Permissive, Version +2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree +as follows: + +## 1. Provision of the Data + +1.1. A Data Recipient may use, modify, and share the Data made +available by Data Provider(s) under this agreement if that Data +Recipient follows the terms of this agreement. + +1.2. This agreement does not impose any restriction on a Data +Recipient's use, modification, or sharing of any portions of the +Data that are in the public domain or that may be used, modified, +or shared under any other legal exception or limitation. + +## 2. Conditions for Sharing Data + +2.1. A Data Recipient may share Data, with or without modifications, so +long as the Data Recipient makes available the text of this agreement +with the shared Data. + +## 3. No Restrictions on Results + +3.1. This agreement does not impose any restriction or obligations +with respect to the use, modification, or sharing of Results. + +## 4. No Warranty; Limitation of Liability + +4.1. All Data Recipients receive the Data subject to the following +terms: + +THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, +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. + +NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), 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 DATA OR RESULTS, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +## 5. Definitions + +5.1. "Data" means the material received by a Data Recipient under +this agreement. + +5.2. "Data Provider" means any person who is the source of Data +provided under this agreement and in reliance on a Data Recipient's +agreement to its terms. + +5.3. "Data Recipient" means any person who receives Data directly +or indirectly from a Data Provider and agrees to the terms of this +agreement. + +5.4. "Results" means any outcome obtained by computational analysis +of Data, including for example machine learning models and models' +insights. + +-------------------------------------------------------------------------------- + +ISC License + +Used by: + - untrusted 0.9.0 + +// Copyright 2015-2016 Brian Smith. +// +// 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 AUTHORS DISCLAIM ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS 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. + +-------------------------------------------------------------------------------- + +ISC License + +Used by: + - ring 0.17.14 + +Copyright 2015-2025 Brian Smith. + +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. + +-------------------------------------------------------------------------------- + +ISC License + +Used by: + - libloading 0.8.9 + +Copyright © 2015, Simonas Kazlauskas + +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. + +-------------------------------------------------------------------------------- + +ISC License + +Used by: + - rustls-webpki 0.103.13 + +Except as otherwise noted, this project is licensed under the following +(ISC-style) terms: + +Copyright 2015 Brian Smith. + +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 AUTHORS DISCLAIM ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS 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. + +The files under third-party/chromium are licensed as described in +third-party/chromium/LICENSE. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - core-foundation-sys 0.8.7 + - core-foundation 0.9.4 + +Copyright (c) 2012-2013 Mozilla Foundation + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - form_urlencoded 1.2.2 + +Copyright (c) 2013-2016 The rust-url developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - idna 1.1.0 + - percent-encoding 2.3.2 + - url 2.5.8 + +Copyright (c) 2013-2025 The rust-url developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - cc 1.2.67 + - cfg-if 1.0.4 + - find-msvc-tools 0.1.9 + +Copyright (c) 2014 Alex Crichton + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - bitflags 2.13.0 + - log 0.4.33 + - regex-automata 0.4.15 + - regex-syntax 0.8.11 + - regex 1.13.0 + +Copyright (c) 2014 The Rust Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - flate2 1.1.9 + +Copyright (c) 2014-2026 Alex Crichton + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - unicode-segmentation 1.13.3 + +Copyright (c) 2015 The Rust Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - rustls 0.23.42 + +Copyright (c) 2016 Joseph Birr-Pixton + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - stable_deref_trait 1.2.1 + +Copyright (c) 2017 Robert Grosse + +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. +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - smallvec 1.15.2 + +Copyright (c) 2018 The Servo Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - getrandom 0.2.17 + +Copyright (c) 2018-2024 The rust-random Project Developers +Copyright (c) 2014 The Rust Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - zeroize 1.9.0 + +Copyright (c) 2018-2026 The RustCrypto Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - rustls-pki-types 1.15.0 + +Copyright (c) 2023 Dirkjan Ochtman + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - system-configuration-sys 0.6.0 + - system-configuration 0.6.1 + +Copyright (c) 2024 Mullvad VPN AB + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - libc 0.2.186 + +Copyright (c) The Rust Project Developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - idna_adapter 1.2.2 + +Copyright (c) The rust-url developers + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - synstructure 0.13.2 + +Copyright 2016 Nika Layzell + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - utf8_iter 1.0.4 + +Copyright Mozilla Foundation + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - psl 2.1.218 + +MIT License + +Copyright (c) 2016 Rushmore Mushambi + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - crc32fast 1.5.0 + +MIT License + +Copyright (c) 2018 Sam Rijs, Alex Crichton 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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - ureq 2.12.1 + +MIT License + +Copyright (c) 2019 Martin Algesten + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - convert_case 0.6.0 + +MIT License + +Copyright (c) 2020 David Purdum + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - psl-types 2.0.11 + +MIT License + +Copyright (c) 2021 Rushmore Mushambi + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - napi-build 2.3.2 + - napi-derive-backend 1.0.75 + - napi-derive 2.16.13 + - napi-sys 2.4.0 + - napi 2.16.17 + - windows-link 0.2.1 + - windows-sys 0.52.0 + - windows-sys 0.60.2 + - windows-targets 0.52.6 + - windows-targets 0.53.5 + - windows_aarch64_msvc 0.52.6 + - windows_aarch64_msvc 0.53.1 + - windows_x86_64_gnu 0.52.6 + - windows_x86_64_gnu 0.53.1 + - windows_x86_64_msvc 0.52.6 + - windows_x86_64_msvc 0.53.1 + +MIT License + +Copyright (c) + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - os-proxy-resolver 0.1.0 + +MIT License + +Copyright (c) Microsoft Corporation. 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. + +--- + +The embedded PAC engine (in src/pac/engine) links the QuickJS-NG JavaScript +engine on macOS and Linux via the MIT-licensed rquickjs-sys crate. QuickJS-NG +is also MIT-licensed. See ThirdPartyNotices.txt for details. The MIT license +above applies to the first-party source of this project. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - tokio 1.52.3 + +MIT License + +Copyright (c) Tokio 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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - simd-adler32 0.3.9 + +MIT License + +Copyright (c) [2021] [Marvin Countryman] + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - miniz_oxide 0.8.9 + +MIT License + +Copyright 2013-2014 RAD Game Tools and Valve Software +Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC +Copyright (c) 2017 Frommi +Copyright (c) 2017-2024 oyvindln + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - adler2 2.0.1 + - displaydoc 0.2.6 + - once_cell 1.21.4 + - pin-project-lite 0.2.17 + - proc-macro2 1.0.106 + - quote 1.0.46 + - semver 1.0.28 + - syn 2.0.118 + - unicode-ident 1.0.24 + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - ctor 0.2.9 + +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. +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - base64 0.22.1 + +The MIT License (MIT) + +Copyright (c) 2015 Alice Maz + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - aho-corasick 1.1.4 + - memchr 2.8.3 + +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +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. + +-------------------------------------------------------------------------------- + +MIT License + +Used by: + - shlex 2.0.1 + +The MIT License (MIT) + +Copyright (c) 2015 Nicholas Allegra (comex). + +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. + +-------------------------------------------------------------------------------- + +Unicode License v3 + +Used by: + - unicode-ident 1.0.24 + +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +-------------------------------------------------------------------------------- + +Unicode License v3 + +Used by: + - icu_collections 2.2.0 + - icu_locale_core 2.2.0 + - icu_normalizer 2.2.0 + - icu_normalizer_data 2.2.0 + - icu_properties 2.2.0 + - icu_properties_data 2.2.0 + - icu_provider 2.2.0 + - litemap 0.8.2 + - potential_utf 0.1.5 + - tinystr 0.8.3 + - writeable 0.6.3 + - yoke-derive 0.8.2 + - yoke 0.8.3 + - zerofrom-derive 0.1.7 + - zerofrom 0.1.8 + - zerotrie 0.2.4 + - zerovec-derive 0.11.3 + - zerovec 0.11.6 + +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE 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 OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +— + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 © 1995-2016 International Business Machines Corporation and others. + diff --git a/npm/about.hbs b/npm/about.hbs new file mode 100644 index 0000000..c17bdb3 --- /dev/null +++ b/npm/about.hbs @@ -0,0 +1,42 @@ +NOTICES + +This package incorporates material as listed below. + +--- + +## WABT wasm2c runtime (wasm-rt) + +The PAC engine compiles C generated by WABT's `wasm2c` tool from the +first-party PAC guest module together with WABT's wasm2c runtime sources. +The runtime is licensed under the Apache License 2.0: + +Copyright 2016- WebAssembly Community Group participants + +Licensed under the Apache License, Version 2.0 (the "License"); you may not +use these files except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0. + +--- + +## Rust crate dependencies + +The following third-party Rust crates are compiled into the native addon. +This section is generated by `cargo about generate`; do not edit it by hand. + +Overview of licenses used: +{{#each overview}} +- {{{name}}} ({{count}} {{#if (eq count 1)}}crate{{else}}crates{{/if}}) +{{/each}} + +{{#each licenses}} +-------------------------------------------------------------------------------- + +{{{name}}} + +Used by: +{{#each used_by}} + - {{{crate.name}}} {{crate.version}} +{{/each}} + +{{{text}}} +{{/each}} \ No newline at end of file diff --git a/npm/native/Cargo.lock b/npm/native/Cargo.lock new file mode 100644 index 0000000..bf5df41 --- /dev/null +++ b/npm/native/Cargo.lock @@ -0,0 +1,950 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" + +[[package]] +name = "cc" +version = "1.2.67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "convert_case" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "displaydoc" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libloading" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +dependencies = [ + "cfg-if", + "windows-link", +] + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "log" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" + +[[package]] +name = "memchr" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "napi" +version = "2.16.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3" +dependencies = [ + "bitflags", + "ctor", + "napi-derive", + "napi-sys", + "once_cell", + "tokio", +] + +[[package]] +name = "napi-build" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1" + +[[package]] +name = "napi-derive" +version = "2.16.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c" +dependencies = [ + "cfg-if", + "convert_case", + "napi-derive-backend", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "napi-derive-backend" +version = "1.0.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf" +dependencies = [ + "convert_case", + "once_cell", + "proc-macro2", + "quote", + "regex", + "semver", + "syn", +] + +[[package]] +name = "napi-sys" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3" +dependencies = [ + "libloading", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "os-proxy-resolver" +version = "0.1.0" +dependencies = [ + "cc", + "core-foundation", + "log", + "psl", + "system-configuration", + "ureq", + "url", + "windows-sys 0.60.2", +] + +[[package]] +name = "os-proxy-resolver-node" +version = "0.1.0" +dependencies = [ + "napi", + "napi-build", + "napi-derive", + "os-proxy-resolver", + "url", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "psl" +version = "2.1.218" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f558d33d882cb296fb65dbe0246b98b90e761fbe00c552701d2030eb5bbce63a" +dependencies = [ + "psl-types", +] + +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" + +[[package]] +name = "quote" +version = "1.0.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "regex" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls" +version = "0.23.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138" +dependencies = [ + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pki-types" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" +dependencies = [ + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "simd-adler32" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "system-configuration" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +dependencies = [ + "bitflags", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "pin-project-lite", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "ureq" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" +dependencies = [ + "base64", + "flate2", + "log", + "once_cell", + "rustls", + "rustls-pki-types", + "url", + "webpki-roots 0.26.11", +] + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "webpki-roots" +version = "0.26.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" +dependencies = [ + "webpki-roots 1.0.8", +] + +[[package]] +name = "webpki-roots" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/npm/native/Cargo.toml b/npm/native/Cargo.toml new file mode 100644 index 0000000..0aba0ba --- /dev/null +++ b/npm/native/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "os-proxy-resolver-node" +version = "0.1.0" +edition = "2021" +rust-version = "1.77" +publish = false + +[lib] +crate-type = ["cdylib"] + +[dependencies] +napi = { version = "2", default-features = false, features = ["napi6", "async"] } +napi-derive = "2" +os-proxy-resolver = { path = "../..", default-features = false, features = ["pac-engine-wasm2c"] } +url = "2" + +[build-dependencies] +napi-build = "2" + +[profile.release] +strip = "symbols" +lto = true +codegen-units = 1 \ No newline at end of file diff --git a/npm/native/build.rs b/npm/native/build.rs new file mode 100644 index 0000000..0f1b010 --- /dev/null +++ b/npm/native/build.rs @@ -0,0 +1,3 @@ +fn main() { + napi_build::setup(); +} diff --git a/npm/native/src/lib.rs b/npm/native/src/lib.rs new file mode 100644 index 0000000..7d7621d --- /dev/null +++ b/npm/native/src/lib.rs @@ -0,0 +1,172 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See LICENSE.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +use std::collections::HashMap; +use std::sync::atomic::{AtomicU32, Ordering}; +use std::sync::Mutex; + +use napi::bindgen_prelude::{AsyncTask, Task}; +use napi::threadsafe_function::{ThreadsafeFunction, ThreadsafeFunctionCallMode}; +use napi::{Env, Error, JsFunction, JsUnknown, Result, Status}; +use napi_derive::napi; +use os_proxy_resolver::{ProxyKind, Subscription}; + +#[napi(object)] +pub struct Proxy { + pub kind: String, + pub host: Option, +} + +impl From for Proxy { + fn from(proxy: ProxyKind) -> Self { + match proxy { + ProxyKind::Direct => Proxy { + kind: "direct".to_string(), + host: None, + }, + ProxyKind::Http(host) => Proxy { + kind: "http".to_string(), + host: Some(host), + }, + ProxyKind::Socks(host) => Proxy { + kind: "socks".to_string(), + host: Some(host), + }, + } + } +} + +impl TryFrom<&Proxy> for ProxyKind { + type Error = Error; + + fn try_from(proxy: &Proxy) -> Result { + match (proxy.kind.as_str(), proxy.host.as_deref()) { + ("direct", None) => Ok(ProxyKind::Direct), + ("http", Some(host)) => Ok(ProxyKind::Http(host.to_string())), + ("socks", Some(host)) => Ok(ProxyKind::Socks(host.to_string())), + ("direct", Some(_)) => Err(Error::new( + Status::InvalidArg, + "a direct proxy must not have a host".to_string(), + )), + ("http" | "socks", None) => Err(Error::new( + Status::InvalidArg, + format!("a {} proxy must have a host", proxy.kind), + )), + _ => Err(Error::new( + Status::InvalidArg, + format!("unknown proxy kind: {}", proxy.kind), + )), + } + } +} + +pub struct ResolveTask { + resolver: os_proxy_resolver::ProxyResolver, + url: String, +} + +impl Task for ResolveTask { + type Output = Vec; + type JsValue = Vec; + + fn compute(&mut self) -> Result { + let url = url::Url::parse(&self.url) + .map_err(|error| Error::new(Status::InvalidArg, error.to_string()))?; + self.resolver + .resolve_proxy(&url) + .map_err(|error| Error::new(Status::GenericFailure, error.to_string())) + } + + fn resolve(&mut self, _env: Env, output: Self::Output) -> Result { + Ok(output.into_iter().map(Proxy::from).collect()) + } +} + +#[napi(js_name = "ProxyResolver")] +pub struct NodeProxyResolver { + resolver: os_proxy_resolver::ProxyResolver, + subscriptions: Mutex>, + next_subscription: AtomicU32, +} + +#[napi] +impl NodeProxyResolver { + #[napi(constructor)] + pub fn new() -> Self { + NodeProxyResolver { + resolver: os_proxy_resolver::ProxyResolver::new(), + subscriptions: Mutex::new(HashMap::new()), + next_subscription: AtomicU32::new(1), + } + } + + #[napi] + pub fn resolve(&self, url: String) -> AsyncTask { + AsyncTask::new(ResolveTask { + resolver: self.resolver.clone(), + url, + }) + } + + #[napi(getter)] + pub fn config_generation(&self) -> i64 { + self.resolver.config_generation() as i64 + } + + #[napi] + pub fn report_proxy_failed(&self, proxy: Proxy) -> Result<()> { + self.resolver + .report_proxy_failed(&ProxyKind::try_from(&proxy)?); + Ok(()) + } + + #[napi] + pub fn on_change(&self, env: Env, callback: JsFunction) -> Result { + let mut callback: ThreadsafeFunction<()> = + callback.create_threadsafe_function(0, |_context| Ok(Vec::::new()))?; + callback.unref(&env)?; + let subscription = self.resolver.on_change(move || { + let _ = callback.call(Ok(()), ThreadsafeFunctionCallMode::NonBlocking); + }); + let id = self.next_subscription.fetch_add(1, Ordering::Relaxed); + self.subscriptions + .lock() + .map_err(|_| Error::new(Status::GenericFailure, "subscription lock poisoned"))? + .insert(id, subscription); + Ok(id) + } + + #[napi] + pub fn off_change(&self, subscription: u32) -> Result<()> { + self.subscriptions + .lock() + .map_err(|_| Error::new(Status::GenericFailure, "subscription lock poisoned"))? + .remove(&subscription); + Ok(()) + } + + #[napi] + pub fn close(&self) -> Result<()> { + self.subscriptions + .lock() + .map_err(|_| Error::new(Status::GenericFailure, "subscription lock poisoned"))? + .clear(); + Ok(()) + } +} + +impl Default for NodeProxyResolver { + fn default() -> Self { + Self::new() + } +} + +#[napi] +pub fn resolve_proxy(url: String) -> AsyncTask { + AsyncTask::new(ResolveTask { + resolver: os_proxy_resolver::ProxyResolver::global().clone(), + url, + }) +} diff --git a/npm/platforms/darwin-arm64/package.json b/npm/platforms/darwin-arm64/package.json new file mode 100644 index 0000000..3f799cf --- /dev/null +++ b/npm/platforms/darwin-arm64/package.json @@ -0,0 +1,12 @@ +{ + "name": "@vscode/os-proxy-resolver-darwin-arm64", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on macOS arm64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["darwin"], + "cpu": ["arm64"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/darwin-x64/package.json b/npm/platforms/darwin-x64/package.json new file mode 100644 index 0000000..f468315 --- /dev/null +++ b/npm/platforms/darwin-x64/package.json @@ -0,0 +1,12 @@ +{ + "name": "@vscode/os-proxy-resolver-darwin-x64", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on macOS x64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["darwin"], + "cpu": ["x64"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/linux-arm-gnueabihf/package.json b/npm/platforms/linux-arm-gnueabihf/package.json new file mode 100644 index 0000000..60dcf1a --- /dev/null +++ b/npm/platforms/linux-arm-gnueabihf/package.json @@ -0,0 +1,13 @@ +{ + "name": "@vscode/os-proxy-resolver-linux-arm-gnueabihf", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on Linux armhf", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["linux"], + "cpu": ["arm"], + "libc": ["glibc"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/linux-arm64-gnu/package.json b/npm/platforms/linux-arm64-gnu/package.json new file mode 100644 index 0000000..8712958 --- /dev/null +++ b/npm/platforms/linux-arm64-gnu/package.json @@ -0,0 +1,13 @@ +{ + "name": "@vscode/os-proxy-resolver-linux-arm64-gnu", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on Linux arm64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["linux"], + "cpu": ["arm64"], + "libc": ["glibc"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/linux-x64-gnu/package.json b/npm/platforms/linux-x64-gnu/package.json new file mode 100644 index 0000000..5559f24 --- /dev/null +++ b/npm/platforms/linux-x64-gnu/package.json @@ -0,0 +1,13 @@ +{ + "name": "@vscode/os-proxy-resolver-linux-x64-gnu", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on Linux x64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["linux"], + "cpu": ["x64"], + "libc": ["glibc"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/win32-arm64-msvc/package.json b/npm/platforms/win32-arm64-msvc/package.json new file mode 100644 index 0000000..c7727f8 --- /dev/null +++ b/npm/platforms/win32-arm64-msvc/package.json @@ -0,0 +1,12 @@ +{ + "name": "@vscode/os-proxy-resolver-win32-arm64-msvc", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on Windows arm64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["win32"], + "cpu": ["arm64"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/platforms/win32-x64-msvc/package.json b/npm/platforms/win32-x64-msvc/package.json new file mode 100644 index 0000000..aaaa843 --- /dev/null +++ b/npm/platforms/win32-x64-msvc/package.json @@ -0,0 +1,12 @@ +{ + "name": "@vscode/os-proxy-resolver-win32-x64-msvc", + "version": "0.1.0", + "description": "Native binding for @vscode/os-proxy-resolver on Windows x64", + "main": "os_proxy_resolver.node", + "files": ["os_proxy_resolver.node", "LICENSE.txt", "ThirdPartyNotices.txt"], + "os": ["win32"], + "cpu": ["x64"], + "publishConfig": { "access": "public" }, + "license": "MIT", + "repository": "github:microsoft/os-proxy-resolver" +} \ No newline at end of file diff --git a/npm/scripts/build-linux-native.sh b/npm/scripts/build-linux-native.sh new file mode 100755 index 0000000..7659976 --- /dev/null +++ b/npm/scripts/build-linux-native.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +set -euo pipefail + +target=${1:-} +case "$target" in + x86_64-unknown-linux-gnu) + sysroot_arch=amd64 + toolchain=x86_64-linux-gnu + library_arch=x86_64-linux-gnu + package_directory=linux-x64-gnu + ;; + aarch64-unknown-linux-gnu) + sysroot_arch=arm64 + toolchain=aarch64-linux-gnu + library_arch=aarch64-linux-gnu + package_directory=linux-arm64-gnu + ;; + armv7-unknown-linux-gnueabihf) + sysroot_arch=armhf + toolchain=arm-rpi-linux-gnueabihf + library_arch=arm-linux-gnueabihf + package_directory=linux-arm-gnueabihf + ;; + *) + echo "Usage: $0 " >&2 + exit 2 + ;; +esac + +root=$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd) +toolchain_root="/tmp/vscode-${sysroot_arch}-sysroot/${toolchain}" +sysroot="${toolchain_root}/${toolchain}/sysroot" +compiler="${toolchain_root}/bin/${toolchain}-gcc" +objdump="${toolchain_root}/${toolchain}/bin/objdump" + +if [[ ! -x "$compiler" || ! -d "$sysroot" || ! -x "$objdump" ]]; then + echo "VS Code glibc 2.28 sysroot for ${sysroot_arch} is not installed" >&2 + exit 1 +fi + +target_env=$(printf '%s' "$target" | tr '[:lower:]-' '[:upper:]_') +cc_env="CC_$(printf '%s' "$target" | tr '-' '_')" +cflags_env="CFLAGS_$(printf '%s' "$target" | tr '-' '_')" +linker_env="CARGO_TARGET_${target_env}_LINKER" +rustflags_env="CARGO_TARGET_${target_env}_RUSTFLAGS" + +export "$cc_env=$compiler" +export "$cflags_env=--sysroot=$sysroot" +export "$linker_env=$compiler" +export "$rustflags_env=-C link-arg=--sysroot=$sysroot -C link-arg=-L${sysroot}/usr/lib/${library_arch} -C link-arg=-L${sysroot}/lib/${library_arch}" + +cd "$root" +node npm/scripts/build-native.js "$target" +OBJDUMP="$objdump" node npm/scripts/verify-glibc.js "npm/platforms/${package_directory}/os_proxy_resolver.node" \ No newline at end of file diff --git a/npm/scripts/build-native.js b/npm/scripts/build-native.js new file mode 100644 index 0000000..65a7d94 --- /dev/null +++ b/npm/scripts/build-native.js @@ -0,0 +1,48 @@ +'use strict'; + +const { spawnSync } = require('child_process'); +const fs = require('fs'); +const path = require('path'); + +const root = path.resolve(__dirname, '..', '..'); +const targets = { + 'aarch64-apple-darwin': ['darwin-arm64', 'libos_proxy_resolver_node.dylib'], + 'x86_64-apple-darwin': ['darwin-x64', 'libos_proxy_resolver_node.dylib'], + 'armv7-unknown-linux-gnueabihf': ['linux-arm-gnueabihf', 'libos_proxy_resolver_node.so'], + 'aarch64-unknown-linux-gnu': ['linux-arm64-gnu', 'libos_proxy_resolver_node.so'], + 'x86_64-unknown-linux-gnu': ['linux-x64-gnu', 'libos_proxy_resolver_node.so'], + 'aarch64-pc-windows-msvc': ['win32-arm64-msvc', 'os_proxy_resolver_node.dll'], + 'x86_64-pc-windows-msvc': ['win32-x64-msvc', 'os_proxy_resolver_node.dll'], +}; + +const target = process.argv[2]; +if (!targets[target]) { + console.error(`Usage: node npm/scripts/build-native.js \nTargets: ${Object.keys(targets).join(', ')}`); + process.exit(2); +} + +const cargo = process.env.CARGO_BUILD_COMMAND || 'cargo'; +const result = spawnSync(cargo, [ + 'build', + '--manifest-path', path.join(root, 'npm', 'native', 'Cargo.toml'), + '--target-dir', path.join('target', 'npm'), + '--locked', + '--target', target, + '--release', +], { cwd: root, env: process.env, stdio: 'inherit', shell: process.platform === 'win32' }); + +if (result.error) { + throw result.error; +} +if (result.status !== 0) { + process.exit(result.status ?? 1); +} + +const [packageDirectory, library] = targets[target]; +const source = path.join(root, 'target', 'npm', target, 'release', library); +const packagePath = path.join(root, 'npm', 'platforms', packageDirectory); +const destination = path.join(packagePath, 'os_proxy_resolver.node'); +fs.copyFileSync(source, destination); +fs.copyFileSync(path.join(root, 'LICENSE.txt'), path.join(packagePath, 'LICENSE.txt')); +fs.copyFileSync(path.join(root, 'npm', 'ThirdPartyNotices.txt'), path.join(packagePath, 'ThirdPartyNotices.txt')); +console.log(`Staged ${path.relative(root, destination)}`); \ No newline at end of file diff --git a/npm/scripts/verify-glibc.js b/npm/scripts/verify-glibc.js new file mode 100644 index 0000000..eea7106 --- /dev/null +++ b/npm/scripts/verify-glibc.js @@ -0,0 +1,53 @@ +'use strict'; + +const { spawnSync } = require('child_process'); +const fs = require('fs'); + +const MAX_GLIBC = '2.28'; +const files = process.argv.slice(2); + +if (files.length === 0) { + console.error('Usage: node npm/scripts/verify-glibc.js [...]'); + process.exit(2); +} + +function compareVersions(left, right) { + const leftParts = left.split('.').map(Number); + const rightParts = right.split('.').map(Number); + const length = Math.max(leftParts.length, rightParts.length); + for (let index = 0; index < length; index++) { + const difference = (leftParts[index] ?? 0) - (rightParts[index] ?? 0); + if (difference !== 0) { + return difference; + } + } + return 0; +} + +for (const file of files) { + if (!fs.statSync(file).isFile()) { + throw new Error(`${file} is not a file`); + } + + const result = spawnSync(process.env.OBJDUMP || 'objdump', ['-T', file], { + encoding: 'utf8', + maxBuffer: 16 * 1024 * 1024, + }); + if (result.error) { + throw result.error; + } + if (result.status !== 0) { + throw new Error(`objdump failed for ${file}: ${result.stderr.trim()}`); + } + + const versions = [...result.stdout.matchAll(/\bGLIBC_(\d+(?:\.\d+)+)\b/g)].map(match => match[1]); + if (versions.length === 0) { + throw new Error(`${file} has no versioned GLIBC imports; is it a GNU/Linux ELF binary?`); + } + versions.sort(compareVersions); + const required = versions.at(-1); + if (compareVersions(required, MAX_GLIBC) > 0) { + throw new Error(`${file} requires GLIBC_${required}; maximum supported is GLIBC_${MAX_GLIBC}`); + } + console.log(`${file}: maximum required GLIBC version is ${required} (limit ${MAX_GLIBC})`); +} \ No newline at end of file diff --git a/npm/scripts/verify-packages.js b/npm/scripts/verify-packages.js new file mode 100644 index 0000000..d096b50 --- /dev/null +++ b/npm/scripts/verify-packages.js @@ -0,0 +1,27 @@ +'use strict'; + +const fs = require('fs'); +const path = require('path'); + +const root = path.resolve(__dirname, '..', '..'); +const facade = require(path.join(root, 'package.json')); +const platformRoot = path.join(root, 'npm', 'platforms'); +const packageDirectories = fs.readdirSync(platformRoot).sort(); +const expectedDependencies = new Map(Object.entries(facade.optionalDependencies)); + +for (const directory of packageDirectories) { + const manifest = require(path.join(platformRoot, directory, 'package.json')); + if (manifest.version !== facade.version) { + throw new Error(`${manifest.name} has version ${manifest.version}; expected ${facade.version}`); + } + if (expectedDependencies.get(manifest.name) !== facade.version) { + throw new Error(`${manifest.name} is missing from optionalDependencies at ${facade.version}`); + } + expectedDependencies.delete(manifest.name); +} + +if (expectedDependencies.size !== 0) { + throw new Error(`Missing platform package directories: ${[...expectedDependencies.keys()].join(', ')}`); +} + +console.log(`Verified facade and ${packageDirectories.length} platform package manifests at ${facade.version}`); \ No newline at end of file diff --git a/npm/test/smoke.js b/npm/test/smoke.js new file mode 100644 index 0000000..9887729 --- /dev/null +++ b/npm/test/smoke.js @@ -0,0 +1,29 @@ +'use strict'; + +const assert = require('assert'); +const path = require('path'); + +const platformPackage = `${process.platform}-${process.arch === 'arm' ? 'arm-gnueabihf' : process.arch}${process.platform === 'linux' && process.arch !== 'arm' ? '-gnu' : process.platform === 'win32' ? '-msvc' : ''}`; +const binding = require(path.resolve(__dirname, '..', 'platforms', platformPackage, 'os_proxy_resolver.node')); + +async function main() { + assert.strictEqual(typeof binding.resolveProxy, 'function'); + assert.strictEqual(typeof binding.ProxyResolver, 'function'); + + const proxies = await binding.resolveProxy('https://example.com/'); + assert.ok(Array.isArray(proxies)); + assert.ok(proxies.length > 0); + for (const proxy of proxies) { + assert.ok(['direct', 'http', 'socks'].includes(proxy.kind)); + } + + const resolver = new binding.ProxyResolver(); + assert.strictEqual(typeof resolver.configGeneration, 'number'); + resolver.reportProxyFailed({ kind: 'direct' }); + resolver.close(); +} + +main().catch(error => { + console.error(error); + process.exit(1); +}); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..3881689 --- /dev/null +++ b/package.json @@ -0,0 +1,39 @@ +{ + "name": "@vscode/os-proxy-resolver", + "version": "0.1.0", + "description": "Resolve the operating system proxy configuration from Node.js", + "main": "index.js", + "types": "index.d.ts", + "files": [ + "index.js", + "index.d.ts", + "LICENSE.txt", + "ThirdPartyNotices.txt" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/microsoft/os-proxy-resolver.git" + }, + "publishConfig": { + "access": "public" + }, + "license": "MIT", + "engines": { + "node": ">=22.15.0" + }, + "scripts": { + "build:native": "node npm/scripts/build-native.js", + "test:npm": "node npm/test/smoke.js", + "verify:glibc": "node npm/scripts/verify-glibc.js", + "verify:packages": "node npm/scripts/verify-packages.js" + }, + "optionalDependencies": { + "@vscode/os-proxy-resolver-darwin-arm64": "0.1.0", + "@vscode/os-proxy-resolver-darwin-x64": "0.1.0", + "@vscode/os-proxy-resolver-linux-arm-gnueabihf": "0.1.0", + "@vscode/os-proxy-resolver-linux-arm64-gnu": "0.1.0", + "@vscode/os-proxy-resolver-linux-x64-gnu": "0.1.0", + "@vscode/os-proxy-resolver-win32-arm64-msvc": "0.1.0", + "@vscode/os-proxy-resolver-win32-x64-msvc": "0.1.0" + } +} \ No newline at end of file