diff --git a/.cargo/config.toml b/.cargo/config.toml index a52d5a685..7115f0015 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,6 @@ -# Windows has stack overflows when calling from Tauri, so we increase compiler size +# Windows has stack overflows when calling from Tauri, so we increase the default stack size used by the compiler [target.'cfg(windows)'] -rustflags = ["-C", "link-args=/STACK:16777220"] +rustflags = ["-C", "link-args=/STACK:16777220", "--cfg", "tokio_unstable"] [build] -rustflags = ["--cfg", "tokio_unstable"] \ No newline at end of file +rustflags = ["--cfg", "tokio_unstable"] diff --git a/.dockerignore b/.dockerignore new file mode 120000 index 000000000..3e4e48b0b --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +.gitignore \ No newline at end of file diff --git a/.editorconfig b/.editorconfig index 72764c8e8..b4b1641f5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,5 +14,5 @@ max_line_length = 100 max_line_length = off trim_trailing_whitespace = false -[*.rs] -indent_size = 4 \ No newline at end of file +[*.{rs,java,kts}] +indent_size = 4 diff --git a/.gitattributes b/.gitattributes index 6313b56c5..7e8596cc8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,35 @@ * text=auto eol=lf + +# SQLx calculates a checksum of migration scripts at build time to compare +# it with the checksum of the applied migration for the same version at +# runtime, to know if the migration script has been changed, and thus the +# DB schema went out of sync with the code. +# +# However, such checksum treats the script as a raw byte stream, taking +# into account inconsequential differences like different line endings +# in different OSes. When combined with Git's EOL conversion and mixed +# native and cross-compilation scenarios, this leads to existing +# migrations that didn't change having potentially different checksums +# according to the environment they were built in, which can break the +# migration system when deploying the Modrinth App, rendering it +# unusable. +# +# The gitattribute above ensures that all text files are checked out +# with LF line endings, but widely deployed app versions were built +# without this attribute set, which left such line endings variable to +# the platform. Thus, there is no perfect solution to this problem: +# forcing CRLF here would break Linux and macOS users, forcing LF +# breaks Windows users, and leaving it unspecified may still lead to +# line ending differences when cross-compiling from Linux to Windows +# or vice versa, or having Git configured with different line +# conversion settings. Moreover, there is no `eol=native` attribute, +# and using CI-only scripts to convert line endings would make the +# builds differ between CI and most local environments. So, let's pick +# the least bad option: let Git handle line endings using its +# configuration by leaving it unspecified, which works fine as long as +# people don't mess with Git's line ending settings, which is the vast +# majority of cases. +/packages/app-lib/migrations/20240711194701_init.sql !eol +/packages/app-lib/migrations/20240813205023_drop-active-unique.sql !eol +/packages/app-lib/migrations/20240930001852_disable-personalized-ads.sql !eol +/packages/app-lib/migrations/20241222013857_feature-flags.sql !eol diff --git a/.github/ISSUE_TEMPLATE/1-app-bug.yml b/.github/ISSUE_TEMPLATE/1-app-bug.yml index 39d7e2e1b..3b0a6791a 100644 --- a/.github/ISSUE_TEMPLATE/1-app-bug.yml +++ b/.github/ISSUE_TEMPLATE/1-app-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true @@ -16,7 +16,7 @@ body: id: version attributes: label: What version of the Modrinth App are you using? - description: Find this in ⚙️ Settings (bottom right) -> About -> App version. + description: Find this in ⚙️ Settings (bottom right) -> After Modrinth App (bottom left) validations: required: true - type: dropdown diff --git a/.github/ISSUE_TEMPLATE/2-web-bug.yml b/.github/ISSUE_TEMPLATE/2-web-bug.yml index dcef0bb7e..118f21338 100644 --- a/.github/ISSUE_TEMPLATE/2-web-bug.yml +++ b/.github/ISSUE_TEMPLATE/2-web-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true diff --git a/.github/ISSUE_TEMPLATE/3-api-bug.yml b/.github/ISSUE_TEMPLATE/3-api-bug.yml index a17ed85ef..19f7f764e 100644 --- a/.github/ISSUE_TEMPLATE/3-api-bug.yml +++ b/.github/ISSUE_TEMPLATE/3-api-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true diff --git a/.github/ISSUE_TEMPLATE/4-feature-request.yml b/.github/ISSUE_TEMPLATE/4-feature-request.yml index 03450b468..945d68410 100644 --- a/.github/ISSUE_TEMPLATE/4-feature-request.yml +++ b/.github/ISSUE_TEMPLATE/4-feature-request.yml @@ -7,7 +7,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate feature requests + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate feature requests required: true - label: I have checked that this feature request is not on our [roadmap](https://roadmap.modrinth.com) required: true diff --git a/.github/assets/api_cover.png b/.github/assets/api_cover.png new file mode 100644 index 000000000..5de904008 Binary files /dev/null and b/.github/assets/api_cover.png differ diff --git a/.github/assets/app_cover.png b/.github/assets/app_cover.png index 62f027cf0..5f98efe30 100644 Binary files a/.github/assets/app_cover.png and b/.github/assets/app_cover.png differ diff --git a/.github/assets/monorepo_cover.png b/.github/assets/monorepo_cover.png index c7effcb4e..f768e4ddb 100644 Binary files a/.github/assets/monorepo_cover.png and b/.github/assets/monorepo_cover.png differ diff --git a/.github/assets/web_cover.png b/.github/assets/web_cover.png index c0a3ad60d..5c922277c 100644 Binary files a/.github/assets/web_cover.png and b/.github/assets/web_cover.png differ diff --git a/.github/workflows/daedalus-docker.yml b/.github/workflows/daedalus-docker.yml index 42a67a22d..0dda82541 100644 --- a/.github/workflows/daedalus-docker.yml +++ b/.github/workflows/daedalus-docker.yml @@ -7,11 +7,13 @@ on: paths: - .github/workflows/daedalus-docker.yml - 'apps/daedalus_client/**' + - 'packages/daedalus/**' pull_request: types: [opened, synchronize] paths: - .github/workflows/daedalus-docker.yml - 'apps/daedalus_client/**' + - 'packages/daedalus/**' merge_group: types: [checks_requested] diff --git a/.github/workflows/labrinth-docker.yml b/.github/workflows/labrinth-docker.yml index 1ed8e9685..114c8ee48 100644 --- a/.github/workflows/labrinth-docker.yml +++ b/.github/workflows/labrinth-docker.yml @@ -18,9 +18,6 @@ on: jobs: docker: runs-on: ubuntu-latest - defaults: - run: - working-directory: ./apps/labrinth steps: - name: Checkout uses: actions/checkout@v2 @@ -38,8 +35,6 @@ jobs: - name: Build and push id: docker_build uses: docker/build-push-action@v2 - env: - SQLX_OFFLINE: true with: file: ./apps/labrinth/Dockerfile push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/theseus-build.yml b/.github/workflows/theseus-build.yml new file mode 100644 index 000000000..76ae5f900 --- /dev/null +++ b/.github/workflows/theseus-build.yml @@ -0,0 +1,150 @@ +name: Modrinth App build +on: + push: + branches: + - main + tags: + - 'v*' + paths: + - .github/workflows/theseus-build.yml + - 'apps/app/**' + - 'apps/app-frontend/**' + - 'packages/app-lib/**' + - 'packages/app-macros/**' + - 'packages/assets/**' + - 'packages/ui/**' + - 'packages/utils/**' + workflow_dispatch: + inputs: + sign-windows-binaries: + description: Sign Windows binaries + type: boolean + default: true + required: false + +jobs: + build: + name: Build + strategy: + fail-fast: false + matrix: + platform: [macos-latest, windows-latest, ubuntu-22.04] + include: + - platform: macos-latest + artifact-target-name: universal-apple-darwin + - platform: windows-latest + artifact-target-name: x86_64-pc-windows-msvc + - platform: ubuntu-22.04 + artifact-target-name: x86_64-unknown-linux-gnu + + runs-on: ${{ matrix.platform }} + + steps: + - name: 📥 Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: 🧰 Setup Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + rustflags: '' + target: ${{ startsWith(matrix.platform, 'macos') && 'x86_64-apple-darwin' || '' }} + + - name: 🧰 Install pnpm + uses: pnpm/action-setup@v4 + + - name: 🧰 Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: pnpm + + - name: 🧰 Install Linux build dependencies + if: startsWith(matrix.platform, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install -yq libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev + + - name: 🧰 Setup Dasel + uses: jaxxstorm/action-install-gh-release@v2.1.0 + with: + repo: TomWright/dasel + tag: v2.8.1 + extension-matching: disable + rename-to: ${{ startsWith(matrix.platform, 'windows') && 'dasel.exe' || 'dasel' }} + chmod: 0755 + + - name: ⚙️ Set application version + shell: bash + run: | + APP_VERSION="$(git describe --tags --always | sed -E 's/-([0-9]+)-(g[0-9a-fA-F]+)$/-canary+\1.\2/')" + echo "Setting application version to $APP_VERSION" + dasel put -f apps/app/Cargo.toml -t string -v "${APP_VERSION#v}" 'package.version' + dasel put -f packages/app-lib/Cargo.toml -t string -v "${APP_VERSION#v}" 'package.version' + dasel put -f apps/app-frontend/package.json -t string -v "${APP_VERSION#v}" 'version' + + - name: 💨 Setup Turbo cache + uses: rharkor/caching-for-turbo@v1.8 + + - name: 🧰 Install dependencies + run: pnpm install + + - name: ✍️ Set up Windows code signing + if: startsWith(matrix.platform, 'windows') + shell: bash + run: | + if [ '${{ startsWith(github.ref, 'refs/tags/v') || inputs.sign-windows-binaries }}' = 'true' ]; then + choco install jsign --ignore-dependencies # GitHub runners come with a global Java installation already + else + dasel delete -f apps/app/tauri-release.conf.json 'bundle.windows.signCommand' + fi + + - name: 🔨 Build macOS app + run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config tauri-release.conf.json + if: startsWith(matrix.platform, 'macos') + env: + ENABLE_CODE_SIGNING: ${{ secrets.APPLE_CERTIFICATE }} + APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} + APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} + APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + + - name: 🔨 Build Linux app + run: pnpm --filter=@modrinth/app run tauri build --config tauri-release.conf.json + if: startsWith(matrix.platform, 'ubuntu') + env: + TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + + - name: 🔨 Build Windows app + run: | + [System.Convert]::FromBase64String("$env:DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_BASE64") | Set-Content -Path signer-client-cert.p12 -AsByteStream + $env:DIGICERT_ONE_SIGNER_CREDENTIALS = "$env:DIGICERT_ONE_SIGNER_API_KEY|$PWD\signer-client-cert.p12|$env:DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_PASSWORD" + $env:JAVA_HOME = "$env:JAVA_HOME_11_X64" + pnpm --filter=@modrinth/app run tauri build --config tauri-release.conf.json --verbose --bundles 'nsis,updater' + Remove-Item -Path signer-client-cert.p12 -ErrorAction SilentlyContinue + if: startsWith(matrix.platform, 'windows') + env: + TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + DIGICERT_ONE_SIGNER_API_KEY: ${{ secrets.DIGICERT_ONE_SIGNER_API_KEY }} + DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_BASE64: ${{ secrets.DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_BASE64 }} + DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_PASSWORD: ${{ secrets.DIGICERT_ONE_SIGNER_CLIENT_CERTIFICATE_PASSWORD }} + + - name: 📤 Upload app bundles + uses: actions/upload-artifact@v4 + with: + name: App bundle (${{ matrix.artifact-target-name }}) + path: | + target/release/bundle/appimage/Modrinth App_*.AppImage* + target/release/bundle/deb/Modrinth App_*.deb* + target/release/bundle/rpm/Modrinth App-*.rpm* + target/universal-apple-darwin/release/bundle/macos/Modrinth App.app.tar.gz* + target/universal-apple-darwin/release/bundle/dmg/Modrinth App_*.dmg* + target/release/bundle/nsis/Modrinth App_*-setup.exe* + target/release/bundle/nsis/Modrinth App_*-setup.nsis.zip* diff --git a/.github/workflows/theseus-release.yml b/.github/workflows/theseus-release.yml index a34f5ae17..6cd2be01f 100644 --- a/.github/workflows/theseus-release.yml +++ b/.github/workflows/theseus-release.yml @@ -1,157 +1,118 @@ -name: 'Modrinth App build' +name: Modrinth App release on: - push: - branches: - - main - tags: - - 'v*' - paths: - - .github/workflows/theseus-release.yml - - 'apps/app/**' - - 'apps/app-frontend/**' - - 'apps/labrinth/src/common/**' - - 'apps/labrinth/Cargo.toml' - - 'packages/app-lib/**' - - 'packages/app-macros/**' - - 'packages/assets/**' - - 'packages/ui/**' - - 'packages/utils/**' workflow_dispatch: + inputs: + version-tag: + description: Version tag to release to the wide public + type: string + required: true + release-notes: + description: Release notes to include in the Tauri version manifest + default: A new release of the Modrinth App is available! + type: string + required: true jobs: - build: - strategy: - fail-fast: false - matrix: - platform: [macos-latest, windows-latest, ubuntu-22.04] + release: + name: Release Modrinth App + runs-on: ubuntu-latest - runs-on: ${{ matrix.platform }} + env: + LINUX_X64_BUNDLE_ARTIFACT_NAME: App bundle (x86_64-unknown-linux-gnu) + WINDOWS_X64_BUNDLE_ARTIFACT_NAME: App bundle (x86_64-pc-windows-msvc) + MACOS_UNIVERSAL_BUNDLE_ARTIFACT_NAME: App bundle (universal-apple-darwin) + LAUNCHER_FILES_BUCKET_BASE_URL: https://launcher-files.modrinth.com steps: - - uses: actions/checkout@v4 - - - name: Rust setup (mac) - if: startsWith(matrix.platform, 'macos') - uses: dtolnay/rust-toolchain@stable + - name: 📥 Download Modrinth App artifacts + uses: dawidd6/action-download-artifact@v11 with: - components: rustfmt, clippy - targets: aarch64-apple-darwin, x86_64-apple-darwin + workflow: theseus-build.yml + workflow_conclusion: success + event: push + branch: ${{ inputs.version-tag }} + use_unzip: true - - name: Rust setup - if: "!startsWith(matrix.platform, 'macos')" - uses: dtolnay/rust-toolchain@stable - with: - components: rustfmt, clippy - - - name: Setup rust cache - uses: actions/cache@v4 - with: - path: | - target/** - !target/*/release/bundle/*/*.dmg - !target/*/release/bundle/*/*.app.tar.gz - !target/*/release/bundle/*/*.app.tar.gz.sig - !target/release/bundle/*/*.dmg - !target/release/bundle/*/*.app.tar.gz - !target/release/bundle/*/*.app.tar.gz.sig - - !target/release/bundle/appimage/*.AppImage - !target/release/bundle/appimage/*.AppImage.tar.gz - !target/release/bundle/appimage/*.AppImage.tar.gz.sig - !target/release/bundle/deb/*.deb - !target/release/bundle/rpm/*.rpm - - !target/release/bundle/msi/*.msi - !target/release/bundle/msi/*.msi.zip - !target/release/bundle/msi/*.msi.zip.sig - - !target/release/bundle/nsis/*.exe - !target/release/bundle/nsis/*.nsis.zip - !target/release/bundle/nsis/*.nsis.zip.sig - key: ${{ runner.os }}-rust-target-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-rust-target- - - - name: Use Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: Install pnpm via corepack - shell: bash - run: | - corepack enable - corepack prepare --activate - - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - - name: Setup pnpm cache - uses: actions/cache@v4 - with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - - - name: install dependencies (ubuntu only) - if: startsWith(matrix.platform, 'ubuntu') - run: | - sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev pkg-config libayatana-appindicator3-dev librsvg2-dev - - - name: Install frontend dependencies - run: pnpm install - - - name: build app (macos) - run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config "tauri-release.conf.json" - if: startsWith(matrix.platform, 'macos') + - name: 🛠️ Generate version manifest env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ENABLE_CODE_SIGNING: ${{ secrets.APPLE_CERTIFICATE }} - APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} - APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} - APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} - APPLE_ID: ${{ secrets.APPLE_ID }} - APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} - APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} - TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + VERSION_TAG: ${{ inputs.version-tag }} + RELEASE_NOTES: ${{ inputs.release-notes }} + run: | + # Reference: https://tauri.app/plugin/updater/#server-support + jq -nc \ + --arg versionTag "${VERSION_TAG#v}" \ + --arg releaseNotes "$RELEASE_NOTES" \ + --rawfile macOsAarch64UpdateArtifactSignature "${MACOS_UNIVERSAL_BUNDLE_ARTIFACT_NAME}/universal-apple-darwin/release/bundle/macos/Modrinth App.app.tar.gz.sig" \ + --rawfile macOsX64UpdateArtifactSignature "${MACOS_UNIVERSAL_BUNDLE_ARTIFACT_NAME}/universal-apple-darwin/release/bundle/macos/Modrinth App.app.tar.gz.sig" \ + --rawfile linuxX64UpdateArtifactSignature "${LINUX_X64_BUNDLE_ARTIFACT_NAME}/release/bundle/appimage/Modrinth App_${VERSION_TAG#v}_amd64.AppImage.tar.gz.sig" \ + --rawfile windowsX64UpdateArtifactSignature "${WINDOWS_X64_BUNDLE_ARTIFACT_NAME}/release/bundle/nsis/Modrinth App_${VERSION_TAG#v}_x64-setup.nsis.zip.sig" \ + '{ + "version": $versionTag, + "notes": $releaseNotes, + "pub_date": now | todateiso8601, + "platforms": { + "darwin-aarch64": { + "signature": $macOsAarch64UpdateArtifactSignature, + "url": @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/macos/\("Modrinth App.app.tar.gz")", + "install_urls": [@uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/macos/\("Modrinth App_" + $versionTag + "_universal.dmg")"] + }, + "darwin-x86_64": { + "signature": $macOsX64UpdateArtifactSignature, + "url": @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/macos/\("Modrinth App.app.tar.gz")", + "install_urls": [@uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/macos/\("Modrinth App_" + $versionTag + "_universal.dmg")"] + }, + "linux-x86_64": { + "signature": $linuxX64UpdateArtifactSignature, + "url": @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/linux/\("Modrinth App_" + $versionTag + "_amd64.AppImage.tar.gz")", + "install_urls": [ + @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/linux/\("Modrinth App_" + $versionTag + "_amd64.deb")", + @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/linux/\("Modrinth App_" + $versionTag + "_amd64.AppImage")", + @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/linux/\("Modrinth App-" + $versionTag + "-1.x86_64.rpm")" + ] + }, + "windows-x86_64": { + "signature": $windowsX64UpdateArtifactSignature, + "url": @uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/windows/\("Modrinth App_" + $versionTag + "_x64-setup.nsis.zip")", + "install_urls": [@uri "${{ env.LAUNCHER_FILES_BUCKET_BASE_URL }}/versions/\($versionTag)/windows/\("Modrinth App_" + $versionTag + "_x64-setup.exe")"] + } + } + }' > updates.json - - name: build app - run: pnpm --filter=@modrinth/app run tauri build --config "tauri-release.conf.json" - id: build_os - if: "!startsWith(matrix.platform, 'macos')" + echo "Generated manifest for version ${VERSION_TAG}:" + cat updates.json + + - name: 📤 Upload release artifacts env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + VERSION_TAG: ${{ inputs.version-tag }} + AWS_ACCESS_KEY_ID: ${{ secrets.LAUNCHER_FILES_BUCKET_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.LAUNCHER_FILES_BUCKET_SECRET_ACCESS_KEY }} + AWS_BUCKET: ${{ secrets.LAUNCHER_FILES_BUCKET_NAME }} + AWS_REGION: ${{ secrets.LAUNCHER_FILES_BUCKET_REGION }} + AWS_ENDPOINT_URL: ${{ secrets.LAUNCHER_FILES_BUCKET_ENDPOINT_URL }} + AWS_PAGER: '' + # Work around incompatible checksum behavior with some S3-like object storage providers, + # such as Cloudflare R2. See: + # - https://developers.cloudflare.com/r2/examples/aws/aws-cli/ + # - https://developers.cloudflare.com/r2/examples/aws/aws-sdk-java/ + AWS_REQUEST_CHECKSUM_CALCULATION: when_required + AWS_RESPONSE_CHECKSUM_VALIDATION: when_required + run: | + for macosBundleType in 'macos' 'dmg'; do + aws s3 cp --recursive \ + "${MACOS_UNIVERSAL_BUNDLE_ARTIFACT_NAME}/universal-apple-darwin/release/bundle/${macosBundleType}" \ + "s3://${AWS_BUCKET}/versions/${VERSION_TAG#v}/macos" + done - - name: upload ${{ matrix.platform }} - uses: actions/upload-artifact@v4 - with: - name: ${{ matrix.platform }} - path: | - target/*/release/bundle/*/*.dmg - target/*/release/bundle/*/*.app.tar.gz - target/*/release/bundle/*/*.app.tar.gz.sig - target/release/bundle/*/*.dmg - target/release/bundle/*/*.app.tar.gz - target/release/bundle/*/*.app.tar.gz.sig + for linuxBundleType in 'appimage' 'deb' 'rpm'; do + aws s3 cp --recursive \ + "${LINUX_X64_BUNDLE_ARTIFACT_NAME}/release/bundle/${linuxBundleType}" \ + "s3://${AWS_BUCKET}/versions/${VERSION_TAG#v}/linux" + done - target/release/bundle/*/*.AppImage - target/release/bundle/*/*.AppImage.tar.gz - target/release/bundle/*/*.AppImage.tar.gz.sig - target/release/bundle/*/*.deb - target/release/bundle/*/*.rpm + for windowsBundleType in 'nsis'; do + aws s3 cp --recursive \ + "${WINDOWS_X64_BUNDLE_ARTIFACT_NAME}/release/bundle/${windowsBundleType}" \ + "s3://${AWS_BUCKET}/versions/${VERSION_TAG#v}/windows" + done - target/release/bundle/msi/*.msi - target/release/bundle/msi/*.msi.zip - target/release/bundle/msi/*.msi.zip.sig - - target/release/bundle/nsis/*.exe - target/release/bundle/nsis/*.nsis.zip - target/release/bundle/nsis/*.nsis.zip.sig + aws s3 cp updates.json "s3://${AWS_BUCKET}" diff --git a/.github/workflows/turbo-ci.yml b/.github/workflows/turbo-ci.yml index 0061f621a..b812cff92 100644 --- a/.github/workflows/turbo-ci.yml +++ b/.github/workflows/turbo-ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: ['main'] + branches: [main] pull_request: types: [opened, synchronize] merge_group: @@ -10,71 +10,69 @@ on: jobs: build: - name: Build, Test, and Lint + name: Lint and Test runs-on: ubuntu-22.04 + env: + # Ensure pnpm output is colored in GitHub Actions logs + FORCE_COLOR: 3 + # Make cargo nextest successfully ignore projects without tests + NEXTEST_NO_TESTS: pass + steps: - - name: Check out code + - name: 📥 Check out code uses: actions/checkout@v4 with: fetch-depth: 2 - - name: Cache turbo build setup - uses: actions/cache@v4 - with: - path: .turbo - key: ${{ runner.os }}-turbo-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-turbo- - - - name: Install build dependencies + - name: 🧰 Install build dependencies run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + sudo apt-get install -yq libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev - - name: Setup Node.JS environment + - name: 🧰 Install pnpm + uses: pnpm/action-setup@v4 + + - name: 🧰 Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version-file: .nvmrc + cache: pnpm - - name: Install pnpm via corepack - shell: bash - run: | - corepack enable - corepack prepare --activate - - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - - uses: actions/cache@v4 - name: Setup pnpm cache + - name: 🧰 Setup Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- + rustflags: '' + components: clippy, rustfmt + cache: false - - name: Install dependencies + - name: 🧰 Setup nextest + uses: taiki-e/install-action@nextest + + # cargo-binstall does not have pre-built binaries for sqlx-cli, so we fall + # back to a cached cargo install + - name: 🧰 Setup cargo-sqlx + uses: AlexTMjugador/cache-cargo-install-action@feat/features-support + with: + tool: sqlx-cli + locked: false + no-default-features: true + features: rustls,postgres + + - name: 💨 Setup Turbo cache + uses: rharkor/caching-for-turbo@v1.8 + + - name: 🧰 Install dependencies run: pnpm install - - name: Build - run: pnpm build - env: - SQLX_OFFLINE: true + - name: ⚙️ Start services + run: docker compose up --wait - - name: Lint - run: pnpm lint - env: - SQLX_OFFLINE: true + - name: ⚙️ Setup Labrinth environment and database + working-directory: apps/labrinth + run: | + cp .env.local .env + sqlx database setup - - name: Start docker compose - run: docker compose up -d - - - name: Test - run: pnpm test - env: - SQLX_OFFLINE: true - DATABASE_URL: postgresql://labrinth:labrinth@localhost/postgres + - name: 🔍 Lint and test + run: pnpm run ci diff --git a/.idea/code.iml b/.idea/code.iml index a4489beac..aeca7f8c1 100644 --- a/.idea/code.iml +++ b/.idea/code.iml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/.idea/modules.xml b/.idea/modules.xml index aa7113fc6..23968dc67 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -5,4 +5,4 @@ - + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1ddfb..7ddfc9ed4 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,5 +1,11 @@ + + + + + + diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 000000000..ba331903d --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +20.19.2 diff --git a/.vscode/settings.json b/.vscode/settings.json index fbe97bcf7..9caec96a4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,7 @@ "prettier.endOfLine": "lf", "editor.formatOnSave": true, "eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"], + "editor.detectIndentation": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } diff --git a/Cargo.lock b/Cargo.lock index 55f13a32d..e9cbeac2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,30 +8,30 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.6.0", - "bytes 1.7.2", + "bitflags 2.9.1", + "bytes", "futures-core", "futures-sink", "memchr", "pin-project-lite", - "tokio 1.42.0", + "tokio", "tokio-util", "tracing", ] [[package]] name = "actix-cors" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" +checksum = "daa239b93927be1ff123eebada5a3ff23e89f0124ccb8609234e5103d5a5ae6d" dependencies = [ "actix-utils", "actix-web", - "derive_more", + "derive_more 2.0.1", "futures-util", "log", "once_cell", - "smallvec 1.13.2", + "smallvec", ] [[package]] @@ -44,9 +44,9 @@ dependencies = [ "actix-service", "actix-utils", "actix-web", - "bitflags 2.6.0", - "bytes 1.7.2", - "derive_more", + "bitflags 2.9.1", + "bytes", + "derive_more 0.99.20", "futures-core", "http-range", "log", @@ -59,41 +59,41 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.9.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" +checksum = "44dfe5c9e0004c623edc65391dfd51daa201e7e30ebd9c9bedf873048ec32bc2" dependencies = [ "actix-codec", "actix-rt", "actix-service", "actix-utils", - "ahash 0.8.11", "base64 0.22.1", - "bitflags 2.6.0", - "brotli 6.0.0", - "bytes 1.7.2", + "bitflags 2.9.1", + "brotli", + "bytes", "bytestring", - "derive_more", + "derive_more 2.0.1", "encoding_rs", "flate2", + "foldhash", "futures-core", "h2 0.3.26", "http 0.2.12", "httparse", "httpdate", - "itoa 1.0.11", + "itoa", "language-tags", "local-channel", "mime", "percent-encoding", "pin-project-lite", - "rand 0.8.5", - "sha1 0.10.6", - "smallvec 1.13.2", - "tokio 1.42.0", + "rand 0.9.1", + "sha1", + "smallvec", + "tokio", "tokio-util", "tracing", - "zstd 0.13.2", + "zstd", ] [[package]] @@ -103,20 +103,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "actix-multipart" -version = "0.6.2" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d974dd6c4f78d102d057c672dcf6faa618fafa9df91d44f9c466688fc1275a3a" +checksum = "d5118a26dee7e34e894f7e85aa0ee5080ae4c18bf03c0e30d49a80e418f00a53" dependencies = [ "actix-multipart-derive", "actix-utils", "actix-web", - "bytes 1.7.2", - "derive_more", + "derive_more 0.99.20", "futures-core", "futures-util", "httparse", @@ -129,20 +128,20 @@ dependencies = [ "serde_json", "serde_plain", "tempfile", - "tokio 1.42.0", + "tokio", ] [[package]] name = "actix-multipart-derive" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a0a77f836d869f700e5b47ac7c3c8b9c8bc82e4aec861954c6198abee3ebd4d" +checksum = "e11eb847f49a700678ea2fa73daeb3208061afa2b9d1a8527c03390f4c4a1c6b" dependencies = [ - "darling 0.20.10", + "darling", "parse-size", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -152,7 +151,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" dependencies = [ "bytestring", - "cfg-if 1.0.0", + "cfg-if", "http 0.2.12", "regex", "regex-lite", @@ -168,34 +167,33 @@ checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" dependencies = [ "actix-macros", "futures-core", - "tokio 1.42.0", + "tokio", ] [[package]] name = "actix-server" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" +checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502" dependencies = [ "actix-rt", "actix-service", "actix-utils", "futures-core", "futures-util", - "mio 1.0.2", + "mio", "socket2", - "tokio 1.42.0", + "tokio", "tracing", ] [[package]] name = "actix-service" -version = "2.0.2" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" +checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f" dependencies = [ "futures-core", - "paste", "pin-project-lite", ] @@ -211,9 +209,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "4.9.0" +version = "4.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" +checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea" dependencies = [ "actix-codec", "actix-http", @@ -224,17 +222,17 @@ dependencies = [ "actix-service", "actix-utils", "actix-web-codegen", - "ahash 0.8.11", - "bytes 1.7.2", + "bytes", "bytestring", - "cfg-if 1.0.0", + "cfg-if", "cookie 0.16.2", - "derive_more", + "derive_more 2.0.1", "encoding_rs", + "foldhash", "futures-core", "futures-util", "impl-more", - "itoa 1.0.11", + "itoa", "language-tags", "log", "mime", @@ -245,9 +243,10 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "smallvec 1.13.2", + "smallvec", "socket2", "time", + "tracing", "url", ] @@ -260,14 +259,14 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "actix-web-prom" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56a34f1825c3ae06567a9d632466809bbf34963c86002e8921b64f32d48d289d" +checksum = "a7eb266b4c692a4a7e68429fcbe4eb3bd55c053f6d84c0522dc83df22395edf6" dependencies = [ "actix-web", "futures-core", @@ -289,60 +288,43 @@ dependencies = [ "actix-web", "bytestring", "futures-core", - "tokio 1.42.0", + "tokio", ] [[package]] name = "addr2line" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ "gimli", ] -[[package]] -name = "adler" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" - [[package]] name = "adler2" version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" -[[package]] -name = "aes" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" -dependencies = [ - "cfg-if 1.0.0", - "cipher", - "cpufeatures", -] - [[package]] name = "ahash" version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.16", "once_cell", "version_check", ] [[package]] name = "ahash" -version = "0.8.11" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ - "cfg-if 1.0.0", - "getrandom 0.2.15", + "cfg-if", + "getrandom 0.3.3", "once_cell", "version_check", "zerocopy", @@ -357,6 +339,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "aligned-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" + [[package]] name = "alloc-no-stdlib" version = "2.0.4" @@ -374,9 +362,9 @@ dependencies = [ [[package]] name = "allocator-api2" -version = "0.2.18" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "android-tzdata" @@ -434,34 +422,40 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "3.0.6" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", + "once_cell", "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.89" +version = "1.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" +checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" dependencies = [ "derive_arbitrary", ] [[package]] -name = "arc-swap" -version = "1.7.1" +name = "arg_enum_proc_macro" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" +checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.101", +] [[package]] name = "argon2" @@ -472,7 +466,7 @@ dependencies = [ "base64ct", "blake2", "cpufeatures", - "password-hash 0.5.0", + "password-hash", ] [[package]] @@ -486,8 +480,8 @@ dependencies = [ "serde_bytes", "serde_cbor", "serde_json", - "thiserror 1.0.64", - "uuid 1.12.0", + "thiserror 2.0.12", + "uuid 1.17.0", ] [[package]] @@ -504,32 +498,29 @@ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" [[package]] name = "ashpd" -version = "0.10.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9c39d707614dbcc6bed00015539f488d8e3fe3e66ed60961efc0c90f4b380b3" +checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df" dependencies = [ "enumflags2", "futures-channel", "futures-util", - "rand 0.8.5", - "raw-window-handle 0.6.2", + "rand 0.9.1", + "raw-window-handle", "serde", "serde_repr", - "tokio 1.42.0", + "tokio", "url", - "wayland-backend", - "wayland-client", - "wayland-protocols", - "zbus 5.1.1", + "zbus", ] [[package]] name = "async-broadcast" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" +checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "event-listener-strategy", "futures-core", "pin-project-lite", @@ -560,34 +551,34 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.12" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fec134f64e2bc57411226dfc4e52dec859ddfc7e711fc5e07b612584f000e4aa" +checksum = "40f6024f3f856663b45fd0c9b6f2024034a702f453549449e0d84a305900dad4" dependencies = [ - "brotli 6.0.0", - "bzip2", + "brotli", + "bzip2 0.6.0", "deflate64", "flate2", "futures-core", "futures-io", "memchr", "pin-project-lite", - "tokio 1.42.0", - "xz2", - "zstd 0.13.2", - "zstd-safe 7.2.1", + "tokio", + "zstd", + "zstd-safe", ] [[package]] name = "async-executor" -version = "1.13.1" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" +checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.1", - "futures-lite 2.3.0", + "fastrand 2.3.0", + "futures-lite 2.6.0", + "pin-project-lite", "slab", ] @@ -599,23 +590,23 @@ checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" dependencies = [ "async-lock", "blocking", - "futures-lite 2.3.0", + "futures-lite 2.6.0", ] [[package]] name = "async-io" -version = "2.3.4" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" dependencies = [ "async-lock", - "cfg-if 1.0.0", + "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.3.0", + "futures-lite 2.6.0", "parking", "polling", - "rustix", + "rustix 0.38.44", "slab", "tracing", "windows-sys 0.59.0", @@ -627,7 +618,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "event-listener-strategy", "pin-project-lite", ] @@ -644,10 +635,10 @@ dependencies = [ "async-signal", "async-task", "blocking", - "cfg-if 1.0.0", - "event-listener 5.3.1", - "futures-lite 2.3.0", - "rustix", + "cfg-if", + "event-listener 5.4.0", + "futures-lite 2.6.0", + "rustix 0.38.44", "tracing", ] @@ -659,7 +650,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -671,10 +662,10 @@ dependencies = [ "async-io", "async-lock", "atomic-waker", - "cfg-if 1.0.0", + "cfg-if", "futures-core", "futures-io", - "rustix", + "rustix 0.38.44", "signal-hook-registry", "slab", "windows-sys 0.59.0", @@ -699,32 +690,31 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "async-stripe" -version = "0.39.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58d670cf4d47a1b8ffef54286a5625382e360a34ee76902fd93ad8c7032a0c30" +checksum = "cecbddf002ad7a13d2041eadf1b234cb3f57653ffdd901a01bc3f1c65aa77440" dependencies = [ "chrono", "futures-util", "hex", - "hmac 0.12.1", + "hmac", "http-types", - "hyper 0.14.31", + "hyper 0.14.32", "hyper-rustls 0.24.2", "serde", "serde_json", "serde_path_to_error", "serde_qs 0.10.1", - "sha2 0.10.8", + "sha2", "smart-default", "smol_str", - "thiserror 1.0.64", - "tokio 1.42.0", - "uuid 0.8.2", + "thiserror 1.0.69", + "tokio", ] [[package]] @@ -735,30 +725,44 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "async-tungstenite" -version = "0.27.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5359381fd414fbdb272c48f2111c16cb0bb3447bfacd59311ff3736da9f6664" +checksum = "ef0f7efedeac57d9b26170f72965ecfd31473ca52ca7a64e925b0b6f5f079886" dependencies = [ + "atomic-waker", + "futures-core", "futures-io", + "futures-task", "futures-util", "log", "pin-project-lite", "rustls-pki-types", - "tokio 1.42.0", - "tokio-rustls 0.26.0", + "tokio", + "tokio-rustls 0.26.2", "tungstenite", - "webpki-roots 0.26.6", + "webpki-roots 0.26.11", +] + +[[package]] +name = "async-walkdir" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37672978ae0febce7516ae0a85b53e6185159a9a28787391eb63fc44ec36037d" +dependencies = [ + "async-fs", + "futures-lite 2.6.0", + "thiserror 2.0.12", ] [[package]] @@ -770,18 +774,18 @@ dependencies = [ "async-compression", "chrono", "crc32fast", - "futures-lite 2.3.0", + "futures-lite 2.6.0", "pin-project", - "thiserror 1.0.64", - "tokio 1.42.0", + "thiserror 1.0.69", + "tokio", "tokio-util", ] [[package]] name = "atk" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4af014b17dd80e8af9fa689b2d4a211ddba6eb583c1622f35d0cb543f6b17e4" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" dependencies = [ "atk-sys", "glib", @@ -790,9 +794,9 @@ dependencies = [ [[package]] name = "atk-sys" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "251e0b7d90e33e0ba930891a505a9a35ece37b2dd37a14f3ffc306c13b980009" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" dependencies = [ "glib-sys", "gobject-sys", @@ -817,19 +821,17 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "attohttpc" -version = "0.22.0" +version = "0.28.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7" +checksum = "07a9b245ba0739fc90935094c29adbaee3f977218b5fb95e822e261cda7f56a3" dependencies = [ - "http 0.2.12", + "http 1.3.1", "log", - "native-tls", - "rustls 0.20.9", + "rustls 0.23.27", "serde", "serde_json", "url", - "webpki", - "webpki-roots 0.22.6", + "webpki-roots 0.26.11", ] [[package]] @@ -839,18 +841,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] -name = "aws-creds" -version = "0.34.1" +name = "av1-grain" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5" +checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" +dependencies = [ + "anyhow", + "arrayvec", + "log", + "nom 7.1.3", + "num-rational", + "v_frame", +] + +[[package]] +name = "avif-serialize" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98922d6a4cfbcb08820c69d8eeccc05bb1f29bfa06b4f5b1dbfe9a868bd7608e" +dependencies = [ + "arrayvec", +] + +[[package]] +name = "aws-creds" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f84143206b9c72b3c5cb65415de60c7539c79cd1559290fddec657939131be0" dependencies = [ "attohttpc", - "dirs 4.0.0", + "home", "log", - "quick-xml 0.26.0", - "rust-ini 0.18.0", + "quick-xml 0.32.0", + "rust-ini", "serde", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", "url", ] @@ -861,7 +886,7 @@ version = "0.25.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9aed3f9c7eac9be28662fdb3b0f4d1951e812f7c64fed4f0327ba702f459b3b" dependencies = [ - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -872,12 +897,12 @@ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ "async-trait", "axum-core", - "bytes 1.7.2", + "bytes", "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", - "itoa 1.0.11", + "itoa", "matchit", "memchr", "mime", @@ -885,7 +910,7 @@ dependencies = [ "pin-project-lite", "rustversion", "serde", - "sync_wrapper 1.0.1", + "sync_wrapper", "tower 0.5.2", "tower-layer", "tower-service", @@ -898,29 +923,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" dependencies = [ "async-trait", - "bytes 1.7.2", + "bytes", "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", "mime", "pin-project-lite", "rustversion", - "sync_wrapper 1.0.1", + "sync_wrapper", "tower-layer", "tower-service", ] [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" dependencies = [ "addr2line", - "cfg-if 1.0.0", + "cfg-if", "libc", - "miniz_oxide 0.8.0", + "miniz_oxide", "object", "rustc-demangle", "windows-targets 0.52.6", @@ -934,9 +959,9 @@ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] name = "base32" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa" +checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" [[package]] name = "base64" @@ -958,18 +983,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.6.0" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" - -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] +checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" [[package]] name = "bit-set" @@ -1000,13 +1016,19 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" dependencies = [ "serde", ] +[[package]] +name = "bitstream-io" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2" + [[package]] name = "bitvec" version = "1.0.1" @@ -1025,22 +1047,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.7", -] - -[[package]] -name = "block" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" - -[[package]] -name = "block-buffer" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" -dependencies = [ - "generic-array", + "digest", ] [[package]] @@ -1058,7 +1065,16 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" dependencies = [ - "objc2", + "objc2 0.5.2", +] + +[[package]] +name = "block2" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" +dependencies = [ + "objc2 0.6.1", ] [[package]] @@ -1070,15 +1086,15 @@ dependencies = [ "async-channel 2.3.1", "async-task", "futures-io", - "futures-lite 2.3.0", + "futures-lite 2.6.0", "piper", ] [[package]] name = "borsh" -version = "1.5.1" +version = "1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" +checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1086,34 +1102,22 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.1" +version = "1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" +checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" dependencies = [ "once_cell", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.90", - "syn_derive", + "syn 2.0.101", ] [[package]] name = "brotli" -version = "6.0.0" +version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor", -] - -[[package]] -name = "brotli" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" +checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -1122,9 +1126,9 @@ dependencies = [ [[package]] name = "brotli-decompressor" -version = "4.0.1" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -1132,20 +1136,24 @@ dependencies = [ [[package]] name = "bstr" -version = "1.10.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" +checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" dependencies = [ "memchr", - "regex-automata 0.4.8", - "serde", ] [[package]] -name = "bumpalo" -version = "3.16.0" +name = "built" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b" + +[[package]] +name = "bumpalo" +version = "3.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" [[package]] name = "bytecheck" @@ -1171,9 +1179,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.18.0" +version = "1.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" +checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" [[package]] name = "byteorder" @@ -1189,50 +1197,47 @@ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" [[package]] name = "bytes" -version = "0.4.12" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -dependencies = [ - "byteorder", - "iovec", -] - -[[package]] -name = "bytes" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" dependencies = [ "serde", ] [[package]] name = "bytestring" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72" +checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" dependencies = [ - "bytes 1.7.2", + "bytes", ] [[package]] name = "bzip2" -version = "0.4.4" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" +checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" dependencies = [ "bzip2-sys", - "libc", +] + +[[package]] +name = "bzip2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bea8dcd42434048e4f7a304411d9273a411f647446c1234a65ce0554923f4cff" +dependencies = [ + "libbz2-rs-sys", ] [[package]] name = "bzip2-sys" -version = "0.1.11+1.0.8" +version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ "cc", - "libc", "pkg-config", ] @@ -1242,12 +1247,12 @@ version = "0.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "cairo-sys-rs", "glib", "libc", "once_cell", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -1272,42 +1277,42 @@ dependencies = [ [[package]] name = "cargo-platform" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ "serde", ] [[package]] name = "cargo_metadata" -version = "0.18.1" +version = "0.19.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] name = "cargo_toml" -version = "0.17.2" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a969e13a7589e9e3e4207e153bae624ade2b5622fb4684a4923b23ec3d57719" +checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" dependencies = [ "serde", - "toml 0.8.19", + "toml", ] [[package]] name = "cc" -version = "1.1.22" +version = "1.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9540e661f81799159abee814118cc139a2004b3a3aa3ea37724a1b66530b90e0" +checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1" dependencies = [ "jobserver", "libc", @@ -1337,7 +1342,7 @@ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" dependencies = [ "byteorder", "fnv", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] @@ -1346,16 +1351,10 @@ version = "0.15.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" dependencies = [ - "smallvec 1.13.2", + "smallvec", "target-lexicon", ] -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - [[package]] name = "cfg-if" version = "1.0.0" @@ -1369,10 +1368,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] -name = "chrono" -version = "0.4.38" +name = "chardetng" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "14b8f0b65b7b08ae3c8187e8d77174de20cb6777864c6b832d8ad365999cf1ea" +dependencies = [ + "cfg-if", + "encoding_rs", + "memchr", +] + +[[package]] +name = "chrono" +version = "0.4.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1380,7 +1390,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -1394,20 +1404,16 @@ dependencies = [ ] [[package]] -name = "cipher" -version = "0.4.4" +name = "cityhash-rs" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" -dependencies = [ - "crypto-common", - "inout", -] +checksum = "93a719913643003b84bd13022b4b7e703c09342cd03b679c4641c7d2e50dc34d" [[package]] name = "clap" -version = "4.5.31" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767" +checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f" dependencies = [ "clap_builder", "clap_derive", @@ -1415,26 +1421,26 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.31" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863" +checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim 0.11.1", + "strsim", ] [[package]] name = "clap_derive" -version = "4.5.28" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" +checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -1445,116 +1451,41 @@ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "clickhouse" -version = "0.11.6" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0875e527e299fc5f4faba42870bf199a39ab0bb2dbba1b8aef0a2151451130f" +checksum = "9a9a81a1dffadd762ee662635ce409232258ce9beebd7cc0fa227df0b5e7efc0" dependencies = [ "bstr", - "bytes 1.7.2", + "bytes", + "cityhash-rs", "clickhouse-derive", - "clickhouse-rs-cityhash-sys", - "futures 0.3.30", - "hyper 0.14.31", - "hyper-tls 0.5.0", - "lz4", + "futures", + "futures-channel", + "http-body-util", + "hyper 1.6.0", + "hyper-util", + "lz4_flex", + "replace_with", "sealed", "serde", "static_assertions", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", - "tokio 1.42.0", + "tokio", "url", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] name = "clickhouse-derive" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18af5425854858c507eec70f7deb4d5d8cec4216fcb086283a78872387281ea5" +checksum = "d70f3e2893f7d3e017eeacdc9a708fbc29a10488e3ebca21f9df6a5d2b616dbb" dependencies = [ "proc-macro2", "quote", - "serde_derive_internals 0.26.0", - "syn 1.0.109", -] - -[[package]] -name = "clickhouse-rs-cityhash-sys" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4baf9d4700a28d6cb600e17ed6ae2b43298a5245f1f76b4eab63027ebfd592b9" -dependencies = [ - "cc", -] - -[[package]] -name = "cloudabi" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "cocoa" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" -dependencies = [ - "bitflags 1.3.2", - "block", - "cocoa-foundation 0.1.2", - "core-foundation 0.9.4", - "core-graphics 0.23.2", - "foreign-types 0.5.0", - "libc", - "objc", -] - -[[package]] -name = "cocoa" -version = "0.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f79398230a6e2c08f5c9760610eb6924b52aa9e7950a619602baba59dcbbdbb2" -dependencies = [ - "bitflags 2.6.0", - "block", - "cocoa-foundation 0.2.0", - "core-foundation 0.10.0", - "core-graphics 0.24.0", - "foreign-types 0.5.0", - "libc", - "objc", -] - -[[package]] -name = "cocoa-foundation" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" -dependencies = [ - "bitflags 1.3.2", - "block", - "core-foundation 0.9.4", - "core-graphics-types 0.1.3", - "libc", - "objc", -] - -[[package]] -name = "cocoa-foundation" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14045fb83be07b5acf1c0884b2180461635b433455fa35d1cd6f17f1450679d" -dependencies = [ - "bitflags 2.6.0", - "block", - "core-foundation 0.10.0", - "core-graphics-types 0.2.0", - "libc", - "objc", + "serde_derive_internals", + "syn 2.0.101", ] [[package]] @@ -1584,11 +1515,11 @@ version = "4.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" dependencies = [ - "bytes 1.7.2", + "bytes", "futures-core", "memchr", "pin-project-lite", - "tokio 1.42.0", + "tokio", "tokio-util", ] @@ -1598,20 +1529,20 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "crossbeam-utils 0.8.20", + "crossbeam-utils", ] [[package]] name = "console" -version = "0.15.8" +version = "0.15.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" dependencies = [ - "encode_unicode 0.3.6", - "lazy_static", + "encode_unicode", "libc", - "unicode-width", - "windows-sys 0.52.0", + "once_cell", + "unicode-width 0.2.0", + "windows-sys 0.59.0", ] [[package]] @@ -1635,7 +1566,7 @@ checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01" dependencies = [ "console-api", "crossbeam-channel", - "crossbeam-utils 0.8.20", + "crossbeam-utils", "futures-task", "hdrhistogram", "humantime", @@ -1645,7 +1576,7 @@ dependencies = [ "serde", "serde_json", "thread_local", - "tokio 1.42.0", + "tokio", "tokio-stream", "tonic", "tracing", @@ -1674,22 +1605,16 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.16", "once_cell", "tiny-keccak", ] [[package]] name = "constant_time_eq" -version = "0.1.5" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" - -[[package]] -name = "constant_time_eq" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a53c0a4d288377e7415b53dcfc3c04da5cdc2cc95c8d5ac178b58f0b861ad6" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "convert_case" @@ -1723,10 +1648,29 @@ version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ + "percent-encoding", "time", "version_check", ] +[[package]] +name = "cookie_store" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9" +dependencies = [ + "cookie 0.18.1", + "document-features", + "idna", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -1753,68 +1697,44 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" -[[package]] -name = "core-graphics" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" -dependencies = [ - "bitflags 1.3.2", - "core-foundation 0.9.4", - "core-graphics-types 0.1.3", - "foreign-types 0.5.0", - "libc", -] - [[package]] name = "core-graphics" version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "core-foundation 0.10.0", - "core-graphics-types 0.2.0", + "core-graphics-types", "foreign-types 0.5.0", "libc", ] -[[package]] -name = "core-graphics-types" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" -dependencies = [ - "bitflags 1.3.2", - "core-foundation 0.9.4", - "libc", -] - [[package]] name = "core-graphics-types" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "core-foundation 0.10.0", "libc", ] [[package]] name = "cpufeatures" -version = "0.2.14" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ "libc", ] [[package]] name = "crc" -version = "3.2.1" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" +checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ "crc-catalog", ] @@ -1831,52 +1751,32 @@ version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + [[package]] name = "crossbeam-channel" -version = "0.5.13" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ - "crossbeam-utils 0.8.20", + "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.7.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ - "crossbeam-epoch 0.8.2", - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - -[[package]] -name = "crossbeam-deque" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" -dependencies = [ - "crossbeam-epoch 0.9.18", - "crossbeam-utils 0.8.20", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" -dependencies = [ - "autocfg", - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "lazy_static", - "maybe-uninit", - "memoffset 0.5.6", - "scopeguard", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1885,51 +1785,29 @@ version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "crossbeam-utils 0.8.20", + "crossbeam-utils", ] [[package]] name = "crossbeam-queue" -version = "0.2.3" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - -[[package]] -name = "crossbeam-queue" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" -dependencies = [ - "crossbeam-utils 0.8.20", + "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.7.2" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" -dependencies = [ - "autocfg", - "cfg-if 0.1.10", - "lazy_static", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crunchy" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" [[package]] name = "crypto-bigint" @@ -1953,30 +1831,20 @@ dependencies = [ "typenum", ] -[[package]] -name = "crypto-mac" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e" -dependencies = [ - "generic-array", - "subtle", -] - [[package]] name = "cssparser" -version = "0.27.2" +version = "0.29.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" dependencies = [ "cssparser-macros", "dtoa-short", - "itoa 0.4.8", + "itoa", "matches", - "phf 0.8.0", + "phf 0.10.1", "proc-macro2", "quote", - "smallvec 1.13.2", + "smallvec", "syn 1.0.109", ] @@ -1987,49 +1855,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "csv" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" dependencies = [ "csv-core", - "itoa 1.0.11", + "itoa", "ryu", "serde", ] [[package]] name = "csv-core" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d" dependencies = [ "memchr", ] [[package]] name = "ctor" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "daedalus" version = "0.2.3" dependencies = [ - "bytes 1.7.2", "chrono", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] @@ -2037,111 +1904,60 @@ name = "daedalus_client" version = "0.2.2" dependencies = [ "async_zip", - "bytes 1.7.2", + "bytes", "chrono", "daedalus", - "dashmap 5.5.3", + "dashmap", "dotenvy", - "futures 0.3.30", - "indexmap 2.5.0", - "itertools 0.13.0", - "lazy_static", - "reqwest 0.12.7", + "futures", + "indexmap 2.9.0", + "itertools 0.14.0", + "reqwest", "rust-s3", - "semver 1.0.23", "serde", "serde-xml-rs", "serde_json", "sha1_smol", - "thiserror 1.0.64", - "tokio 1.42.0", + "thiserror 2.0.12", + "tokio", "tracing", "tracing-error", - "tracing-futures", "tracing-subscriber", ] [[package]] name = "darling" -version = "0.14.4" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", -] - -[[package]] -name = "darling" -version = "0.20.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" -dependencies = [ - "darling_core 0.20.10", - "darling_macro 0.20.10", + "darling_core", + "darling_macro", ] [[package]] name = "darling_core" -version = "0.14.4" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", - "strsim 0.10.0", - "syn 1.0.109", -] - -[[package]] -name = "darling_core" -version = "0.20.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.90", + "strsim", + "syn 2.0.101", ] [[package]] name = "darling_macro" -version = "0.14.4" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.14.4", + "darling_core", "quote", - "syn 1.0.109", -] - -[[package]] -name = "darling_macro" -version = "0.20.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" -dependencies = [ - "darling_core 0.20.10", - "quote", - "syn 2.0.90", -] - -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if 1.0.0", - "hashbrown 0.14.5", - "lock_api 0.4.12", - "once_cell", - "parking_lot_core 0.9.10", + "syn 2.0.101", ] [[package]] @@ -2150,48 +1966,43 @@ version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ - "cfg-if 1.0.0", - "crossbeam-utils 0.8.20", + "cfg-if", + "crossbeam-utils", "hashbrown 0.14.5", - "lock_api 0.4.12", + "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core", "serde", ] [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] -name = "dbus" -version = "0.9.7" +name = "data-url" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" -dependencies = [ - "libc", - "libdbus-sys", - "winapi 0.3.9", -] +checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "deadpool" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6541a3916932fe57768d4be0b1ffb5ec7cbf74ca8c903fdfd5c0fe8aa958f0ed" +checksum = "5ed5957ff93768adf7a65ab167a17835c3d2c3c50d084fe305174c112f468e2f" dependencies = [ "deadpool-runtime", "num_cpus", - "tokio 1.42.0", + "tokio", ] [[package]] name = "deadpool-redis" -version = "0.18.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfae6799b68a735270e4344ee3e834365f707c72da09c9a8bb89b45cc3351395" +checksum = "667d186d69c8b4dd7f8cf1ac71bec88b312e1752f2d1a63028aa9ea124c3f191" dependencies = [ "deadpool", "redis", @@ -2203,7 +2014,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" dependencies = [ - "tokio 1.42.0", + "tokio", ] [[package]] @@ -2213,7 +2024,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ "serde", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] @@ -2224,9 +2035,9 @@ checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b" [[package]] name = "der" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ "const-oid", "pem-rfc7468", @@ -2235,87 +2046,88 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.11" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" dependencies = [ "powerfmt", "serde", ] -[[package]] -name = "derive-new" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", -] - [[package]] name = "derive_arbitrary" -version = "1.3.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" +checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "derive_builder" -version = "0.12.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" +checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" dependencies = [ "derive_builder_macro", ] [[package]] name = "derive_builder_core" -version = "0.12.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" +checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "darling 0.14.4", + "darling", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.101", ] [[package]] name = "derive_builder_macro" -version = "0.12.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" +checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 1.0.109", + "syn 2.0.101", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", - "rustc_version 0.4.1", - "syn 2.0.90", + "rustc_version", + "syn 2.0.101", ] [[package]] -name = "digest" -version = "0.9.0" +name = "derive_more" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" dependencies = [ - "generic-array", + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.101", + "unicode-xid", ] [[package]] @@ -2324,7 +2136,7 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.4", + "block-buffer", "const-oid", "crypto-common", "subtle", @@ -2332,20 +2144,11 @@ dependencies = [ [[package]] name = "dirs" -version = "4.0.0" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" dependencies = [ - "dirs-sys 0.3.7", -] - -[[package]] -name = "dirs" -version = "5.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" -dependencies = [ - "dirs-sys 0.4.1", + "dirs-sys", ] [[package]] @@ -2354,31 +2157,20 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "dirs-sys-next", ] [[package]] name = "dirs-sys" -version = "0.3.7" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" -dependencies = [ - "libc", - "redox_users", - "winapi 0.3.9", -] - -[[package]] -name = "dirs-sys" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" dependencies = [ "libc", "option-ext", - "redox_users", - "windows-sys 0.48.0", + "redox_users 0.5.0", + "windows-sys 0.60.2", ] [[package]] @@ -2388,8 +2180,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", - "redox_users", - "winapi 0.3.9", + "redox_users 0.4.6", + "winapi", ] [[package]] @@ -2411,6 +2203,30 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" +[[package]] +name = "dispatch2" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a0d569e003ff27784e0e14e4a594048698e0c0f0b66cabcb51511be55a7caa0" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "libc", + "objc2 0.6.1", +] + +[[package]] +name = "dispatch2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "libc", + "objc2 0.6.1", +] + [[package]] name = "displaydoc" version = "0.2.5" @@ -2419,16 +2235,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", -] - -[[package]] -name = "dlib" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" -dependencies = [ - "libloading", + "syn 2.0.101", ] [[package]] @@ -2440,7 +2247,7 @@ dependencies = [ "dlopen2_derive", "libc", "once_cell", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2451,15 +2258,9 @@ checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] -[[package]] -name = "dlv-list" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" - [[package]] name = "dlv-list" version = "0.5.2" @@ -2469,32 +2270,41 @@ dependencies = [ "const-random", ] +[[package]] +name = "document-features" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d" +dependencies = [ + "litrs", +] + +[[package]] +name = "dotenv-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4547f16c17f6051a12cdb8c62b803f94bee6807c74aa7c530b30b737df981fc" + [[package]] name = "dotenvy" version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" -[[package]] -name = "downcast-rs" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" - [[package]] name = "dpi" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" dependencies = [ "serde", ] [[package]] name = "dtoa" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" [[package]] name = "dtoa-short" @@ -2513,9 +2323,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" [[package]] name = "ecdsa" @@ -2524,7 +2334,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ "der", - "digest 0.10.7", + "digest", "elliptic-curve", "rfc6979", "signature", @@ -2533,9 +2343,9 @@ dependencies = [ [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" dependencies = [ "serde", ] @@ -2548,7 +2358,7 @@ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ "base16ct", "crypto-bigint", - "digest 0.10.7", + "digest", "ff", "generic-array", "group", @@ -2562,9 +2372,9 @@ dependencies = [ [[package]] name = "email-encoding" -version = "0.3.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60d1d33cdaede7e24091f039632eb5d3c7469fe5b066a985281a34fc70fa317f" +checksum = "9298e6504d9b9e780ed3f7dfd43a61be8cd0e09eb07f7706a945b0072b6670b6" dependencies = [ "base64 0.22.1", "memchr", @@ -2578,14 +2388,14 @@ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449" [[package]] name = "embed-resource" -version = "2.5.0" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4e24052d7be71f0efb50c201557f6fe7d237cfd5a64fd5bcd7fd8fe32dbbffa" +checksum = "7fbc6e0d8e0c03a655b53ca813f0463d2c956bc4db8138dbc89f120b066551e3" dependencies = [ "cc", "memchr", - "rustc_version 0.4.1", - "toml 0.8.19", + "rustc_version", + "toml", "vswhom", "winreg 0.52.0", ] @@ -2596,12 +2406,6 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" -[[package]] -name = "encode_unicode" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" - [[package]] name = "encode_unicode" version = "1.0.0" @@ -2610,11 +2414,11 @@ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "encoding_rs" -version = "0.8.34" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -2624,10 +2428,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" [[package]] -name = "enumflags2" -version = "0.7.10" +name = "enum-as-inner" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.101", +] + +[[package]] +name = "enumflags2" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba2f4b465f5318854c6f8dd686ede6c0a9dc67d4b1ac241cf0eb51521a309147" dependencies = [ "enumflags2_derive", "serde", @@ -2635,13 +2451,35 @@ dependencies = [ [[package]] name = "enumflags2_derive" -version = "0.7.10" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" +checksum = "fc4caf64a58d7a6d65ab00639b046ff54399a39f5f2554728895ace4b297cd79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", +] + +[[package]] +name = "enumset" +version = "1.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11a6b7c3d347de0a9f7bfd2f853be43fe32fa6fac30c70f6d6d67a1e936b87ee" +dependencies = [ + "enumset_derive", + "serde", +] + +[[package]] +name = "enumset_derive" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6da3ea9e1d1a3b1593e15781f930120e72aa7501610b2f82e5b6739c72e8eac5" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.101", ] [[package]] @@ -2654,10 +2492,16 @@ dependencies = [ ] [[package]] -name = "env_logger" -version = "0.11.6" +name = "env_home" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" +checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" + +[[package]] +name = "env_logger" +version = "0.11.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ "env_filter", "log", @@ -2665,15 +2509,15 @@ dependencies = [ [[package]] name = "equivalent" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "erased-serde" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d" +checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" dependencies = [ "serde", "typeid", @@ -2681,12 +2525,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.9" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2695,7 +2539,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "home", "windows-sys 0.48.0", ] @@ -2708,9 +2552,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.3.1" +version = "5.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" dependencies = [ "concurrent-queue", "parking", @@ -2719,38 +2563,38 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.0", "pin-project-lite", ] [[package]] name = "exr" -version = "1.72.0" +version = "1.73.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" +checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0" dependencies = [ "bit_field", - "flume", - "half 2.4.1", + "half 2.6.0", "lebe", - "miniz_oxide 0.7.4", + "miniz_oxide", "rayon-core", - "smallvec 1.13.2", + "smallvec", "zune-inflate", ] [[package]] name = "fancy-regex" -version = "0.11.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" +checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" dependencies = [ "bit-set", - "regex", + "regex-automata 0.4.9", + "regex-syntax 0.8.5", ] [[package]] @@ -2764,24 +2608,24 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fdeflate" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8090f921a24b04994d9929e204f50b498a33ea6ba559ffaa05e04f7ee7fb5ab" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" dependencies = [ "simd-adler32", ] [[package]] name = "ff" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ "rand_core 0.6.4", "subtle", @@ -2793,8 +2637,8 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" dependencies = [ - "memoffset 0.9.1", - "rustc_version 0.4.1", + "memoffset", + "rustc_version", ] [[package]] @@ -2803,7 +2647,7 @@ version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "libredox", "windows-sys 0.59.0", @@ -2818,28 +2662,29 @@ dependencies = [ "cc", "lazy_static", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] name = "flate2" -version = "1.0.34" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" +checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" dependencies = [ "crc32fast", - "miniz_oxide 0.8.0", + "libz-rs-sys", + "miniz_oxide", ] [[package]] name = "flume" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" +checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ "futures-core", "futures-sink", - "spin 0.9.8", + "spin", ] [[package]] @@ -2848,6 +2693,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "foreign-types" version = "0.3.2" @@ -2875,7 +2726,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -2899,6 +2750,23 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "formatx" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8866fac38f53fc87fa3ae1b09ddd723e0482f8fa74323518b4c59df2c55a00a" + +[[package]] +name = "fs4" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4" +dependencies = [ + "rustix 1.0.7", + "tokio", + "windows-sys 0.59.0", +] + [[package]] name = "fsevent-sys" version = "4.1.0" @@ -2908,22 +2776,6 @@ dependencies = [ "libc", ] -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -dependencies = [ - "bitflags 1.3.2", - "fuchsia-zircon-sys", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" - [[package]] name = "funty" version = "2.0.0" @@ -2942,15 +2794,9 @@ dependencies = [ [[package]] name = "futures" -version = "0.1.31" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" - -[[package]] -name = "futures" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ "futures-channel", "futures-core", @@ -2963,9 +2809,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ "futures-core", "futures-sink", @@ -2973,15 +2819,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] name = "futures-executor" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ "futures-core", "futures-task", @@ -2995,15 +2841,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" dependencies = [ "futures-core", - "lock_api 0.4.12", - "parking_lot 0.12.3", + "lock_api", + "parking_lot", ] [[package]] name = "futures-io" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" @@ -3022,11 +2868,11 @@ dependencies = [ [[package]] name = "futures-lite" -version = "2.3.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" dependencies = [ - "fastrand 2.1.1", + "fastrand 2.3.0", "futures-core", "futures-io", "parking", @@ -3035,38 +2881,32 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "futures-sink" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] name = "futures-task" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" - -[[package]] -name = "futures-timer" -version = "3.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-util" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ "futures-channel", "futures-core", @@ -3091,9 +2931,9 @@ dependencies = [ [[package]] name = "gdk" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5ba081bdef3b75ebcdbfc953699ed2d7417d6bd853347a42a37d76406a33646" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" dependencies = [ "cairo-rs", "gdk-pixbuf", @@ -3132,9 +2972,9 @@ dependencies = [ [[package]] name = "gdk-sys" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31ff856cb3386dae1703a920f803abafcc580e9b5f711ca62ed1620c25b51ff2" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" dependencies = [ "cairo-sys-rs", "gdk-pixbuf-sys", @@ -3149,9 +2989,9 @@ dependencies = [ [[package]] name = "gdkwayland-sys" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a90fbf5c033c65d93792192a49a8efb5bb1e640c419682a58bb96f5ae77f3d4a" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" dependencies = [ "gdk-sys", "glib-sys", @@ -3163,9 +3003,9 @@ dependencies = [ [[package]] name = "gdkx11" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db2ea8a4909d530f79921290389cbd7c34cb9d623bfe970eaae65ca5f9cd9cce" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" dependencies = [ "gdk", "gdkx11-sys", @@ -3177,9 +3017,9 @@ dependencies = [ [[package]] name = "gdkx11-sys" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fee8f00f4ee46cad2939b8990f5c70c94ff882c3028f3cc5abf950fa4ab53043" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" dependencies = [ "gdk-sys", "glib-sys", @@ -3188,6 +3028,20 @@ dependencies = [ "x11", ] +[[package]] +name = "generator" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d18470a76cb7f8ff746cf1f7470914f900252ec36bbc40b569d74b1258446827" +dependencies = [ + "cc", + "cfg-if", + "libc", + "log", + "rustversion", + "windows", +] + [[package]] name = "generic-array" version = "0.14.7" @@ -3201,11 +3055,11 @@ dependencies = [ [[package]] name = "gethostname" -version = "0.5.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" +checksum = "fc257fdb4038301ce4b9cd1b3b51704509692bb3ff716a410cbd07925d9dae55" dependencies = [ - "rustix", + "rustix 1.0.7", "windows-targets 0.52.6", ] @@ -3215,24 +3069,38 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "wasi 0.9.0+wasi-snapshot-preview1", ] [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", "wasm-bindgen", ] +[[package]] +name = "getrandom" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasi 0.14.2+wasi-0.2.4", + "wasm-bindgen", +] + [[package]] name = "gif" version = "0.13.1" @@ -3245,9 +3113,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.31.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "gio" @@ -3264,8 +3132,8 @@ dependencies = [ "libc", "once_cell", "pin-project-lite", - "smallvec 1.13.2", - "thiserror 1.0.64", + "smallvec", + "thiserror 1.0.69", ] [[package]] @@ -3278,7 +3146,7 @@ dependencies = [ "gobject-sys", "libc", "system-deps", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3287,7 +3155,7 @@ version = "0.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "futures-channel", "futures-core", "futures-executor", @@ -3300,8 +3168,8 @@ dependencies = [ "libc", "memchr", "once_cell", - "smallvec 1.13.2", - "thiserror 1.0.64", + "smallvec", + "thiserror 1.0.69", ] [[package]] @@ -3315,7 +3183,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -3330,9 +3198,9 @@ dependencies = [ [[package]] name = "glob" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "gobject-sys" @@ -3345,26 +3213,6 @@ dependencies = [ "system-deps", ] -[[package]] -name = "governor" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" -dependencies = [ - "cfg-if 1.0.0", - "dashmap 5.5.3", - "futures 0.3.30", - "futures-timer", - "no-std-compat", - "nonzero_ext", - "parking_lot 0.12.3", - "portable-atomic", - "quanta", - "rand 0.8.5", - "smallvec 1.13.2", - "spinning_top", -] - [[package]] name = "group" version = "0.13.0" @@ -3378,9 +3226,9 @@ dependencies = [ [[package]] name = "gtk" -version = "0.18.1" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93c4f5e0e20b60e10631a5f06da7fe3dda744b05ad0ea71fee2f47adf865890c" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" dependencies = [ "atk", "cairo-rs", @@ -3399,9 +3247,9 @@ dependencies = [ [[package]] name = "gtk-sys" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771437bf1de2c1c0b496c11505bdf748e26066bbe942dfc8f614c9460f6d7722" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" dependencies = [ "atk-sys", "cairo-sys-rs", @@ -3417,15 +3265,15 @@ dependencies = [ [[package]] name = "gtk3-macros" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6063efb63db582968fb7df72e1ae68aa6360dcfb0a75143f34fc7d616bad75e" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" dependencies = [ "proc-macro-crate 1.3.1", "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -3434,34 +3282,34 @@ version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" dependencies = [ - "bytes 1.7.2", + "bytes", "fnv", "futures-core", "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.5.0", + "indexmap 2.9.0", "slab", - "tokio 1.42.0", + "tokio", "tokio-util", "tracing", ] [[package]] name = "h2" -version = "0.4.6" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" +checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5" dependencies = [ "atomic-waker", - "bytes 1.7.2", + "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", - "indexmap 2.5.0", + "http 1.3.1", + "indexmap 2.9.0", "slab", - "tokio 1.42.0", + "tokio", "tokio-util", "tracing", ] @@ -3474,11 +3322,11 @@ checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" [[package]] name = "half" -version = "2.4.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "crunchy", ] @@ -3497,17 +3345,28 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.12", "allocator-api2", ] [[package]] -name = "hashlink" -version = "0.9.1" +name = "hashbrown" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" +checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" dependencies = [ - "hashbrown 0.14.5", + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashlink" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" +dependencies = [ + "hashbrown 0.15.3", ] [[package]] @@ -3519,19 +3378,10 @@ dependencies = [ "base64 0.21.7", "byteorder", "flate2", - "nom", + "nom 7.1.3", "num-traits", ] -[[package]] -name = "heck" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" -dependencies = [ - "unicode-segmentation", -] - [[package]] name = "heck" version = "0.4.1" @@ -3556,29 +3406,71 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +[[package]] +name = "hermit-abi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08" + [[package]] name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hickory-proto" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand 0.9.1", + "ring", + "thiserror 2.0.12", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "moka", + "once_cell", + "parking_lot", + "rand 0.9.1", + "resolv-conf", + "smallvec", + "thiserror 2.0.12", + "tokio", + "tracing", +] + [[package]] name = "hkdf" version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac 0.12.1", -] - -[[package]] -name = "hmac" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" -dependencies = [ - "crypto-mac", - "digest 0.9.0", + "hmac", ] [[package]] @@ -3587,41 +3479,39 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.7", + "digest", ] [[package]] name = "home" -version = "0.5.9" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "hostname" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" +checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", - "windows 0.52.0", + "windows-link", ] [[package]] name = "html5ever" -version = "0.26.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" dependencies = [ "log", "mac", "markup5ever", - "proc-macro2", - "quote", - "syn 1.0.109", + "match_token", ] [[package]] @@ -3630,20 +3520,20 @@ version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "bytes 1.7.2", + "bytes", "fnv", - "itoa 1.0.11", + "itoa", ] [[package]] name = "http" -version = "1.1.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" dependencies = [ - "bytes 1.7.2", + "bytes", "fnv", - "itoa 1.0.11", + "itoa", ] [[package]] @@ -3652,7 +3542,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "bytes 1.7.2", + "bytes", "http 0.2.12", "pin-project-lite", ] @@ -3663,19 +3553,19 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "bytes 1.7.2", - "http 1.1.0", + "bytes", + "http 1.3.1", ] [[package]] name = "http-body-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "bytes 1.7.2", - "futures-util", - "http 1.1.0", + "bytes", + "futures-core", + "http 1.3.1", "http-body 1.0.1", "pin-project-lite", ] @@ -3709,9 +3599,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.9.4" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -3721,17 +3611,17 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humantime" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f" [[package]] name = "hyper" -version = "0.14.31" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ - "bytes 1.7.2", + "bytes", "futures-channel", "futures-core", "futures-util", @@ -3740,10 +3630,10 @@ dependencies = [ "http-body 0.4.6", "httparse", "httpdate", - "itoa 1.0.11", + "itoa", "pin-project-lite", "socket2", - "tokio 1.42.0", + "tokio", "tower-service", "tracing", "want", @@ -3751,22 +3641,22 @@ dependencies = [ [[package]] name = "hyper" -version = "1.4.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" dependencies = [ - "bytes 1.7.2", + "bytes", "futures-channel", "futures-util", - "h2 0.4.6", - "http 1.1.0", + "h2 0.4.10", + "http 1.3.1", "http-body 1.0.1", "httparse", "httpdate", - "itoa 1.0.11", + "itoa", "pin-project-lite", - "smallvec 1.13.2", - "tokio 1.42.0", + "smallvec", + "tokio", "want", ] @@ -3778,31 +3668,31 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.31", + "hyper 0.14.32", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", - "tokio 1.42.0", + "tokio", "tokio-rustls 0.24.1", ] [[package]] name = "hyper-rustls" -version = "0.27.3" +version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", - "http 1.1.0", - "hyper 1.4.1", + "http 1.3.1", + "hyper 1.6.0", "hyper-util", - "rustls 0.23.13", - "rustls-native-certs 0.8.0", + "rustls 0.23.27", + "rustls-native-certs 0.8.1", "rustls-pki-types", - "tokio 1.42.0", - "tokio-rustls 0.26.0", + "tokio", + "tokio-rustls 0.26.2", "tower-service", - "webpki-roots 0.26.6", + "webpki-roots 0.26.11", ] [[package]] @@ -3811,73 +3701,68 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper 1.4.1", + "hyper 1.6.0", "hyper-util", "pin-project-lite", - "tokio 1.42.0", + "tokio", "tower-service", ] -[[package]] -name = "hyper-tls" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" -dependencies = [ - "bytes 1.7.2", - "hyper 0.14.31", - "native-tls", - "tokio 1.42.0", - "tokio-native-tls", -] - [[package]] name = "hyper-tls" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ - "bytes 1.7.2", + "bytes", "http-body-util", - "hyper 1.4.1", + "hyper 1.6.0", "hyper-util", "native-tls", - "tokio 1.42.0", + "tokio", "tokio-native-tls", "tower-service", ] [[package]] name = "hyper-util" -version = "0.1.10" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" +checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb" dependencies = [ - "bytes 1.7.2", + "base64 0.22.1", + "bytes", "futures-channel", + "futures-core", "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", - "hyper 1.4.1", + "hyper 1.6.0", + "ipnet", + "libc", + "percent-encoding", "pin-project-lite", "socket2", - "tokio 1.42.0", + "system-configuration", + "tokio", "tower-service", "tracing", + "windows-registry", ] [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", + "log", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core", ] [[package]] @@ -3891,9 +3776,9 @@ dependencies = [ [[package]] name = "ico" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" +checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" dependencies = [ "byteorder", "png", @@ -3901,21 +3786,22 @@ dependencies = [ [[package]] name = "icu_collections" -version = "1.5.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" +checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" dependencies = [ "displaydoc", + "potential_utf", "yoke", "zerofrom", "zerovec", ] [[package]] -name = "icu_locid" -version = "1.5.0" +name = "icu_locale_core" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" +checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" dependencies = [ "displaydoc", "litemap", @@ -3924,99 +3810,66 @@ dependencies = [ "zerovec", ] -[[package]] -name = "icu_locid_transform" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" -dependencies = [ - "displaydoc", - "icu_locid", - "icu_locid_transform_data", - "icu_provider", - "tinystr", - "zerovec", -] - -[[package]] -name = "icu_locid_transform_data" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" - [[package]] name = "icu_normalizer" -version = "1.5.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" +checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" dependencies = [ "displaydoc", "icu_collections", "icu_normalizer_data", "icu_properties", "icu_provider", - "smallvec 1.13.2", - "utf16_iter", - "utf8_iter", - "write16", + "smallvec", "zerovec", ] [[package]] name = "icu_normalizer_data" -version = "1.5.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" +checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" [[package]] name = "icu_properties" -version = "1.5.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" +checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a" dependencies = [ "displaydoc", "icu_collections", - "icu_locid_transform", + "icu_locale_core", "icu_properties_data", "icu_provider", - "tinystr", + "potential_utf", + "zerotrie", "zerovec", ] [[package]] name = "icu_properties_data" -version = "1.5.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" +checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04" [[package]] name = "icu_provider" -version = "1.5.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" +checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" dependencies = [ "displaydoc", - "icu_locid", - "icu_provider_macros", + "icu_locale_core", "stable_deref_trait", "tinystr", "writeable", "yoke", "zerofrom", + "zerotrie", "zerovec", ] -[[package]] -name = "icu_provider_macros" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", -] - [[package]] name = "ident_case" version = "1.0.1" @@ -4025,76 +3878,69 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idna" -version = "0.4.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd69211b9b519e98303c015e21a007e293db403b6c85b9b124e133d25e242cdd" -dependencies = [ - "icu_normalizer", - "icu_properties", - "smallvec 1.13.2", + "idna_adapter", + "smallvec", "utf8_iter", ] [[package]] -name = "if_chain" -version = "1.0.2" +name = "idna_adapter" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" - -[[package]] -name = "image" -version = "0.24.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "bytemuck", - "byteorder", - "color_quant", - "exr", - "gif", - "jpeg-decoder", - "num-traits", - "png", - "qoi", - "tiff", + "icu_normalizer", + "icu_properties", ] [[package]] name = "image" -version = "0.25.3" +version = "0.25.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d97eb9a8e0cd5b76afea91d7eecd5cf8338cd44ced04256cf1f800474b227c52" +checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a" dependencies = [ "bytemuck", "byteorder-lite", + "color_quant", + "exr", + "gif", + "image-webp", "num-traits", + "png", + "qoi", + "ravif", + "rayon", + "rgb", + "tiff", + "zune-core", + "zune-jpeg", ] [[package]] -name = "impl-more" -version = "0.1.8" +name = "image-webp" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0" +checksum = "b77d01e822461baa8409e156015a1d91735549f0f2c17691bd2d996bef238f7f" +dependencies = [ + "byteorder-lite", + "quick-error", +] + +[[package]] +name = "imgref" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408" + +[[package]] +name = "impl-more" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "indexmap" @@ -4109,26 +3955,26 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.5.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" +checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.15.3", "serde", ] [[package]] name = "indicatif" -version = "0.17.8" +version = "0.17.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" +checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" dependencies = [ "console", - "instant", "number_prefix", "portable-atomic", - "unicode-width", + "unicode-width 0.2.0", + "web-time", ] [[package]] @@ -4139,42 +3985,42 @@ checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" [[package]] name = "infer" -version = "0.16.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" dependencies = [ "cfb", ] [[package]] name = "inferno" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" +checksum = "2094aecddc672e902cd773bad7071542f63641e01e9187c3bba4b43005e837e9" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.12", "clap", "crossbeam-channel", - "crossbeam-utils 0.8.20", - "dashmap 6.1.0", + "crossbeam-utils", + "dashmap", "env_logger", - "indexmap 2.5.0", - "itoa 1.0.11", + "indexmap 2.9.0", + "itoa", "log", "num-format", "once_cell", - "quick-xml 0.37.2", + "quick-xml 0.37.5", "rgb", "str_stack", ] [[package]] name = "inotify" -version = "0.9.6" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" +checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.9.1", "inotify-sys", "libc", ] @@ -4188,45 +4034,57 @@ dependencies = [ "libc", ] -[[package]] -name = "inout" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" -dependencies = [ - "generic-array", -] - [[package]] name = "instant" version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] -name = "iovec" -version = "0.1.4" +name = "interpolate_name" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ - "libc", + "proc-macro2", + "quote", + "syn 2.0.101", +] + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +dependencies = [ + "socket2", + "widestring", + "windows-sys 0.48.0", + "winreg 0.50.0", ] [[package]] name = "ipnet" -version = "2.10.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "ipnetwork" -version = "0.20.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" +checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" + +[[package]] +name = "iri-string" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" dependencies = [ + "memchr", "serde", ] @@ -4241,13 +4099,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ - "hermit-abi 0.4.0", + "hermit-abi 0.5.1", "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4268,29 +4126,11 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "iso8601" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" +checksum = "c5c177cff824ab21a6f41079a4c401241c4e8be14f316c4c6b07d5fca351c98d" dependencies = [ - "nom", -] - -[[package]] -name = "itertools" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" -dependencies = [ - "either", + "nom 8.0.0", ] [[package]] @@ -4312,16 +4152,19 @@ dependencies = [ ] [[package]] -name = "itoa" -version = "0.4.8" +name = "itertools" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "javascriptcore-rs" @@ -4359,7 +4202,7 @@ dependencies = [ "pprof_util", "tempfile", "tikv-jemalloc-ctl", - "tokio 1.42.0", + "tokio", "tracing", ] @@ -4370,11 +4213,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" dependencies = [ "cesu8", - "cfg-if 1.0.0", + "cfg-if", "combine", "jni-sys", "log", - "thiserror 1.0.64", + "thiserror 1.0.69", "walkdir", "windows-sys 0.45.0", ] @@ -4387,10 +4230,11 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" dependencies = [ + "getrandom 0.3.3", "libc", ] @@ -4399,16 +4243,14 @@ name = "jpeg-decoder" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" -dependencies = [ - "rayon", -] [[package]] name = "js-sys" -version = "0.3.70" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -4418,10 +4260,22 @@ version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" dependencies = [ - "jsonptr", + "jsonptr 0.6.3", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", +] + +[[package]] +name = "json-patch" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "159294d661a039f7644cea7e4d844e6b25aaf71c1ffe9d73a96d768c24b0faf4" +dependencies = [ + "jsonptr 0.7.1", + "serde", + "serde_json", + "thiserror 1.0.69", ] [[package]] @@ -4435,26 +4289,26 @@ dependencies = [ ] [[package]] -name = "jsonwebtoken" -version = "9.3.0" +name = "jsonptr" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" +checksum = "a5a3cc660ba5d72bce0b3bb295bf20847ccbb40fd423f3f05b61273672e561fe" dependencies = [ - "base64 0.21.7", - "js-sys", - "ring 0.17.8", "serde", "serde_json", ] [[package]] -name = "kernel32-sys" -version = "0.2.2" +name = "jsonwebtoken" +version = "9.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" dependencies = [ - "winapi 0.2.8", - "winapi-build", + "base64 0.22.1", + "js-sys", + "ring", + "serde", + "serde_json", ] [[package]] @@ -4463,16 +4317,16 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "serde", "unicode-segmentation", ] [[package]] name = "kqueue" -version = "1.0.8" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" +checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ "kqueue-sys", "libc", @@ -4490,14 +4344,13 @@ dependencies = [ [[package]] name = "kuchikiki" -version = "0.8.2" +version = "0.8.8-speedreader" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" dependencies = [ "cssparser", "html5ever", - "indexmap 1.9.3", - "matches", + "indexmap 2.9.0", "selectors", ] @@ -4517,43 +4370,43 @@ dependencies = [ "ariadne", "async-stripe", "async-trait", - "base64 0.21.7", - "bitflags 2.6.0", - "bytes 1.7.2", + "base64 0.22.1", + "bitflags 2.9.1", + "bytes", "censor", "chrono", + "clap", "clickhouse", "color-thief", "console-subscriber", - "dashmap 5.5.3", + "dashmap", "deadpool-redis", - "derive-new", + "dotenv-build", "dotenvy", "either", "flate2", - "futures 0.3.30", - "futures-timer", + "futures", "futures-util", - "governor", "hex", - "hmac 0.11.0", - "hyper 0.14.31", - "hyper-tls 0.5.0", - "image 0.24.9", - "itertools 0.12.1", + "hmac", + "hyper-tls", + "hyper-util", + "iana-time-zone", + "image", + "itertools 0.14.0", "jemalloc_pprof", - "json-patch", - "lazy_static", + "json-patch 4.0.0", "lettre", "maxminddb", "meilisearch-sdk", "murmur2", + "paste", "prometheus", "rand 0.8.5", "rand_chacha 0.3.1", "redis", "regex", - "reqwest 0.11.27", + "reqwest", "rust-s3", "rust_decimal", "rust_iso3166", @@ -4561,34 +4414,29 @@ dependencies = [ "sentry", "sentry-actix", "serde", - "serde_bytes", - "serde_cbor", "serde_json", "serde_with", - "sha1 0.6.1", - "sha2 0.9.9", + "sha1", + "sha2", "spdx", "sqlx", "tar", - "thiserror 1.0.64", + "thiserror 2.0.12", "tikv-jemalloc-ctl", "tikv-jemallocator", - "tokio 1.42.0", + "tokio", "tokio-stream", "totp-rs", "tracing", "tracing-actix-web", - "tracing-subscriber", "url", "urlencoding", - "uuid 1.12.0", + "uuid 1.17.0", "validator", "webp", "woothee", - "xml-rs", "yaserde", - "yaserde_derive", - "zip 0.6.6", + "zip", "zxcvbn", ] @@ -4604,7 +4452,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin", ] [[package]] @@ -4615,26 +4463,27 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "lettre" -version = "0.11.10" +version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0161e452348e399deb685ba05e55ee116cae9410f4f51fe42d597361444521d9" +checksum = "cb2a0354e9ece2fcdcf9fa53417f6de587230c0c248068eb058fa26c4a753179" dependencies = [ "base64 0.22.1", "chumsky", "email-encoding", "email_address", - "fastrand 2.1.1", + "fastrand 2.3.0", "futures-util", "hostname", "httpdate", - "idna 1.0.2", + "idna", "mime", - "native-tls", - "nom", + "nom 8.0.0", "percent-encoding", "quoted_printable", + "rustls 0.23.27", + "rustls-native-certs 0.8.1", "socket2", - "tokio 1.42.0", + "tokio", "url", ] @@ -4663,19 +4512,25 @@ dependencies = [ ] [[package]] -name = "libc" -version = "0.2.159" +name = "libbz2-rs-sys" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" +checksum = "775bf80d5878ab7c2b1080b5351a48b2f737d9f6f8b383574eebcc22be0dfccb" [[package]] -name = "libdbus-sys" -version = "0.2.5" +name = "libc" +version = "0.2.172" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" +checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" + +[[package]] +name = "libfuzzer-sys" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf78f52d400cf2d84a3a973a78a592b4adc535739e0a5597a0da6f0c357adc75" dependencies = [ + "arbitrary", "cc", - "pkg-config", ] [[package]] @@ -4684,15 +4539,15 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ - "cfg-if 1.0.0", - "winapi 0.3.9", + "cfg-if", + "winapi", ] [[package]] name = "libm" -version = "0.2.8" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" +checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] name = "libredox" @@ -4700,9 +4555,9 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "libc", - "redox_syscall 0.5.6", + "redox_syscall", ] [[package]] @@ -4727,22 +4582,37 @@ dependencies = [ ] [[package]] -name = "linked-hash-map" -version = "0.5.6" +name = "libz-rs-sys" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" +checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221" +dependencies = [ + "zlib-rs", +] [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + +[[package]] +name = "linux-raw-sys" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" [[package]] name = "litemap" -version = "0.7.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" + +[[package]] +name = "litrs" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" [[package]] name = "local-channel" @@ -4761,15 +4631,6 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" -[[package]] -name = "lock_api" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" -dependencies = [ - "scopeguard", -] - [[package]] name = "lock_api" version = "0.4.12" @@ -4782,48 +4643,43 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" [[package]] -name = "lru-cache" +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "loop9" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" +dependencies = [ + "imgref", +] + +[[package]] +name = "lru-slab" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" -dependencies = [ - "linked-hash-map", -] +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] -name = "lz4" -version = "1.28.0" +name = "lz4_flex" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725" -dependencies = [ - "lz4-sys", -] - -[[package]] -name = "lz4-sys" -version = "1.11.1+lz4-1.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" -dependencies = [ - "cc", - "libc", -] - -[[package]] -name = "lzma-sys" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" -dependencies = [ - "cc", - "libc", - "pkg-config", -] +checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5" [[package]] name = "mac" @@ -4831,15 +4687,6 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" -[[package]] -name = "malloc_buf" -version = "0.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" -dependencies = [ - "libc", -] - [[package]] name = "mappings" version = "0.7.0" @@ -4855,18 +4702,29 @@ dependencies = [ [[package]] name = "markup5ever" -version = "0.11.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" dependencies = [ "log", - "phf 0.10.1", - "phf_codegen 0.10.0", + "phf 0.11.3", + "phf_codegen 0.11.3", "string_cache", "string_cache_codegen", "tendril", ] +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.101", +] + [[package]] name = "matchers" version = "0.1.0" @@ -4890,14 +4748,15 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] name = "maxminddb" -version = "0.24.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6087e5d8ea14861bb7c7f573afbc7be3798d3ef0fae87ec4fd9a4de9a127c3c" +checksum = "2a197e44322788858682406c74b0b59bf8d9b4954fe1f224d9a25147f1880bba" dependencies = [ "ipnetwork", "log", "memchr", "serde", + "thiserror 2.0.12", ] [[package]] @@ -4908,14 +4767,18 @@ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] -name = "maybe-uninit" -version = "2.0.0" +name = "maybe-rayon" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" +checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" +dependencies = [ + "cfg-if", + "rayon", +] [[package]] name = "md-5" @@ -4923,8 +4786,8 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if 1.0.0", - "digest 0.10.7", + "cfg-if", + "digest", ] [[package]] @@ -4935,39 +4798,39 @@ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" [[package]] name = "meilisearch-index-setting-macro" -version = "0.27.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "056e8c0652af81cc6525e0d9c0e1037ea7bcd77955dcd4aef1a1441be7ad7e55" +checksum = "420f67f5943a0236eea7f199720cc465e806c48978d9b0fdc1fb62eceaee7556" dependencies = [ "convert_case 0.6.0", "proc-macro2", "quote", "structmeta", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "meilisearch-sdk" -version = "0.27.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66958255878d712b4f2dece377a8661b41dc976ff15f564b91bfce8b4a619304" +checksum = "2325355c73c96667178c09675389cfa7afc2382d5aa0e0d34d0cf29793d89090" dependencies = [ "async-trait", - "bytes 1.7.2", + "bytes", "either", - "futures 0.3.30", + "futures", "futures-io", "iso8601", "jsonwebtoken", "log", "meilisearch-index-setting-macro", "pin-project-lite", - "reqwest 0.12.7", + "reqwest", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", - "uuid 1.12.0", + "uuid 1.17.0", "wasm-bindgen-futures", "web-sys", "yaup", @@ -4979,15 +4842,6 @@ version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" -[[package]] -name = "memoffset" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" -dependencies = [ - "autocfg", -] - [[package]] name = "memoffset" version = "0.9.1" @@ -5030,24 +4884,15 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "minisign-verify" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a05b5d0594e0cb1ad8cee3373018d2b84e25905dc75b2468114cc9a8e86cfc20" +checksum = "6367d84fb54d4242af283086402907277715b8fe46976963af5ebf173f8efba3" [[package]] name = "miniz_oxide" -version = "0.7.4" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" -dependencies = [ - "adler", -] - -[[package]] -name = "miniz_oxide" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" dependencies = [ "adler2", "simd-adler32", @@ -5055,42 +4900,10 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.23" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ - "cfg-if 0.1.10", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log", - "miow", - "net2", - "slab", - "winapi 0.2.8", -] - -[[package]] -name = "mio" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" -dependencies = [ - "libc", - "log", - "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.48.0", -] - -[[package]] -name = "mio" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" -dependencies = [ - "hermit-abi 0.3.9", "libc", "log", "wasi 0.11.0+wasi-snapshot-preview1", @@ -5098,45 +4911,42 @@ dependencies = [ ] [[package]] -name = "mio-uds" -version = "0.6.8" +name = "moka" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" +checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" dependencies = [ - "iovec", - "libc", - "mio 0.6.23", -] - -[[package]] -name = "miow" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "loom", + "parking_lot", + "portable-atomic", + "rustc_version", + "smallvec", + "tagptr", + "thiserror 1.0.69", + "uuid 1.17.0", ] [[package]] name = "muda" -version = "0.15.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8123dfd4996055ac9b15a60ad263b44b01e539007523ad7a4a533a3d93b0591" +checksum = "58b89bf91c19bf036347f1ab85a81c560f08c0667c8601bece664d860a600988" dependencies = [ "crossbeam-channel", "dpi", "gtk", "keyboard-types", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", + "objc2-core-foundation", + "objc2-foundation 0.3.1", "once_cell", "png", "serde", - "thiserror 1.0.64", + "thiserror 2.0.12", "windows-sys 0.59.0", ] @@ -5154,32 +4964,33 @@ checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577" [[package]] name = "native-dialog" -version = "0.7.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84e7038885d2aeab236bd60da9e159a5967b47cde3292da3b15ff1bec27c039f" +checksum = "8f006431cea71a83e6668378cb5abc2d52af299cbac6dca1780c6eeca90822df" dependencies = [ "ascii", - "block", - "cocoa 0.25.0", - "core-foundation 0.9.4", - "dirs-next", - "objc", - "objc-foundation", - "objc_id", - "once_cell", - "raw-window-handle 0.5.2", - "thiserror 1.0.64", + "block2 0.6.1", + "dirs", + "dispatch2 0.3.0", + "formatx", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation 0.3.1", + "raw-window-handle", + "thiserror 2.0.12", "versions", "wfd", "which", - "winapi 0.3.9", + "winapi", ] [[package]] name = "native-tls" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" dependencies = [ "libc", "log", @@ -5187,7 +4998,7 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "security-framework", + "security-framework 2.11.1", "security-framework-sys", "tempfile", ] @@ -5198,13 +5009,13 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "jni-sys", "log", "ndk-sys", "num_enum", - "raw-window-handle 0.6.2", - "thiserror 1.0.64", + "raw-window-handle", + "thiserror 1.0.69", ] [[package]] @@ -5222,17 +5033,6 @@ dependencies = [ "jni-sys", ] -[[package]] -name = "net2" -version = "0.2.39" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" -dependencies = [ - "cfg-if 0.1.10", - "libc", - "winapi 0.3.9", -] - [[package]] name = "new_debug_unreachable" version = "1.0.6" @@ -5241,23 +5041,17 @@ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" [[package]] name = "nix" -version = "0.29.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.6.0", - "cfg-if 1.0.0", + "bitflags 2.9.1", + "cfg-if", "cfg_aliases", "libc", - "memoffset 0.9.1", + "memoffset", ] -[[package]] -name = "no-std-compat" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" - [[package]] name = "nodrop" version = "0.1.14" @@ -5275,56 +5069,64 @@ dependencies = [ ] [[package]] -name = "nonzero_ext" -version = "0.3.0" +name = "nom" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" - -[[package]] -name = "normpath" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8911957c4b1549ac0dc74e30db9c8b0e66ddcd6d7acc33098f4c63a64a6d7ed" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ - "windows-sys 0.59.0", + "memchr", ] [[package]] -name = "notify" -version = "6.1.1" +name = "noop_proc_macro" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" +checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" + +[[package]] +name = "notify" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943" dependencies = [ - "bitflags 2.6.0", - "crossbeam-channel", + "bitflags 2.9.1", "filetime", "fsevent-sys", "inotify", "kqueue", "libc", "log", - "mio 0.8.11", + "mio", + "notify-types", "walkdir", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "notify-debouncer-mini" -version = "0.4.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" +checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8" dependencies = [ "log", "notify", + "notify-types", + "tempfile", ] +[[package]] +name = "notify-types" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d" + [[package]] name = "ntapi" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5334,7 +5136,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" dependencies = [ "overload", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5374,7 +5176,7 @@ dependencies = [ "num-iter", "num-traits", "rand 0.8.5", - "smallvec 1.13.2", + "smallvec", "zeroize", ] @@ -5393,6 +5195,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +[[package]] +name = "num-derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.101", +] + [[package]] name = "num-format" version = "0.4.4" @@ -5400,7 +5213,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ "arrayvec", - "itoa 1.0.11", + "itoa", ] [[package]] @@ -5469,10 +5282,10 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -5481,34 +5294,11 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" -[[package]] -name = "objc" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" -dependencies = [ - "malloc_buf", -] - -[[package]] -name = "objc-foundation" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" -dependencies = [ - "block", - "objc", - "objc_id", -] - [[package]] name = "objc-sys" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" -dependencies = [ - "cc", -] [[package]] name = "objc2" @@ -5521,86 +5311,109 @@ dependencies = [ ] [[package]] -name = "objc2-app-kit" -version = "0.2.2" +name = "objc2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" +checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" dependencies = [ - "bitflags 2.6.0", - "block2", + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", "libc", - "objc2", + "objc2 0.6.1", + "objc2-cloud-kit", "objc2-core-data", + "objc2-core-foundation", + "objc2-core-graphics", "objc2-core-image", - "objc2-foundation", - "objc2-quartz-core", + "objc2-foundation 0.3.1", + "objc2-quartz-core 0.3.1", ] [[package]] name = "objc2-cloud-kit" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" +checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-core-location", - "objc2-foundation", -] - -[[package]] -name = "objc2-contacts" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" -dependencies = [ - "block2", - "objc2", - "objc2-foundation", + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", ] [[package]] name = "objc2-core-data" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" +checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-foundation", + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "dispatch2 0.3.0", + "libc", + "objc2 0.6.1", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" +dependencies = [ + "bitflags 2.9.1", + "block2 0.6.1", + "dispatch2 0.3.0", + "libc", + "objc2 0.6.1", + "objc2-core-foundation", + "objc2-io-surface", + "objc2-metal 0.3.1", ] [[package]] name = "objc2-core-image" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" +checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" dependencies = [ - "block2", - "objc2", - "objc2-foundation", - "objc2-metal", -] - -[[package]] -name = "objc2-core-location" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" -dependencies = [ - "block2", - "objc2", - "objc2-contacts", - "objc2-foundation", + "objc2 0.6.1", + "objc2-foundation 0.3.1", ] [[package]] name = "objc2-encode" -version = "4.0.3" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] [[package]] name = "objc2-foundation" @@ -5608,23 +5421,44 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" dependencies = [ - "bitflags 2.6.0", - "block2", - "dispatch", + "bitflags 2.9.1", + "block2 0.5.1", "libc", - "objc2", + "objc2 0.5.2", ] [[package]] -name = "objc2-link-presentation" -version = "0.2.2" +name = "objc2-foundation" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" +checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" dependencies = [ - "block2", - "objc2", - "objc2-app-kit", - "objc2-foundation", + "bitflags 2.9.1", + "block2 0.6.1", + "libc", + "objc2 0.6.1", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a" +dependencies = [ + "libc", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-core-foundation", ] [[package]] @@ -5633,10 +5467,33 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-foundation", + "bitflags 2.9.1", + "block2 0.5.1", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-metal" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f246c183239540aab1782457b35ab2040d4259175bd1d0c58e46ada7b47a874" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", +] + +[[package]] +name = "objc2-osa-kit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26bb88504b5a050dbba515d2414607bf5e57dd56b107bc5f0351197a3e7bdc5d" +dependencies = [ + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-foundation 0.3.1", ] [[package]] @@ -5645,152 +5502,89 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-foundation", - "objc2-metal", + "bitflags 2.9.1", + "block2 0.5.1", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-metal 0.2.2", ] [[package]] -name = "objc2-symbols" -version = "0.2.2" +name = "objc2-quartz-core" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" +checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" dependencies = [ - "objc2", - "objc2-foundation", + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-foundation 0.3.1", ] [[package]] name = "objc2-ui-kit" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" +checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-cloud-kit", - "objc2-core-data", - "objc2-core-image", - "objc2-core-location", - "objc2-foundation", - "objc2-link-presentation", - "objc2-quartz-core", - "objc2-symbols", - "objc2-uniform-type-identifiers", - "objc2-user-notifications", -] - -[[package]] -name = "objc2-uniform-type-identifiers" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" -dependencies = [ - "block2", - "objc2", - "objc2-foundation", -] - -[[package]] -name = "objc2-user-notifications" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" -dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", - "objc2-core-location", - "objc2-foundation", + "bitflags 2.9.1", + "objc2 0.6.1", + "objc2-core-foundation", + "objc2-foundation 0.3.1", ] [[package]] name = "objc2-web-kit" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68bc69301064cebefc6c4c90ce9cba69225239e4b8ff99d445a2b5563797da65" +checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" dependencies = [ - "bitflags 2.6.0", - "block2", - "objc2", + "bitflags 2.9.1", + "block2 0.6.1", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", -] - -[[package]] -name = "objc_id" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" -dependencies = [ - "objc", + "objc2-core-foundation", + "objc2-foundation 0.3.1", ] [[package]] name = "object" -version = "0.36.4" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "memchr", ] [[package]] name = "once_cell" -version = "1.20.1" +version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" dependencies = [ + "critical-section", "portable-atomic", ] -[[package]] -name = "oncemutex" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d11de466f4a3006fe8a5e7ec84e93b79c70cb992ae0aa0eb631ad2df8abfe2" - -[[package]] -name = "opaque-debug" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" - [[package]] name = "open" -version = "5.3.0" +version = "5.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61a877bf6abd716642a53ef1b89fb498923a4afca5c754f9050b4d081c05c4b3" +checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" dependencies = [ + "dunce", "is-wsl", "libc", "pathdiff", ] -[[package]] -name = "opener" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0812e5e4df08da354c851a3376fead46db31c2214f849d3de356d774d057681" -dependencies = [ - "bstr", - "dbus", - "normpath", - "url", - "windows-sys 0.59.0", -] - [[package]] name = "openssl" -version = "0.10.66" +version = "0.10.72" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" +checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da" dependencies = [ - "bitflags 2.6.0", - "cfg-if 1.0.0", + "bitflags 2.9.1", + "cfg-if", "foreign-types 0.3.2", "libc", "once_cell", @@ -5806,33 +5600,23 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "openssl-probe" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - -[[package]] -name = "openssl-src" -version = "300.3.2+3.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a211a18d945ef7e648cc6e0058f4c548ee46aab922ea203e0d30e966ea23647b" -dependencies = [ - "cc", -] +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "openssl-sys" -version = "0.9.103" +version = "0.9.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" +checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] @@ -5843,23 +5627,13 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" -[[package]] -name = "ordered-multimap" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" -dependencies = [ - "dlv-list 0.3.0", - "hashbrown 0.12.3", -] - [[package]] name = "ordered-multimap" version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" dependencies = [ - "dlv-list 0.5.2", + "dlv-list", "hashbrown 0.14.5", ] @@ -5875,15 +5649,29 @@ dependencies = [ [[package]] name = "os_info" -version = "3.8.2" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" +checksum = "41fc863e2ca13dc2d5c34fb22ea4a588248ac14db929616ba65c45f21744b1e9" dependencies = [ "log", "serde", "windows-sys 0.52.0", ] +[[package]] +name = "osakit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" +dependencies = [ + "objc2 0.6.1", + "objc2-foundation 0.3.1", + "objc2-osa-kit", + "serde", + "serde_json", + "thiserror 2.0.12", +] + [[package]] name = "overload" version = "0.1.1" @@ -5899,7 +5687,7 @@ dependencies = [ "ecdsa", "elliptic-curve", "primeorder", - "sha2 0.10.8", + "sha2", ] [[package]] @@ -5933,40 +5721,14 @@ version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" -[[package]] -name = "parking_lot" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -dependencies = [ - "lock_api 0.3.4", - "parking_lot_core 0.6.3", - "rustc_version 0.2.3", -] - [[package]] name = "parking_lot" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ - "lock_api 0.4.12", - "parking_lot_core 0.9.10", -] - -[[package]] -name = "parking_lot_core" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a" -dependencies = [ - "cfg-if 0.1.10", - "cloudabi", - "libc", - "redox_syscall 0.1.57", - "rustc_version 0.2.3", - "smallvec 0.6.14", - "winapi 0.3.9", + "lock_api", + "parking_lot_core", ] [[package]] @@ -5975,10 +5737,10 @@ version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", - "redox_syscall 0.5.6", - "smallvec 1.13.2", + "redox_syscall", + "smallvec", "windows-targets 0.52.6", ] @@ -5988,17 +5750,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "487f2ccd1e17ce8c1bfab3a65c89525af41cfad4c8659021a1e9a2aacd73b89b" -[[package]] -name = "password-hash" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" -dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", -] - [[package]] name = "password-hash" version = "0.5.0" @@ -6018,21 +5769,9 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "pathdiff" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" - -[[package]] -name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" -dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", - "password-hash 0.4.2", - "sha2 0.10.8", -] +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" [[package]] name = "pem-rfc7468" @@ -6055,9 +5794,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" dependencies = [ - "phf_macros 0.8.0", "phf_shared 0.8.0", - "proc-macro-hack", ] [[package]] @@ -6066,17 +5803,19 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" dependencies = [ + "phf_macros 0.10.0", "phf_shared 0.10.0", + "proc-macro-hack", ] [[package]] name = "phf" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_macros 0.11.2", - "phf_shared 0.11.2", + "phf_macros 0.11.3", + "phf_shared 0.11.3", ] [[package]] @@ -6091,12 +5830,12 @@ dependencies = [ [[package]] name = "phf_codegen" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", + "phf_generator 0.11.3", + "phf_shared 0.11.3", ] [[package]] @@ -6121,22 +5860,22 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared 0.11.3", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.8.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" dependencies = [ - "phf_generator 0.8.0", - "phf_shared 0.8.0", + "phf_generator 0.10.0", + "phf_shared 0.10.0", "proc-macro-hack", "proc-macro2", "quote", @@ -6145,15 +5884,15 @@ dependencies = [ [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -6162,7 +5901,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] @@ -6171,64 +5910,43 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher", + "siphasher 0.3.11", ] [[package]] name = "phf_shared" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", -] - -[[package]] -name = "phonenumber" -version = "0.3.6+8.13.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11756237b57b8cc5e97dc8b1e70ea436324d30e7075de63b14fd15073a8f692a" -dependencies = [ - "bincode", - "either", - "fnv", - "itertools 0.12.1", - "lazy_static", - "nom", - "quick-xml 0.31.0", - "regex", - "regex-cache", - "serde", - "serde_derive", - "strum", - "thiserror 1.0.64", + "siphasher 1.0.1", ] [[package]] name = "pin-project" -version = "1.1.5" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.5" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -6243,7 +5961,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.1", + "fastrand 2.3.0", "futures-io", ] @@ -6270,18 +5988,18 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "plist" -version = "1.7.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" +checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d" dependencies = [ "base64 0.22.1", - "indexmap 2.5.0", + "indexmap 2.9.0", "quick-xml 0.32.0", "serde", "time", @@ -6289,37 +6007,46 @@ dependencies = [ [[package]] name = "png" -version = "0.17.14" +version = "0.17.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52f9d46a34a05a6a57566bc2bfae066ef07585a6e3fa30fbbdff5936380623f0" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" dependencies = [ "bitflags 1.3.2", "crc32fast", "fdeflate", "flate2", - "miniz_oxide 0.8.0", + "miniz_oxide", ] [[package]] name = "polling" -version = "3.7.3" +version = "3.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "concurrent-queue", "hermit-abi 0.4.0", "pin-project-lite", - "rustix", + "rustix 0.38.44", "tracing", "windows-sys 0.59.0", ] [[package]] name = "portable-atomic" -version = "1.9.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" +checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" + +[[package]] +name = "potential_utf" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" +dependencies = [ + "zerovec", +] [[package]] name = "powerfmt" @@ -6344,9 +6071,9 @@ dependencies = [ [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ "zerocopy", ] @@ -6364,11 +6091,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" dependencies = [ "csv", - "encode_unicode 1.0.0", + "encode_unicode", "is-terminal", "lazy_static", "term", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -6401,11 +6128,11 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" +checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" dependencies = [ - "toml_edit 0.22.22", + "toml_edit 0.22.26", ] [[package]] @@ -6432,6 +6159,28 @@ dependencies = [ "version_check", ] +[[package]] +name = "proc-macro-error-attr2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" +dependencies = [ + "proc-macro2", + "quote", +] + +[[package]] +name = "proc-macro-error2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" +dependencies = [ + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.101", +] + [[package]] name = "proc-macro-hack" version = "0.5.20+deprecated" @@ -6440,51 +6189,69 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.92" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" dependencies = [ "unicode-ident", ] [[package]] name = "procfs" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" +checksum = "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "hex", - "lazy_static", "procfs-core", - "rustix", + "rustix 0.38.44", ] [[package]] name = "procfs-core" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" +checksum = "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "hex", ] [[package]] -name = "prometheus" -version = "0.13.4" +name = "profiling" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" +checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d" dependencies = [ - "cfg-if 1.0.0", + "profiling-procmacros", +] + +[[package]] +name = "profiling-procmacros" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" +dependencies = [ + "quote", + "syn 2.0.101", +] + +[[package]] +name = "prometheus" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" +dependencies = [ + "cfg-if", "fnv", "lazy_static", "libc", "memchr", - "parking_lot 0.12.3", + "parking_lot", "procfs", "protobuf", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] @@ -6493,7 +6260,7 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "bytes 1.7.2", + "bytes", "prost-derive", ] @@ -6504,10 +6271,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -6521,15 +6288,35 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.28.0" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" +dependencies = [ + "once_cell", + "protobuf-support", + "thiserror 1.0.69", +] + +[[package]] +name = "protobuf-support" +version = "3.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" +dependencies = [ + "thiserror 1.0.69", +] + +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "psm" -version = "0.1.23" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205" +checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f" dependencies = [ "cc", ] @@ -6554,6 +6341,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "publicsuffix" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" +dependencies = [ + "idna", + "psl-types", +] + [[package]] name = "qoi" version = "0.4.1" @@ -6564,18 +6361,28 @@ dependencies = [ ] [[package]] -name = "quanta" -version = "0.12.3" +name = "quartz_nbt" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +checksum = "daf389329ba2dad9c6d898b7955a64e58c89dd52d04f4e2753b9d86eb5f49821" dependencies = [ - "crossbeam-utils 0.8.20", - "libc", - "once_cell", - "raw-cpuid", - "wasi 0.11.0+wasi-snapshot-preview1", - "web-sys", - "winapi 0.3.9", + "anyhow", + "byteorder", + "cesu8", + "flate2", + "quartz_nbt_macros", + "serde", +] + +[[package]] +name = "quartz_nbt_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "289baa0c8a4d1f840d2de528a7f8c29e0e9af48b3018172b3edad4f716e8daed" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -6586,9 +6393,9 @@ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" [[package]] name = "quick-xml" -version = "0.26.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" +checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" dependencies = [ "memchr", "serde", @@ -6596,81 +6403,62 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.31.0" +version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" -dependencies = [ - "memchr", -] - -[[package]] -name = "quick-xml" -version = "0.32.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" -dependencies = [ - "memchr", -] - -[[package]] -name = "quick-xml" -version = "0.36.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" -dependencies = [ - "memchr", -] - -[[package]] -name = "quick-xml" -version = "0.37.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" +checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" dependencies = [ "memchr", + "tokio", ] [[package]] name = "quinn" -version = "0.11.5" +version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" +checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" dependencies = [ - "bytes 1.7.2", + "bytes", + "cfg_aliases", "pin-project-lite", "quinn-proto", "quinn-udp", "rustc-hash", - "rustls 0.23.13", + "rustls 0.23.27", "socket2", - "thiserror 1.0.64", - "tokio 1.42.0", + "thiserror 2.0.12", + "tokio", "tracing", + "web-time", ] [[package]] name = "quinn-proto" -version = "0.11.8" +version = "0.11.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" +checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" dependencies = [ - "bytes 1.7.2", - "rand 0.8.5", - "ring 0.17.8", + "bytes", + "getrandom 0.3.3", + "lru-slab", + "rand 0.9.1", + "ring", "rustc-hash", - "rustls 0.23.13", + "rustls 0.23.27", + "rustls-pki-types", "slab", - "thiserror 1.0.64", + "thiserror 2.0.12", "tinyvec", "tracing", + "web-time", ] [[package]] name = "quinn-udp" -version = "0.5.5" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" +checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" dependencies = [ + "cfg_aliases", "libc", "once_cell", "socket2", @@ -6680,9 +6468,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] @@ -6693,6 +6481,12 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "640c9bd8497b02465aeef5375144c26062e0dcd5939dfcbb0f5db76cb8c17c73" +[[package]] +name = "r-efi" +version = "5.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" + [[package]] name = "r2d2" version = "0.8.10" @@ -6700,7 +6494,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93" dependencies = [ "log", - "parking_lot 0.12.3", + "parking_lot", "scheduled-thread-pool", ] @@ -6735,6 +6529,16 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", +] + [[package]] name = "rand_chacha" version = "0.2.2" @@ -6755,6 +6559,16 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.3", +] + [[package]] name = "rand_core" version = "0.5.1" @@ -6770,7 +6584,16 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.16", +] + +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.3", ] [[package]] @@ -6792,19 +6615,54 @@ dependencies = [ ] [[package]] -name = "raw-cpuid" -version = "11.2.0" +name = "rav1e" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0" +checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" dependencies = [ - "bitflags 2.6.0", + "arbitrary", + "arg_enum_proc_macro", + "arrayvec", + "av1-grain", + "bitstream-io", + "built", + "cfg-if", + "interpolate_name", + "itertools 0.12.1", + "libc", + "libfuzzer-sys", + "log", + "maybe-rayon", + "new_debug_unreachable", + "noop_proc_macro", + "num-derive", + "num-traits", + "once_cell", + "paste", + "profiling", + "rand 0.8.5", + "rand_chacha 0.3.1", + "simd_helpers", + "system-deps", + "thiserror 1.0.69", + "v_frame", + "wasm-bindgen", ] [[package]] -name = "raw-window-handle" -version = "0.5.2" +name = "ravif" +version = "0.11.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" +checksum = "d6a5f31fcf7500f9401fea858ea4ab5525c99f2322cfcee732c0e6c74208c0c6" +dependencies = [ + "avif-serialize", + "imgref", + "loop9", + "quick-error", + "rav1e", + "rayon", + "rgb", +] [[package]] name = "raw-window-handle" @@ -6828,23 +6686,22 @@ version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" dependencies = [ - "crossbeam-deque 0.8.5", - "crossbeam-utils 0.8.20", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] name = "redis" -version = "0.27.5" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cccf17a692ce51b86564334614d72dcae1def0fd5ecebc9f02956da74352b5" +checksum = "0bc1ea653e0b2e097db3ebb5b7f678be339620b8041f66b30a308c1d45d36a7f" dependencies = [ - "ahash 0.8.11", - "arc-swap", - "async-trait", - "bytes 1.7.2", + "ahash 0.8.12", + "bytes", + "cfg-if", "combine", "futures-util", - "itoa 1.0.11", + "itoa", "num-bigint", "percent-encoding", "pin-project-lite", @@ -6852,24 +6709,18 @@ dependencies = [ "ryu", "sha1_smol", "socket2", - "tokio 1.42.0", + "tokio", "tokio-util", "url", ] [[package]] name = "redox_syscall" -version = "0.1.57" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" - -[[package]] -name = "redox_syscall" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b" +checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", ] [[package]] @@ -6878,20 +6729,51 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.16", "libredox", - "thiserror 1.0.64", + "thiserror 1.0.69", +] + +[[package]] +name = "redox_users" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror 2.0.12", +] + +[[package]] +name = "ref-cast" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.101", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.8", + "regex-automata 0.4.9", "regex-syntax 0.8.5", ] @@ -6906,27 +6788,15 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", "regex-syntax 0.8.5", ] -[[package]] -name = "regex-cache" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f7b62d69743b8b94f353b6b7c3deb4c5582828328bcb8d5fedf214373808793" -dependencies = [ - "lru-cache", - "oncemutex", - "regex", - "regex-syntax 0.6.29", -] - [[package]] name = "regex-lite" version = "0.1.6" @@ -6955,105 +6825,67 @@ dependencies = [ ] [[package]] -name = "reqwest" -version = "0.11.27" +name = "replace_with" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" -dependencies = [ - "base64 0.21.7", - "bytes 1.7.2", - "encoding_rs", - "futures-core", - "futures-util", - "h2 0.3.26", - "http 0.2.12", - "http-body 0.4.6", - "hyper 0.14.31", - "hyper-rustls 0.24.2", - "hyper-tls 0.5.0", - "ipnet", - "js-sys", - "log", - "mime", - "mime_guess", - "native-tls", - "once_cell", - "percent-encoding", - "pin-project-lite", - "rustls 0.21.12", - "rustls-pemfile 1.0.4", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper 0.1.2", - "system-configuration 0.5.1", - "tokio 1.42.0", - "tokio-native-tls", - "tokio-rustls 0.24.1", - "tokio-util", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots 0.25.4", - "winreg 0.50.0", -] +checksum = "e3a8614ee435691de62bcffcf4a66d91b3594bf1428a5722e79103249a095690" [[package]] name = "reqwest" -version = "0.12.7" +version = "0.12.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" +checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813" dependencies = [ "async-compression", "base64 0.22.1", - "bytes 1.7.2", + "bytes", + "cookie 0.18.1", + "cookie_store", "encoding_rs", "futures-channel", "futures-core", "futures-util", - "h2 0.4.6", - "http 1.1.0", + "h2 0.4.10", + "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper 1.4.1", - "hyper-rustls 0.27.3", - "hyper-tls 0.6.0", + "hyper 1.6.0", + "hyper-rustls 0.27.5", "hyper-util", - "ipnet", "js-sys", "log", "mime", - "native-tls", - "once_cell", + "mime_guess", "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.13", - "rustls-native-certs 0.7.3", - "rustls-pemfile 2.1.3", + "rustls 0.23.27", + "rustls-native-certs 0.8.1", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.1", - "system-configuration 0.6.1", - "tokio 1.42.0", - "tokio-native-tls", - "tokio-rustls 0.26.0", + "sync_wrapper", + "tokio", + "tokio-rustls 0.26.2", "tokio-util", + "tower 0.5.2", + "tower-http", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots 0.26.6", - "windows-registry 0.2.0", + "webpki-roots 1.0.0", ] +[[package]] +name = "resolv-conf" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" + [[package]] name = "result" version = "1.0.0" @@ -7066,31 +6898,33 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac 0.12.1", + "hmac", "subtle", ] [[package]] name = "rfd" -version = "0.15.1" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f6f80a9b882647d9014673ca9925d30ffc9750f2eed2b4490e189eaebd01e8" +checksum = "80c844748fdc82aae252ee4594a89b6e7ebef1063de7951545564cbc4e57075d" dependencies = [ "ashpd", - "block2", + "block2 0.6.1", + "dispatch2 0.2.0", "glib-sys", "gobject-sys", "gtk-sys", "js-sys", "log", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", - "raw-window-handle 0.6.2", + "objc2-core-foundation", + "objc2-foundation 0.3.1", + "raw-window-handle", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -7104,31 +6938,15 @@ dependencies = [ [[package]] name = "ring" -version = "0.16.20" +version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", + "cfg-if", + "getrandom 0.2.16", "libc", - "once_cell", - "spin 0.5.2", - "untrusted 0.7.1", - "web-sys", - "winapi 0.3.9", -] - -[[package]] -name = "ring" -version = "0.17.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" -dependencies = [ - "cc", - "cfg-if 1.0.0", - "getrandom 0.2.15", - "libc", - "spin 0.9.8", - "untrusted 0.9.0", + "untrusted", "windows-sys 0.52.0", ] @@ -7140,14 +6958,14 @@ checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" dependencies = [ "bitvec", "bytecheck", - "bytes 1.7.2", + "bytes", "hashbrown 0.12.3", "ptr_meta", "rend", "rkyv_derive", "seahash", "tinyvec", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] @@ -7163,12 +6981,12 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.6" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" dependencies = [ "const-oid", - "digest 0.10.7", + "digest", "num-bigint-dig", "num-integer", "num-traits", @@ -7181,69 +6999,64 @@ dependencies = [ "zeroize", ] -[[package]] -name = "rust-ini" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" -dependencies = [ - "cfg-if 1.0.0", - "ordered-multimap 0.4.3", -] - [[package]] name = "rust-ini" version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f" dependencies = [ - "cfg-if 1.0.0", - "ordered-multimap 0.7.3", + "cfg-if", + "ordered-multimap", "trim-in-place", ] [[package]] name = "rust-s3" -version = "0.33.0" +version = "0.35.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b2ac5ff6acfbe74226fa701b5ef793aaa054055c13ebb7060ad36942956e027" +checksum = "c3df3f353b1f4209dcf437d777cda90279c397ab15a0cd6fd06bd32c88591533" dependencies = [ "async-trait", "aws-creds", "aws-region", - "base64 0.13.1", - "bytes 1.7.2", - "cfg-if 1.0.0", - "futures 0.3.30", + "base64 0.22.1", + "bytes", + "cfg-if", + "futures", "hex", - "hmac 0.12.1", + "hmac", "http 0.2.12", + "hyper 0.14.32", + "hyper-rustls 0.24.2", "log", "maybe-async", "md5", "minidom", "percent-encoding", - "quick-xml 0.26.0", - "reqwest 0.11.27", + "quick-xml 0.32.0", + "rustls 0.21.12", + "rustls-native-certs 0.6.3", "serde", "serde_derive", - "sha2 0.10.8", - "thiserror 1.0.64", + "serde_json", + "sha2", + "thiserror 1.0.69", "time", - "tokio 1.42.0", + "tokio", + "tokio-rustls 0.24.1", "tokio-stream", "url", ] [[package]] name = "rust_decimal" -version = "1.36.0" +version = "1.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" +checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d" dependencies = [ "arrayvec", "borsh", - "bytes 1.7.2", + "bytes", "num-traits", "rand 0.8.5", "rkyv", @@ -7253,22 +7066,22 @@ dependencies = [ [[package]] name = "rust_decimal_macros" -version = "1.36.0" +version = "1.37.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da991f231869f34268415a49724c6578e740ad697ba0999199d6f22b3949332c" +checksum = "f6268b74858287e1a062271b988a0c534bf85bbeb567fe09331bf40ed78113d5" dependencies = [ "quote", - "rust_decimal", + "syn 2.0.101", ] [[package]] name = "rust_iso3166" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd3126eab517ef8ca4761a366cb0d55e1bf5ab9c7b7f18301d712a57de000a90" +checksum = "df0d3a0089ee08071ea1baaba83f2265c97f7646c53c3f92b205eb2cdaab72b1" dependencies = [ "js-sys", - "phf 0.11.2", + "phf 0.11.3", "prettytable-rs", "wasm-bindgen", ] @@ -7281,18 +7094,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" - -[[package]] -name = "rustc_version" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -dependencies = [ - "semver 0.9.0", -] +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" [[package]] name = "rustc_version" @@ -7300,32 +7104,33 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.23", + "semver", ] [[package]] name = "rustix" -version = "0.38.37" +version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "errno", "libc", - "linux-raw-sys", - "windows-sys 0.52.0", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] -name = "rustls" -version = "0.20.9" +name = "rustix" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" +checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" dependencies = [ - "log", - "ring 0.16.20", - "sct", - "webpki", + "bitflags 2.9.1", + "errno", + "libc", + "linux-raw-sys 0.9.4", + "windows-sys 0.59.0", ] [[package]] @@ -7335,36 +7140,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.8", + "ring", "rustls-webpki 0.101.7", "sct", ] [[package]] name = "rustls" -version = "0.22.4" +version = "0.23.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" -dependencies = [ - "log", - "ring 0.17.8", - "rustls-pki-types", - "rustls-webpki 0.102.8", - "subtle", - "zeroize", -] - -[[package]] -name = "rustls" -version = "0.23.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8" +checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" dependencies = [ "log", "once_cell", - "ring 0.17.8", + "ring", "rustls-pki-types", - "rustls-webpki 0.102.8", + "rustls-webpki 0.103.3", "subtle", "zeroize", ] @@ -7378,33 +7169,19 @@ dependencies = [ "openssl-probe", "rustls-pemfile 1.0.4", "schannel", - "security-framework", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.7.3" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.3", "rustls-pki-types", "schannel", - "security-framework", -] - -[[package]] -name = "rustls-native-certs" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" -dependencies = [ - "openssl-probe", - "rustls-pemfile 2.1.3", - "rustls-pki-types", - "schannel", - "security-framework", + "security-framework 3.2.0", ] [[package]] @@ -7418,19 +7195,22 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.3" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.9.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55" +checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +dependencies = [ + "web-time", + "zeroize", +] [[package]] name = "rustls-webpki" @@ -7438,26 +7218,26 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "ring", + "untrusted", ] [[package]] name = "rustls-webpki" -version = "0.102.8" +version = "0.103.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" +checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" dependencies = [ - "ring 0.17.8", + "ring", "rustls-pki-types", - "untrusted 0.9.0", + "untrusted", ] [[package]] name = "rustversion" -version = "1.0.18" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" +checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" [[package]] name = "rusty-money" @@ -7475,7 +7255,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a98f186c7a2f3abbffb802984b7f1dfd65dac8be1aafdaabbca4137f53f0dff7" dependencies = [ - "bytes 1.7.2", + "bytes", "rxml_validation", "smartstring", ] @@ -7488,9 +7268,9 @@ checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530" [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "same-file" @@ -7503,9 +7283,9 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.24" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ "windows-sys 0.59.0", ] @@ -7516,14 +7296,14 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" dependencies = [ - "parking_lot 0.12.3", + "parking_lot", ] [[package]] name = "schemars" -version = "0.8.21" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" dependencies = [ "dyn-clone", "indexmap 1.9.3", @@ -7531,19 +7311,31 @@ dependencies = [ "serde", "serde_json", "url", - "uuid 1.12.0", + "uuid 1.17.0", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] name = "schemars_derive" -version = "0.8.21" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" dependencies = [ "proc-macro2", "quote", - "serde_derive_internals 0.29.1", - "syn 2.0.90", + "serde_derive_internals", + "syn 2.0.101", ] [[package]] @@ -7564,8 +7356,8 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "ring", + "untrusted", ] [[package]] @@ -7576,14 +7368,13 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" [[package]] name = "sealed" -version = "0.4.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b5e421024b5e5edfbaa8e60ecf90bda9dbffc602dbb230e6028763f85f0c68c" +checksum = "22f968c5ea23d555e670b449c1c5e7b2fc399fdaec1d304a17cd48e288abc107" dependencies = [ - "heck 0.3.3", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.101", ] [[package]] @@ -7606,7 +7397,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -7614,10 +7405,23 @@ dependencies = [ ] [[package]] -name = "security-framework-sys" -version = "2.12.0" +name = "security-framework" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" +checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" +dependencies = [ + "bitflags 2.9.1", + "core-foundation 0.10.0", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" dependencies = [ "core-foundation-sys", "libc", @@ -7625,113 +7429,95 @@ dependencies = [ [[package]] name = "selectors" -version = "0.22.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" dependencies = [ "bitflags 1.3.2", "cssparser", - "derive_more", + "derive_more 0.99.20", "fxhash", "log", - "matches", "phf 0.8.0", "phf_codegen 0.8.0", "precomputed-hash", "servo_arc", - "smallvec 1.13.2", - "thin-slice", + "smallvec", ] [[package]] name = "semver" -version = "0.9.0" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -dependencies = [ - "semver-parser", -] - -[[package]] -name = "semver" -version = "1.0.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" dependencies = [ "serde", ] -[[package]] -name = "semver-parser" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" - [[package]] name = "sentry" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5484316556650182f03b43d4c746ce0e3e48074a21e2f51244b648b6542e1066" +checksum = "507ac2be9bf2da56c831da57faf1dadd81f434bd282935cdb06193d0c94e8811" dependencies = [ "httpdate", - "reqwest 0.12.7", - "rustls 0.22.4", + "reqwest", + "rustls 0.23.27", "sentry-backtrace", "sentry-contexts", "sentry-core", "sentry-debug-images", "sentry-panic", "sentry-tracing", - "tokio 1.42.0", + "tokio", "ureq", - "webpki-roots 0.26.6", ] [[package]] name = "sentry-actix" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e461c7d3a46d298b5ffc66127c1f16454dd11d3d89fcfb21023cd499d82b9a78" +checksum = "8402c142005ee560ae361c73ebece13a299ec3e9cce5b8654479ea9aac8dc8df" dependencies = [ + "actix-http", "actix-web", + "bytes", "futures-util", "sentry-core", ] [[package]] name = "sentry-backtrace" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40aa225bb41e2ec9d7c90886834367f560efc1af028f1c5478a6cce6a59c463a" +checksum = "eb4416302fa5325181a120e0fe7d4afd83cd95e52a9b86afa34a8161383fe0dc" dependencies = [ "backtrace", - "once_cell", "regex", "sentry-core", ] [[package]] name = "sentry-contexts" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a8dd746da3d16cb8c39751619cefd4fcdbd6df9610f3310fd646b55f6e39910" +checksum = "936752f42b6f651dcb257da0bfa235ecc79e82011c49ed3383c212cc582263ff" dependencies = [ "hostname", "libc", "os_info", - "rustc_version 0.4.1", + "rustc_version", "sentry-core", "uname", ] [[package]] name = "sentry-core" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "161283cfe8e99c8f6f236a402b9ccf726b201f365988b5bb637ebca0abbd4a30" +checksum = "00e9bd2cadaeda3af41e9fa5d14645127d6f6a4aec73da3ae38e477ecafd3682" dependencies = [ - "once_cell", - "rand 0.8.5", + "rand 0.9.1", "sentry-types", "serde", "serde_json", @@ -7739,20 +7525,19 @@ dependencies = [ [[package]] name = "sentry-debug-images" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc6b25e945fcaa5e97c43faee0267eebda9f18d4b09a251775d8fef1086238a" +checksum = "e1e074fe9a0970c91999b23ed3195e6e30990d589fba3a68f20a1686af0f5cda" dependencies = [ "findshlibs", - "once_cell", "sentry-core", ] [[package]] name = "sentry-panic" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc74f229c7186dd971a9491ffcbe7883544aa064d1589bd30b83fb856cd22d63" +checksum = "4651d34f3ba649d9e6dc1268443cae6728b8f741c2f0264004f8ecf5b247330d" dependencies = [ "sentry-backtrace", "sentry-core", @@ -7760,10 +7545,11 @@ dependencies = [ [[package]] name = "sentry-tracing" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd3c5faf2103cd01eeda779ea439b68c4ee15adcdb16600836e97feafab362ec" +checksum = "c25c47d36bc80c74d26d568ffe970c37b337c061b7234ad6f2d159439c16f000" dependencies = [ + "bitflags 2.9.1", "sentry-backtrace", "sentry-core", "tracing-core", @@ -7772,35 +7558,35 @@ dependencies = [ [[package]] name = "sentry-types" -version = "0.34.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d68cdf6bc41b8ff3ae2a9c4671e97426dcdd154cc1d4b6b72813f285d6b163f" +checksum = "a08e7154abe2cd557f26fd70038452810748aefdf39bc973f674421224b147c1" dependencies = [ "debugid", "hex", - "rand 0.8.5", + "rand 0.9.1", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 2.0.12", "time", "url", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] name = "serde" -version = "1.0.210" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] [[package]] name = "serde-untagged" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2676ba99bd82f75cae5cbd2c8eda6fa0b8760f18978ea840e980dd5567b5c5b6" +checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" dependencies = [ "erased-serde", "serde", @@ -7809,21 +7595,21 @@ dependencies = [ [[package]] name = "serde-xml-rs" -version = "0.6.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782" +checksum = "53630160a98edebde0123eb4dfd0fce6adff091b2305db3154a9e920206eb510" dependencies = [ "log", "serde", - "thiserror 1.0.64", + "thiserror 1.0.69", "xml-rs", ] [[package]] name = "serde_bytes" -version = "0.11.15" +version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" dependencies = [ "serde", ] @@ -7840,24 +7626,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.210" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", -] - -[[package]] -name = "serde_derive_internals" -version = "0.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "syn 2.0.101", ] [[package]] @@ -7868,7 +7643,7 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -7884,11 +7659,11 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ - "itoa 1.0.11", + "itoa", "memchr", "ryu", "serde", @@ -7896,11 +7671,11 @@ dependencies = [ [[package]] name = "serde_path_to_error" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" +checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" dependencies = [ - "itoa 1.0.11", + "itoa", "serde", ] @@ -7921,7 +7696,7 @@ checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" dependencies = [ "percent-encoding", "serde", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -7932,18 +7707,18 @@ checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa" dependencies = [ "percent-encoding", "serde", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "serde_repr" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -7964,7 +7739,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -7974,22 +7749,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ "form_urlencoded", - "itoa 1.0.11", + "itoa", "ryu", "serde", ] [[package]] name = "serde_with" -version = "3.9.0" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" +checksum = "bf65a400f8f66fb7b0552869ad70157166676db75ed8181f8104ea91cf9d0b42" dependencies = [ "base64 0.22.1", "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.5.0", + "indexmap 2.9.0", + "schemars 0.9.0", "serde", "serde_derive", "serde_json", @@ -7999,14 +7775,14 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.9.0" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" +checksum = "81679d9ed988d5e9a5e6531dc3f2c28efbd639cbd1dfb628df08edea6004da77" dependencies = [ - "darling 0.20.10", + "darling", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -8033,32 +7809,23 @@ dependencies = [ [[package]] name = "servo_arc" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" dependencies = [ "nodrop", "stable_deref_trait", ] -[[package]] -name = "sha1" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" -dependencies = [ - "sha1_smol", -] - [[package]] name = "sha1" version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", - "digest 0.10.7", + "digest", ] [[package]] @@ -8069,26 +7836,13 @@ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" [[package]] name = "sha2" -version = "0.9.9" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "block-buffer 0.9.0", - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", - "digest 0.9.0", - "opaque-debug", -] - -[[package]] -name = "sha2" -version = "0.10.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" -dependencies = [ - "cfg-if 1.0.0", - "cpufeatures", - "digest 0.10.7", + "digest", ] [[package]] @@ -8108,9 +7862,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" dependencies = [ "libc", ] @@ -8121,7 +7875,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "digest 0.10.7", + "digest", "rand_core 0.6.4", ] @@ -8131,6 +7885,15 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" +[[package]] +name = "simd_helpers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" +dependencies = [ + "quote", +] + [[package]] name = "simdutf8" version = "0.1.5" @@ -8143,6 +7906,12 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" version = "0.4.9" @@ -8154,18 +7923,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "0.6.14" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" -dependencies = [ - "maybe-uninit", -] - -[[package]] -name = "smallvec" -version = "1.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" dependencies = [ "serde", ] @@ -8203,9 +7963,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.7" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" dependencies = [ "libc", "windows-sys 0.52.0", @@ -8219,15 +7979,15 @@ checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" dependencies = [ "bytemuck", "cfg_aliases", - "core-graphics 0.24.0", + "core-graphics", "foreign-types 0.5.0", "js-sys", "log", - "objc2", - "objc2-foundation", - "objc2-quartz-core", - "raw-window-handle 0.6.2", - "redox_syscall 0.5.6", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-quartz-core 0.2.2", + "raw-window-handle", + "redox_syscall", "wasm-bindgen", "web-sys", "windows-sys 0.59.0", @@ -8261,35 +8021,20 @@ dependencies = [ [[package]] name = "spdx" -version = "0.10.6" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47317bbaf63785b53861e1ae2d11b80d6b624211d42cb20efcd210ee6f8a14bc" +checksum = "58b69356da67e2fc1f542c71ea7e654a361a79c938e4424392ecf4fa065d2193" dependencies = [ - "smallvec 1.13.2", + "smallvec", ] -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - [[package]] name = "spin" version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ - "lock_api 0.4.12", -] - -[[package]] -name = "spinning_top" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" -dependencies = [ - "lock_api 0.4.12", + "lock_api", ] [[package]] @@ -8302,21 +8047,11 @@ dependencies = [ "der", ] -[[package]] -name = "sqlformat" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" -dependencies = [ - "nom", - "unicode_categories", -] - [[package]] name = "sqlx" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e" +checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" dependencies = [ "sqlx-core", "sqlx-macros", @@ -8327,66 +8062,61 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e" +checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" dependencies = [ - "atoi", - "byteorder", - "bytes 1.7.2", + "base64 0.22.1", + "bytes", "chrono", "crc", - "crossbeam-queue 0.3.11", + "crossbeam-queue", "either", - "event-listener 5.3.1", - "futures-channel", + "event-listener 5.4.0", "futures-core", "futures-intrusive", "futures-io", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.3", "hashlink", - "hex", - "indexmap 2.5.0", + "indexmap 2.9.0", "log", "memchr", "once_cell", - "paste", "percent-encoding", "rust_decimal", - "rustls 0.23.13", - "rustls-pemfile 2.1.3", + "rustls 0.23.27", "serde", "serde_json", - "sha2 0.10.8", - "smallvec 1.13.2", - "sqlformat", - "thiserror 1.0.64", - "tokio 1.42.0", + "sha2", + "smallvec", + "thiserror 2.0.12", + "tokio", "tokio-stream", "tracing", "url", - "webpki-roots 0.26.6", + "uuid 1.17.0", + "webpki-roots 0.26.11", ] [[package]] name = "sqlx-macros" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657" +checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" dependencies = [ "proc-macro2", "quote", "sqlx-core", "sqlx-macros-core", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "sqlx-macros-core" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5" +checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" dependencies = [ "dotenvy", "either", @@ -8397,31 +8127,30 @@ dependencies = [ "quote", "serde", "serde_json", - "sha2 0.10.8", + "sha2", "sqlx-core", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", - "syn 2.0.90", - "tempfile", - "tokio 1.42.0", + "syn 2.0.101", + "tokio", "url", ] [[package]] name = "sqlx-mysql" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a" +checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" dependencies = [ "atoi", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.9.1", "byteorder", - "bytes 1.7.2", + "bytes", "chrono", "crc", - "digest 0.10.7", + "digest", "dotenvy", "either", "futures-channel", @@ -8431,8 +8160,8 @@ dependencies = [ "generic-array", "hex", "hkdf", - "hmac 0.12.1", - "itoa 1.0.11", + "hmac", + "itoa", "log", "md-5", "memchr", @@ -8442,25 +8171,26 @@ dependencies = [ "rsa", "rust_decimal", "serde", - "sha1 0.10.6", - "sha2 0.10.8", - "smallvec 1.13.2", + "sha1", + "sha2", + "smallvec", "sqlx-core", "stringprep", - "thiserror 1.0.64", + "thiserror 2.0.12", "tracing", + "uuid 1.17.0", "whoami", ] [[package]] name = "sqlx-postgres" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8" +checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" dependencies = [ "atoi", "base64 0.22.1", - "bitflags 2.6.0", + "bitflags 2.9.1", "byteorder", "chrono", "crc", @@ -8468,13 +8198,12 @@ dependencies = [ "etcetera", "futures-channel", "futures-core", - "futures-io", "futures-util", "hex", "hkdf", - "hmac 0.12.1", + "hmac", "home", - "itoa 1.0.11", + "itoa", "log", "md-5", "memchr", @@ -8483,20 +8212,21 @@ dependencies = [ "rust_decimal", "serde", "serde_json", - "sha2 0.10.8", - "smallvec 1.13.2", + "sha2", + "smallvec", "sqlx-core", "stringprep", - "thiserror 1.0.64", + "thiserror 2.0.12", "tracing", + "uuid 1.17.0", "whoami", ] [[package]] name = "sqlx-sqlite" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680" +checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" dependencies = [ "atoi", "chrono", @@ -8512,8 +8242,10 @@ dependencies = [ "serde", "serde_urlencoded", "sqlx-core", + "thiserror 2.0.12", "tracing", "url", + "uuid 1.17.0", ] [[package]] @@ -8524,12 +8256,12 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.17" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" +checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b" dependencies = [ "cc", - "cfg-if 1.0.0", + "cfg-if", "libc", "psm", "windows-sys 0.59.0", @@ -8555,26 +8287,25 @@ checksum = "7a8348af2d9fc3258c8733b8d9d8db2e56f54b2363a4b5b81585c7875ed65e65" [[package]] name = "string_cache" -version = "0.8.7" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" dependencies = [ "new_debug_unreachable", - "once_cell", - "parking_lot 0.12.3", - "phf_shared 0.10.0", + "parking_lot", + "phf_shared 0.11.3", "precomputed-hash", "serde", ] [[package]] name = "string_cache_codegen" -version = "0.5.2" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", + "phf_generator 0.11.3", + "phf_shared 0.11.3", "proc-macro2", "quote", ] @@ -8590,12 +8321,6 @@ dependencies = [ "unicode-properties", ] -[[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - [[package]] name = "strsim" version = "0.11.1" @@ -8611,7 +8336,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -8622,29 +8347,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", -] - -[[package]] -name = "strum" -version = "0.26.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" -dependencies = [ - "strum_macros", -] - -[[package]] -name = "strum_macros" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" -dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -8677,96 +8380,56 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.90" +version = "2.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" +checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] -[[package]] -name = "syn_derive" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" -dependencies = [ - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.90", -] - [[package]] name = "sync_wrapper" -version = "0.1.2" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" - -[[package]] -name = "sync_wrapper" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] [[package]] name = "synstructure" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", -] - -[[package]] -name = "sys-info" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c" -dependencies = [ - "cc", - "libc", + "syn 2.0.101", ] [[package]] name = "sys-locale" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" +checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4" dependencies = [ "libc", ] [[package]] name = "sysinfo" -version = "0.30.13" +version = "0.35.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" +checksum = "3c3ffa3e4ff2b324a57f7aeb3c349656c7b127c3c189520251a648102a92496e" dependencies = [ - "cfg-if 1.0.0", - "core-foundation-sys", "libc", + "memchr", "ntapi", - "once_cell", - "rayon", - "windows 0.52.0", -] - -[[package]] -name = "system-configuration" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" -dependencies = [ - "bitflags 1.3.2", - "core-foundation 0.9.4", - "system-configuration-sys 0.5.0", + "objc2-core-foundation", + "objc2-io-kit", + "windows", ] [[package]] @@ -8775,19 +8438,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "core-foundation 0.9.4", - "system-configuration-sys 0.6.0", -] - -[[package]] -name = "system-configuration-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" -dependencies = [ - "core-foundation-sys", - "libc", + "system-configuration-sys", ] [[package]] @@ -8809,20 +8462,25 @@ dependencies = [ "cfg-expr", "heck 0.5.0", "pkg-config", - "toml 0.8.19", + "toml", "version-compare", ] [[package]] -name = "tao" -version = "0.30.8" +name = "tagptr" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6682a07cf5bab0b8a2bd20d0a542917ab928b5edb75ebd4eda6b05cbaab872da" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + +[[package]] +name = "tao" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a" dependencies = [ - "bitflags 2.6.0", - "cocoa 0.26.0", + "bitflags 2.9.1", "core-foundation 0.10.0", - "core-graphics 0.24.0", + "core-graphics", "crossbeam-channel", "dispatch", "dlopen2", @@ -8830,7 +8488,6 @@ dependencies = [ "gdkwayland-sys", "gdkx11-sys", "gtk", - "instant", "jni", "lazy_static", "libc", @@ -8838,16 +8495,18 @@ dependencies = [ "ndk", "ndk-context", "ndk-sys", - "objc", + "objc2 0.6.1", + "objc2-app-kit", + "objc2-foundation 0.3.1", "once_cell", - "parking_lot 0.12.3", - "raw-window-handle 0.6.2", + "parking_lot", + "raw-window-handle", "scopeguard", "tao-macros", "unicode-segmentation", "url", - "windows 0.58.0", - "windows-core 0.58.0", + "windows", + "windows-core", "windows-version", "x11-dl", ] @@ -8860,7 +8519,7 @@ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -8871,9 +8530,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.42" +version = "0.4.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" +checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" dependencies = [ "filetime", "libc", @@ -8888,34 +8547,34 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri" -version = "2.1.1" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e545de0a2dfe296fa67db208266cd397c5a55ae782da77973ef4c4fac90e9f2c" +checksum = "773663ec28d911ac02f3a478c55f7f2fa581368d9e16ce9dff8d650b3666f91e" dependencies = [ "anyhow", - "bytes 1.7.2", - "dirs 5.0.1", + "bytes", + "dirs", "dunce", "embed_plist", - "futures-util", - "getrandom 0.2.15", + "getrandom 0.3.3", "glob", "gtk", "heck 0.5.0", - "http 1.1.0", + "http 1.3.1", "http-range", "jni", "libc", "log", "mime", "muda", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", + "objc2-foundation 0.3.1", + "objc2-ui-kit", "percent-encoding", "plist", - "raw-window-handle 0.6.2", - "reqwest 0.12.7", + "raw-window-handle", + "reqwest", "serde", "serde_json", "serde_repr", @@ -8926,187 +8585,210 @@ dependencies = [ "tauri-runtime", "tauri-runtime-wry", "tauri-utils", - "thiserror 2.0.7", - "tokio 1.42.0", + "thiserror 2.0.12", + "tokio", "tray-icon", "url", "urlpattern", "webkit2gtk", "webview2-com", "window-vibrancy", - "windows 0.58.0", + "windows", ] [[package]] name = "tauri-build" -version = "2.0.3" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd2a4bcfaf5fb9f4be72520eefcb61ae565038f8ccba2a497d8c28f463b8c01" +checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83" dependencies = [ "anyhow", "cargo_toml", - "dirs 5.0.1", + "dirs", "glob", "heck 0.5.0", - "json-patch", + "json-patch 3.0.1", "quote", - "schemars", - "semver 1.0.23", + "schemars 0.8.22", + "semver", "serde", "serde_json", "tauri-codegen", "tauri-utils", "tauri-winres", - "toml 0.8.19", + "toml", "walkdir", ] [[package]] name = "tauri-codegen" -version = "2.0.3" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf79faeecf301d3e969b1fae977039edb77a4c1f25cc0a961be298b54bff97cf" +checksum = "f5df493a1075a241065bc865ed5ef8d0fbc1e76c7afdc0bf0eccfaa7d4f0e406" dependencies = [ "base64 0.22.1", - "brotli 7.0.0", + "brotli", "ico", - "json-patch", + "json-patch 3.0.1", "plist", "png", "proc-macro2", "quote", - "semver 1.0.23", + "semver", "serde", "serde_json", - "sha2 0.10.8", - "syn 2.0.90", + "sha2", + "syn 2.0.101", "tauri-utils", - "thiserror 2.0.7", + "thiserror 2.0.12", "time", "url", - "uuid 1.12.0", + "uuid 1.17.0", "walkdir", ] [[package]] name = "tauri-macros" -version = "2.0.3" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c52027c8c5afb83166dacddc092ee8fff50772f9646d461d8c33ee887e447a03" +checksum = "f237fbea5866fa5f2a60a21bea807a2d6e0379db070d89c3a10ac0f2d4649bbc" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", "tauri-codegen", "tauri-utils", ] [[package]] name = "tauri-plugin" -version = "2.0.3" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e753f2a30933a9bbf0a202fa47d7cc4a3401f06e8d6dcc53b79aa62954828c79" +checksum = "1d9a0bd00bf1930ad1a604d08b0eb6b2a9c1822686d65d7f4731a7723b8901d3" dependencies = [ "anyhow", "glob", "plist", - "schemars", + "schemars 0.8.22", "serde", "serde_json", "tauri-utils", - "toml 0.8.19", + "toml", "walkdir", ] [[package]] name = "tauri-plugin-deep-link" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35d51ffd286073414d26353bcfc9e83e3cd63f96fa7f7a912f92f2118e5de5a6" +checksum = "ab261eb006db10ab478e3fbb5a4e2692df3f7eb3e28300ee2b64428979167ed0" dependencies = [ "dunce", - "rust-ini 0.21.1", + "rust-ini", "serde", "serde_json", "tauri", "tauri-plugin", "tauri-utils", - "thiserror 2.0.7", + "thiserror 2.0.12", "tracing", "url", - "windows-registry 0.3.0", + "windows-registry", "windows-result", ] [[package]] name = "tauri-plugin-dialog" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b59fd750551b1066744ab956a1cd6b1ea3e1b3763b0b9153ac27a044d596426" +checksum = "1aefb14219b492afb30b12647b5b1247cadd2c0603467310c36e0f7ae1698c28" dependencies = [ "log", - "raw-window-handle 0.6.2", + "raw-window-handle", "rfd", "serde", "serde_json", "tauri", "tauri-plugin", "tauri-plugin-fs", - "thiserror 2.0.7", + "thiserror 2.0.12", "url", ] [[package]] name = "tauri-plugin-fs" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a1edf18000f02903a7c2e5997fb89aca455ecbc0acc15c6535afbb883be223" +checksum = "c341290d31991dbca38b31d412c73dfbdb070bb11536784f19dd2211d13b778f" dependencies = [ "anyhow", "dunce", "glob", "percent-encoding", - "schemars", + "schemars 0.8.22", "serde", "serde_json", "serde_repr", "tauri", "tauri-plugin", "tauri-utils", - "thiserror 2.0.7", - "toml 0.8.19", + "thiserror 2.0.12", + "toml", "url", - "uuid 1.12.0", ] [[package]] -name = "tauri-plugin-opener" -version = "2.2.1" +name = "tauri-plugin-http" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c57f68e88f81a299463b4d1eaf214f7b1be012e6a415b3088eda46a38bb9cef" +checksum = "b0c1a38da944b357ffa23bafd563b1579f18e6fbd118fcd84769406d35dcc5c7" dependencies = [ - "dunce", - "glob", - "objc2-app-kit", - "objc2-foundation", - "open", - "schemars", + "bytes", + "cookie_store", + "data-url", + "http 1.3.1", + "regex", + "reqwest", + "schemars 0.8.22", "serde", "serde_json", "tauri", "tauri-plugin", - "thiserror 2.0.7", + "tauri-plugin-fs", + "thiserror 2.0.12", + "tokio", "url", - "windows 0.58.0", - "zbus 4.4.0", + "urlpattern", +] + +[[package]] +name = "tauri-plugin-opener" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecee219f11cdac713ab32959db5d0cceec4810ba4f4458da992292ecf9660321" +dependencies = [ + "dunce", + "glob", + "objc2-app-kit", + "objc2-foundation 0.3.1", + "open", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "thiserror 2.0.12", + "url", + "windows", + "zbus", ] [[package]] name = "tauri-plugin-os" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dda2d571a9baf0664c1f2088db227e3072f9028602fafa885deade7547c3b738" +checksum = "05bccb4c6de4299beec5a9b070878a01bce9e2c945aa7a75bcea38bcba4c675d" dependencies = [ "gethostname", "log", @@ -9117,103 +8799,109 @@ dependencies = [ "sys-locale", "tauri", "tauri-plugin", - "thiserror 2.0.7", + "thiserror 2.0.12", ] [[package]] name = "tauri-plugin-single-instance" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f36019ee9832dc99e4450bb55a21cfad8633b19c2c18bd17c7741939b070ede" +checksum = "b441b6d5d1a194e9fee0b358fe0d602ded845d0f580e1f8c8ef78ebc3c8b225d" dependencies = [ "serde", "serde_json", "tauri", - "thiserror 2.0.7", + "thiserror 2.0.12", "tracing", - "windows-sys 0.59.0", - "zbus 4.4.0", + "windows-sys 0.60.2", + "zbus", ] [[package]] name = "tauri-plugin-updater" -version = "2.3.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7351014c140906bcfff59d96e04b1170c8f602557f40eb37f7de356d4e7067b" +checksum = "27cbc31740f4d507712550694749572ec0e43bdd66992db7599b89fbfd6b167b" dependencies = [ "base64 0.22.1", - "dirs 5.0.1", + "dirs", "flate2", "futures-util", - "http 1.1.0", - "infer 0.16.0", + "http 1.3.1", + "infer 0.19.0", + "log", "minisign-verify", + "osakit", "percent-encoding", - "reqwest 0.12.7", - "semver 1.0.23", + "reqwest", + "semver", "serde", "serde_json", "tar", "tauri", "tauri-plugin", "tempfile", - "thiserror 2.0.7", + "thiserror 2.0.12", "time", - "tokio 1.42.0", + "tokio", "url", - "windows-sys 0.59.0", - "zip 2.2.0", + "windows-sys 0.60.2", + "zip", ] [[package]] name = "tauri-plugin-window-state" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234dd891cc7960fa28f93ea911f3e0d9ce8375ebf9ff303831bdd7a3443d5714" +checksum = "5a3d22b21b9cec73601b512a868f7c74f93c044d44fd6ca1c84e9d6afb6b1559" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.9.1", "log", "serde", "serde_json", "tauri", "tauri-plugin", - "thiserror 2.0.7", + "thiserror 2.0.12", ] [[package]] name = "tauri-runtime" -version = "2.2.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cce18d43f80d4aba3aa8a0c953bbe835f3d0f2370aca75e8dbb14bd4bab27958" +checksum = "9e7bb73d1bceac06c20b3f755b2c8a2cb13b20b50083084a8cf3700daf397ba4" dependencies = [ + "cookie 0.18.1", "dpi", "gtk", - "http 1.1.0", + "http 1.3.1", "jni", - "raw-window-handle 0.6.2", + "objc2 0.6.1", + "objc2-ui-kit", + "raw-window-handle", "serde", "serde_json", "tauri-utils", - "thiserror 2.0.7", + "thiserror 2.0.12", "url", - "windows 0.58.0", + "windows", ] [[package]] name = "tauri-runtime-wry" -version = "2.2.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f442a38863e10129ffe2cec7bd09c2dcf8a098a3a27801a476a304d5bb991d2" +checksum = "fe52ed0ef40fd7ad51a620ecb3018e32eba3040bb95025216a962a37f6f050c5" dependencies = [ "gtk", - "http 1.1.0", + "http 1.3.1", "jni", "log", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", + "objc2-foundation 0.3.1", + "once_cell", "percent-encoding", - "raw-window-handle 0.6.2", + "raw-window-handle", "softbuffer", "tao", "tauri-runtime", @@ -9221,67 +8909,69 @@ dependencies = [ "url", "webkit2gtk", "webview2-com", - "windows 0.58.0", + "windows", "wry", ] [[package]] name = "tauri-utils" -version = "2.1.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9271a88f99b4adea0dc71d0baca4505475a0bbd139fb135f62958721aaa8fe54" +checksum = "41743bbbeb96c3a100d234e5a0b60a46d5aa068f266160862c7afdbf828ca02e" dependencies = [ - "brotli 7.0.0", + "anyhow", + "brotli", "cargo_metadata", "ctor", "dunce", "glob", "html5ever", - "http 1.1.0", - "infer 0.16.0", - "json-patch", + "http 1.3.1", + "infer 0.19.0", + "json-patch 3.0.1", "kuchikiki", "log", "memchr", - "phf 0.11.2", + "phf 0.11.3", "proc-macro2", "quote", "regex", - "schemars", - "semver 1.0.23", + "schemars 0.8.22", + "semver", "serde", "serde-untagged", "serde_json", "serde_with", "swift-rs", - "thiserror 2.0.7", - "toml 0.8.19", + "thiserror 2.0.12", + "toml", "url", "urlpattern", - "uuid 1.12.0", + "uuid 1.17.0", "walkdir", ] [[package]] name = "tauri-winres" -version = "0.1.1" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" +checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" dependencies = [ "embed-resource", - "toml 0.7.8", + "indexmap 2.9.0", + "toml", ] [[package]] name = "tempfile" -version = "3.13.0" +version = "3.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" +checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" dependencies = [ - "cfg-if 1.0.0", - "fastrand 2.1.1", + "fastrand 2.3.0", + "getrandom 0.3.3", "once_cell", - "rustix", + "rustix 1.0.7", "windows-sys 0.59.0", ] @@ -9304,80 +8994,85 @@ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" dependencies = [ "dirs-next", "rustversion", - "winapi 0.3.9", + "winapi", ] [[package]] name = "theseus" -version = "0.9.3" +version = "1.0.0-local" dependencies = [ "ariadne", + "async-compression", "async-recursion", "async-tungstenite", + "async-walkdir", "async_zip", "base64 0.22.1", - "byteorder", - "bytes 1.7.2", + "bytemuck", + "bytes", + "chardetng", "chrono", "daedalus", - "dashmap 6.1.0", - "dirs 5.0.1", + "dashmap", + "data-url", + "dirs", "discord-rich-presence", "dunce", "either", + "encoding_rs", + "enumset", "flate2", - "futures 0.3.30", + "fs4", + "futures", + "hashlink", + "heck 0.5.0", + "hickory-resolver", "indicatif", - "lazy_static", "notify", "notify-debouncer-mini", "p256", "paste", + "png", + "quartz_nbt", + "quick-xml 0.37.5", "rand 0.8.5", "regex", - "reqwest 0.12.7", + "reqwest", + "rgb", "serde", "serde_ini", "serde_json", + "serde_with", "sha1_smol", - "sha2 0.10.8", + "sha2", "sqlx", - "sys-info", "sysinfo", "tauri", "tempfile", - "thiserror 1.0.64", - "tokio 1.42.0", - "toml 0.8.19", + "thiserror 2.0.12", + "tokio", + "tokio-util", "tracing", "tracing-error", "tracing-subscriber", "url", - "urlencoding", - "uuid 1.12.0", + "uuid 1.17.0", "whoami", - "winreg 0.52.0", - "zip 0.6.6", + "winreg 0.55.0", + "zip", ] [[package]] name = "theseus_gui" -version = "0.9.3" +version = "1.0.0-local" dependencies = [ "chrono", - "cocoa 0.25.0", "daedalus", - "dashmap 6.1.0", - "dirs 5.0.1", - "futures 0.3.30", - "lazy_static", + "dashmap", + "either", + "enumset", "native-dialog", - "objc", - "once_cell", - "opener", - "os_info", "paste", - "rand 0.8.5", "serde", "serde_json", "serde_with", @@ -9385,84 +9080,69 @@ dependencies = [ "tauri-build", "tauri-plugin-deep-link", "tauri-plugin-dialog", + "tauri-plugin-http", "tauri-plugin-opener", "tauri-plugin-os", "tauri-plugin-single-instance", "tauri-plugin-updater", "tauri-plugin-window-state", "theseus", - "thiserror 1.0.64", - "tokio 1.42.0", + "thiserror 2.0.12", + "tokio", "tracing", "tracing-error", "url", - "uuid 1.12.0", - "window-shadows", + "urlencoding", + "uuid 1.17.0", ] [[package]] name = "theseus_playground" version = "0.0.0" dependencies = [ - "dunce", - "futures 0.3.30", - "serde", - "serde_json", + "enumset", "theseus", - "thiserror 1.0.64", - "tokio 1.42.0", - "tracing", - "tracing-error", - "tracing-subscriber", - "url", - "uuid 1.12.0", - "webbrowser", -] - -[[package]] -name = "thin-slice" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" - -[[package]] -name = "thiserror" -version = "1.0.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" -dependencies = [ - "thiserror-impl 1.0.64", + "tokio", ] [[package]] name = "thiserror" -version = "2.0.7" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 2.0.7", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +dependencies = [ + "thiserror-impl 2.0.12", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "thiserror-impl" -version = "2.0.7" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -9471,7 +9151,7 @@ version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "once_cell", ] @@ -9519,12 +9199,12 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" dependencies = [ "deranged", - "itoa 1.0.11", + "itoa", "num-conv", "powerfmt", "serde", @@ -9534,15 +9214,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" +checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" dependencies = [ "num-conv", "time-core", @@ -9559,9 +9239,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.7.6" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" +checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" dependencies = [ "displaydoc", "zerovec", @@ -9569,9 +9249,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" dependencies = [ "tinyvec_macros", ] @@ -9584,39 +9264,15 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "0.1.22" +version = "1.45.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "mio 0.6.23", - "num_cpus", - "tokio-codec", - "tokio-current-thread", - "tokio-executor", - "tokio-fs", - "tokio-io", - "tokio-reactor", - "tokio-sync", - "tokio-tcp", - "tokio-threadpool", - "tokio-timer", - "tokio-udp", - "tokio-uds", -] - -[[package]] -name = "tokio" -version = "1.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" dependencies = [ "backtrace", - "bytes 1.7.2", + "bytes", "libc", - "mio 1.0.2", - "parking_lot 0.12.3", + "mio", + "parking_lot", "pin-project-lite", "signal-hook-registry", "socket2", @@ -9625,68 +9281,15 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "tokio-codec" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "tokio-io", -] - -[[package]] -name = "tokio-current-thread" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" -dependencies = [ - "futures 0.1.31", - "tokio-executor", -] - -[[package]] -name = "tokio-executor" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", -] - -[[package]] -name = "tokio-fs" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" -dependencies = [ - "futures 0.1.31", - "tokio-io", - "tokio-threadpool", -] - -[[package]] -name = "tokio-io" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "log", -] - [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -9696,26 +9299,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ "native-tls", - "tokio 1.42.0", -] - -[[package]] -name = "tokio-reactor" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "lazy_static", - "log", - "mio 0.6.23", - "num_cpus", - "parking_lot 0.9.0", - "slab", - "tokio-executor", - "tokio-io", - "tokio-sync", + "tokio", ] [[package]] @@ -9725,160 +9309,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ "rustls 0.21.12", - "tokio 1.42.0", + "tokio", ] [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" dependencies = [ - "rustls 0.23.13", - "rustls-pki-types", - "tokio 1.42.0", + "rustls 0.23.27", + "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ "futures-core", "pin-project-lite", - "tokio 1.42.0", -] - -[[package]] -name = "tokio-sync" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" -dependencies = [ - "fnv", - "futures 0.1.31", -] - -[[package]] -name = "tokio-tcp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "mio 0.6.23", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-threadpool" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" -dependencies = [ - "crossbeam-deque 0.7.4", - "crossbeam-queue 0.2.3", - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "lazy_static", - "log", - "num_cpus", - "slab", - "tokio-executor", -] - -[[package]] -name = "tokio-timer" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "slab", - "tokio-executor", -] - -[[package]] -name = "tokio-udp" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "log", - "mio 0.6.23", - "tokio-codec", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-uds" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "libc", - "log", - "mio 0.6.23", - "mio-uds", - "tokio-codec", - "tokio-io", - "tokio-reactor", + "tokio", ] [[package]] name = "tokio-util" -version = "0.7.12" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" +checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" dependencies = [ - "bytes 1.7.2", + "bytes", "futures-core", "futures-io", "futures-sink", "pin-project-lite", - "tokio 1.42.0", + "tokio", ] [[package]] name = "toml" -version = "0.7.8" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.19.15", -] - -[[package]] -name = "toml" -version = "0.8.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.22.22", + "toml_edit 0.22.26", ] [[package]] name = "toml_datetime" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" dependencies = [ "serde", ] @@ -9889,9 +9374,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.5.0", - "serde", - "serde_spanned", + "indexmap 2.9.0", "toml_datetime", "winnow 0.5.40", ] @@ -9902,24 +9385,31 @@ version = "0.20.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" dependencies = [ - "indexmap 2.5.0", + "indexmap 2.9.0", "toml_datetime", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.22.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" dependencies = [ - "indexmap 2.5.0", + "indexmap 2.9.0", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.20", + "toml_write", + "winnow 0.7.10", ] +[[package]] +name = "toml_write" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076" + [[package]] name = "tonic" version = "0.12.3" @@ -9930,19 +9420,19 @@ dependencies = [ "async-trait", "axum", "base64 0.22.1", - "bytes 1.7.2", - "h2 0.4.6", - "http 1.1.0", + "bytes", + "h2 0.4.10", + "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper 1.4.1", + "hyper 1.6.0", "hyper-timeout", "hyper-util", "percent-encoding", "pin-project", "prost", "socket2", - "tokio 1.42.0", + "tokio", "tokio-stream", "tower 0.4.13", "tower-layer", @@ -9952,16 +9442,16 @@ dependencies = [ [[package]] name = "totp-rs" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b2f27dad992486c26b4e7455f38aa487e838d6d61b57e72906ee2b8c287a90" +checksum = "f124352108f58ef88299e909f6e9470f1cdc8d2a1397963901b4a6366206bf72" dependencies = [ "base32", - "constant_time_eq 0.2.6", - "hmac 0.12.1", - "rand 0.8.5", - "sha1 0.10.6", - "sha2 0.10.8", + "constant_time_eq", + "hmac", + "rand 0.9.1", + "sha1", + "sha2", ] [[package]] @@ -9977,7 +9467,7 @@ dependencies = [ "pin-project-lite", "rand 0.8.5", "slab", - "tokio 1.42.0", + "tokio", "tokio-util", "tower-layer", "tower-service", @@ -9993,7 +9483,26 @@ dependencies = [ "futures-core", "futures-util", "pin-project-lite", - "sync_wrapper 1.0.1", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +dependencies = [ + "bitflags 2.9.1", + "bytes", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "iri-string", + "pin-project-lite", + "tower 0.5.2", "tower-layer", "tower-service", ] @@ -10024,15 +9533,15 @@ dependencies = [ [[package]] name = "tracing-actix-web" -version = "0.7.16" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332bbdf3bd208d1fe6446f8ffb4e8c2ae66e25da0fb38e0b69545e640ecee6a6" +checksum = "2340b7722695166c7fc9b3e3cd1166e7c74fedb9075b8f0c74d3822d2e41caf5" dependencies = [ "actix-web", "mutually_exclusive_features", "pin-project", "tracing", - "uuid 1.12.0", + "uuid 1.17.0", ] [[package]] @@ -10043,7 +9552,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] @@ -10058,26 +9567,14 @@ dependencies = [ [[package]] name = "tracing-error" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e" +checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ "tracing", "tracing-subscriber", ] -[[package]] -name = "tracing-futures" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" -dependencies = [ - "futures 0.3.30", - "pin-project", - "tokio 0.1.22", - "tracing", -] - [[package]] name = "tracing-log" version = "0.2.0" @@ -10101,7 +9598,7 @@ dependencies = [ "once_cell", "regex", "sharded-slab", - "smallvec 1.13.2", + "smallvec", "thread_local", "tracing", "tracing-core", @@ -10110,22 +9607,23 @@ dependencies = [ [[package]] name = "tray-icon" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "533fc2d4105e0e3d96ce1c71f2d308c9fbbe2ef9c587cab63dd627ab5bde218f" +checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a" dependencies = [ - "core-graphics 0.24.0", "crossbeam-channel", - "dirs 5.0.1", + "dirs", "libappindicator", "muda", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation 0.3.1", "once_cell", "png", "serde", - "thiserror 1.0.64", + "thiserror 2.0.12", "windows-sys 0.59.0", ] @@ -10143,35 +9641,34 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tungstenite" -version = "0.23.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" +checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" dependencies = [ - "byteorder", - "bytes 1.7.2", + "bytes", "data-encoding", - "http 1.1.0", + "http 1.3.1", "httparse", "log", - "rand 0.8.5", - "rustls 0.23.13", + "rand 0.9.1", + "rustls 0.23.27", "rustls-pki-types", - "sha1 0.10.6", - "thiserror 1.0.64", + "sha1", + "thiserror 2.0.12", "utf-8", ] [[package]] name = "typeid" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" [[package]] name = "typenum" -version = "1.17.0" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" +checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" [[package]] name = "uds_windows" @@ -10179,9 +9676,9 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" dependencies = [ - "memoffset 0.9.1", + "memoffset", "tempfile", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -10236,24 +9733,21 @@ dependencies = [ [[package]] name = "unicase" -version = "2.7.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" -version = "0.3.15" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.13" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "unicode-normalization" @@ -10266,9 +9760,9 @@ dependencies = [ [[package]] name = "unicode-properties" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ea75f83c0137a9b98608359a5f1af8144876eb67bcb1ce837368e906a9f524" +checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" [[package]] name = "unicode-segmentation" @@ -10283,16 +9777,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] -name = "unicode_categories" -version = "0.1.1" +name = "unicode-width" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] -name = "untrusted" -version = "0.7.1" +name = "unicode-xid" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "untrusted" @@ -10302,27 +9796,41 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.10.1" +version = "3.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" +checksum = "9f0fde9bc91026e381155f8c67cb354bcd35260b2f4a29bcc84639f762760c39" dependencies = [ "base64 0.22.1", "log", - "once_cell", - "rustls 0.23.13", + "percent-encoding", + "rustls 0.23.27", + "rustls-pemfile 2.2.0", "rustls-pki-types", - "url", - "webpki-roots 0.26.6", + "ureq-proto", + "utf-8", + "webpki-roots 0.26.11", +] + +[[package]] +name = "ureq-proto" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59db78ad1923f2b1be62b6da81fe80b173605ca0d57f85da2e005382adf693f7" +dependencies = [ + "base64 0.22.1", + "http 1.3.1", + "httparse", + "log", ] [[package]] name = "url" -version = "2.5.2" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", - "idna 0.5.0", + "idna", "percent-encoding", "serde", ] @@ -10351,12 +9859,6 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" -[[package]] -name = "utf16_iter" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" - [[package]] name = "utf8_iter" version = "1.0.4" @@ -10375,21 +9877,33 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.16", ] [[package]] name = "uuid" -version = "1.12.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" +checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" dependencies = [ - "getrandom 0.2.15", - "rand 0.8.5", + "getrandom 0.3.3", + "js-sys", + "rand 0.9.1", "serde", "wasm-bindgen", ] +[[package]] +name = "v_frame" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" +dependencies = [ + "aligned-vec", + "num-traits", + "wasm-bindgen", +] + [[package]] name = "v_htmlescape" version = "0.15.8" @@ -10398,13 +9912,12 @@ checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" [[package]] name = "validator" -version = "0.16.1" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b92f40481c04ff1f4f61f304d61793c7b56ff76ac1469f1beb199b1445b253bd" +checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa" dependencies = [ - "idna 0.4.0", - "lazy_static", - "phonenumber", + "idna", + "once_cell", "regex", "serde", "serde_derive", @@ -10415,35 +9928,23 @@ dependencies = [ [[package]] name = "validator_derive" -version = "0.16.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc44ca3088bb3ba384d9aecf40c6a23a676ce23e09bdaca2073d99c207f864af" +checksum = "b7df16e474ef958526d1205f6dda359fdfab79d9aa6d54bafcb92dcd07673dca" dependencies = [ - "if_chain", - "lazy_static", - "proc-macro-error", + "darling", + "once_cell", + "proc-macro-error2", "proc-macro2", "quote", - "regex", - "syn 1.0.109", - "validator_types", -] - -[[package]] -name = "validator_types" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "111abfe30072511849c5910134e8baf8dc05de4c0e5903d681cbd5c9c4d611e3" -dependencies = [ - "proc-macro2", - "syn 1.0.109", + "syn 2.0.101", ] [[package]] name = "valuable" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" [[package]] name = "vcpkg" @@ -10465,12 +9966,12 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "versions" -version = "5.0.1" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c73a36bc44e3039f51fbee93e39f41225f6b17b380eb70cc2aab942df06b34dd" +checksum = "80a7e511ce1795821207a837b7b1c8d8aca0c648810966ad200446ae58f6667f" dependencies = [ - "itertools 0.11.0", - "nom", + "itertools 0.14.0", + "nom 8.0.0", ] [[package]] @@ -10491,9 +9992,9 @@ dependencies = [ [[package]] name = "vswhom-sys" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" dependencies = [ "cc", "libc", @@ -10536,6 +10037,15 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +[[package]] +name = "wasi" +version = "0.14.2+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" +dependencies = [ + "wit-bindgen-rt", +] + [[package]] name = "wasite" version = "0.1.0" @@ -10544,47 +10054,48 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" [[package]] name = "wasm-bindgen" -version = "0.2.93" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "once_cell", + "rustversion", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.93" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.43" +version = "0.4.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" +checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.93" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -10592,28 +10103,31 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.93" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.93" +version = "0.2.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +dependencies = [ + "unicode-ident", +] [[package]] name = "wasm-streams" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ "futures-util", "js-sys", @@ -10622,91 +10136,24 @@ dependencies = [ "web-sys", ] -[[package]] -name = "wayland-backend" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" -dependencies = [ - "cc", - "downcast-rs", - "rustix", - "scoped-tls", - "smallvec 1.13.2", - "wayland-sys", -] - -[[package]] -name = "wayland-client" -version = "0.31.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280" -dependencies = [ - "bitflags 2.6.0", - "rustix", - "wayland-backend", - "wayland-scanner", -] - -[[package]] -name = "wayland-protocols" -version = "0.32.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd0ade57c4e6e9a8952741325c30bf82f4246885dca8bf561898b86d0c1f58e" -dependencies = [ - "bitflags 2.6.0", - "wayland-backend", - "wayland-client", - "wayland-scanner", -] - -[[package]] -name = "wayland-scanner" -version = "0.31.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3" -dependencies = [ - "proc-macro2", - "quick-xml 0.36.2", - "quote", -] - -[[package]] -name = "wayland-sys" -version = "0.31.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09" -dependencies = [ - "dlib", - "log", - "pkg-config", -] - [[package]] name = "web-sys" -version = "0.3.70" +version = "0.3.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" +checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" dependencies = [ "js-sys", "wasm-bindgen", ] [[package]] -name = "webbrowser" -version = "0.8.15" +name = "web-time" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ - "core-foundation 0.9.4", - "home", - "jni", - "log", - "ndk-context", - "objc", - "raw-window-handle 0.5.2", - "url", - "web-sys", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10759,54 +10206,37 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f53152f51fb5af0c08484c33d16cca96175881d1f3dec068c23b31a158c2d99" dependencies = [ - "image 0.25.3", "libwebp-sys", ] [[package]] -name = "webpki" -version = "0.22.4" +name = "webpki-roots" +version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" +checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "webpki-roots 1.0.0", ] [[package]] name = "webpki-roots" -version = "0.22.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" -dependencies = [ - "webpki", -] - -[[package]] -name = "webpki-roots" -version = "0.25.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" - -[[package]] -name = "webpki-roots" -version = "0.26.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" +checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" dependencies = [ "rustls-pki-types", ] [[package]] name = "webview2-com" -version = "0.33.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f61ff3d9d0ee4efcb461b14eb3acfda2702d10dc329f339303fc3e57215ae2c" +checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" dependencies = [ "webview2-com-macros", "webview2-com-sys", - "windows 0.58.0", - "windows-core 0.58.0", + "windows", + "windows-core", "windows-implement", "windows-interface", ] @@ -10819,18 +10249,18 @@ checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "webview2-com-sys" -version = "0.33.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3a3e2eeb58f82361c93f9777014668eb3d07e7d174ee4c819575a9208011886" +checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" dependencies = [ - "thiserror 1.0.64", - "windows 0.58.0", - "windows-core 0.58.0", + "thiserror 2.0.12", + "windows", + "windows-core", ] [[package]] @@ -10846,37 +10276,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e713040b67aae5bf1a0ae3e1ebba8cc29ab2b90da9aa1bff6e09031a8a41d7a8" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] name = "which" -version = "4.4.2" +version = "7.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +checksum = "24d643ce3fd3e5b54854602a080f34fb10ab75e0b813ee32d00ca2b44fa74762" dependencies = [ "either", - "home", - "once_cell", - "rustix", + "env_home", + "rustix 1.0.7", + "winsafe", ] [[package]] name = "whoami" -version = "1.5.2" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" +checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7" dependencies = [ - "redox_syscall 0.5.6", + "redox_syscall", "wasite", "web-sys", ] [[package]] -name = "winapi" -version = "0.2.8" +name = "widestring" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" [[package]] name = "winapi" @@ -10888,12 +10318,6 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -10915,144 +10339,131 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -[[package]] -name = "window-shadows" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67ff424735b1ac21293b0492b069394b0a189c8a463fb015a16dea7c2e221c08" -dependencies = [ - "cocoa 0.25.0", - "objc", - "raw-window-handle 0.5.2", - "windows-sys 0.48.0", -] - [[package]] name = "window-vibrancy" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ea403deff7b51fff19e261330f71608ff2cdef5721d72b64180bb95be7c4150" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" dependencies = [ - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", - "raw-window-handle 0.6.2", + "objc2-core-foundation", + "objc2-foundation 0.3.1", + "raw-window-handle", "windows-sys 0.59.0", "windows-version", ] [[package]] name = "windows" -version = "0.52.0" +version = "0.61.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419" dependencies = [ - "windows-core 0.52.0", - "windows-targets 0.52.6", + "windows-collections", + "windows-core", + "windows-future", + "windows-link", + "windows-numerics", ] [[package]] -name = "windows" -version = "0.58.0" +name = "windows-collections" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" dependencies = [ - "windows-core 0.58.0", - "windows-targets 0.52.6", + "windows-core", ] [[package]] name = "windows-core" -version = "0.52.0" +version = "0.61.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-core" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980" dependencies = [ "windows-implement", "windows-interface", + "windows-link", "windows-result", - "windows-strings 0.1.0", - "windows-targets 0.52.6", + "windows-strings", +] + +[[package]] +name = "windows-future" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32" +dependencies = [ + "windows-core", + "windows-link", ] [[package]] name = "windows-implement" -version = "0.58.0" +version = "0.60.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "windows-interface" -version = "0.58.0" +version = "0.59.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] -name = "windows-registry" +name = "windows-link" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" + +[[package]] +name = "windows-numerics" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" dependencies = [ - "windows-result", - "windows-strings 0.1.0", - "windows-targets 0.52.6", + "windows-core", + "windows-link", ] [[package]] name = "windows-registry" -version = "0.3.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bafa604f2104cf5ae2cc2db1dee84b7e6a5d11b05f737b60def0ffdc398cbc0a" +checksum = "ad1da3e436dc7653dfdf3da67332e22bff09bb0e28b0239e1624499c7830842e" dependencies = [ + "windows-link", "windows-result", - "windows-strings 0.2.0", - "windows-targets 0.52.6", + "windows-strings", ] [[package]] name = "windows-result" -version = "0.2.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252" dependencies = [ - "windows-targets 0.52.6", + "windows-link", ] [[package]] name = "windows-strings" -version = "0.1.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97" dependencies = [ - "windows-result", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-strings" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978d65aedf914c664c510d9de43c8fd85ca745eaff1ed53edf409b479e441663" -dependencies = [ - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -11091,6 +10502,15 @@ 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.2", +] + [[package]] name = "windows-targets" version = "0.42.2" @@ -11130,7 +10550,7 @@ dependencies = [ "windows_aarch64_gnullvm 0.52.6", "windows_aarch64_msvc 0.52.6", "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", + "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", @@ -11138,12 +10558,28 @@ dependencies = [ ] [[package]] -name = "windows-version" -version = "0.1.1" +name = "windows-targets" +version = "0.53.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515" +checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" dependencies = [ - "windows-targets 0.52.6", + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", +] + +[[package]] +name = "windows-version" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" +dependencies = [ + "windows-link", ] [[package]] @@ -11164,6 +10600,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + [[package]] name = "windows_aarch64_msvc" version = "0.42.2" @@ -11182,6 +10624,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + [[package]] name = "windows_i686_gnu" version = "0.42.2" @@ -11200,12 +10648,24 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" +[[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + [[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + [[package]] name = "windows_i686_msvc" version = "0.42.2" @@ -11224,6 +10684,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + [[package]] name = "windows_x86_64_gnu" version = "0.42.2" @@ -11242,6 +10708,12 @@ 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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" @@ -11260,6 +10732,12 @@ 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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + [[package]] name = "windows_x86_64_msvc" version = "0.42.2" @@ -11278,6 +10756,12 @@ 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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + [[package]] name = "winnow" version = "0.5.40" @@ -11289,9 +10773,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.6.20" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec" dependencies = [ "memchr", ] @@ -11302,7 +10786,7 @@ version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "windows-sys 0.48.0", ] @@ -11312,10 +10796,35 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "windows-sys 0.48.0", ] +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "winsafe" +version = "0.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" + +[[package]] +name = "wit-bindgen-rt" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" +dependencies = [ + "bitflags 2.9.1", +] + [[package]] name = "woothee" version = "0.13.0" @@ -11326,25 +10835,19 @@ dependencies = [ "regex", ] -[[package]] -name = "write16" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" - [[package]] name = "writeable" -version = "0.5.5" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" +checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" [[package]] name = "wry" -version = "0.47.2" -source = "git+https://github.com/modrinth/wry?rev=51907c6#51907c61541f2e389856f07773a32bac04f9a843" +version = "0.52.1" +source = "git+https://github.com/modrinth/wry?rev=21db186#21db1866d53e7be8b513c7272887c6993e7f09b3" dependencies = [ "base64 0.22.1", - "block2", + "block2 0.6.1", "cookie 0.18.1", "crossbeam-channel", "dpi", @@ -11352,44 +10855,35 @@ dependencies = [ "gdkx11", "gtk", "html5ever", - "http 1.1.0", + "http 1.3.1", "javascriptcore-rs", "jni", "kuchikiki", "libc", "ndk", - "objc2", + "objc2 0.6.1", "objc2-app-kit", - "objc2-foundation", + "objc2-core-foundation", + "objc2-foundation 0.3.1", "objc2-ui-kit", "objc2-web-kit", "once_cell", "percent-encoding", - "raw-window-handle 0.6.2", - "sha2 0.10.8", + "raw-window-handle", + "sha2", "soup3", "tao-macros", - "thiserror 1.0.64", + "thiserror 2.0.12", "url", "webkit2gtk", "webkit2gtk-sys", "webview2-com", - "windows 0.58.0", - "windows-core 0.58.0", + "windows", + "windows-core", "windows-version", "x11-dl", ] -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "wyz" version = "0.5.1" @@ -11422,39 +10916,19 @@ dependencies = [ [[package]] name = "xattr" -version = "1.3.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" dependencies = [ "libc", - "linux-raw-sys", - "rustix", -] - -[[package]] -name = "xdg-home" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" -dependencies = [ - "libc", - "windows-sys 0.59.0", + "rustix 1.0.7", ] [[package]] name = "xml-rs" -version = "0.8.22" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" - -[[package]] -name = "xz2" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" -dependencies = [ - "lzma-sys", -] +checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda" [[package]] name = "yaserde" @@ -11464,6 +10938,7 @@ checksum = "8bfa0d2b420fd005aa9b6f99f9584ebd964e6865d7ca787304cc1a3366c39231" dependencies = [ "log", "xml-rs", + "yaserde_derive", ] [[package]] @@ -11478,7 +10953,7 @@ dependencies = [ "quote", "serde", "serde_tokenstream", - "syn 2.0.90", + "syn 2.0.101", "xml-rs", ] @@ -11490,14 +10965,14 @@ checksum = "b0144f1a16a199846cb21024da74edd930b43443463292f536b7110b4855b5c6" dependencies = [ "form_urlencoded", "serde", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "yoke" -version = "0.7.4" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" +checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" dependencies = [ "serde", "stable_deref_trait", @@ -11507,25 +10982,24 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.4" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" +checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", "synstructure", ] [[package]] name = "zbus" -version = "4.4.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" +checksum = "88232b74ba057a0c85472ec1bae8a17569960be17da2d5e5ad30d5efe7ea6719" dependencies = [ "async-broadcast", "async-executor", - "async-fs", "async-io", "async-lock", "async-process", @@ -11534,147 +11008,89 @@ dependencies = [ "async-trait", "blocking", "enumflags2", - "event-listener 5.3.1", + "event-listener 5.4.0", "futures-core", - "futures-sink", - "futures-util", - "hex", - "nix", - "ordered-stream", - "rand 0.8.5", - "serde", - "serde_repr", - "sha1 0.10.6", - "static_assertions", - "tracing", - "uds_windows", - "windows-sys 0.52.0", - "xdg-home", - "zbus_macros 4.4.0", - "zbus_names 3.0.0", - "zvariant 4.2.0", -] - -[[package]] -name = "zbus" -version = "5.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1162094dc63b1629fcc44150bcceeaa80798cd28bcbe7fa987b65a034c258608" -dependencies = [ - "async-broadcast", - "async-recursion", - "async-trait", - "enumflags2", - "event-listener 5.3.1", - "futures-core", - "futures-util", + "futures-lite 2.6.0", "hex", "nix", "ordered-stream", "serde", "serde_repr", - "static_assertions", - "tokio 1.42.0", + "tokio", "tracing", "uds_windows", "windows-sys 0.59.0", - "winnow 0.6.20", - "xdg-home", - "zbus_macros 5.1.1", - "zbus_names 4.1.0", - "zvariant 5.1.0", + "winnow 0.7.10", + "zbus_macros", + "zbus_names", + "zvariant", ] [[package]] name = "zbus_macros" -version = "4.4.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" +checksum = "6969c06899233334676e60da1675740539cf034ee472a6c5b5c54e50a0a554c9" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.90", - "zvariant_utils 2.1.0", -] - -[[package]] -name = "zbus_macros" -version = "5.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cd2dcdce3e2727f7d74b7e33b5a89539b3cc31049562137faf7ae4eb86cd16d" -dependencies = [ - "proc-macro-crate 3.2.0", - "proc-macro2", - "quote", - "syn 2.0.90", - "zbus_names 4.1.0", - "zvariant 5.1.0", - "zvariant_utils 3.0.2", + "syn 2.0.101", + "zbus_names", + "zvariant", + "zvariant_utils", ] [[package]] name = "zbus_names" -version = "3.0.0" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" +checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" dependencies = [ "serde", "static_assertions", - "zvariant 4.2.0", -] - -[[package]] -name = "zbus_names" -version = "4.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "856b7a38811f71846fd47856ceee8bccaec8399ff53fb370247e66081ace647b" -dependencies = [ - "serde", - "static_assertions", - "winnow 0.6.20", - "zvariant 5.1.0", + "winnow 0.7.10", + "zvariant", ] [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.8.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "zerofrom" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", "synstructure", ] @@ -11685,10 +11101,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] -name = "zerovec" -version = "0.10.4" +name = "zerotrie" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" +checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" dependencies = [ "yoke", "zerofrom", @@ -11697,97 +11124,84 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.10.3" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" +checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.101", ] [[package]] name = "zip" -version = "0.6.6" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" -dependencies = [ - "aes", - "byteorder", - "bzip2", - "constant_time_eq 0.1.5", - "crc32fast", - "crossbeam-utils 0.8.20", - "flate2", - "hmac 0.12.1", - "pbkdf2", - "sha1 0.10.6", - "time", - "zstd 0.11.2+zstd.1.5.2", -] - -[[package]] -name = "zip" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494" +checksum = "95ab361742de920c5535880f89bbd611ee62002bf11341d16a5f057bb8ba6899" dependencies = [ "arbitrary", + "bzip2 0.5.2", "crc32fast", - "crossbeam-utils 0.8.20", - "displaydoc", - "indexmap 2.5.0", + "deflate64", + "flate2", + "indexmap 2.9.0", "memchr", - "thiserror 1.0.64", + "zopfli", + "zstd", +] + +[[package]] +name = "zlib-rs" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a" + +[[package]] +name = "zopfli" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7" +dependencies = [ + "bumpalo", + "crc32fast", + "log", + "simd-adler32", ] [[package]] name = "zstd" -version = "0.11.2+zstd.1.5.2" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", -] - -[[package]] -name = "zstd" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" -dependencies = [ - "zstd-safe 7.2.1", + "zstd-safe", ] [[package]] name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" -dependencies = [ - "libc", - "zstd-sys", -] - -[[package]] -name = "zstd-safe" -version = "7.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.13+zstd.1.5.6" +version = "2.0.15+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" +checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" dependencies = [ "cc", "pkg-config", ] +[[package]] +name = "zune-core" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" + [[package]] name = "zune-inflate" version = "0.2.54" @@ -11798,97 +11212,69 @@ dependencies = [ ] [[package]] -name = "zvariant" -version = "4.2.0" +name = "zune-jpeg" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" +checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028" dependencies = [ - "endi", - "enumflags2", - "serde", - "static_assertions", - "zvariant_derive 4.2.0", + "zune-core", ] [[package]] name = "zvariant" -version = "5.1.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1200ee6ac32f1e5a312e455a949a4794855515d34f9909f4a3e082d14e1a56f" +checksum = "9d30786f75e393ee63a21de4f9074d4c038d52c5b1bb4471f955db249f9dffb1" dependencies = [ "endi", "enumflags2", "serde", - "static_assertions", "url", - "winnow 0.6.20", - "zvariant_derive 5.1.0", - "zvariant_utils 3.0.2", + "winnow 0.7.10", + "zvariant_derive", + "zvariant_utils", ] [[package]] name = "zvariant_derive" -version = "4.2.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" +checksum = "75fda702cd42d735ccd48117b1630432219c0e9616bf6cb0f8350844ee4d9580" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.90", - "zvariant_utils 2.1.0", -] - -[[package]] -name = "zvariant_derive" -version = "5.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "687e3b97fae6c9104fbbd36c73d27d149abf04fb874e2efbd84838763daa8916" -dependencies = [ - "proc-macro-crate 3.2.0", - "proc-macro2", - "quote", - "syn 2.0.90", - "zvariant_utils 3.0.2", + "syn 2.0.101", + "zvariant_utils", ] [[package]] name = "zvariant_utils" -version = "2.1.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.90", -] - -[[package]] -name = "zvariant_utils" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20d1d011a38f12360e5fcccceeff5e2c42a8eb7f27f0dcba97a0862ede05c9c6" +checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" dependencies = [ "proc-macro2", "quote", "serde", "static_assertions", - "syn 2.0.90", - "winnow 0.6.20", + "syn 2.0.101", + "winnow 0.7.10", ] [[package]] name = "zxcvbn" -version = "2.2.2" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "103fa851fff70ea29af380e87c25c48ff7faac5c530c70bd0e65366d4e0c94e4" +checksum = "ad76e35b00ad53688d6b90c431cabe3cbf51f7a4a154739e04b63004ab1c736c" dependencies = [ + "chrono", "derive_builder", "fancy-regex", - "itertools 0.10.5", - "js-sys", + "itertools 0.13.0", "lazy_static", - "quick-error", "regex", "time", + "wasm-bindgen", + "web-sys", ] diff --git a/Cargo.toml b/Cargo.toml index 97d69a241..040e12d0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,25 +1,233 @@ [workspace] -resolver = '2' +resolver = "2" members = [ - './packages/app-lib', - './apps/app-playground', - './apps/app', - './apps/labrinth', - './apps/daedalus_client', - './packages/daedalus', - './packages/ariadne', + "apps/app", + "apps/app-playground", + "apps/daedalus_client", + "apps/labrinth", + "packages/app-lib", + "packages/ariadne", + "packages/daedalus", ] +[workspace.package] +edition = "2024" + +[workspace.dependencies] +actix-cors = "0.7.1" +actix-files = "0.6.6" +actix-http = "3.11.0" +actix-multipart = "0.7.2" +actix-rt = "2.10.0" +actix-web = "4.11.0" +actix-web-prom = "0.10.0" +actix-ws = "0.3.0" +argon2 = { version = "0.5.3", features = ["std"] } +ariadne = { path = "packages/ariadne" } +async_zip = "0.0.17" +async-compression = { version = "0.4.25", default-features = false } +async-recursion = "1.1.1" +async-stripe = { version = "0.41.0", default-features = false, features = [ + "runtime-tokio-hyper-rustls", +] } +async-trait = "0.1.88" +async-tungstenite = { version = "0.29.1", default-features = false, features = [ + "futures-03-sink", +] } +async-walkdir = "2.1.0" +base64 = "0.22.1" +bitflags = "2.9.1" +bytemuck = "1.23.0" +bytes = "1.10.1" +censor = "0.3.0" +chardetng = "0.1.17" +chrono = "0.4.41" +clap = "4.5.40" +clickhouse = "0.13.3" +color-thief = "0.2.2" +console-subscriber = "0.4.1" +daedalus = { path = "packages/daedalus" } +dashmap = "6.1.0" +data-url = "0.3.1" +deadpool-redis = "0.21.1" +dirs = "6.0.0" +discord-rich-presence = "0.2.5" +dotenv-build = "0.1.1" +dotenvy = "0.15.7" +dunce = "1.0.5" +either = "1.15.0" +encoding_rs = "0.8.35" +enumset = "1.1.6" +flate2 = "1.1.2" +fs4 = { version = "0.13.1", default-features = false } +futures = { version = "0.3.31", default-features = false } +futures-util = "0.3.31" +hashlink = "0.10.0" +heck = "0.5.0" +hex = "0.4.3" +hickory-resolver = "0.25.2" +hmac = "0.12.1" +hyper-tls = "0.6.0" +hyper-util = "0.1.14" +iana-time-zone = "0.1.63" +image = { version = "0.25.6", default-features = false, features = ["rayon"] } +indexmap = "2.9.0" +indicatif = "0.17.11" +itertools = "0.14.0" +jemalloc_pprof = "0.7.0" +json-patch = { version = "4.0.0", default-features = false } +lettre = { version = "0.11.17", default-features = false, features = [ + "builder", + "hostname", + "pool", + "ring", + "rustls", + "rustls-native-certs", + "smtp-transport", +] } +maxminddb = "0.26.0" +meilisearch-sdk = { version = "0.28.0", default-features = false } +murmur2 = "0.1.0" +native-dialog = "0.9.0" +notify = { version = "8.0.0", default-features = false } +notify-debouncer-mini = { version = "0.6.0", default-features = false } +p256 = "0.13.2" +paste = "1.0.15" +png = "0.17.16" +prometheus = "0.14.0" +quartz_nbt = "0.2.9" +quick-xml = "0.37.5" +rand = "=0.8.5" # Locked on 0.8 until argon2 and p256 update to 0.9 +rand_chacha = "=0.3.1" # Locked on 0.3 until we can update rand to 0.9 +redis = "=0.31.0" # Locked on 0.31 until deadpool-redis updates to 0.32 +regex = "1.11.1" +reqwest = { version = "0.12.20", default-features = false } +rgb = "0.8.50" +rust_decimal = { version = "1.37.2", features = [ + "serde-with-float", + "serde-with-str", +] } +rust_iso3166 = "0.1.14" +rust-s3 = { version = "0.35.1", default-features = false, features = [ + "fail-on-err", + "tags", + "tokio-rustls-tls", +] } +rusty-money = "0.4.1" +sentry = { version = "0.41.0", default-features = false, features = [ + "backtrace", + "contexts", + "debug-images", + "panic", + "reqwest", + "rustls", +] } +sentry-actix = "0.41.0" +serde = "1.0.219" +serde_bytes = "0.11.17" +serde_cbor = "0.11.2" +serde_ini = "0.2.0" +serde_json = "1.0.140" +serde_with = "3.13.0" +serde-xml-rs = "0.8.1" # Also an XML (de)serializer, consider dropping yaserde in favor of this +sha1 = "0.10.6" +sha1_smol = { version = "1.0.1", features = ["std"] } +sha2 = "0.10.9" +spdx = "0.10.8" +sqlx = { version = "0.8.6", default-features = false } +sysinfo = { version = "0.35.2", default-features = false } +tar = "0.4.44" +tauri = "2.6.1" +tauri-build = "2.3.0" +tauri-plugin-deep-link = "2.4.0" +tauri-plugin-dialog = "2.3.0" +tauri-plugin-http = "2.5.0" +tauri-plugin-opener = "2.4.0" +tauri-plugin-os = "2.3.0" +tauri-plugin-single-instance = "2.3.0" +tauri-plugin-updater = { version = "2.9.0", default-features = false, features = [ + "rustls-tls", + "zip", +] } +tauri-plugin-window-state = "2.3.0" +tempfile = "3.20.0" +theseus = { path = "packages/app-lib" } +thiserror = "2.0.12" +tikv-jemalloc-ctl = "0.6.0" +tikv-jemallocator = "0.6.0" +tokio = "1.45.1" +tokio-stream = "0.1.17" +tokio-util = "0.7.15" +totp-rs = "5.7.0" +tracing = "0.1.41" +tracing-actix-web = "0.7.18" +tracing-error = "0.2.1" +tracing-subscriber = "0.3.19" +url = "2.5.4" +urlencoding = "2.1.3" +uuid = "1.17.0" +validator = "0.20.0" +webp = { version = "0.3.0", default-features = false } +whoami = "1.6.0" +winreg = "0.55.0" +woothee = "0.13.0" +yaserde = "0.12.0" +zip = { version = "4.2.0", default-features = false, features = [ + "bzip2", + "deflate", + "deflate64", + "zstd", +] } +zxcvbn = "3.1.0" + +[workspace.lints.clippy] +bool_to_int_with_if = "warn" +borrow_as_ptr = "warn" +cfg_not_test = "warn" +clear_with_drain = "warn" +cloned_instead_of_copied = "warn" +collection_is_never_read = "warn" +dbg_macro = "warn" +default_trait_access = "warn" +explicit_iter_loop = "warn" +filter_map_next = "warn" +flat_map_option = "warn" +format_push_string = "warn" +get_unwrap = "warn" +large_include_file = "warn" +large_stack_arrays = "warn" +manual_assert = "warn" +manual_instant_elapsed = "warn" +manual_is_variant_and = "warn" +manual_let_else = "warn" +map_unwrap_or = "warn" +match_bool = "warn" +needless_collect = "warn" +negative_feature_names = "warn" +non_std_lazy_statics = "warn" +pathbuf_init_then_push = "warn" +read_zero_byte_vec = "warn" +redundant_clone = "warn" +redundant_feature_names = "warn" +redundant_type_annotations = "warn" +todo = "warn" +unnested_or_patterns = "warn" +wildcard_dependencies = "warn" + +[workspace.lints.rust] +# Turn warnings into errors by default +warnings = "deny" + +[patch.crates-io] +wry = { git = "https://github.com/modrinth/wry", rev = "21db186" } + # Optimize for speed and reduce size on release builds [profile.release] -panic = "abort" # Strip expensive panic clean-up logic -codegen-units = 1 # Compile crates one after another so the compiler can optimize better -lto = true # Enables link to optimizations -opt-level = "s" # Optimize for binary size -strip = true # Remove debug symbols +opt-level = "s" # Optimize for binary size +strip = true # Remove debug symbols +lto = true # Enables link to optimizations +panic = "abort" # Strip expensive panic clean-up logic +codegen-units = 1 # Compile crates one after another so the compiler can optimize better [profile.dev.package.sqlx-macros] opt-level = 3 - -[patch.crates-io] -wry = { git = "https://github.com/modrinth/wry", rev = "51907c6" } diff --git a/apps/app-frontend/.prettierignore b/apps/app-frontend/.prettierignore index 581edad3d..0cb3e84e5 100644 --- a/apps/app-frontend/.prettierignore +++ b/apps/app-frontend/.prettierignore @@ -1 +1,2 @@ **/dist +*.gltf diff --git a/apps/app-frontend/package.json b/apps/app-frontend/package.json index fe9390f97..b58e63553 100644 --- a/apps/app-frontend/package.json +++ b/apps/app-frontend/package.json @@ -1,7 +1,7 @@ { "name": "@modrinth/app-frontend", "private": true, - "version": "0.9.3", + "version": "1.0.0-local", "type": "module", "scripts": { "dev": "vite", @@ -9,25 +9,31 @@ "tsc:check": "vue-tsc --noEmit", "lint": "eslint . && prettier --check .", "fix": "eslint . --fix && prettier --write .", - "intl:extract": "formatjs extract \"{,src/components,src/composables,src/helpers,src/pages,src/store}/**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore '**/*.d.ts' --ignore 'node_modules' --out-file src/locales/en-US/index.json --format crowdin --preserve-whitespace" + "intl:extract": "formatjs extract \"{,src/components,src/composables,src/helpers,src/pages,src/store}/**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore '**/*.d.ts' --ignore 'node_modules' --out-file src/locales/en-US/index.json --format crowdin --preserve-whitespace", + "test": "vue-tsc --noEmit" }, "dependencies": { + "@geometrically/minecraft-motd-parser": "^1.1.4", "@modrinth/assets": "workspace:*", "@modrinth/ui": "workspace:*", "@modrinth/utils": "workspace:*", "@sentry/vue": "^8.27.0", - "@tauri-apps/api": "^2.1.1", - "@tauri-apps/plugin-dialog": "^2.2.0", - "@tauri-apps/plugin-os": "^2.2.0", - "@tauri-apps/plugin-opener": "^2.2.1", - "@tauri-apps/plugin-updater": "^2.3.0", - "@tauri-apps/plugin-window-state": "^2.2.0", + "@tauri-apps/api": "^2.5.0", + "@tauri-apps/plugin-dialog": "^2.2.1", + "@tauri-apps/plugin-http": "^2.5.0", + "@tauri-apps/plugin-opener": "^2.2.6", + "@tauri-apps/plugin-os": "^2.2.1", + "@tauri-apps/plugin-updater": "^2.7.1", + "@tauri-apps/plugin-window-state": "^2.2.2", + "@types/three": "^0.172.0", "@vintl/vintl": "^4.4.1", + "@vueuse/core": "^11.1.0", "dayjs": "^1.11.10", "floating-vue": "^5.2.2", "ofetch": "^1.3.4", "pinia": "^2.1.7", "posthog-js": "^1.158.2", + "three": "^0.172.0", "vite-svg-loader": "^5.1.0", "vue": "^3.5.13", "vue-multiselect": "3.0.0", @@ -38,11 +44,12 @@ "@eslint/compat": "^1.1.1", "@formatjs/cli": "^6.2.12", "@nuxt/eslint-config": "^0.5.6", + "@taijased/vue-render-tracker": "^1.0.7", "@vitejs/plugin-vue": "^5.0.4", "autoprefixer": "^10.4.19", "eslint": "^9.9.1", "eslint-config-custom": "workspace:*", - "eslint-plugin-turbo": "^2.1.1", + "eslint-plugin-turbo": "^2.5.4", "postcss": "^8.4.39", "prettier": "^3.2.5", "sass": "^1.74.1", diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index 412ce1d3a..df7526671 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -1,8 +1,9 @@ @@ -227,17 +238,10 @@ onUnmounted(() => { @proceed="deleteProfile" />
-
- +
+ {{ row.label }} - - +
- {{ selectedAccount ? selectedAccount.username : 'Select account' }} + {{ selectedAccount ? selectedAccount.profile.name : 'Select account' }} Minecraft account
@@ -28,28 +26,40 @@ :class="{ expanded: mode === 'expanded', isolated: mode === 'isolated' }" >
- Thread ID: + Thread ID: +

This thread is closed and new messages cannot be sent to it.

@@ -125,7 +135,8 @@ :disabled="isApproved(project)" @click="sendReply(requestedStatus)" > -
- + + + + + + + copyId() }, + { id: 'copy-permalink', action: () => copyPermalink() }, ]" aria-label="More options" :dropdown-id="`${baseId}-more-options`" @@ -659,6 +728,10 @@ @@ -689,12 +762,7 @@ :tags="tags" class="card flex-card experimental-styles-within" /> - + useBaseFetch(`project/${route.params.id}`), { @@ -1159,14 +1247,30 @@ try { versions = shallowRef(toRaw(versions)); featuredVersions = shallowRef(toRaw(featuredVersions)); -} catch { +} catch (err) { throw createError({ fatal: true, - statusCode: 404, - message: "Project not found", + statusCode: err.statusCode ?? 500, + message: "Error loading project data" + (err.message ? `: ${err.message}` : ""), }); } +function handleError(err, project = false) { + if (err.value && err.value.statusCode) { + throw createError({ + fatal: true, + statusCode: err.value.statusCode, + message: err.value.statusCode === 404 && project ? "Project not found" : err.value.message, + }); + } +} + +handleError(projectError, true); +handleError(membersError); +handleError(dependenciesError); +handleError(featuredVersionsError); +handleError(versionsError); + if (!project.value) { throw createError({ fatal: true, @@ -1258,7 +1362,7 @@ featuredVersions.value.sort((a, b) => { }); const projectTypeDisplay = computed(() => - data.$formatProjectType( + formatProjectType( data.$getProjectTypeForDisplay(project.value.project_type, project.value.loaders), ), ); @@ -1276,6 +1380,10 @@ const description = computed( } by ${members.value.find((x) => x.is_owner)?.user?.username || "a Creator"} on Modrinth`, ); +const canCreateServerFrom = computed(() => { + return project.value.project_type === "modpack" && project.value.server_side !== "unsupported"; +}); + if (!route.name.startsWith("type-id-settings")) { useSeoMeta({ title: () => title.value, @@ -1325,7 +1433,7 @@ async function setProcessing() { data.$notify({ group: "main", title: "An error occurred", - text: err.data.description, + text: err.data ? err.data.description : err, type: "error", }); } @@ -1368,7 +1476,7 @@ async function patchProject(resData, quiet = false) { data.$notify({ group: "main", title: "An error occurred", - text: err.data.description, + text: err.data ? err.data.description : err, type: "error", }); window.scrollTo({ top: 0, behavior: "smooth" }); @@ -1405,7 +1513,7 @@ async function patchIcon(icon) { data.$notify({ group: "main", title: "An error occurred", - text: err.data.description, + text: err.data ? err.data.description : err, type: "error", }); @@ -1437,6 +1545,10 @@ async function copyId() { await navigator.clipboard.writeText(project.value.id); } +async function copyPermalink() { + await navigator.clipboard.writeText(`${config.public.siteUrl}/project/${project.value.id}`); +} + const collapsedChecklist = ref(false); const showModerationChecklist = ref(false); @@ -1605,10 +1717,12 @@ const navLinks = computed(() => { width: 25rem; height: 25rem; } + .animation-ring-2 { width: 50rem; height: 50rem; } + .animation-ring-3 { width: 100rem; height: 100rem; @@ -1638,4 +1752,33 @@ const navLinks = computed(() => { display: none; } } + +.servers-popup { + box-shadow: + 0 0 12px 1px rgba(0, 175, 92, 0.6), + var(--shadow-floating); + + &::before { + width: 0; + height: 0; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid var(--color-button-bg); + content: " "; + position: absolute; + top: -7px; + left: 17px; + } + &::after { + width: 0; + height: 0; + border-left: 5px solid transparent; + border-right: 5px solid transparent; + border-bottom: 5px solid var(--color-raised-bg); + content: " "; + position: absolute; + top: -5px; + left: 18px; + } +} diff --git a/apps/frontend/src/pages/[type]/[id]/moderation.vue b/apps/frontend/src/pages/[type]/[id]/moderation.vue index 86275b3a3..c7b9c3a22 100644 --- a/apps/frontend/src/pages/[type]/[id]/moderation.vue +++ b/apps/frontend/src/pages/[type]/[id]/moderation.vue @@ -50,7 +50,7 @@ Listed in search results
  • - + Not listed in search results
  • @@ -58,11 +58,11 @@ Listed on the profiles of members
  • - + Not listed on the profiles of members
  • - + Not accessible with a direct link
  • @@ -77,7 +77,7 @@ This is a private conversation thread with the Modrinth moderators. They may message you with issues concerning this project. This thread is only checked when you submit your project for review. For additional inquiries, contact - Modrinth support. + Modrinth Support.

    + diff --git a/apps/frontend/src/pages/app.vue b/apps/frontend/src/pages/app.vue index 01f07ba85..5fca6ca08 100644 --- a/apps/frontend/src/pages/app.vue +++ b/apps/frontend/src/pages/app.vue @@ -1,4 +1,4 @@ - + + diff --git a/apps/frontend/src/pages/collection/[id].vue b/apps/frontend/src/pages/collection/[id].vue index 6db09cb9c..6f522ee34 100644 --- a/apps/frontend/src/pages/collection/[id].vue +++ b/apps/frontend/src/pages/collection/[id].vue @@ -25,7 +25,8 @@
  • - +

    Members

    @@ -177,10 +184,12 @@

    You have been invited to join {{ organization.name }}.

    @@ -227,7 +236,8 @@
    -
    + +
    This organization doesn't have any projects yet. - - - -
    - - - - - diff --git a/apps/frontend/src/public/promo-frame.html b/apps/frontend/src/public/promo-frame.html index 2dc4fc32f..c8cce954c 100644 --- a/apps/frontend/src/public/promo-frame.html +++ b/apps/frontend/src/public/promo-frame.html @@ -95,15 +95,6 @@ }); document.addEventListener("contextmenu", (event) => event.preventDefault()); - - const plusLink = document.getElementById("plus-link"); - plusLink.addEventListener("click", function () { - window.__TAURI_INTERNALS__.invoke("plugin:ads|record_ads_click", {}); - window.__TAURI_INTERNALS__.invoke("plugin:ads|open_link", { - path: "https://modrinth.com/plus", - origin: "https://modrinth.com", - }); - }); diff --git a/apps/frontend/src/server/routes/loader-versions.ts b/apps/frontend/src/server/routes/loader-versions.ts deleted file mode 100644 index 989bac2b3..000000000 --- a/apps/frontend/src/server/routes/loader-versions.ts +++ /dev/null @@ -1,36 +0,0 @@ -const getLoaderVersions = async (loader: string) => { - const loaderVersions = await fetch( - `https://launcher-meta.modrinth.com/${loader?.toLowerCase()}/v0/manifest.json`, - ); - return loaderVersions.json(); -}; - -const getLoaderVersion = async (loader: string, version: string) => { - const loaderVersion = await fetch( - `https://launcher-meta.modrinth.com/${loader?.toLowerCase()}/v0/versions/${version}.json`, - ); - return loaderVersion.json(); -}; - -export default defineEventHandler(async (e) => { - const params = new URLSearchParams(e._path?.split("?")[1] ?? ""); - if (!params.has("loader")) - return new Response( - JSON.stringify({ - error: "Missing loader", - }), - { status: 400, headers: { "Content-Type": "application/json" } }, - ); - const loader = params.get("loader"); - const version = params.get("version"); - if (version) { - const loaderVersion = await getLoaderVersion(loader!, version); - return new Response(JSON.stringify(loaderVersion), { - headers: { "Content-Type": "application/json" }, - }); - } - const loaderVersions = await getLoaderVersions(loader!); - return new Response(JSON.stringify(loaderVersions), { - headers: { "Content-Type": "application/json" }, - }); -}); diff --git a/apps/frontend/src/store/console.ts b/apps/frontend/src/store/console.ts index 387fb4c63..cc452d19c 100644 --- a/apps/frontend/src/store/console.ts +++ b/apps/frontend/src/store/console.ts @@ -18,7 +18,7 @@ const initialBatchSize = 256; * @property {function(string): void} addConsoleOutput - Method to add a new console output line * @property {function(): void} clear - Method to clear all console output */ -export const usePyroConsole = createGlobalState(() => { +export const useModrinthServersConsole = createGlobalState(() => { /** * Reactive array storing console output lines * @type {Ref} diff --git a/apps/frontend/src/types/servers.ts b/apps/frontend/src/types/servers.ts deleted file mode 100644 index 8f76f594f..000000000 --- a/apps/frontend/src/types/servers.ts +++ /dev/null @@ -1,228 +0,0 @@ -// export interface Mod { -// id: string; -// filename: string; -// modrinth_ids: { -// project_id: string; -// version_id: string; -// }; -// } - -interface License { - id: string; - name: string; - url: string; -} - -interface DonationUrl { - id: string; - platform: string; - url: string; -} - -interface GalleryItem { - url: string; - featured: boolean; - title: string; - description: string; - created: string; - ordering: number; -} - -export interface Project { - slug: string; - title: string; - description: string; - categories: string[]; - client_side: "required" | "optional"; - server_side: "required" | "optional"; - body: string; - status: "approved" | "pending" | "rejected"; - requested_status: "approved" | "pending" | "rejected"; - additional_categories: string[]; - issues_url: string; - source_url: string; - wiki_url: string; - discord_url: string; - donation_urls: DonationUrl[]; - project_type: "mod" | "resourcepack" | "map" | "plugin"; - downloads: number; - icon_url: string; - color: number; - thread_id: string; - monetization_status: "monetized" | "non-monetized"; - id: string; - team: string; - body_url: string | null; - moderator_message: string | null; - published: string; - updated: string; - approved: string; - queued: string; - followers: number; - license: License; - versions: string[]; - game_versions: string[]; - loaders: string[]; - gallery: GalleryItem[]; -} - -export interface ServerBackup { - id: string; - name: string; - created_at: string; -} - -export interface Allocation { - name: string; - port: number; -} - -export interface Server { - server_id: string; - name: string; - status: string; - net: { - ip: string; - port: number; - domain: string; - allocations: Allocation[]; - }; - game: string; - loader: string | null; - loader_version: string | null; - mc_version: string | null; - backup_quota: number; - used_backup_quota: number; - backups: ServerBackup[]; - mods: Mod[]; - project: Project | null; - suspension_reason: string | null; - image: string | null; - upstream?: { - kind: "modpack"; - project_id: string; - version_id: string; - }; - motd: string; -} - -export interface Stats { - current: { - cpu_percent: number; - ram_usage_bytes: number; - ram_total_bytes: number; - storage_usage_bytes: number; - storage_total_bytes: number; - }; - past: { - cpu_percent: number; - ram_usage_bytes: number; - ram_total_bytes: number; - storage_usage_bytes: number; - storage_total_bytes: number; - }; - graph: { - cpu: number[]; - ram: number[]; - }; -} - -export interface WSAuth { - url: string; - token: string; -} - -export type ServerState = "running" | "stopped" | "crashed"; -// export type WebsocketEventType = -// | "log" -// | "auth" -// | "stats" -// | "power-state" -// | "auth-expiring" -// | "auth-incorrect" -// | "installation-result" -// | (string & {}); - -// export interface WSEvent { -// event: WebsocketEventType; -// message: string; -// state: ServerState; -// } - -export type Loaders = - | "Fabric" - | "Quilt" - | "Forge" - | "NeoForge" - | "Paper" - | "Spigot" - | "Bukkit" - | "Vanilla" - | "Purpur"; - -export interface WSLogEvent { - event: "log"; - message: string; -} - -type CurrentStats = Stats["current"]; - -export interface WSStatsEvent extends CurrentStats { - event: "stats"; -} - -export interface WSAuthExpiringEvent { - event: "auth-expiring"; -} - -export interface WSPowerStateEvent { - event: "power-state"; - state: ServerState; - // if state "crashed" - oom_killed?: boolean; - exit_code?: number; -} - -export interface WSAuthIncorrectEvent { - event: "auth-incorrect"; -} - -export interface WSInstallationResultOkEvent { - event: "installation-result"; - result: "ok"; -} - -export interface WSInstallationResultErrEvent { - event: "installation-result"; - result: "err"; - reason: string; -} -export type WSInstallationResultEvent = WSInstallationResultOkEvent | WSInstallationResultErrEvent; - -export interface WSAuthOkEvent { - event: "auth-ok"; -} - -export interface WSUptimeEvent { - event: "uptime"; - uptime: number; // seconds -} - -export interface WSNewModEvent { - event: "new-mod"; -} - -export type WSEvent = - | WSLogEvent - | WSStatsEvent - | WSPowerStateEvent - | WSAuthExpiringEvent - | WSAuthIncorrectEvent - | WSInstallationResultEvent - | WSAuthOkEvent - | WSUptimeEvent - | WSNewModEvent; - -export interface Servers { - servers: Server[]; -} diff --git a/apps/frontend/src/utils/analytics.js b/apps/frontend/src/utils/analytics.js index 7963ffad4..bc1acaf56 100644 --- a/apps/frontend/src/utils/analytics.js +++ b/apps/frontend/src/utils/analytics.js @@ -262,8 +262,9 @@ export const processAnalyticsByCountry = (category, projects, sortFn) => { loadedProjectData.forEach((data) => { Object.entries(data).forEach(([country, value]) => { - const current = countrySums.get(country) || 0; - countrySums.set(country, current + value); + const countryCode = country || "XX"; + const current = countrySums.get(countryCode) || 0; + countrySums.set(countryCode, current + value); }); }); diff --git a/apps/frontend/src/utils/fetch-helpers.ts b/apps/frontend/src/utils/fetch-helpers.ts new file mode 100644 index 000000000..81c5e88d2 --- /dev/null +++ b/apps/frontend/src/utils/fetch-helpers.ts @@ -0,0 +1,26 @@ +function segmentData(data: T[], segmentSize: number): T[][] { + return data.reduce((acc: T[][], curr, index) => { + const segment = Math.floor(index / segmentSize); + + if (!acc[segment]) { + acc[segment] = []; + } + acc[segment].push(curr); + return acc; + }, []); +} + +export function fetchSegmented( + data: T[], + createUrl: (ids: T[]) => string, + options = {}, + segmentSize = 800, +): Promise { + return Promise.all( + segmentData(data, segmentSize).map((ids) => useBaseFetch(createUrl(ids), options)), + ).then((results) => results.flat()); +} + +export function asEncodedJsonArray(data: T[]): string { + return encodeURIComponent(JSON.stringify(data)); +} diff --git a/apps/frontend/tailwind.config.js b/apps/frontend/tailwind.config.ts similarity index 89% rename from apps/frontend/tailwind.config.js rename to apps/frontend/tailwind.config.ts index 6efbe1fb0..9c9a51676 100644 --- a/apps/frontend/tailwind.config.js +++ b/apps/frontend/tailwind.config.ts @@ -1,5 +1,6 @@ -/** @type {import('tailwindcss').Config} */ -const config = { +import type { Config } from "tailwindcss"; + +const config: Config = { content: [ "./src/components/**/*.{js,vue,ts}", "./src/layouts/**/*.vue", @@ -36,6 +37,23 @@ const config = { purple: "var(--color-purple-bg)", raised: "var(--color-raised-bg)", }, + banners: { + error: { + bg: "var(--banner-error-bg)", + text: "var(--banner-error-text)", + border: "var(--banner-error-border)", + }, + warning: { + bg: "var(--banner-warning-bg)", + text: "var(--banner-warning-text)", + border: "var(--banner-warning-border)", + }, + info: { + bg: "var(--banner-info-bg)", + text: "var(--banner-info-text)", + border: "var(--banner-info-border)", + }, + }, highlight: { DEFAULT: "var(--color-brand-highlight)", red: "var(--color-red-highlight)", @@ -126,6 +144,7 @@ const config = { backgroundImage: { mazeBg: "var(--landing-maze-bg)", mazeGradientBg: "var(--landing-maze-gradient-bg)", + // @ts-ignore landing: { mazeOuterBg: "var(--landing-maze-outer-bg)", colorHeading: "var(--landing-color-heading)", diff --git a/apps/labrinth/.env b/apps/labrinth/.env.local similarity index 75% rename from apps/labrinth/.env rename to apps/labrinth/.env.local index 1a3359185..09b6e719d 100644 --- a/apps/labrinth/.env +++ b/apps/labrinth/.env.local @@ -2,8 +2,9 @@ DEBUG=true RUST_LOG=info,sqlx::query=warn SENTRY_DSN=none -SITE_URL=https://modrinth.com -CDN_URL=https://staging-cdn.modrinth.com +SITE_URL=http://localhost:3000 +# This CDN URL matches the local storage backend set below, which uses MOCK_FILE_PATH +CDN_URL=file:///tmp/modrinth LABRINTH_ADMIN_KEY=feedbeef RATE_LIMIT_IGNORE_KEY=feedbeef @@ -25,18 +26,21 @@ PUBLIC_DISCORD_WEBHOOK= CLOUDFLARE_INTEGRATION=false STORAGE_BACKEND=local - MOCK_FILE_PATH=/tmp/modrinth -BACKBLAZE_KEY_ID=none -BACKBLAZE_KEY=none -BACKBLAZE_BUCKET_ID=none +S3_PUBLIC_BUCKET_NAME=none +S3_PUBLIC_USES_PATH_STYLE_BUCKET=false +S3_PUBLIC_REGION=none +S3_PUBLIC_URL=none +S3_PUBLIC_ACCESS_TOKEN=none +S3_PUBLIC_SECRET=none -S3_ACCESS_TOKEN=none -S3_SECRET=none -S3_URL=none -S3_REGION=none -S3_BUCKET_NAME=none +S3_PRIVATE_BUCKET_NAME=none +S3_PRIVATE_USES_PATH_STYLE_BUCKET=false +S3_PRIVATE_REGION=none +S3_PRIVATE_URL=none +S3_PRIVATE_ACCESS_TOKEN=none +S3_PRIVATE_SECRET=none # 1 hour LOCAL_INDEX_INTERVAL=3600 @@ -81,12 +85,16 @@ TREMENDOUS_CAMPAIGN_ID=none HCAPTCHA_SECRET=none +SMTP_FROM_NAME=Modrinth +SMTP_FROM_ADDRESS=no-reply@mail.modrinth.com SMTP_USERNAME=none SMTP_PASSWORD=none SMTP_HOST=none +SMTP_PORT=465 +SMTP_TLS=tls -SITE_VERIFY_EMAIL_PATH=none -SITE_RESET_PASSWORD_PATH=none +SITE_VERIFY_EMAIL_PATH=auth/verify-email +SITE_RESET_PASSWORD_PATH=auth/reset-password SITE_BILLING_PATH=none SENDY_URL=none @@ -98,7 +106,7 @@ ANALYTICS_ALLOWED_ORIGINS='["http://127.0.0.1:3000", "http://localhost:3000", "h CLICKHOUSE_REPLICATED=false CLICKHOUSE_URL=http://localhost:8123 CLICKHOUSE_USER=default -CLICKHOUSE_PASSWORD= +CLICKHOUSE_PASSWORD=default CLICKHOUSE_DATABASE=staging_ariadne MAXMIND_LICENSE_KEY=none @@ -118,4 +126,4 @@ BREX_API_KEY=none DELPHI_URL=none DELPHI_SLACK_WEBHOOK=none -ARCHON_URL=none \ No newline at end of file +ARCHON_URL=none diff --git a/apps/labrinth/.sqlx/query-010cafcafb6adc25b00e3c81d844736b0245e752a90334c58209d8a02536c800.json b/apps/labrinth/.sqlx/query-010cafcafb6adc25b00e3c81d844736b0245e752a90334c58209d8a02536c800.json deleted file mode 100644 index 1336c5438..000000000 --- a/apps/labrinth/.sqlx/query-010cafcafb6adc25b00e3c81d844736b0245e752a90334c58209d8a02536c800.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET moderation_message = NULL, moderation_message_body = NULL, queued = NOW()\n WHERE (id = $1)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [] - }, - "hash": "010cafcafb6adc25b00e3c81d844736b0245e752a90334c58209d8a02536c800" -} diff --git a/apps/labrinth/.sqlx/query-09ebec1a568edf1959f20b33d8ba2b8edb55d93ada8f2243448865163f555d8d.json b/apps/labrinth/.sqlx/query-09ebec1a568edf1959f20b33d8ba2b8edb55d93ada8f2243448865163f555d8d.json new file mode 100644 index 000000000..03bf9d951 --- /dev/null +++ b/apps/labrinth/.sqlx/query-09ebec1a568edf1959f20b33d8ba2b8edb55d93ada8f2243448865163f555d8d.json @@ -0,0 +1,16 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO shared_instance_users (user_id, shared_instance_id, permissions)\n VALUES ($1, $2, $3)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "09ebec1a568edf1959f20b33d8ba2b8edb55d93ada8f2243448865163f555d8d" +} diff --git a/apps/labrinth/.sqlx/query-0d01a3991e7551a8b7936bf8f4cc1760d2e89af99dd71849eda35d6c6820aa43.json b/apps/labrinth/.sqlx/query-0d01a3991e7551a8b7936bf8f4cc1760d2e89af99dd71849eda35d6c6820aa43.json new file mode 100644 index 000000000..4a8e5af6a --- /dev/null +++ b/apps/labrinth/.sqlx/query-0d01a3991e7551a8b7936bf8f4cc1760d2e89af99dd71849eda35d6c6820aa43.json @@ -0,0 +1,23 @@ +{ + "db_name": "PostgreSQL", + "query": "WITH random_id_point AS (\n SELECT POINT(RANDOM() * ((SELECT MAX(id) FROM mods) - (SELECT MIN(id) FROM mods) + 1) + (SELECT MIN(id) FROM mods), 0) AS point\n )\n SELECT id FROM mods\n WHERE status = ANY($1)\n ORDER BY POINT(id, 0) <-> (SELECT point FROM random_id_point)\n LIMIT $2", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "TextArray", + "Int8" + ] + }, + "nullable": [ + false + ] + }, + "hash": "0d01a3991e7551a8b7936bf8f4cc1760d2e89af99dd71849eda35d6c6820aa43" +} diff --git a/apps/labrinth/.sqlx/query-06bf1b34b70f5e61bf619c4d7706d07d6db413751ecab86896a708c8539e38b6.json b/apps/labrinth/.sqlx/query-0fcbb92442bdab97fd1b44a0eecb28c05a4c6d482b3fa7874902ee8e846d20b0.json similarity index 80% rename from apps/labrinth/.sqlx/query-06bf1b34b70f5e61bf619c4d7706d07d6db413751ecab86896a708c8539e38b6.json rename to apps/labrinth/.sqlx/query-0fcbb92442bdab97fd1b44a0eecb28c05a4c6d482b3fa7874902ee8e846d20b0.json index 245750239..7e43235fb 100644 --- a/apps/labrinth/.sqlx/query-06bf1b34b70f5e61bf619c4d7706d07d6db413751ecab86896a708c8539e38b6.json +++ b/apps/labrinth/.sqlx/query-0fcbb92442bdab97fd1b44a0eecb28c05a4c6d482b3fa7874902ee8e846d20b0.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT tm.id, tm.team_id, tm.user_id, tm.role, tm.is_owner, tm.permissions, tm.organization_permissions, tm.accepted, tm.payouts_split, tm.ordering, v.mod_id \n FROM versions v\n INNER JOIN mods m ON m.id = v.mod_id\n INNER JOIN team_members tm ON tm.team_id = m.team_id AND tm.user_id = $2 AND tm.accepted = TRUE\n WHERE v.id = $1\n ", + "query": "\n SELECT tm.id, tm.team_id, tm.user_id, tm.role, tm.is_owner, tm.permissions, tm.organization_permissions, tm.accepted, tm.payouts_split, tm.ordering, v.mod_id\n FROM versions v\n INNER JOIN mods m ON m.id = v.mod_id\n INNER JOIN team_members tm ON tm.team_id = m.team_id AND tm.user_id = $2 AND tm.accepted = TRUE\n WHERE v.id = $1\n ", "describe": { "columns": [ { @@ -79,5 +79,5 @@ false ] }, - "hash": "06bf1b34b70f5e61bf619c4d7706d07d6db413751ecab86896a708c8539e38b6" + "hash": "0fcbb92442bdab97fd1b44a0eecb28c05a4c6d482b3fa7874902ee8e846d20b0" } diff --git a/apps/labrinth/.sqlx/query-124fbf0544ea6989d6dc5e840405dbc76d7385276a38ad79d9093c53c73bbde2.json b/apps/labrinth/.sqlx/query-124fbf0544ea6989d6dc5e840405dbc76d7385276a38ad79d9093c53c73bbde2.json deleted file mode 100644 index ecf7f3118..000000000 --- a/apps/labrinth/.sqlx/query-124fbf0544ea6989d6dc5e840405dbc76d7385276a38ad79d9093c53c73bbde2.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET webhook_sent = TRUE\n WHERE id = $1\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [] - }, - "hash": "124fbf0544ea6989d6dc5e840405dbc76d7385276a38ad79d9093c53c73bbde2" -} diff --git a/apps/labrinth/.sqlx/query-186d0e933ece20163915926293a01754ff571de4f06e521bb4f7c0207268e03b.json b/apps/labrinth/.sqlx/query-186d0e933ece20163915926293a01754ff571de4f06e521bb4f7c0207268e03b.json deleted file mode 100644 index e31392b44..000000000 --- a/apps/labrinth/.sqlx/query-186d0e933ece20163915926293a01754ff571de4f06e521bb4f7c0207268e03b.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n DELETE FROM mods_links\n WHERE joining_mod_id = $1 AND joining_platform_id IN (\n SELECT id FROM link_platforms WHERE name = ANY($2)\n )\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8", - "TextArray" - ] - }, - "nullable": [] - }, - "hash": "186d0e933ece20163915926293a01754ff571de4f06e521bb4f7c0207268e03b" -} diff --git a/apps/labrinth/.sqlx/query-19dc22c4d6d14222f8e8bace74c2961761c53b7375460ade15af921754d5d7da.json b/apps/labrinth/.sqlx/query-19dc22c4d6d14222f8e8bace74c2961761c53b7375460ade15af921754d5d7da.json deleted file mode 100644 index 9254267e3..000000000 --- a/apps/labrinth/.sqlx/query-19dc22c4d6d14222f8e8bace74c2961761c53b7375460ade15af921754d5d7da.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET license = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "19dc22c4d6d14222f8e8bace74c2961761c53b7375460ade15af921754d5d7da" -} diff --git a/apps/labrinth/.sqlx/query-1ebe19b7b4f10039065967a0b1ca4bb38acc54e4ea5de020fffef7457000fa6e.json b/apps/labrinth/.sqlx/query-1ebe19b7b4f10039065967a0b1ca4bb38acc54e4ea5de020fffef7457000fa6e.json new file mode 100644 index 000000000..c584ce964 --- /dev/null +++ b/apps/labrinth/.sqlx/query-1ebe19b7b4f10039065967a0b1ca4bb38acc54e4ea5de020fffef7457000fa6e.json @@ -0,0 +1,46 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT id, title, owner_id, public, current_version_id\n FROM shared_instances\n WHERE id = $1\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "title", + "type_info": "Varchar" + }, + { + "ordinal": 2, + "name": "owner_id", + "type_info": "Int8" + }, + { + "ordinal": 3, + "name": "public", + "type_info": "Bool" + }, + { + "ordinal": 4, + "name": "current_version_id", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + false, + false, + false, + false, + true + ] + }, + "hash": "1ebe19b7b4f10039065967a0b1ca4bb38acc54e4ea5de020fffef7457000fa6e" +} diff --git a/apps/labrinth/.sqlx/query-265c4d6f33714c8a5cf3137c429e2b57e917e9507942d65f40c1b733209cabf0.json b/apps/labrinth/.sqlx/query-265c4d6f33714c8a5cf3137c429e2b57e917e9507942d65f40c1b733209cabf0.json new file mode 100644 index 000000000..7902fc25e --- /dev/null +++ b/apps/labrinth/.sqlx/query-265c4d6f33714c8a5cf3137c429e2b57e917e9507942d65f40c1b733209cabf0.json @@ -0,0 +1,46 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT id, shared_instance_id, size, sha512, created\n FROM shared_instance_versions\n WHERE shared_instance_id = $1\n ORDER BY created DESC\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "shared_instance_id", + "type_info": "Int8" + }, + { + "ordinal": 2, + "name": "size", + "type_info": "Int8" + }, + { + "ordinal": 3, + "name": "sha512", + "type_info": "Bytea" + }, + { + "ordinal": 4, + "name": "created", + "type_info": "Timestamptz" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + false, + false, + false, + false, + false + ] + }, + "hash": "265c4d6f33714c8a5cf3137c429e2b57e917e9507942d65f40c1b733209cabf0" +} diff --git a/apps/labrinth/.sqlx/query-1243d13d622a9970240c8f26b5031b4c68d08607f7a0142b662b53eb05b4723a.json b/apps/labrinth/.sqlx/query-282ec0ee4a4ef739fc24af40d2c9be2a335ea9a32a1d19a450aef02f1c58334e.json similarity index 74% rename from apps/labrinth/.sqlx/query-1243d13d622a9970240c8f26b5031b4c68d08607f7a0142b662b53eb05b4723a.json rename to apps/labrinth/.sqlx/query-282ec0ee4a4ef739fc24af40d2c9be2a335ea9a32a1d19a450aef02f1c58334e.json index 0d9a9e0e1..3d7252d4b 100644 --- a/apps/labrinth/.sqlx/query-1243d13d622a9970240c8f26b5031b4c68d08607f7a0142b662b53eb05b4723a.json +++ b/apps/labrinth/.sqlx/query-282ec0ee4a4ef739fc24af40d2c9be2a335ea9a32a1d19a450aef02f1c58334e.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT lfe.id, lfe.enum_name, lfe.ordering, lfe.hidable \n FROM loader_field_enums lfe\n WHERE lfe.enum_name = $1\n ORDER BY lfe.ordering ASC\n ", + "query": "\n SELECT lfe.id, lfe.enum_name, lfe.ordering, lfe.hidable\n FROM loader_field_enums lfe\n WHERE lfe.enum_name = $1\n ORDER BY lfe.ordering ASC\n ", "describe": { "columns": [ { @@ -36,5 +36,5 @@ false ] }, - "hash": "1243d13d622a9970240c8f26b5031b4c68d08607f7a0142b662b53eb05b4723a" + "hash": "282ec0ee4a4ef739fc24af40d2c9be2a335ea9a32a1d19a450aef02f1c58334e" } diff --git a/apps/labrinth/.sqlx/query-299b8ea6e7a0048fa389cc4432715dc2a09e227d2f08e91167a43372a7ac6e35.json b/apps/labrinth/.sqlx/query-299b8ea6e7a0048fa389cc4432715dc2a09e227d2f08e91167a43372a7ac6e35.json new file mode 100644 index 000000000..eecc67513 --- /dev/null +++ b/apps/labrinth/.sqlx/query-299b8ea6e7a0048fa389cc4432715dc2a09e227d2f08e91167a43372a7ac6e35.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n DELETE FROM mods_categories\n WHERE joining_mod_id = $1 AND is_additional = FALSE\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "299b8ea6e7a0048fa389cc4432715dc2a09e227d2f08e91167a43372a7ac6e35" +} diff --git a/apps/labrinth/.sqlx/query-9abdd9a2018e7bfe26836dd5463ba0923ef0a76c32ca258faf55fc3301c567bf.json b/apps/labrinth/.sqlx/query-2d2cb03a63c4692080dd58f88f34ac63b20f89c9e7d6f520865133de60b9e911.json similarity index 87% rename from apps/labrinth/.sqlx/query-9abdd9a2018e7bfe26836dd5463ba0923ef0a76c32ca258faf55fc3301c567bf.json rename to apps/labrinth/.sqlx/query-2d2cb03a63c4692080dd58f88f34ac63b20f89c9e7d6f520865133de60b9e911.json index 92195b683..5bc576cd0 100644 --- a/apps/labrinth/.sqlx/query-9abdd9a2018e7bfe26836dd5463ba0923ef0a76c32ca258faf55fc3301c567bf.json +++ b/apps/labrinth/.sqlx/query-2d2cb03a63c4692080dd58f88f34ac63b20f89c9e7d6f520865133de60b9e911.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT id, team_id, role AS member_role, is_owner, permissions, organization_permissions,\n accepted, payouts_split, role,\n ordering, user_id\n \n FROM team_members\n WHERE (team_id = $1 AND user_id = $2)\n ORDER BY ordering\n ", + "query": "\n SELECT id, team_id, role AS member_role, is_owner, permissions, organization_permissions,\n accepted, payouts_split, role,\n ordering, user_id\n\n FROM team_members\n WHERE (team_id = $1 AND user_id = $2)\n ORDER BY ordering\n ", "describe": { "columns": [ { @@ -79,5 +79,5 @@ false ] }, - "hash": "9abdd9a2018e7bfe26836dd5463ba0923ef0a76c32ca258faf55fc3301c567bf" + "hash": "2d2cb03a63c4692080dd58f88f34ac63b20f89c9e7d6f520865133de60b9e911" } diff --git a/apps/labrinth/.sqlx/query-33893ae0a7d244c33b489e4d4fa444fa17a6bb5b7a834794a5482f4dc85c6ce0.json b/apps/labrinth/.sqlx/query-33893ae0a7d244c33b489e4d4fa444fa17a6bb5b7a834794a5482f4dc85c6ce0.json new file mode 100644 index 000000000..dbc44c235 --- /dev/null +++ b/apps/labrinth/.sqlx/query-33893ae0a7d244c33b489e4d4fa444fa17a6bb5b7a834794a5482f4dc85c6ce0.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE payouts\n SET status = $1\n WHERE status = $2 AND created < NOW() - INTERVAL '30 days'\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Text" + ] + }, + "nullable": [] + }, + "hash": "33893ae0a7d244c33b489e4d4fa444fa17a6bb5b7a834794a5482f4dc85c6ce0" +} diff --git a/apps/labrinth/.sqlx/query-374c234b92b838b0bd65de100a9008b0fb78c79976fd858e0599e1ccb7f08b82.json b/apps/labrinth/.sqlx/query-374c234b92b838b0bd65de100a9008b0fb78c79976fd858e0599e1ccb7f08b82.json new file mode 100644 index 000000000..4e906d600 --- /dev/null +++ b/apps/labrinth/.sqlx/query-374c234b92b838b0bd65de100a9008b0fb78c79976fd858e0599e1ccb7f08b82.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET side_types_migration_review_status = $1\n WHERE id = $2\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "374c234b92b838b0bd65de100a9008b0fb78c79976fd858e0599e1ccb7f08b82" +} diff --git a/apps/labrinth/.sqlx/query-3fcfed18cbfb37866e0fa57a4e95efb326864f8219941d1b696add39ed333ad1.json b/apps/labrinth/.sqlx/query-3fcfed18cbfb37866e0fa57a4e95efb326864f8219941d1b696add39ed333ad1.json new file mode 100644 index 000000000..73e76e5ed --- /dev/null +++ b/apps/labrinth/.sqlx/query-3fcfed18cbfb37866e0fa57a4e95efb326864f8219941d1b696add39ed333ad1.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n DELETE FROM mods_categories\n WHERE joining_mod_id = $1 AND is_additional = TRUE\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "3fcfed18cbfb37866e0fa57a4e95efb326864f8219941d1b696add39ed333ad1" +} diff --git a/apps/labrinth/.sqlx/query-40f7c5bec98fe3503d6bd6db2eae5a4edb8d5d6efda9b9dc124f344ae5c60e08.json b/apps/labrinth/.sqlx/query-40f7c5bec98fe3503d6bd6db2eae5a4edb8d5d6efda9b9dc124f344ae5c60e08.json deleted file mode 100644 index 4190c1eb4..000000000 --- a/apps/labrinth/.sqlx/query-40f7c5bec98fe3503d6bd6db2eae5a4edb8d5d6efda9b9dc124f344ae5c60e08.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n DELETE FROM mods_categories\n WHERE joining_mod_id = $1 AND is_additional = TRUE\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [] - }, - "hash": "40f7c5bec98fe3503d6bd6db2eae5a4edb8d5d6efda9b9dc124f344ae5c60e08" -} diff --git a/apps/labrinth/.sqlx/query-41ec8301348dc912d0e5a16def1179cc9c02b1c0364319e76454dff713abdd45.json b/apps/labrinth/.sqlx/query-41ec8301348dc912d0e5a16def1179cc9c02b1c0364319e76454dff713abdd45.json new file mode 100644 index 000000000..117ee6ed2 --- /dev/null +++ b/apps/labrinth/.sqlx/query-41ec8301348dc912d0e5a16def1179cc9c02b1c0364319e76454dff713abdd45.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE versions\n SET status = requested_status\n WHERE status = $1 AND date_published < CURRENT_DATE AND requested_status IS NOT NULL\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Text" + ] + }, + "nullable": [] + }, + "hash": "41ec8301348dc912d0e5a16def1179cc9c02b1c0364319e76454dff713abdd45" +} diff --git a/apps/labrinth/.sqlx/query-f34bbe639ad21801258dc8beaab9877229a451761be07f85a1dd04d027832329.json b/apps/labrinth/.sqlx/query-46c32719ad68b667e816f58f55b5b4829bff8f0fbb039a0eda7bf08a430ba466.json similarity index 58% rename from apps/labrinth/.sqlx/query-f34bbe639ad21801258dc8beaab9877229a451761be07f85a1dd04d027832329.json rename to apps/labrinth/.sqlx/query-46c32719ad68b667e816f58f55b5b4829bff8f0fbb039a0eda7bf08a430ba466.json index ec3004f9c..be7f9faea 100644 --- a/apps/labrinth/.sqlx/query-f34bbe639ad21801258dc8beaab9877229a451761be07f85a1dd04d027832329.json +++ b/apps/labrinth/.sqlx/query-46c32719ad68b667e816f58f55b5b4829bff8f0fbb039a0eda7bf08a430ba466.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT EXISTS(SELECT 1 FROM mods WHERE id=$1)\n ", + "query": "SELECT EXISTS(SELECT 1 FROM payouts WHERE id=$1)", "describe": { "columns": [ { @@ -18,5 +18,5 @@ null ] }, - "hash": "f34bbe639ad21801258dc8beaab9877229a451761be07f85a1dd04d027832329" + "hash": "46c32719ad68b667e816f58f55b5b4829bff8f0fbb039a0eda7bf08a430ba466" } diff --git a/apps/labrinth/.sqlx/query-47130ef29ce5914528e5424fe516a9158a3ea08f8720f6df5b4902cd8094d3bb.json b/apps/labrinth/.sqlx/query-47130ef29ce5914528e5424fe516a9158a3ea08f8720f6df5b4902cd8094d3bb.json new file mode 100644 index 000000000..24e1d953b --- /dev/null +++ b/apps/labrinth/.sqlx/query-47130ef29ce5914528e5424fe516a9158a3ea08f8720f6df5b4902cd8094d3bb.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n DELETE FROM shared_instance_versions\n WHERE id = $1\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "47130ef29ce5914528e5424fe516a9158a3ea08f8720f6df5b4902cd8094d3bb" +} diff --git a/apps/labrinth/.sqlx/query-47ec9f179f1c52213bd32b37621ab13ae43d180b8c86cb2a6fab0253dd4eba55.json b/apps/labrinth/.sqlx/query-47ec9f179f1c52213bd32b37621ab13ae43d180b8c86cb2a6fab0253dd4eba55.json new file mode 100644 index 000000000..2d0db8068 --- /dev/null +++ b/apps/labrinth/.sqlx/query-47ec9f179f1c52213bd32b37621ab13ae43d180b8c86cb2a6fab0253dd4eba55.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "UPDATE shared_instances SET current_version_id = $1 WHERE id = $2", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "47ec9f179f1c52213bd32b37621ab13ae43d180b8c86cb2a6fab0253dd4eba55" +} diff --git a/apps/labrinth/.sqlx/query-483cb875ba81c7563a2f7220158cfcb9e6a117a4efc070438606e4c94103a9a4.json b/apps/labrinth/.sqlx/query-483cb875ba81c7563a2f7220158cfcb9e6a117a4efc070438606e4c94103a9a4.json new file mode 100644 index 000000000..8fa7eb726 --- /dev/null +++ b/apps/labrinth/.sqlx/query-483cb875ba81c7563a2f7220158cfcb9e6a117a4efc070438606e4c94103a9a4.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE users\n SET avatar_url = NULL, raw_avatar_url = NULL\n WHERE (id = $1)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "483cb875ba81c7563a2f7220158cfcb9e6a117a4efc070438606e4c94103a9a4" +} diff --git a/apps/labrinth/.sqlx/query-4ce906f3bec42a2d4b9ed8b8481bd168aaa2f791305f30adbf3b002ba39da7fa.json b/apps/labrinth/.sqlx/query-4ce906f3bec42a2d4b9ed8b8481bd168aaa2f791305f30adbf3b002ba39da7fa.json new file mode 100644 index 000000000..ec8e1a23b --- /dev/null +++ b/apps/labrinth/.sqlx/query-4ce906f3bec42a2d4b9ed8b8481bd168aaa2f791305f30adbf3b002ba39da7fa.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET status = requested_status\n WHERE status = $1 AND approved < CURRENT_DATE AND requested_status IS NOT NULL\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Text" + ] + }, + "nullable": [] + }, + "hash": "4ce906f3bec42a2d4b9ed8b8481bd168aaa2f791305f30adbf3b002ba39da7fa" +} diff --git a/apps/labrinth/.sqlx/query-4e9f9eafbfd705dfc94571018cb747245a98ea61bad3fae4b3ce284229d99955.json b/apps/labrinth/.sqlx/query-4e9f9eafbfd705dfc94571018cb747245a98ea61bad3fae4b3ce284229d99955.json deleted file mode 100644 index be21454a5..000000000 --- a/apps/labrinth/.sqlx/query-4e9f9eafbfd705dfc94571018cb747245a98ea61bad3fae4b3ce284229d99955.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET description = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "4e9f9eafbfd705dfc94571018cb747245a98ea61bad3fae4b3ce284229d99955" -} diff --git a/apps/labrinth/.sqlx/query-4fb5bd341369b4beb6b4a88de296b608ea5441a96db9f7360fbdccceb4628202.json b/apps/labrinth/.sqlx/query-4fb5bd341369b4beb6b4a88de296b608ea5441a96db9f7360fbdccceb4628202.json deleted file mode 100644 index 279dbcf75..000000000 --- a/apps/labrinth/.sqlx/query-4fb5bd341369b4beb6b4a88de296b608ea5441a96db9f7360fbdccceb4628202.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET slug = LOWER($1)\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Text", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "4fb5bd341369b4beb6b4a88de296b608ea5441a96db9f7360fbdccceb4628202" -} diff --git a/apps/labrinth/.sqlx/query-595f4e7432d5b41002988c6cc6b0b1f09273ad02c319e6631c74d80a9b278328.json b/apps/labrinth/.sqlx/query-595f4e7432d5b41002988c6cc6b0b1f09273ad02c319e6631c74d80a9b278328.json new file mode 100644 index 000000000..5474a7c6b --- /dev/null +++ b/apps/labrinth/.sqlx/query-595f4e7432d5b41002988c6cc6b0b1f09273ad02c319e6631c74d80a9b278328.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET summary = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "595f4e7432d5b41002988c6cc6b0b1f09273ad02c319e6631c74d80a9b278328" +} diff --git a/apps/labrinth/.sqlx/query-6366891bb34a14278f1ae857b8d6f68dff44badae9ae5c5aceba3c32e8d00356.json b/apps/labrinth/.sqlx/query-6366891bb34a14278f1ae857b8d6f68dff44badae9ae5c5aceba3c32e8d00356.json deleted file mode 100644 index b262237e9..000000000 --- a/apps/labrinth/.sqlx/query-6366891bb34a14278f1ae857b8d6f68dff44badae9ae5c5aceba3c32e8d00356.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n INSERT INTO mods_links (joining_mod_id, joining_platform_id, url)\n VALUES ($1, $2, $3)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8", - "Int4", - "Varchar" - ] - }, - "nullable": [] - }, - "hash": "6366891bb34a14278f1ae857b8d6f68dff44badae9ae5c5aceba3c32e8d00356" -} diff --git a/apps/labrinth/.sqlx/query-652a5765bda0b78034a291e382a063126529d91f308cbafed2c6e635a3013b30.json b/apps/labrinth/.sqlx/query-652a5765bda0b78034a291e382a063126529d91f308cbafed2c6e635a3013b30.json new file mode 100644 index 000000000..f855ed9cf --- /dev/null +++ b/apps/labrinth/.sqlx/query-652a5765bda0b78034a291e382a063126529d91f308cbafed2c6e635a3013b30.json @@ -0,0 +1,29 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT created, SUM(amount) sum\n FROM payouts_values\n WHERE created BETWEEN $1 AND $2\n GROUP BY created\n ORDER BY created DESC\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "created", + "type_info": "Timestamptz" + }, + { + "ordinal": 1, + "name": "sum", + "type_info": "Numeric" + } + ], + "parameters": { + "Left": [ + "Timestamptz", + "Timestamptz" + ] + }, + "nullable": [ + false, + null + ] + }, + "hash": "652a5765bda0b78034a291e382a063126529d91f308cbafed2c6e635a3013b30" +} diff --git a/apps/labrinth/.sqlx/query-66b06ddcd0a4cf01e716331befa393a12631fe6752a7d078bda06b24d50daae2.json b/apps/labrinth/.sqlx/query-66b06ddcd0a4cf01e716331befa393a12631fe6752a7d078bda06b24d50daae2.json deleted file mode 100644 index f2e83cf92..000000000 --- a/apps/labrinth/.sqlx/query-66b06ddcd0a4cf01e716331befa393a12631fe6752a7d078bda06b24d50daae2.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET requested_status = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "66b06ddcd0a4cf01e716331befa393a12631fe6752a7d078bda06b24d50daae2" -} diff --git a/apps/labrinth/.sqlx/query-6b166d129b0ee028898620054a58fa4c3641eb2221e522bf50abad4f5e977599.json b/apps/labrinth/.sqlx/query-6b166d129b0ee028898620054a58fa4c3641eb2221e522bf50abad4f5e977599.json new file mode 100644 index 000000000..910adbc36 --- /dev/null +++ b/apps/labrinth/.sqlx/query-6b166d129b0ee028898620054a58fa4c3641eb2221e522bf50abad4f5e977599.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE shared_instances\n SET public = $1\n WHERE id = $2\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Bool", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "6b166d129b0ee028898620054a58fa4c3641eb2221e522bf50abad4f5e977599" +} diff --git a/apps/labrinth/.sqlx/query-6f72c853e139f23322fe6f1f02e4e07e5ae80b5dfca6dc041a03c0c7a30a5cf1.json b/apps/labrinth/.sqlx/query-6f72c853e139f23322fe6f1f02e4e07e5ae80b5dfca6dc041a03c0c7a30a5cf1.json new file mode 100644 index 000000000..35b064008 --- /dev/null +++ b/apps/labrinth/.sqlx/query-6f72c853e139f23322fe6f1f02e4e07e5ae80b5dfca6dc041a03c0c7a30a5cf1.json @@ -0,0 +1,17 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO shared_instances (id, title, owner_id, current_version_id)\n VALUES ($1, $2, $3, $4)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Varchar", + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "6f72c853e139f23322fe6f1f02e4e07e5ae80b5dfca6dc041a03c0c7a30a5cf1" +} diff --git a/apps/labrinth/.sqlx/query-70be97b02e402de0490ade5866c47232f9c341add2f3838cc3ae1a07a310d561.json b/apps/labrinth/.sqlx/query-70be97b02e402de0490ade5866c47232f9c341add2f3838cc3ae1a07a310d561.json new file mode 100644 index 000000000..c75b97c5d --- /dev/null +++ b/apps/labrinth/.sqlx/query-70be97b02e402de0490ade5866c47232f9c341add2f3838cc3ae1a07a310d561.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET name = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "70be97b02e402de0490ade5866c47232f9c341add2f3838cc3ae1a07a310d561" +} diff --git a/apps/labrinth/.sqlx/query-72ae0e8debd06067894a2f7bea279446dd964da4efa49c5464cebde57860f741.json b/apps/labrinth/.sqlx/query-72ae0e8debd06067894a2f7bea279446dd964da4efa49c5464cebde57860f741.json new file mode 100644 index 000000000..e0787e3bb --- /dev/null +++ b/apps/labrinth/.sqlx/query-72ae0e8debd06067894a2f7bea279446dd964da4efa49c5464cebde57860f741.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE shared_instances\n SET owner_id = $1\n WHERE owner_id = $2\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "72ae0e8debd06067894a2f7bea279446dd964da4efa49c5464cebde57860f741" +} diff --git a/apps/labrinth/.sqlx/query-79040825457845cc078be7b3293804d6fb2e05ffce07e7b4248d8705d6fc6e61.json b/apps/labrinth/.sqlx/query-79040825457845cc078be7b3293804d6fb2e05ffce07e7b4248d8705d6fc6e61.json new file mode 100644 index 000000000..5c989cc2a --- /dev/null +++ b/apps/labrinth/.sqlx/query-79040825457845cc078be7b3293804d6fb2e05ffce07e7b4248d8705d6fc6e61.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET moderation_message_body = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "79040825457845cc078be7b3293804d6fb2e05ffce07e7b4248d8705d6fc6e61" +} diff --git a/apps/labrinth/.sqlx/query-7916fe4f04067324ae05598ec9dc6f97f18baf9eda30c64f32677158ada87478.json b/apps/labrinth/.sqlx/query-7916fe4f04067324ae05598ec9dc6f97f18baf9eda30c64f32677158ada87478.json deleted file mode 100644 index 6996aa840..000000000 --- a/apps/labrinth/.sqlx/query-7916fe4f04067324ae05598ec9dc6f97f18baf9eda30c64f32677158ada87478.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET monetization_status = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "7916fe4f04067324ae05598ec9dc6f97f18baf9eda30c64f32677158ada87478" -} diff --git a/apps/labrinth/.sqlx/query-79bdf720ec3631954c06fbba1da25b7e70db2e920ef1f2be77aa06f76da200fe.json b/apps/labrinth/.sqlx/query-79bdf720ec3631954c06fbba1da25b7e70db2e920ef1f2be77aa06f76da200fe.json new file mode 100644 index 000000000..aa8650874 --- /dev/null +++ b/apps/labrinth/.sqlx/query-79bdf720ec3631954c06fbba1da25b7e70db2e920ef1f2be77aa06f76da200fe.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE users_subscriptions\n SET user_id = $1\n WHERE user_id = $2\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "79bdf720ec3631954c06fbba1da25b7e70db2e920ef1f2be77aa06f76da200fe" +} diff --git a/apps/labrinth/.sqlx/query-c7c400d74c478b4194f478f6d732a92c0b9a72e1cb6147009018b2712398c24f.json b/apps/labrinth/.sqlx/query-7a6d6a91e6bd27f7be34b8cc7955a66c4175ebd1c55e437f187f61efca681c62.json similarity index 71% rename from apps/labrinth/.sqlx/query-c7c400d74c478b4194f478f6d732a92c0b9a72e1cb6147009018b2712398c24f.json rename to apps/labrinth/.sqlx/query-7a6d6a91e6bd27f7be34b8cc7955a66c4175ebd1c55e437f187f61efca681c62.json index 4e4a0ac69..f7cb84084 100644 --- a/apps/labrinth/.sqlx/query-c7c400d74c478b4194f478f6d732a92c0b9a72e1cb6147009018b2712398c24f.json +++ b/apps/labrinth/.sqlx/query-7a6d6a91e6bd27f7be34b8cc7955a66c4175ebd1c55e437f187f61efca681c62.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT m.id id, m.name name, m.summary summary, m.downloads downloads, m.follows follows,\n m.icon_url icon_url, m.raw_icon_url raw_icon_url, m.description description, m.published published,\n m.updated updated, m.approved approved, m.queued, m.status status, m.requested_status requested_status,\n m.license_url license_url,\n m.team_id team_id, m.organization_id organization_id, m.license license, m.slug slug, m.moderation_message moderation_message, m.moderation_message_body moderation_message_body,\n m.webhook_sent, m.color,\n t.id thread_id, m.monetization_status monetization_status,\n ARRAY_AGG(DISTINCT c.category) filter (where c.category is not null and mc.is_additional is false) categories,\n ARRAY_AGG(DISTINCT c.category) filter (where c.category is not null and mc.is_additional is true) additional_categories\n FROM mods m\n INNER JOIN threads t ON t.mod_id = m.id\n LEFT JOIN mods_categories mc ON mc.joining_mod_id = m.id\n LEFT JOIN categories c ON mc.joining_category_id = c.id\n WHERE m.id = ANY($1) OR m.slug = ANY($2)\n GROUP BY t.id, m.id;\n ", + "query": "\n SELECT m.id id, m.name name, m.summary summary, m.downloads downloads, m.follows follows,\n m.icon_url icon_url, m.raw_icon_url raw_icon_url, m.description description, m.published published,\n m.approved approved, m.queued, m.status status, m.requested_status requested_status,\n m.license_url license_url,\n m.team_id team_id, m.organization_id organization_id, m.license license, m.slug slug, m.moderation_message moderation_message, m.moderation_message_body moderation_message_body,\n m.webhook_sent, m.color,\n t.id thread_id, m.monetization_status monetization_status,\n m.side_types_migration_review_status side_types_migration_review_status,\n ARRAY_AGG(DISTINCT c.category) filter (where c.category is not null and mc.is_additional is false) categories,\n ARRAY_AGG(DISTINCT c.category) filter (where c.category is not null and mc.is_additional is true) additional_categories\n FROM mods m\n INNER JOIN threads t ON t.mod_id = m.id\n LEFT JOIN mods_categories mc ON mc.joining_mod_id = m.id\n LEFT JOIN categories c ON mc.joining_category_id = c.id\n WHERE m.id = ANY($1) OR m.slug = ANY($2)\n GROUP BY t.id, m.id;\n ", "describe": { "columns": [ { @@ -50,84 +50,84 @@ }, { "ordinal": 9, - "name": "updated", - "type_info": "Timestamptz" - }, - { - "ordinal": 10, "name": "approved", "type_info": "Timestamptz" }, { - "ordinal": 11, + "ordinal": 10, "name": "queued", "type_info": "Timestamptz" }, { - "ordinal": 12, + "ordinal": 11, "name": "status", "type_info": "Varchar" }, { - "ordinal": 13, + "ordinal": 12, "name": "requested_status", "type_info": "Varchar" }, { - "ordinal": 14, + "ordinal": 13, "name": "license_url", "type_info": "Varchar" }, { - "ordinal": 15, + "ordinal": 14, "name": "team_id", "type_info": "Int8" }, { - "ordinal": 16, + "ordinal": 15, "name": "organization_id", "type_info": "Int8" }, { - "ordinal": 17, + "ordinal": 16, "name": "license", "type_info": "Varchar" }, { - "ordinal": 18, + "ordinal": 17, "name": "slug", "type_info": "Varchar" }, { - "ordinal": 19, + "ordinal": 18, "name": "moderation_message", "type_info": "Varchar" }, { - "ordinal": 20, + "ordinal": 19, "name": "moderation_message_body", "type_info": "Varchar" }, { - "ordinal": 21, + "ordinal": 20, "name": "webhook_sent", "type_info": "Bool" }, { - "ordinal": 22, + "ordinal": 21, "name": "color", "type_info": "Int4" }, { - "ordinal": 23, + "ordinal": 22, "name": "thread_id", "type_info": "Int8" }, { - "ordinal": 24, + "ordinal": 23, "name": "monetization_status", "type_info": "Varchar" }, + { + "ordinal": 24, + "name": "side_types_migration_review_status", + "type_info": "Varchar" + }, { "ordinal": 25, "name": "categories", @@ -155,7 +155,6 @@ true, false, false, - false, true, true, false, @@ -171,9 +170,10 @@ true, false, false, + false, null, null ] }, - "hash": "c7c400d74c478b4194f478f6d732a92c0b9a72e1cb6147009018b2712398c24f" + "hash": "7a6d6a91e6bd27f7be34b8cc7955a66c4175ebd1c55e437f187f61efca681c62" } diff --git a/apps/labrinth/.sqlx/query-abf790170e3a807ffe8b3a188da620c89e6398f38ff066220fdadffe8e7481c1.json b/apps/labrinth/.sqlx/query-7c445073f61e30723416a9690aa9d227d95f2a8f2eb9852833e14c723903988b.json similarity index 54% rename from apps/labrinth/.sqlx/query-abf790170e3a807ffe8b3a188da620c89e6398f38ff066220fdadffe8e7481c1.json rename to apps/labrinth/.sqlx/query-7c445073f61e30723416a9690aa9d227d95f2a8f2eb9852833e14c723903988b.json index 20e672605..7897b45d3 100644 --- a/apps/labrinth/.sqlx/query-abf790170e3a807ffe8b3a188da620c89e6398f38ff066220fdadffe8e7481c1.json +++ b/apps/labrinth/.sqlx/query-7c445073f61e30723416a9690aa9d227d95f2a8f2eb9852833e14c723903988b.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT EXISTS(SELECT 1 FROM mods WHERE slug = LOWER($1))\n ", + "query": "SELECT EXISTS(SELECT 1 FROM shared_instance_versions WHERE id=$1)", "describe": { "columns": [ { @@ -11,12 +11,12 @@ ], "parameters": { "Left": [ - "Text" + "Int8" ] }, "nullable": [ null ] }, - "hash": "abf790170e3a807ffe8b3a188da620c89e6398f38ff066220fdadffe8e7481c1" + "hash": "7c445073f61e30723416a9690aa9d227d95f2a8f2eb9852833e14c723903988b" } diff --git a/apps/labrinth/.sqlx/query-7e403d399ddd3279c4c65db7b9ea850cdd9fef3df1b3f7d5f62e079b4522f2ca.json b/apps/labrinth/.sqlx/query-7e403d399ddd3279c4c65db7b9ea850cdd9fef3df1b3f7d5f62e079b4522f2ca.json new file mode 100644 index 000000000..8226261f5 --- /dev/null +++ b/apps/labrinth/.sqlx/query-7e403d399ddd3279c4c65db7b9ea850cdd9fef3df1b3f7d5f62e079b4522f2ca.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET slug = LOWER($1)\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Text", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "7e403d399ddd3279c4c65db7b9ea850cdd9fef3df1b3f7d5f62e079b4522f2ca" +} diff --git a/apps/labrinth/.sqlx/query-879bf4cc2e305c7e3e2456e2e0a0d910865d622f3add8ad6d99e9cddcc1d2f1a.json b/apps/labrinth/.sqlx/query-879bf4cc2e305c7e3e2456e2e0a0d910865d622f3add8ad6d99e9cddcc1d2f1a.json new file mode 100644 index 000000000..559deee40 --- /dev/null +++ b/apps/labrinth/.sqlx/query-879bf4cc2e305c7e3e2456e2e0a0d910865d622f3add8ad6d99e9cddcc1d2f1a.json @@ -0,0 +1,20 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT SUM(amount) from payouts_values WHERE date_available <= NOW()\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "sum", + "type_info": "Numeric" + } + ], + "parameters": { + "Left": [] + }, + "nullable": [ + null + ] + }, + "hash": "879bf4cc2e305c7e3e2456e2e0a0d910865d622f3add8ad6d99e9cddcc1d2f1a" +} diff --git a/apps/labrinth/.sqlx/query-1cefe4924d3c1f491739858ce844a22903d2dbe26f255219299f1833a10ce3d7.json b/apps/labrinth/.sqlx/query-889a4f79b7031436b3ed31d1005dc9b378ca9c97a128366cae97649503d5dfdf.json similarity index 52% rename from apps/labrinth/.sqlx/query-1cefe4924d3c1f491739858ce844a22903d2dbe26f255219299f1833a10ce3d7.json rename to apps/labrinth/.sqlx/query-889a4f79b7031436b3ed31d1005dc9b378ca9c97a128366cae97649503d5dfdf.json index 6e0fd619f..7c0dbbdb8 100644 --- a/apps/labrinth/.sqlx/query-1cefe4924d3c1f491739858ce844a22903d2dbe26f255219299f1833a10ce3d7.json +++ b/apps/labrinth/.sqlx/query-889a4f79b7031436b3ed31d1005dc9b378ca9c97a128366cae97649503d5dfdf.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT id FROM mods TABLESAMPLE SYSTEM_ROWS($1) WHERE status = ANY($2)\n ", + "query": "\n SELECT id FROM users\n WHERE LOWER(email) = LOWER($1)\n ", "describe": { "columns": [ { @@ -11,13 +11,12 @@ ], "parameters": { "Left": [ - "Int8", - "TextArray" + "Text" ] }, "nullable": [ false ] }, - "hash": "1cefe4924d3c1f491739858ce844a22903d2dbe26f255219299f1833a10ce3d7" + "hash": "889a4f79b7031436b3ed31d1005dc9b378ca9c97a128366cae97649503d5dfdf" } diff --git a/apps/labrinth/.sqlx/query-92d805d2e13cfc0f2220f15b0a35ff71e654e5e6b386766e6c6047cf3861b26e.json b/apps/labrinth/.sqlx/query-92d805d2e13cfc0f2220f15b0a35ff71e654e5e6b386766e6c6047cf3861b26e.json new file mode 100644 index 000000000..d627ef2dc --- /dev/null +++ b/apps/labrinth/.sqlx/query-92d805d2e13cfc0f2220f15b0a35ff71e654e5e6b386766e6c6047cf3861b26e.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET approved = NOW()\n WHERE id = $1 AND approved IS NULL\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "92d805d2e13cfc0f2220f15b0a35ff71e654e5e6b386766e6c6047cf3861b26e" +} diff --git a/apps/labrinth/.sqlx/query-9482a3419337911ac6a10eeaf065e29589ee1b707729344e81d183c713aa0d28.json b/apps/labrinth/.sqlx/query-9482a3419337911ac6a10eeaf065e29589ee1b707729344e81d183c713aa0d28.json new file mode 100644 index 000000000..babe8ad64 --- /dev/null +++ b/apps/labrinth/.sqlx/query-9482a3419337911ac6a10eeaf065e29589ee1b707729344e81d183c713aa0d28.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET license_url = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "9482a3419337911ac6a10eeaf065e29589ee1b707729344e81d183c713aa0d28" +} diff --git a/apps/labrinth/.sqlx/query-9c6e18cb19251e54b3b96446ab88d84842152b82c9a0032d1db587d7099b8550.json b/apps/labrinth/.sqlx/query-9c6e18cb19251e54b3b96446ab88d84842152b82c9a0032d1db587d7099b8550.json new file mode 100644 index 000000000..92c3b45f8 --- /dev/null +++ b/apps/labrinth/.sqlx/query-9c6e18cb19251e54b3b96446ab88d84842152b82c9a0032d1db587d7099b8550.json @@ -0,0 +1,46 @@ +{ + "db_name": "PostgreSQL", + "query": "\n -- See https://github.com/launchbadge/sqlx/issues/1266 for why we need all the \"as\"\n SELECT\n id as \"id!\",\n title as \"title!\",\n public as \"public!\",\n owner_id as \"owner_id!\",\n current_version_id\n FROM shared_instances\n WHERE owner_id = $1\n UNION\n SELECT\n id as \"id!\",\n title as \"title!\",\n public as \"public!\",\n owner_id as \"owner_id!\",\n current_version_id\n FROM shared_instances\n JOIN shared_instance_users ON id = shared_instance_id\n WHERE user_id = $1\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id!", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "title!", + "type_info": "Varchar" + }, + { + "ordinal": 2, + "name": "public!", + "type_info": "Bool" + }, + { + "ordinal": 3, + "name": "owner_id!", + "type_info": "Int8" + }, + { + "ordinal": 4, + "name": "current_version_id", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + null, + null, + null, + null, + null + ] + }, + "hash": "9c6e18cb19251e54b3b96446ab88d84842152b82c9a0032d1db587d7099b8550" +} diff --git a/apps/labrinth/.sqlx/query-9ccaf8ea52b1b6f0880d34cdb4a9405e28c265bef6121b457c4f39cacf00683f.json b/apps/labrinth/.sqlx/query-9ccaf8ea52b1b6f0880d34cdb4a9405e28c265bef6121b457c4f39cacf00683f.json new file mode 100644 index 000000000..1a5097375 --- /dev/null +++ b/apps/labrinth/.sqlx/query-9ccaf8ea52b1b6f0880d34cdb4a9405e28c265bef6121b457c4f39cacf00683f.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE shared_instances\n SET title = $1\n WHERE id = $2\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "9ccaf8ea52b1b6f0880d34cdb4a9405e28c265bef6121b457c4f39cacf00683f" +} diff --git a/apps/labrinth/.sqlx/query-a0148ff25855202e7bb220b6a2bc9220a95e309fb0dae41d9a05afa86e6b33af.json b/apps/labrinth/.sqlx/query-a0148ff25855202e7bb220b6a2bc9220a95e309fb0dae41d9a05afa86e6b33af.json deleted file mode 100644 index a8ec2492d..000000000 --- a/apps/labrinth/.sqlx/query-a0148ff25855202e7bb220b6a2bc9220a95e309fb0dae41d9a05afa86e6b33af.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n DELETE FROM mods_categories\n WHERE joining_mod_id = $1 AND is_additional = FALSE\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [] - }, - "hash": "a0148ff25855202e7bb220b6a2bc9220a95e309fb0dae41d9a05afa86e6b33af" -} diff --git a/apps/labrinth/.sqlx/query-a11d613479d09dff5fcdc45ab7a0341fb1b4738f0ede71572d939ef0984bd65f.json b/apps/labrinth/.sqlx/query-a11d613479d09dff5fcdc45ab7a0341fb1b4738f0ede71572d939ef0984bd65f.json deleted file mode 100644 index 4b97bd691..000000000 --- a/apps/labrinth/.sqlx/query-a11d613479d09dff5fcdc45ab7a0341fb1b4738f0ede71572d939ef0984bd65f.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET approved = NOW()\n WHERE id = $1 AND approved IS NULL\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [] - }, - "hash": "a11d613479d09dff5fcdc45ab7a0341fb1b4738f0ede71572d939ef0984bd65f" -} diff --git a/apps/labrinth/.sqlx/query-a3448f22ec82f75ab2f3769b7d0a653a7d7315fb5e4696c26c6a96e6fc11e907.json b/apps/labrinth/.sqlx/query-a3448f22ec82f75ab2f3769b7d0a653a7d7315fb5e4696c26c6a96e6fc11e907.json deleted file mode 100644 index d1a964156..000000000 --- a/apps/labrinth/.sqlx/query-a3448f22ec82f75ab2f3769b7d0a653a7d7315fb5e4696c26c6a96e6fc11e907.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n SELECT m.id FROM organizations o\n INNER JOIN mods m ON m.organization_id = o.id\n WHERE (o.id = $1 AND $1 IS NOT NULL) OR (o.slug = $2 AND $2 IS NOT NULL)\n ", - "describe": { - "columns": [ - { - "ordinal": 0, - "name": "id", - "type_info": "Int8" - } - ], - "parameters": { - "Left": [ - "Int8", - "Text" - ] - }, - "nullable": [ - false - ] - }, - "hash": "a3448f22ec82f75ab2f3769b7d0a653a7d7315fb5e4696c26c6a96e6fc11e907" -} diff --git a/apps/labrinth/.sqlx/query-a3e25b24e1364fb6cecd33797923b24948050c0974bc267d938f05c893beed00.json b/apps/labrinth/.sqlx/query-a3e25b24e1364fb6cecd33797923b24948050c0974bc267d938f05c893beed00.json new file mode 100644 index 000000000..d25a766b1 --- /dev/null +++ b/apps/labrinth/.sqlx/query-a3e25b24e1364fb6cecd33797923b24948050c0974bc267d938f05c893beed00.json @@ -0,0 +1,22 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT m.id FROM organizations o\n INNER JOIN mods m ON m.organization_id = o.id\n WHERE o.id = $1\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + false + ] + }, + "hash": "a3e25b24e1364fb6cecd33797923b24948050c0974bc267d938f05c893beed00" +} diff --git a/apps/labrinth/.sqlx/query-a5ae1fe0ca4ca8432736398fed25687173b2fbde3405340a5579c5ef68cb5218.json b/apps/labrinth/.sqlx/query-a5ae1fe0ca4ca8432736398fed25687173b2fbde3405340a5579c5ef68cb5218.json new file mode 100644 index 000000000..799ce4489 --- /dev/null +++ b/apps/labrinth/.sqlx/query-a5ae1fe0ca4ca8432736398fed25687173b2fbde3405340a5579c5ef68cb5218.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET license = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "a5ae1fe0ca4ca8432736398fed25687173b2fbde3405340a5579c5ef68cb5218" +} diff --git a/apps/labrinth/.sqlx/query-a74230ad1bb1b13bab850e204436e7746a96f9605afe2ca62d6d8337530cb5ad.json b/apps/labrinth/.sqlx/query-a74230ad1bb1b13bab850e204436e7746a96f9605afe2ca62d6d8337530cb5ad.json new file mode 100644 index 000000000..73d8a8eec --- /dev/null +++ b/apps/labrinth/.sqlx/query-a74230ad1bb1b13bab850e204436e7746a96f9605afe2ca62d6d8337530cb5ad.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET status = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "a74230ad1bb1b13bab850e204436e7746a96f9605afe2ca62d6d8337530cb5ad" +} diff --git a/apps/labrinth/.sqlx/query-061a3e43df9464263aaf1555a27c1f4b6a0f381282f4fa75cc13b1d354857578.json b/apps/labrinth/.sqlx/query-a91d793778d92844cfe338007e8f25daca0d711e0569b99f14d820ddb1685405.json similarity index 57% rename from apps/labrinth/.sqlx/query-061a3e43df9464263aaf1555a27c1f4b6a0f381282f4fa75cc13b1d354857578.json rename to apps/labrinth/.sqlx/query-a91d793778d92844cfe338007e8f25daca0d711e0569b99f14d820ddb1685405.json index 5cc54d4de..0043efd98 100644 --- a/apps/labrinth/.sqlx/query-061a3e43df9464263aaf1555a27c1f4b6a0f381282f4fa75cc13b1d354857578.json +++ b/apps/labrinth/.sqlx/query-a91d793778d92844cfe338007e8f25daca0d711e0569b99f14d820ddb1685405.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT m.id AS pid, NULL AS oid\n FROM mods m\n WHERE m.team_id = $1\n \n UNION ALL\n \n SELECT NULL AS pid, o.id AS oid\n FROM organizations o\n WHERE o.team_id = $1 \n ", + "query": "\n SELECT m.id AS pid, NULL AS oid\n FROM mods m\n WHERE m.team_id = $1\n\n UNION ALL\n\n SELECT NULL AS pid, o.id AS oid\n FROM organizations o\n WHERE o.team_id = $1\n ", "describe": { "columns": [ { @@ -24,5 +24,5 @@ null ] }, - "hash": "061a3e43df9464263aaf1555a27c1f4b6a0f381282f4fa75cc13b1d354857578" + "hash": "a91d793778d92844cfe338007e8f25daca0d711e0569b99f14d820ddb1685405" } diff --git a/apps/labrinth/.sqlx/query-cdb2f18f826097f0f17a1f7295d7c45eb1987b63c1a21666c6ca60c52217ba4d.json b/apps/labrinth/.sqlx/query-ab9b4b383ce8431214eb26abde734d36eff6902ae55b7ed4d89a10c4d69506a9.json similarity index 65% rename from apps/labrinth/.sqlx/query-cdb2f18f826097f0f17a1f7295d7c45eb1987b63c1a21666c6ca60c52217ba4d.json rename to apps/labrinth/.sqlx/query-ab9b4b383ce8431214eb26abde734d36eff6902ae55b7ed4d89a10c4d69506a9.json index e7f4eb17b..340549e51 100644 --- a/apps/labrinth/.sqlx/query-cdb2f18f826097f0f17a1f7295d7c45eb1987b63c1a21666c6ca60c52217ba4d.json +++ b/apps/labrinth/.sqlx/query-ab9b4b383ce8431214eb26abde734d36eff6902ae55b7ed4d89a10c4d69506a9.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n SELECT l.id id, l.loader loader, l.icon icon, l.metadata metadata,\n ARRAY_AGG(DISTINCT pt.name) filter (where pt.name is not null) project_types,\n ARRAY_AGG(DISTINCT g.slug) filter (where g.slug is not null) games\n FROM loaders l \n LEFT OUTER JOIN loaders_project_types lpt ON joining_loader_id = l.id\n LEFT OUTER JOIN project_types pt ON lpt.joining_project_type_id = pt.id\n LEFT OUTER JOIN loaders_project_types_games lptg ON lptg.loader_id = lpt.joining_loader_id AND lptg.project_type_id = lpt.joining_project_type_id\n LEFT OUTER JOIN games g ON lptg.game_id = g.id\n GROUP BY l.id;\n ", + "query": "\n SELECT l.id id, l.loader loader, l.icon icon, l.metadata metadata,\n ARRAY_AGG(DISTINCT pt.name) filter (where pt.name is not null) project_types,\n ARRAY_AGG(DISTINCT g.slug) filter (where g.slug is not null) games\n FROM loaders l\n LEFT OUTER JOIN loaders_project_types lpt ON joining_loader_id = l.id\n LEFT OUTER JOIN project_types pt ON lpt.joining_project_type_id = pt.id\n LEFT OUTER JOIN loaders_project_types_games lptg ON lptg.loader_id = lpt.joining_loader_id AND lptg.project_type_id = lpt.joining_project_type_id\n LEFT OUTER JOIN games g ON lptg.game_id = g.id\n GROUP BY l.id;\n ", "describe": { "columns": [ { @@ -46,5 +46,5 @@ null ] }, - "hash": "cdb2f18f826097f0f17a1f7295d7c45eb1987b63c1a21666c6ca60c52217ba4d" + "hash": "ab9b4b383ce8431214eb26abde734d36eff6902ae55b7ed4d89a10c4d69506a9" } diff --git a/apps/labrinth/.sqlx/query-aec58041cf5e5e68501652336581b8c709645ef29f3b5fb6e8e07fc212b36798.json b/apps/labrinth/.sqlx/query-aec58041cf5e5e68501652336581b8c709645ef29f3b5fb6e8e07fc212b36798.json new file mode 100644 index 000000000..2c517f367 --- /dev/null +++ b/apps/labrinth/.sqlx/query-aec58041cf5e5e68501652336581b8c709645ef29f3b5fb6e8e07fc212b36798.json @@ -0,0 +1,34 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT shared_instance_id, user_id, permissions\n FROM shared_instance_users\n WHERE shared_instance_id = ANY($1)\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "shared_instance_id", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "user_id", + "type_info": "Int8" + }, + { + "ordinal": 2, + "name": "permissions", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8Array" + ] + }, + "nullable": [ + false, + false, + false + ] + }, + "hash": "aec58041cf5e5e68501652336581b8c709645ef29f3b5fb6e8e07fc212b36798" +} diff --git a/apps/labrinth/.sqlx/query-b677e66031752e66d2219079a559e368c6cea1800da8a5f9d50ba5b1ac3a15fc.json b/apps/labrinth/.sqlx/query-b677e66031752e66d2219079a559e368c6cea1800da8a5f9d50ba5b1ac3a15fc.json deleted file mode 100644 index a66547009..000000000 --- a/apps/labrinth/.sqlx/query-b677e66031752e66d2219079a559e368c6cea1800da8a5f9d50ba5b1ac3a15fc.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET summary = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "b677e66031752e66d2219079a559e368c6cea1800da8a5f9d50ba5b1ac3a15fc" -} diff --git a/apps/labrinth/.sqlx/query-b93253bbc35b24974d13bc8ee0447be2a18275f33f8991d910f693fbcc1ff731.json b/apps/labrinth/.sqlx/query-b93253bbc35b24974d13bc8ee0447be2a18275f33f8991d910f693fbcc1ff731.json new file mode 100644 index 000000000..a99713026 --- /dev/null +++ b/apps/labrinth/.sqlx/query-b93253bbc35b24974d13bc8ee0447be2a18275f33f8991d910f693fbcc1ff731.json @@ -0,0 +1,46 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT id, shared_instance_id, size, sha512, created\n FROM shared_instance_versions\n WHERE id = $1\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "shared_instance_id", + "type_info": "Int8" + }, + { + "ordinal": 2, + "name": "size", + "type_info": "Int8" + }, + { + "ordinal": 3, + "name": "sha512", + "type_info": "Bytea" + }, + { + "ordinal": 4, + "name": "created", + "type_info": "Timestamptz" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + false, + false, + false, + false, + false + ] + }, + "hash": "b93253bbc35b24974d13bc8ee0447be2a18275f33f8991d910f693fbcc1ff731" +} diff --git a/apps/labrinth/.sqlx/query-b971cecafab7046c5952447fd78a6e45856841256d812ce9ae3c07f903c5cc62.json b/apps/labrinth/.sqlx/query-b971cecafab7046c5952447fd78a6e45856841256d812ce9ae3c07f903c5cc62.json deleted file mode 100644 index be3795083..000000000 --- a/apps/labrinth/.sqlx/query-b971cecafab7046c5952447fd78a6e45856841256d812ce9ae3c07f903c5cc62.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET status = requested_status\n WHERE status = $1 AND approved < CURRENT_DATE AND requested_status IS NOT NULL\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Text" - ] - }, - "nullable": [] - }, - "hash": "b971cecafab7046c5952447fd78a6e45856841256d812ce9ae3c07f903c5cc62" -} diff --git a/apps/labrinth/.sqlx/query-bd26a27ce80ca796ae19bc709c92800a0a43dfef4a37a5725403d33ccb20d908.json b/apps/labrinth/.sqlx/query-bd26a27ce80ca796ae19bc709c92800a0a43dfef4a37a5725403d33ccb20d908.json deleted file mode 100644 index c0c2cbe97..000000000 --- a/apps/labrinth/.sqlx/query-bd26a27ce80ca796ae19bc709c92800a0a43dfef4a37a5725403d33ccb20d908.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE users\n SET badges = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Int8", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "bd26a27ce80ca796ae19bc709c92800a0a43dfef4a37a5725403d33ccb20d908" -} diff --git a/apps/labrinth/.sqlx/query-c100a3be0e1b7bf449576c4052d87494979cb89d194805a5ce9e928eef796ae9.json b/apps/labrinth/.sqlx/query-c100a3be0e1b7bf449576c4052d87494979cb89d194805a5ce9e928eef796ae9.json deleted file mode 100644 index fff83ae5a..000000000 --- a/apps/labrinth/.sqlx/query-c100a3be0e1b7bf449576c4052d87494979cb89d194805a5ce9e928eef796ae9.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET license_url = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "c100a3be0e1b7bf449576c4052d87494979cb89d194805a5ce9e928eef796ae9" -} diff --git a/apps/labrinth/.sqlx/query-c3869a595693757ccf81085d0c8eb2231578aff18c93d02ead97c3c07f0b27ea.json b/apps/labrinth/.sqlx/query-c3869a595693757ccf81085d0c8eb2231578aff18c93d02ead97c3c07f0b27ea.json new file mode 100644 index 000000000..b710ec2d4 --- /dev/null +++ b/apps/labrinth/.sqlx/query-c3869a595693757ccf81085d0c8eb2231578aff18c93d02ead97c3c07f0b27ea.json @@ -0,0 +1,23 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT permissions\n FROM shared_instance_users\n WHERE shared_instance_id = $1 AND user_id = $2\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "permissions", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8", + "Int8" + ] + }, + "nullable": [ + false + ] + }, + "hash": "c3869a595693757ccf81085d0c8eb2231578aff18c93d02ead97c3c07f0b27ea" +} diff --git a/apps/labrinth/.sqlx/query-c6693ea80ab1675dd2da72d70add734a92bb25f17a0536968e4b9a4dbe05cf5b.json b/apps/labrinth/.sqlx/query-c6693ea80ab1675dd2da72d70add734a92bb25f17a0536968e4b9a4dbe05cf5b.json new file mode 100644 index 000000000..dc7aa810b --- /dev/null +++ b/apps/labrinth/.sqlx/query-c6693ea80ab1675dd2da72d70add734a92bb25f17a0536968e4b9a4dbe05cf5b.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET moderation_message = NULL, moderation_message_body = NULL, queued = NOW()\n WHERE (id = $1)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "c6693ea80ab1675dd2da72d70add734a92bb25f17a0536968e4b9a4dbe05cf5b" +} diff --git a/apps/labrinth/.sqlx/query-c8a27a122160a0896914c786deef9e8193eb240501d30d5ffb4129e2103efd3d.json b/apps/labrinth/.sqlx/query-c8a27a122160a0896914c786deef9e8193eb240501d30d5ffb4129e2103efd3d.json deleted file mode 100644 index bebb6425a..000000000 --- a/apps/labrinth/.sqlx/query-c8a27a122160a0896914c786deef9e8193eb240501d30d5ffb4129e2103efd3d.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE versions\n SET status = requested_status\n WHERE status = $1 AND date_published < CURRENT_DATE AND requested_status IS NOT NULL\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Text" - ] - }, - "nullable": [] - }, - "hash": "c8a27a122160a0896914c786deef9e8193eb240501d30d5ffb4129e2103efd3d" -} diff --git a/apps/labrinth/.sqlx/query-9c1b6ba7cbe2619ff767ee7bbfb01725dc3324d284b2f20cf393574ab3bc655f.json b/apps/labrinth/.sqlx/query-cec98010827455127da68a2bc5cd3c1ee3bfd357a6a8604febad3ed214a9b77b.json similarity index 55% rename from apps/labrinth/.sqlx/query-9c1b6ba7cbe2619ff767ee7bbfb01725dc3324d284b2f20cf393574ab3bc655f.json rename to apps/labrinth/.sqlx/query-cec98010827455127da68a2bc5cd3c1ee3bfd357a6a8604febad3ed214a9b77b.json index 5152ba222..5a26ce08b 100644 --- a/apps/labrinth/.sqlx/query-9c1b6ba7cbe2619ff767ee7bbfb01725dc3324d284b2f20cf393574ab3bc655f.json +++ b/apps/labrinth/.sqlx/query-cec98010827455127da68a2bc5cd3c1ee3bfd357a6a8604febad3ed214a9b77b.json @@ -1,15 +1,14 @@ { "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET name = $1\n WHERE (id = $2)\n ", + "query": "\n UPDATE mods\n SET webhook_sent = TRUE\n WHERE id = $1\n ", "describe": { "columns": [], "parameters": { "Left": [ - "Varchar", "Int8" ] }, "nullable": [] }, - "hash": "9c1b6ba7cbe2619ff767ee7bbfb01725dc3324d284b2f20cf393574ab3bc655f" + "hash": "cec98010827455127da68a2bc5cd3c1ee3bfd357a6a8604febad3ed214a9b77b" } diff --git a/apps/labrinth/.sqlx/query-cef730c02bb67b0536d35e5aaca0bd34c3893e8b55bbd126a988137ec7bf1ff9.json b/apps/labrinth/.sqlx/query-cef730c02bb67b0536d35e5aaca0bd34c3893e8b55bbd126a988137ec7bf1ff9.json new file mode 100644 index 000000000..d48180d91 --- /dev/null +++ b/apps/labrinth/.sqlx/query-cef730c02bb67b0536d35e5aaca0bd34c3893e8b55bbd126a988137ec7bf1ff9.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n DELETE FROM shared_instances\n WHERE id = $1\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "cef730c02bb67b0536d35e5aaca0bd34c3893e8b55bbd126a988137ec7bf1ff9" +} diff --git a/apps/labrinth/.sqlx/query-d010207297e1c4f2ebfb0a81caf45481c94edb1e8d8ac47db13ec0ff9b2f5328.json b/apps/labrinth/.sqlx/query-d010207297e1c4f2ebfb0a81caf45481c94edb1e8d8ac47db13ec0ff9b2f5328.json new file mode 100644 index 000000000..507b49c6c --- /dev/null +++ b/apps/labrinth/.sqlx/query-d010207297e1c4f2ebfb0a81caf45481c94edb1e8d8ac47db13ec0ff9b2f5328.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET moderation_message = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "d010207297e1c4f2ebfb0a81caf45481c94edb1e8d8ac47db13ec0ff9b2f5328" +} diff --git a/apps/labrinth/.sqlx/query-d331ca8f22da418cf654985c822ce4466824beaa00dea64cde90dc651a03024b.json b/apps/labrinth/.sqlx/query-d331ca8f22da418cf654985c822ce4466824beaa00dea64cde90dc651a03024b.json deleted file mode 100644 index 9df5df701..000000000 --- a/apps/labrinth/.sqlx/query-d331ca8f22da418cf654985c822ce4466824beaa00dea64cde90dc651a03024b.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET moderation_message = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "d331ca8f22da418cf654985c822ce4466824beaa00dea64cde90dc651a03024b" -} diff --git a/apps/labrinth/.sqlx/query-d4d17b6a06c2f607206373b18a1f4c367f03f076e5e264ec8f5e744877c6d362.json b/apps/labrinth/.sqlx/query-d4d17b6a06c2f607206373b18a1f4c367f03f076e5e264ec8f5e744877c6d362.json new file mode 100644 index 000000000..677dd8116 --- /dev/null +++ b/apps/labrinth/.sqlx/query-d4d17b6a06c2f607206373b18a1f4c367f03f076e5e264ec8f5e744877c6d362.json @@ -0,0 +1,106 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT\n id, user_id, price_id, amount, currency_code, status, due, last_attempt,\n charge_type, subscription_id,\n -- Workaround for https://github.com/launchbadge/sqlx/issues/3336\n subscription_interval AS \"subscription_interval?\",\n payment_platform,\n payment_platform_id AS \"payment_platform_id?\",\n parent_charge_id AS \"parent_charge_id?\",\n net AS \"net?\"\n FROM charges\n \n WHERE\n charge_type = $1 AND\n status = 'failed' AND due < NOW() - INTERVAL '30 days'\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "user_id", + "type_info": "Int8" + }, + { + "ordinal": 2, + "name": "price_id", + "type_info": "Int8" + }, + { + "ordinal": 3, + "name": "amount", + "type_info": "Int8" + }, + { + "ordinal": 4, + "name": "currency_code", + "type_info": "Text" + }, + { + "ordinal": 5, + "name": "status", + "type_info": "Varchar" + }, + { + "ordinal": 6, + "name": "due", + "type_info": "Timestamptz" + }, + { + "ordinal": 7, + "name": "last_attempt", + "type_info": "Timestamptz" + }, + { + "ordinal": 8, + "name": "charge_type", + "type_info": "Text" + }, + { + "ordinal": 9, + "name": "subscription_id", + "type_info": "Int8" + }, + { + "ordinal": 10, + "name": "subscription_interval?", + "type_info": "Text" + }, + { + "ordinal": 11, + "name": "payment_platform", + "type_info": "Text" + }, + { + "ordinal": 12, + "name": "payment_platform_id?", + "type_info": "Text" + }, + { + "ordinal": 13, + "name": "parent_charge_id?", + "type_info": "Int8" + }, + { + "ordinal": 14, + "name": "net?", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Text" + ] + }, + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + true, + false, + true, + true, + false, + true, + true, + true + ] + }, + "hash": "d4d17b6a06c2f607206373b18a1f4c367f03f076e5e264ec8f5e744877c6d362" +} diff --git a/apps/labrinth/.sqlx/query-d5ad5a67fe53351b760335b80501f09a2799bf575af90beeac94193fe8c4388b.json b/apps/labrinth/.sqlx/query-d5ad5a67fe53351b760335b80501f09a2799bf575af90beeac94193fe8c4388b.json new file mode 100644 index 000000000..3d9785e4d --- /dev/null +++ b/apps/labrinth/.sqlx/query-d5ad5a67fe53351b760335b80501f09a2799bf575af90beeac94193fe8c4388b.json @@ -0,0 +1,22 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT tm.user_id id\n FROM team_members tm\n WHERE tm.team_id = $1 AND tm.accepted\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + false + ] + }, + "hash": "d5ad5a67fe53351b760335b80501f09a2799bf575af90beeac94193fe8c4388b" +} diff --git a/apps/labrinth/.sqlx/query-d8558a8039ade3b383db4f0e095e6826f46c27ab3a21520e9e169fd1491521c4.json b/apps/labrinth/.sqlx/query-d8558a8039ade3b383db4f0e095e6826f46c27ab3a21520e9e169fd1491521c4.json new file mode 100644 index 000000000..81eef9932 --- /dev/null +++ b/apps/labrinth/.sqlx/query-d8558a8039ade3b383db4f0e095e6826f46c27ab3a21520e9e169fd1491521c4.json @@ -0,0 +1,22 @@ +{ + "db_name": "PostgreSQL", + "query": "SELECT EXISTS(SELECT 1 FROM shared_instances WHERE id=$1)", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "exists", + "type_info": "Bool" + } + ], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [ + null + ] + }, + "hash": "d8558a8039ade3b383db4f0e095e6826f46c27ab3a21520e9e169fd1491521c4" +} diff --git a/apps/labrinth/.sqlx/query-d8a1d710f86b3df4d99c2d2ec26ec405531e4270be85087122245991ec88473e.json b/apps/labrinth/.sqlx/query-d8a1d710f86b3df4d99c2d2ec26ec405531e4270be85087122245991ec88473e.json new file mode 100644 index 000000000..0e0bb268f --- /dev/null +++ b/apps/labrinth/.sqlx/query-d8a1d710f86b3df4d99c2d2ec26ec405531e4270be85087122245991ec88473e.json @@ -0,0 +1,18 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO shared_instance_versions (id, shared_instance_id, size, sha512, created)\n VALUES ($1, $2, $3, $4, $5)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8", + "Int8", + "Bytea", + "Timestamptz" + ] + }, + "nullable": [] + }, + "hash": "d8a1d710f86b3df4d99c2d2ec26ec405531e4270be85087122245991ec88473e" +} diff --git a/apps/labrinth/.sqlx/query-dbdf1cce30709c3e1066d0a9156e12ce9e4773e3678da6f10f459a26bd0f3931.json b/apps/labrinth/.sqlx/query-dbdf1cce30709c3e1066d0a9156e12ce9e4773e3678da6f10f459a26bd0f3931.json new file mode 100644 index 000000000..d449d3551 --- /dev/null +++ b/apps/labrinth/.sqlx/query-dbdf1cce30709c3e1066d0a9156e12ce9e4773e3678da6f10f459a26bd0f3931.json @@ -0,0 +1,17 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO payout_sources_balance (account_type, amount, pending, recorded)\n SELECT * FROM UNNEST ($1::text[], $2::numeric[], $3::boolean[], $4::timestamptz[])\n ON CONFLICT (recorded, account_type, pending)\n DO UPDATE SET amount = EXCLUDED.amount\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "TextArray", + "NumericArray", + "BoolArray", + "TimestamptzArray" + ] + }, + "nullable": [] + }, + "hash": "dbdf1cce30709c3e1066d0a9156e12ce9e4773e3678da6f10f459a26bd0f3931" +} diff --git a/apps/labrinth/.sqlx/query-e42e63db3ae4d1d745508b80651494da8738873b98aa608792af19e60b9fb998.json b/apps/labrinth/.sqlx/query-e42e63db3ae4d1d745508b80651494da8738873b98aa608792af19e60b9fb998.json new file mode 100644 index 000000000..e42fc661e --- /dev/null +++ b/apps/labrinth/.sqlx/query-e42e63db3ae4d1d745508b80651494da8738873b98aa608792af19e60b9fb998.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET requested_status = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "e42e63db3ae4d1d745508b80651494da8738873b98aa608792af19e60b9fb998" +} diff --git a/apps/labrinth/.sqlx/query-8d7746fedec4c2339352a3acd934b13c351b8a1fdb05bf982bab1a5b7ed17f3b.json b/apps/labrinth/.sqlx/query-e5c4275ebfa60938505ef8b32b54efa569c6b516b547faec9a10943ddef6266e.json similarity index 53% rename from apps/labrinth/.sqlx/query-8d7746fedec4c2339352a3acd934b13c351b8a1fdb05bf982bab1a5b7ed17f3b.json rename to apps/labrinth/.sqlx/query-e5c4275ebfa60938505ef8b32b54efa569c6b516b547faec9a10943ddef6266e.json index d621218cd..dabf25628 100644 --- a/apps/labrinth/.sqlx/query-8d7746fedec4c2339352a3acd934b13c351b8a1fdb05bf982bab1a5b7ed17f3b.json +++ b/apps/labrinth/.sqlx/query-e5c4275ebfa60938505ef8b32b54efa569c6b516b547faec9a10943ddef6266e.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n INSERT INTO collections (\n id, user_id, name, description, \n created, icon_url, raw_icon_url, status\n )\n VALUES (\n $1, $2, $3, $4, \n $5, $6, $7, $8\n )\n ", + "query": "\n INSERT INTO collections (\n id, user_id, name, description,\n created, icon_url, raw_icon_url, status\n )\n VALUES (\n $1, $2, $3, $4,\n $5, $6, $7, $8\n )\n ", "describe": { "columns": [], "parameters": { @@ -17,5 +17,5 @@ }, "nullable": [] }, - "hash": "8d7746fedec4c2339352a3acd934b13c351b8a1fdb05bf982bab1a5b7ed17f3b" + "hash": "e5c4275ebfa60938505ef8b32b54efa569c6b516b547faec9a10943ddef6266e" } diff --git a/apps/labrinth/.sqlx/query-e7654740161726b2aef4f7c9a26eb00efcac9f6285a39d8df06d606613684ba3.json b/apps/labrinth/.sqlx/query-e7654740161726b2aef4f7c9a26eb00efcac9f6285a39d8df06d606613684ba3.json new file mode 100644 index 000000000..ef8f7b22c --- /dev/null +++ b/apps/labrinth/.sqlx/query-e7654740161726b2aef4f7c9a26eb00efcac9f6285a39d8df06d606613684ba3.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET description = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "e7654740161726b2aef4f7c9a26eb00efcac9f6285a39d8df06d606613684ba3" +} diff --git a/apps/labrinth/.sqlx/query-e925b15ec46f0263c7775ba1ba00ed11cfd6749fa792d4eabed73b619f230585.json b/apps/labrinth/.sqlx/query-e925b15ec46f0263c7775ba1ba00ed11cfd6749fa792d4eabed73b619f230585.json deleted file mode 100644 index 52bc085af..000000000 --- a/apps/labrinth/.sqlx/query-e925b15ec46f0263c7775ba1ba00ed11cfd6749fa792d4eabed73b619f230585.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET status = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "e925b15ec46f0263c7775ba1ba00ed11cfd6749fa792d4eabed73b619f230585" -} diff --git a/apps/labrinth/.sqlx/query-ea1525cbe7460d0d9e9da8f448c661f7209bc1a7a04e2ea0026fa69c3f550a14.json b/apps/labrinth/.sqlx/query-ea1525cbe7460d0d9e9da8f448c661f7209bc1a7a04e2ea0026fa69c3f550a14.json deleted file mode 100644 index dcdaa6f99..000000000 --- a/apps/labrinth/.sqlx/query-ea1525cbe7460d0d9e9da8f448c661f7209bc1a7a04e2ea0026fa69c3f550a14.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n SELECT tm.user_id id\n FROM team_members tm\n WHERE tm.team_id = $1 AND tm.accepted\n ", - "describe": { - "columns": [ - { - "ordinal": 0, - "name": "id", - "type_info": "Int8" - } - ], - "parameters": { - "Left": [ - "Int8" - ] - }, - "nullable": [ - false - ] - }, - "hash": "ea1525cbe7460d0d9e9da8f448c661f7209bc1a7a04e2ea0026fa69c3f550a14" -} diff --git a/apps/labrinth/.sqlx/query-ed1d5d9433bc7f4a360431ecfdd9430c5e58cd6d1c623c187d8661200400b1a4.json b/apps/labrinth/.sqlx/query-ed1d5d9433bc7f4a360431ecfdd9430c5e58cd6d1c623c187d8661200400b1a4.json deleted file mode 100644 index 4bcf71fd8..000000000 --- a/apps/labrinth/.sqlx/query-ed1d5d9433bc7f4a360431ecfdd9430c5e58cd6d1c623c187d8661200400b1a4.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "\n UPDATE mods\n SET moderation_message_body = $1\n WHERE (id = $2)\n ", - "describe": { - "columns": [], - "parameters": { - "Left": [ - "Varchar", - "Int8" - ] - }, - "nullable": [] - }, - "hash": "ed1d5d9433bc7f4a360431ecfdd9430c5e58cd6d1c623c187d8661200400b1a4" -} diff --git a/apps/labrinth/.sqlx/query-bcbcac3c0b2b2b0327577d3095fa744ab42f7f1dcd2b7f3c3dace12b899b3f38.json b/apps/labrinth/.sqlx/query-ee74bbff42dd29ab5a23d5811ea18e62ac199fe5e68275bf1bc7c71ace630702.json similarity index 60% rename from apps/labrinth/.sqlx/query-bcbcac3c0b2b2b0327577d3095fa744ab42f7f1dcd2b7f3c3dace12b899b3f38.json rename to apps/labrinth/.sqlx/query-ee74bbff42dd29ab5a23d5811ea18e62ac199fe5e68275bf1bc7c71ace630702.json index 1de75299c..af9bf42e5 100644 --- a/apps/labrinth/.sqlx/query-bcbcac3c0b2b2b0327577d3095fa744ab42f7f1dcd2b7f3c3dace12b899b3f38.json +++ b/apps/labrinth/.sqlx/query-ee74bbff42dd29ab5a23d5811ea18e62ac199fe5e68275bf1bc7c71ace630702.json @@ -1,6 +1,6 @@ { "db_name": "PostgreSQL", - "query": "\n INSERT INTO mods (\n id, team_id, name, summary, description,\n published, downloads, icon_url, raw_icon_url, status, requested_status,\n license_url, license,\n slug, color, monetization_status, organization_id\n )\n VALUES (\n $1, $2, $3, $4, $5, $6,\n $7, $8, $9, $10, $11,\n $12, $13,\n LOWER($14), $15, $16, $17\n )\n ", + "query": "\n INSERT INTO mods (\n id, team_id, name, summary, description,\n published, downloads, icon_url, raw_icon_url, status, requested_status,\n license_url, license,\n slug, color, monetization_status, organization_id,\n side_types_migration_review_status\n )\n VALUES (\n $1, $2, $3, $4, $5, $6,\n $7, $8, $9, $10, $11,\n $12, $13,\n LOWER($14), $15, $16, $17,\n $18\n )\n ", "describe": { "columns": [], "parameters": { @@ -21,10 +21,11 @@ "Text", "Int4", "Varchar", - "Int8" + "Int8", + "Varchar" ] }, "nullable": [] }, - "hash": "bcbcac3c0b2b2b0327577d3095fa744ab42f7f1dcd2b7f3c3dace12b899b3f38" + "hash": "ee74bbff42dd29ab5a23d5811ea18e62ac199fe5e68275bf1bc7c71ace630702" } diff --git a/apps/labrinth/.sqlx/query-f2525e9be3b90fc0c42c8333ca795ff0b6eb1d3c4350d8e025d39d927d4547fc.json b/apps/labrinth/.sqlx/query-f2525e9be3b90fc0c42c8333ca795ff0b6eb1d3c4350d8e025d39d927d4547fc.json new file mode 100644 index 000000000..7b1913392 --- /dev/null +++ b/apps/labrinth/.sqlx/query-f2525e9be3b90fc0c42c8333ca795ff0b6eb1d3c4350d8e025d39d927d4547fc.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE users\n SET badges = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "f2525e9be3b90fc0c42c8333ca795ff0b6eb1d3c4350d8e025d39d927d4547fc" +} diff --git a/apps/labrinth/.sqlx/query-f6388b5026e25191840d1a157a9ed48aaedab5db381f4efc389b852d9020a0e6.json b/apps/labrinth/.sqlx/query-f6388b5026e25191840d1a157a9ed48aaedab5db381f4efc389b852d9020a0e6.json new file mode 100644 index 000000000..c8514e0a3 --- /dev/null +++ b/apps/labrinth/.sqlx/query-f6388b5026e25191840d1a157a9ed48aaedab5db381f4efc389b852d9020a0e6.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE shared_instances\n SET current_version_id = (\n SELECT id FROM shared_instance_versions\n WHERE shared_instance_id = $1\n ORDER BY created DESC\n LIMIT 1\n )\n WHERE id = $1\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Int8" + ] + }, + "nullable": [] + }, + "hash": "f6388b5026e25191840d1a157a9ed48aaedab5db381f4efc389b852d9020a0e6" +} diff --git a/apps/labrinth/.sqlx/query-fa874e2c55995feaa5e0d3cd54db82b88af15477d616d0d3b3c6967b31d967f7.json b/apps/labrinth/.sqlx/query-fa874e2c55995feaa5e0d3cd54db82b88af15477d616d0d3b3c6967b31d967f7.json new file mode 100644 index 000000000..24a5dbb41 --- /dev/null +++ b/apps/labrinth/.sqlx/query-fa874e2c55995feaa5e0d3cd54db82b88af15477d616d0d3b3c6967b31d967f7.json @@ -0,0 +1,15 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE mods\n SET monetization_status = $1\n WHERE (id = $2)\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "fa874e2c55995feaa5e0d3cd54db82b88af15477d616d0d3b3c6967b31d967f7" +} diff --git a/apps/labrinth/Cargo.toml b/apps/labrinth/Cargo.toml index 584b8b935..b49aefabf 100644 --- a/apps/labrinth/Cargo.toml +++ b/apps/labrinth/Cargo.toml @@ -2,7 +2,7 @@ name = "labrinth" version = "2.7.0" authors = ["geometrically "] -edition = "2018" +edition.workspace = true license = "AGPL-3.0" # This seems redundant, but it's necessary for Docker to work @@ -11,79 +11,73 @@ name = "labrinth" path = "src/main.rs" [dependencies] -actix-web = "4.4.1" -actix-rt = "2.9.0" -actix-multipart = "0.6.1" -actix-cors = "0.7.0" -actix-ws = "0.3.0" -actix-files = "0.6.5" -prometheus = "0.13.4" -actix-web-prom = { version = "0.9.0", features = ["process"] } -governor = "0.6.3" +actix-web.workspace = true +actix-rt.workspace = true +actix-multipart.workspace = true +actix-cors.workspace = true +actix-ws.workspace = true +actix-files.workspace = true +prometheus.workspace = true +actix-web-prom = { workspace = true, features = ["process"] } -tracing = "0.1.41" -tracing-subscriber = "0.3.19" -tracing-actix-web = "0.7.16" -console-subscriber = "0.4.1" +tracing.workspace = true +tracing-actix-web.workspace = true +console-subscriber.workspace = true -tokio = { version = "1.35.1", features = ["sync"] } -tokio-stream = "0.1.14" +tokio = { workspace = true, features = ["sync", "rt-multi-thread"] } +tokio-stream.workspace = true -futures = "0.3.30" -futures-timer = "3.0.2" -futures-util = "0.3.30" -async-trait = "0.1.70" -dashmap = "5.4.0" -lazy_static = "1.4.0" +futures.workspace = true +futures-util.workspace = true +async-trait.workspace = true +dashmap.workspace = true +paste.workspace = true -meilisearch-sdk = "0.27.1" -rust-s3 = "0.33.0" -reqwest = { version = "0.11.18", features = ["json", "multipart"] } -hyper = { version = "0.14", features = ["full"] } -hyper-tls = "0.5.0" +meilisearch-sdk = { workspace = true, features = ["reqwest"] } +rust-s3.workspace = true +reqwest = { workspace = true, features = ["http2", "rustls-tls-webpki-roots", "json", "multipart"] } +hyper-tls.workspace = true +hyper-util.workspace = true -serde = { version = "1.0", features = ["derive"] } -serde_bytes = "0.11" -serde_json = "1.0" -serde_cbor = "0.11" -serde_with = "3.0.0" -chrono = { version = "0.4.26", features = ["serde"] } -yaserde = "0.12.0" -yaserde_derive = "0.12.0" -xml-rs = "0.8.15" +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +serde_with.workspace = true +chrono = { workspace = true, features = ["serde"] } +yaserde = { workspace = true, features = ["derive"] } -rand = "0.8.5" -rand_chacha = "0.3.1" -bytes = "1.4.0" -base64 = "0.21.7" -sha1 = { version = "0.6.1", features = ["std"] } -sha2 = "0.9.9" -hmac = "0.11.0" -argon2 = { version = "0.5.0", features = ["std"] } -murmur2 = "0.1.0" -bitflags = "2.4.0" -hex = "0.4.3" -zxcvbn = "2.2.2" -totp-rs = { version = "5.0.2", features = ["gen_secret"] } +rand.workspace = true +rand_chacha.workspace = true +bytes.workspace = true +base64.workspace = true +sha1.workspace = true +sha2.workspace = true +hmac.workspace = true +argon2.workspace = true +murmur2.workspace = true +bitflags.workspace = true +hex.workspace = true +zxcvbn.workspace = true +totp-rs = { workspace = true, features = ["gen_secret"] } -url = "2.4.0" -urlencoding = "2.1.2" +url.workspace = true +urlencoding.workspace = true -zip = "0.6.6" +zip.workspace = true -itertools = "0.12.0" +itertools.workspace = true -validator = { version = "0.16.1", features = ["derive", "phone"] } -regex = "1.10.2" -censor = "0.3.0" -spdx = { version = "0.10.3", features = ["text"] } +validator = { workspace = true, features = ["derive"] } +regex.workspace = true +censor.workspace = true +spdx = { workspace = true, features = ["text"] } -dotenvy = "0.15.7" -thiserror = "1.0.56" -either = "1.13" +dotenvy.workspace = true +thiserror.workspace = true +either.workspace = true -sqlx = { version = "0.8.2", features = [ - "runtime-tokio-rustls", +sqlx = { workspace = true, features = [ + "runtime-tokio", + "tls-rustls-ring", "postgres", "chrono", "macros", @@ -91,50 +85,52 @@ sqlx = { version = "0.8.2", features = [ "rust_decimal", "json", ] } -rust_decimal = { version = "1.33.1", features = [ +rust_decimal = { workspace = true, features = [ "serde-with-float", "serde-with-str", ] } -redis = { version = "0.27.5", features = ["tokio-comp", "ahash", "r2d2"] } -deadpool-redis = "0.18.0" -clickhouse = { version = "0.11.2", features = ["uuid", "time"] } -uuid = { version = "1.2.2", features = ["v4", "fast-rng", "serde"] } +redis = { workspace = true, features = ["tokio-comp", "ahash", "r2d2"] } +deadpool-redis.workspace = true +clickhouse = { workspace = true, features = ["uuid", "time"] } +uuid = { workspace = true, features = ["v4", "fast-rng", "serde"] } -maxminddb = "0.24.0" -flate2 = "1.0.25" -tar = "0.4.38" +maxminddb.workspace = true +flate2.workspace = true +tar.workspace = true -sentry = { version = "0.34.0", default-features = false, features = [ - "backtrace", - "contexts", - "debug-images", - "panic", - "rustls", - "reqwest", -] } -sentry-actix = "0.34.0" +sentry.workspace = true +sentry-actix.workspace = true -image = "0.24.6" -color-thief = "0.2.2" -webp = "0.3.0" +image = { workspace = true, features = ["avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "tiff", "webp"] } +color-thief.workspace = true +webp.workspace = true -woothee = "0.13.0" +woothee.workspace = true -lettre = "0.11.3" +lettre.workspace = true -derive-new = "0.6.0" -rust_iso3166 = "0.1.11" +rust_iso3166.workspace = true -async-stripe = { version = "0.39.1", features = ["runtime-tokio-hyper-rustls"] } -rusty-money = "0.4.1" -json-patch = "*" +async-stripe = { workspace = true, features = ["billing", "checkout", "connect", "webhook-events"] } +rusty-money.workspace = true +json-patch.workspace = true -ariadne = { path = "../../packages/ariadne" } +ariadne.workspace = true -[target.'cfg(not(target_env = "msvc"))'.dependencies] -tikv-jemallocator = { version = "0.6.0", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] } -tikv-jemalloc-ctl = { version = "0.6.0", features = ["stats"] } -jemalloc_pprof = { version = "0.7.0", features = ["flamegraph"] } +clap = { workspace = true, features = ["derive"] } + +[target.'cfg(target_os = "linux")'.dependencies] +tikv-jemallocator = { workspace = true, features = ["profiling", "unprefixed_malloc_on_supported_platforms"] } +tikv-jemalloc-ctl = { workspace = true, features = ["stats"] } +jemalloc_pprof = { workspace = true, features = ["flamegraph"] } [dev-dependencies] -actix-http = "3.4.0" +actix-http.workspace = true + +[build-dependencies] +dotenv-build.workspace = true +chrono.workspace = true +iana-time-zone.workspace = true + +[lints] +workspace = true diff --git a/apps/labrinth/Dockerfile b/apps/labrinth/Dockerfile index 688b34921..01b73d95b 100644 --- a/apps/labrinth/Dockerfile +++ b/apps/labrinth/Dockerfile @@ -1,12 +1,8 @@ -FROM rust:1.84.0 as build -ENV PKG_CONFIG_ALLOW_CROSS=1 +FROM rust:1.88.0 AS build WORKDIR /usr/src/labrinth COPY . . -ENV SQLX_OFFLINE=true -COPY apps/labrinth/.sqlx/ .sqlx/ -RUN cargo build --release --package labrinth - +RUN SQLX_OFFLINE=true cargo build --release --package labrinth FROM debian:bookworm-slim @@ -15,12 +11,9 @@ LABEL org.opencontainers.image.description="Modrinth API" LABEL org.opencontainers.image.licenses=AGPL-3.0 RUN apt-get update \ - && apt-get install -y --no-install-recommends ca-certificates openssl dumb-init \ - && apt-get clean \ + && apt-get install -y --no-install-recommends ca-certificates openssl dumb-init curl \ && rm -rf /var/lib/apt/lists/* -RUN update-ca-certificates - COPY --from=build /usr/src/labrinth/target/release/labrinth /labrinth/labrinth COPY --from=build /usr/src/labrinth/apps/labrinth/migrations/* /labrinth/migrations/ COPY --from=build /usr/src/labrinth/apps/labrinth/assets /labrinth/assets diff --git a/apps/labrinth/README.md b/apps/labrinth/README.md index de6976a45..6377ee2f2 100644 --- a/apps/labrinth/README.md +++ b/apps/labrinth/README.md @@ -1,4 +1,4 @@ -![labrinth banner](https://user-images.githubusercontent.com/12068027/100479891-d6bab300-30ac-11eb-8336-b4cad376a03d.png) +![labrinth banner](/.github/assets/api_cover.png) ## Modrinth's laboratory for its backend service & API! diff --git a/apps/labrinth/build.rs b/apps/labrinth/build.rs index 3a8149ef0..0f5fdf2b5 100644 --- a/apps/labrinth/build.rs +++ b/apps/labrinth/build.rs @@ -1,3 +1,47 @@ +use std::path::Path; +use std::process::Command; + +use chrono::Local; +use dotenv_build::Config; + fn main() { + let output = Command::new("git") + .arg("rev-parse") + .arg("HEAD") + .output() + .expect("`git` invocation to succeed"); + + let git_hash = String::from_utf8(output.stdout) + .expect("valid UTF-8 output from `git` invocation"); + + println!("cargo::rerun-if-changed=.git/HEAD"); + println!("cargo::rustc-env=GIT_HASH={}", git_hash.trim()); + + let timedate_fmt = Local::now().format("%F @ %I:%M %p"); + let timezone_fmt = iana_time_zone::get_timezone() + .map(|tz| format!(" ({tz})")) + .unwrap_or_default(); + + let comptime = timedate_fmt.to_string() + timezone_fmt.as_str(); + + println!("cargo::rustc-env=COMPILATION_DATE={comptime}"); + + // trick to get compilation profile + let profile = std::env::var("OUT_DIR") + .expect("OUT_DIR to be set") + .split(std::path::MAIN_SEPARATOR) + .nth_back(3) + .unwrap_or("unknown") + .to_string(); + + println!("cargo::rustc-env=COMPILATION_PROFILE={profile}"); + + dotenv_build::output(Config { + filename: Path::new(".build.env"), + recursive_search: true, + fail_if_missing_dotenv: false, + }) + .unwrap(); + println!("cargo:rerun-if-changed=migrations"); } diff --git a/apps/labrinth/migrations/20240115052708_base62-helper-functions.sql b/apps/labrinth/migrations/20240115052708_base62-helper-functions.sql new file mode 100644 index 000000000..02dcec1c6 --- /dev/null +++ b/apps/labrinth/migrations/20240115052708_base62-helper-functions.sql @@ -0,0 +1,40 @@ +CREATE OR REPLACE FUNCTION from_base62(input VARCHAR) +RETURNS BIGINT AS $$ +DECLARE + base INT := 62; + chars VARCHAR := '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + result BIGINT := 0; + i INT; + char VARCHAR; + index INT; +BEGIN + FOR i IN 1..LENGTH(input) LOOP + char := SUBSTRING(input FROM i FOR 1); + index := POSITION(char IN chars) - 1; + IF index < 0 THEN + RAISE EXCEPTION 'Error: Invalid character in input string'; + END IF; + result := result * base + index; + END LOOP; + + RETURN result; +END; +$$ LANGUAGE plpgsql; + +CREATE OR REPLACE FUNCTION to_base62(input BIGINT) +RETURNS VARCHAR AS $$ +DECLARE + base INT := 62; + chars VARCHAR := '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + result VARCHAR := ''; + remainder INT; +BEGIN + WHILE input > 0 LOOP + remainder := input % base; + result := SUBSTRING(chars FROM remainder + 1 FOR 1) || result; + input := input / base; + END LOOP; + + RETURN result; +END; +$$ LANGUAGE plpgsql; diff --git a/apps/labrinth/migrations/20250519184051_shared-instances.sql b/apps/labrinth/migrations/20250519184051_shared-instances.sql new file mode 100644 index 000000000..8f785403c --- /dev/null +++ b/apps/labrinth/migrations/20250519184051_shared-instances.sql @@ -0,0 +1,43 @@ +CREATE TABLE shared_instances ( + id BIGINT PRIMARY KEY, + title VARCHAR(255) NOT NULL, + owner_id BIGINT NOT NULL REFERENCES users, + current_version_id BIGINT NULL, + public BOOLEAN NOT NULL DEFAULT FALSE +); +CREATE INDEX shared_instances_owner_id ON shared_instances(owner_id); + +CREATE TABLE shared_instance_users ( + user_id BIGINT NOT NULL REFERENCES users ON DELETE CASCADE, + shared_instance_id BIGINT NOT NULL REFERENCES shared_instances ON DELETE CASCADE, + permissions BIGINT NOT NULL DEFAULT 0, + + PRIMARY KEY (user_id, shared_instance_id) +); + +CREATE TABLE shared_instance_invited_users ( + id BIGINT PRIMARY KEY, + shared_instance_id BIGINT NOT NULL REFERENCES shared_instances ON DELETE CASCADE, + invited_user_id BIGINT NULL REFERENCES users ON DELETE CASCADE +); +CREATE INDEX shared_instance_invited_users_shared_instance_id ON shared_instance_invited_users(shared_instance_id); +CREATE INDEX shared_instance_invited_users_invited_user_id ON shared_instance_invited_users(invited_user_id); + +CREATE TABLE shared_instance_invite_links ( + id BIGINT PRIMARY KEY, + shared_instance_id BIGINT NOT NULL REFERENCES shared_instances ON DELETE CASCADE, + expiration timestamptz NULL, + remaining_uses BIGINT CHECK ( remaining_uses >= 0 ) NULL +); +CREATE INDEX shared_instance_invite_links_shared_instance_id ON shared_instance_invite_links(shared_instance_id); + +CREATE TABLE shared_instance_versions ( + id BIGINT PRIMARY KEY, + shared_instance_id BIGINT NOT NULL REFERENCES shared_instances ON DELETE CASCADE, + size BIGINT NOT NULL, + sha512 bytea NOT NULL, + created timestamptz NOT NULL DEFAULT CURRENT_TIMESTAMP +); + +ALTER TABLE shared_instances +ADD FOREIGN KEY (current_version_id) REFERENCES shared_instance_versions(id) ON DELETE SET NULL; diff --git a/apps/labrinth/migrations/20250523174544_project-versions-environments.sql b/apps/labrinth/migrations/20250523174544_project-versions-environments.sql new file mode 100644 index 000000000..b11c88c2a --- /dev/null +++ b/apps/labrinth/migrations/20250523174544_project-versions-environments.sql @@ -0,0 +1,124 @@ +DO LANGUAGE plpgsql $$ +DECLARE + VAR_env_field_id INT; + VAR_env_field_enum_id INT := 4; -- Known available ID for a new enum type +BEGIN + +-- Define a new loader field for environment +INSERT INTO loader_field_enums (id, enum_name, ordering, hidable) + VALUES (VAR_env_field_enum_id, 'environment', NULL, TRUE); + +INSERT INTO loader_field_enum_values (enum_id, value, ordering, created, metadata) + VALUES + -- Must be installed on both client and (integrated) server + (VAR_env_field_enum_id, 'client_and_server', NULL, NOW(), NULL), + -- Must be installed only on the client + (VAR_env_field_enum_id, 'client_only', NULL, NOW(), NULL), + -- Must be installed on the client, may be installed on a (integrated) server. To be displayed as a + -- client mod + (VAR_env_field_enum_id, 'client_only_server_optional', NULL, NOW(), NULL), + -- Must be installed only on the integrated singleplayer server. To be displayed as a server mod for + -- singleplayer exclusively + (VAR_env_field_enum_id, 'singleplayer_only', NULL, NOW(), NULL), + -- Must be installed only on a (integrated) server + (VAR_env_field_enum_id, 'server_only', NULL, NOW(), NULL), + -- Must be installed on the server, may be installed on the client. To be displayed as a + -- singleplayer-compatible server mod + (VAR_env_field_enum_id, 'server_only_client_optional', NULL, NOW(), NULL), + -- Must be installed only on a dedicated multiplayer server (not the integrated singleplayer server). + -- To be displayed as an server mod for multiplayer exclusively + (VAR_env_field_enum_id, 'dedicated_server_only', NULL, NOW(), NULL), + -- Can be installed on both client and server, with no strong preference for either. To be displayed + -- as both a client and server mod + (VAR_env_field_enum_id, 'client_or_server', NULL, NOW(), NULL), + -- Can be installed on both client and server, with a preference for being installed on both. To be + -- displayed as a client and server mod + (VAR_env_field_enum_id, 'client_or_server_prefers_both', NULL, NOW(), NULL), + (VAR_env_field_enum_id, 'unknown', NULL, NOW(), NULL); + +INSERT INTO loader_fields (field, field_type, enum_type, optional) + VALUES ('environment', 'enum', VAR_env_field_enum_id, FALSE) + RETURNING id INTO VAR_env_field_id; + +-- Update version_fields to have the new environment field, initializing it from the +-- values of the previous fields +INSERT INTO version_fields (version_id, field_id, enum_value) + SELECT vf.version_id, VAR_env_field_id, ( + SELECT id + FROM loader_field_enum_values + WHERE enum_id = VAR_env_field_enum_id + AND value = ( + CASE jsonb_object_agg(lf.field, vf.int_value) + WHEN '{ "server_only": 0, "singleplayer": 0, "client_and_server": 0, "client_only": 1 }'::jsonb THEN 'client_only' + WHEN '{ "server_only": 0, "singleplayer": 0, "client_and_server": 1, "client_only": 0 }'::jsonb THEN 'client_and_server' + WHEN '{ "server_only": 0, "singleplayer": 0, "client_and_server": 1, "client_only": 1 }'::jsonb THEN 'client_only_server_optional' + WHEN '{ "server_only": 0, "singleplayer": 1, "client_and_server": 0, "client_only": 0 }'::jsonb THEN 'singleplayer_only' + WHEN '{ "server_only": 0, "singleplayer": 1, "client_and_server": 0, "client_only": 1 }'::jsonb THEN 'client_only' + WHEN '{ "server_only": 0, "singleplayer": 1, "client_and_server": 1, "client_only": 0 }'::jsonb THEN 'client_and_server' + WHEN '{ "server_only": 0, "singleplayer": 1, "client_and_server": 1, "client_only": 1 }'::jsonb THEN 'client_only_server_optional' + WHEN '{ "server_only": 1, "singleplayer": 0, "client_and_server": 0, "client_only": 0 }'::jsonb THEN 'server_only' + WHEN '{ "server_only": 1, "singleplayer": 0, "client_and_server": 0, "client_only": 1 }'::jsonb THEN 'client_or_server' + WHEN '{ "server_only": 1, "singleplayer": 0, "client_and_server": 1, "client_only": 0 }'::jsonb THEN 'server_only_client_optional' + WHEN '{ "server_only": 1, "singleplayer": 0, "client_and_server": 1, "client_only": 1 }'::jsonb THEN 'client_or_server_prefers_both' + WHEN '{ "server_only": 1, "singleplayer": 1, "client_and_server": 0, "client_only": 0 }'::jsonb THEN 'server_only' + WHEN '{ "server_only": 1, "singleplayer": 1, "client_and_server": 0, "client_only": 1 }'::jsonb THEN 'client_or_server' + WHEN '{ "server_only": 1, "singleplayer": 1, "client_and_server": 1, "client_only": 0 }'::jsonb THEN 'server_only_client_optional' + WHEN '{ "server_only": 1, "singleplayer": 1, "client_and_server": 1, "client_only": 1 }'::jsonb THEN 'client_or_server_prefers_both' + ELSE 'unknown' + END + ) + ) + FROM version_fields vf + JOIN loader_fields lf ON vf.field_id = lf.id + WHERE lf.field IN ('server_only', 'singleplayer', 'client_and_server', 'client_only') + GROUP BY vf.version_id + HAVING COUNT(DISTINCT lf.field) = 4; + +-- Clean up old fields from the project versions +DELETE FROM version_fields + WHERE field_id IN ( + SELECT id + FROM loader_fields + WHERE field IN ('server_only', 'singleplayer', 'client_and_server', 'client_only') + ); + +-- Switch loader fields definitions on the available loaders to use the new environment field +ALTER TABLE loader_fields_loaders DROP CONSTRAINT unique_loader_field; +ALTER TABLE loader_fields_loaders DROP CONSTRAINT loader_fields_loaders_pkey; +ALTER TABLE loader_fields_loaders REPLICA IDENTITY FULL; -- Required due to temporary PK removal for replica sync in production + +UPDATE loader_fields_loaders + SET loader_field_id = VAR_env_field_id + WHERE loader_field_id IN ( + SELECT id + FROM loader_fields + WHERE field IN ('server_only', 'singleplayer', 'client_and_server', 'client_only') + ); + +-- Remove duplicate (loader_id, loader_field_id) pairs that may have been created due to several +-- old fields being converted to a single new field +DELETE FROM loader_fields_loaders + WHERE ctid NOT IN ( + SELECT MIN(ctid) + FROM loader_fields_loaders + GROUP BY loader_id, loader_field_id + ); + +-- Having both a PK and UNIQUE constraint for the same columns is redundant, so only restore the PK +ALTER TABLE loader_fields_loaders ADD PRIMARY KEY (loader_id, loader_field_id); +ALTER TABLE loader_fields_loaders REPLICA IDENTITY DEFAULT; + +-- Finally, remove the old loader fields +DELETE FROM loader_fields + WHERE field IN ('server_only', 'singleplayer', 'client_and_server', 'client_only'); + +-- Add a field to the projects table to track whether the new environment field value has been +-- reviewed to be appropriate after automated migration +ALTER TABLE mods + ADD COLUMN side_types_migration_review_status VARCHAR(64) NOT NULL DEFAULT 'reviewed' + CHECK (side_types_migration_review_status IN ('reviewed', 'pending')); + +UPDATE mods SET side_types_migration_review_status = 'pending'; + +END; +$$ diff --git a/apps/labrinth/migrations/20250608183828_random-project-index.sql b/apps/labrinth/migrations/20250608183828_random-project-index.sql new file mode 100644 index 000000000..9d35a65b3 --- /dev/null +++ b/apps/labrinth/migrations/20250608183828_random-project-index.sql @@ -0,0 +1,12 @@ +-- This index substantially brings down the cost of the query plan for the +-- hot query at `labrinth::routes::v3::projects::random_projects_get`, from +-- 354.04..363.39 to 171.33..180.68 (~2x improvement). +-- +-- The numbers above were calculated in a clean PostgreSQL 17.5.0 container +-- with 10k mods created with the SQL below. +-- +-- WITH seq AS (SELECT n FROM GENERATE_SERIES(1, 10000) AS n) +-- INSERT INTO mods (id, team_id, name, summary, icon_url, license_url, slug, status) +-- SELECT n, 1, n, '', '', '', n, (ARRAY['approved', 'pending'])[n % 2 + 1] from seq; + +CREATE INDEX mods_status ON mods(status); diff --git a/apps/labrinth/migrations/20250609134334_spatial-random-project-index.sql b/apps/labrinth/migrations/20250609134334_spatial-random-project-index.sql new file mode 100644 index 000000000..fb471b286 --- /dev/null +++ b/apps/labrinth/migrations/20250609134334_spatial-random-project-index.sql @@ -0,0 +1,12 @@ +-- The spatial query for retrieving random searchable projects is greatly sped +-- up by this index on a fixture of 1M mods, bringing down the total cost of +-- the query plan and runtime to be comparable to primary key lookups. See the +-- `labrinth::routes::v3::projects::random_projects_get` function and the +-- previous 20250608183828_random-project-index.sql migration for more details. +-- +-- That previous migration created a non-spatial index for the status column which +-- does not get used in the new spatial query, but may still be useful for other +-- queries that filter mods by status. + +CREATE INDEX mods_searchable_ids_gist ON mods USING gist (POINT(id, 0)) + WHERE status = ANY(ARRAY['approved', 'archived']); diff --git a/apps/labrinth/migrations/20250611164523_lowercase-user-email-index.sql b/apps/labrinth/migrations/20250611164523_lowercase-user-email-index.sql new file mode 100644 index 000000000..80ff690a2 --- /dev/null +++ b/apps/labrinth/migrations/20250611164523_lowercase-user-email-index.sql @@ -0,0 +1 @@ +CREATE INDEX users_lowercase_email ON users (LOWER(email)); diff --git a/apps/labrinth/migrations/20250628213541_payout-sources-recording.sql b/apps/labrinth/migrations/20250628213541_payout-sources-recording.sql new file mode 100644 index 000000000..b22e75952 --- /dev/null +++ b/apps/labrinth/migrations/20250628213541_payout-sources-recording.sql @@ -0,0 +1,8 @@ +-- Add migration script here +CREATE TABLE payout_sources_balance ( + account_type TEXT NOT NULL, + amount numeric(40, 20) NOT NULL, + pending BOOLEAN NOT NULL, + recorded timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (recorded, account_type, pending) +); diff --git a/apps/labrinth/package.json b/apps/labrinth/package.json index 03e662511..4d01f2043 100644 --- a/apps/labrinth/package.json +++ b/apps/labrinth/package.json @@ -2,10 +2,13 @@ "name": "@modrinth/labrinth", "scripts": { "build": "cargo build --release", - "lint": "cargo fmt --check && cargo clippy --all-targets --all-features -- -D warnings", - "fix": "cargo fmt && cargo clippy --fix", + "lint": "cargo fmt --check && cargo clippy --all-targets", + "fix": "cargo clippy --all-targets --fix --allow-dirty && cargo fmt", "dev": "cargo run", - "//": "CI will fail since test takes up too much disk space. So we have it named differently.", - "test-labrinth": "cargo test" + "//": "Labrinth integration tests require a lot of disk space, so in the standard GitHub Actions", + "//": "runners we must remove useless development tools from the base image, which frees up ~20 GiB.", + "//": "The command commented out below can be used in CI to debug what is taking up space:", + "//": "sudo du -xh --max-depth=4 / | sort -rh | curl -X POST --data-urlencode content@/dev/fd/0 https://api.mclo.gs/1/log", + "test": "if-ci sudo rm -rf /usr/local/lib/android /usr/local/.ghcup /opt/hostedtoolcache/CodeQL /usr/share/swift && cargo nextest run --all-targets --no-fail-fast" } } diff --git a/apps/labrinth/src/auth/checks.rs b/apps/labrinth/src/auth/checks.rs index d347f70ac..7cb644384 100644 --- a/apps/labrinth/src/auth/checks.rs +++ b/apps/labrinth/src/auth/checks.rs @@ -1,9 +1,9 @@ use crate::database; -use crate::database::models::project_item::QueryProject; -use crate::database::models::version_item::QueryVersion; -use crate::database::models::Collection; +use crate::database::models::DBCollection; +use crate::database::models::project_item::ProjectQueryResult; +use crate::database::models::version_item::VersionQueryResult; use crate::database::redis::RedisPool; -use crate::database::{models, Project, Version}; +use crate::database::{DBProject, DBVersion, models}; use crate::models::users::User; use crate::routes::ApiError; use itertools::Itertools; @@ -38,7 +38,7 @@ where } pub async fn is_visible_project( - project_data: &Project, + project_data: &DBProject, user_option: &Option, pool: &PgPool, hide_unlisted: bool, @@ -54,7 +54,7 @@ pub async fn is_visible_project( } pub async fn is_team_member_project( - project_data: &Project, + project_data: &DBProject, user_option: &Option, pool: &PgPool, ) -> Result { @@ -64,7 +64,7 @@ pub async fn is_team_member_project( } pub async fn filter_visible_projects( - mut projects: Vec, + mut projects: Vec, user_option: &Option, pool: &PgPool, hide_unlisted: bool, @@ -86,11 +86,11 @@ pub async fn filter_visible_projects( // - the user is a mod // This is essentially whether you can know of the project's existence pub async fn filter_visible_project_ids( - projects: Vec<&Project>, + projects: Vec<&DBProject>, user_option: &Option, pool: &PgPool, hide_unlisted: bool, -) -> Result, ApiError> { +) -> Result, ApiError> { let mut return_projects = Vec::new(); let mut check_projects = Vec::new(); @@ -100,10 +100,7 @@ pub async fn filter_visible_project_ids( project.status.is_searchable() } else { !project.status.is_hidden() - }) || user_option - .as_ref() - .map(|x| x.role.is_mod()) - .unwrap_or(false) + }) || user_option.as_ref().is_some_and(|x| x.role.is_mod()) { return_projects.push(project.id); } else if user_option.is_some() { @@ -126,14 +123,14 @@ pub async fn filter_visible_project_ids( // These are projects we have internal access to and can potentially see even if they are hidden // This is useful for getting visibility of versions, or seeing analytics or sensitive team-restricted data of a project pub async fn filter_enlisted_projects_ids( - projects: Vec<&Project>, + projects: Vec<&DBProject>, user_option: &Option, pool: &PgPool, -) -> Result, ApiError> { +) -> Result, ApiError> { let mut return_projects = vec![]; if let Some(user) = user_option { - let user_id: models::ids::UserId = user.id.into(); + let user_id: models::ids::DBUserId = user.id.into(); use futures::TryStreamExt; @@ -154,11 +151,11 @@ pub async fn filter_enlisted_projects_ids( .iter() .filter_map(|x| x.organization_id.map(|x| x.0)) .collect::>(), - user_id as database::models::ids::UserId, + user_id as database::models::ids::DBUserId, ) .fetch(pool) .map_ok(|row| { - for x in projects.iter() { + for x in &projects { let bool = Some(x.id.0) == row.id && Some(x.team_id.0) == row.team_id; if bool { @@ -173,7 +170,7 @@ pub async fn filter_enlisted_projects_ids( } pub async fn is_visible_version( - version_data: &Version, + version_data: &DBVersion, user_option: &Option, pool: &PgPool, redis: &RedisPool, @@ -184,7 +181,7 @@ pub async fn is_visible_version( } pub async fn is_team_member_version( - version_data: &Version, + version_data: &DBVersion, user_option: &Option, pool: &PgPool, redis: &RedisPool, @@ -195,7 +192,7 @@ pub async fn is_team_member_version( } pub async fn filter_visible_versions( - mut versions: Vec, + mut versions: Vec, user_option: &Option, pool: &PgPool, redis: &RedisPool, @@ -211,7 +208,7 @@ pub async fn filter_visible_versions( Ok(versions.into_iter().map(|x| x.into()).collect()) } -impl ValidateAuthorized for models::OAuthClient { +impl ValidateAuthorized for models::DBOAuthClient { fn validate_authorized( &self, user_option: Option<&User>, @@ -232,13 +229,12 @@ impl ValidateAuthorized for models::OAuthClient { } pub async fn filter_visible_version_ids( - versions: Vec<&Version>, + versions: Vec<&DBVersion>, user_option: &Option, pool: &PgPool, redis: &RedisPool, -) -> Result, ApiError> { +) -> Result, ApiError> { let mut return_versions = Vec::new(); - let mut check_versions = Vec::new(); // First, filter out versions belonging to projects we can't see // (ie: a hidden project, but public version, should still be hidden) @@ -247,7 +243,7 @@ pub async fn filter_visible_version_ids( // Get visible projects- ones we are allowed to see public versions for. let visible_project_ids = filter_visible_project_ids( - Project::get_many_ids(&project_ids, pool, redis) + DBProject::get_many_ids(&project_ids, pool, redis) .await? .iter() .map(|x| &x.inner) @@ -271,15 +267,10 @@ pub async fn filter_visible_version_ids( // - we are enlisted on the team of the mod if (!version.status.is_hidden() && visible_project_ids.contains(&version.project_id)) - || user_option - .as_ref() - .map(|x| x.role.is_mod()) - .unwrap_or(false) + || user_option.as_ref().is_some_and(|x| x.role.is_mod()) || enlisted_version_ids.contains(&version.id) { return_versions.push(version.id); - } else if user_option.is_some() { - check_versions.push(version); } } @@ -287,11 +278,11 @@ pub async fn filter_visible_version_ids( } pub async fn filter_enlisted_version_ids( - versions: Vec<&Version>, + versions: Vec<&DBVersion>, user_option: &Option, pool: &PgPool, redis: &RedisPool, -) -> Result, ApiError> { +) -> Result, ApiError> { let mut return_versions = Vec::new(); // Get project ids of versions @@ -299,7 +290,7 @@ pub async fn filter_enlisted_version_ids( // Get enlisted projects- ones we are allowed to see hidden versions for. let authorized_project_ids = filter_enlisted_projects_ids( - Project::get_many_ids(&project_ids, pool, redis) + DBProject::get_many_ids(&project_ids, pool, redis) .await? .iter() .map(|x| &x.inner) @@ -310,10 +301,7 @@ pub async fn filter_enlisted_version_ids( .await?; for version in versions { - if user_option - .as_ref() - .map(|x| x.role.is_mod()) - .unwrap_or(false) + if user_option.as_ref().is_some_and(|x| x.role.is_mod()) || (user_option.is_some() && authorized_project_ids.contains(&version.project_id)) { @@ -325,10 +313,11 @@ pub async fn filter_enlisted_version_ids( } pub async fn is_visible_collection( - collection_data: &Collection, + collection_data: &DBCollection, user_option: &Option, ) -> Result { - let mut authorized = !collection_data.status.is_hidden(); + let mut authorized = !collection_data.status.is_hidden() + && !collection_data.projects.is_empty(); if let Some(user) = &user_option { if !authorized && (user.role.is_mod() || user.id == collection_data.user_id.into()) @@ -340,18 +329,15 @@ pub async fn is_visible_collection( } pub async fn filter_visible_collections( - collections: Vec, + collections: Vec, user_option: &Option, ) -> Result, ApiError> { let mut return_collections = Vec::new(); let mut check_collections = Vec::new(); for collection in collections { - if !collection.status.is_hidden() - || user_option - .as_ref() - .map(|x| x.role.is_mod()) - .unwrap_or(false) + if (!collection.status.is_hidden() && !collection.projects.is_empty()) + || user_option.as_ref().is_some_and(|x| x.role.is_mod()) { return_collections.push(collection.into()); } else if user_option.is_some() { diff --git a/apps/labrinth/src/auth/email/auth_notif.html b/apps/labrinth/src/auth/email/auth_notif.html index 2d504876b..45a9e95a6 100644 --- a/apps/labrinth/src/auth/email/auth_notif.html +++ b/apps/labrinth/src/auth/email/auth_notif.html @@ -381,8 +381,7 @@ overflow: hidden; " > - {{ email_description - }}͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  + {{ email_description }}͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏  ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ 
    - Black Logo Square - Created with Sketch. - - - - +Apple diff --git a/packages/assets/external/bluesky.svg b/packages/assets/external/bluesky.svg index 471a4b564..c456933ab 100644 --- a/packages/assets/external/bluesky.svg +++ b/packages/assets/external/bluesky.svg @@ -1,3 +1 @@ - - - +Bluesky diff --git a/packages/assets/external/bmac.svg b/packages/assets/external/bmac.svg index be7e015eb..78957b27a 100644 --- a/packages/assets/external/bmac.svg +++ b/packages/assets/external/bmac.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - +Buy Me A Coffee diff --git a/packages/assets/external/curseforge.svg b/packages/assets/external/curseforge.svg new file mode 100644 index 000000000..a9ba42ff4 --- /dev/null +++ b/packages/assets/external/curseforge.svg @@ -0,0 +1 @@ +CurseForge diff --git a/packages/assets/external/discord.svg b/packages/assets/external/discord.svg index a655bf5ce..681f56cd6 100644 --- a/packages/assets/external/discord.svg +++ b/packages/assets/external/discord.svg @@ -1,10 +1 @@ - - - - - - - - - - +Discord diff --git a/packages/assets/external/github.svg b/packages/assets/external/github.svg index 5581249b5..6abd17039 100644 --- a/packages/assets/external/github.svg +++ b/packages/assets/external/github.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - +GitHub diff --git a/packages/assets/external/kofi.svg b/packages/assets/external/kofi.svg index 7ca78ce40..79391d150 100644 --- a/packages/assets/external/kofi.svg +++ b/packages/assets/external/kofi.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file +Ko-fi diff --git a/packages/assets/external/mastodon.svg b/packages/assets/external/mastodon.svg index 67698f10d..32c2dbef1 100644 --- a/packages/assets/external/mastodon.svg +++ b/packages/assets/external/mastodon.svg @@ -1 +1 @@ - +Mastodon diff --git a/packages/assets/external/opencollective.svg b/packages/assets/external/opencollective.svg index 70e5816e1..c717f1d85 100644 --- a/packages/assets/external/opencollective.svg +++ b/packages/assets/external/opencollective.svg @@ -1 +1 @@ -Open Collective \ No newline at end of file +Open Collective diff --git a/packages/assets/external/patreon.svg b/packages/assets/external/patreon.svg index 13b742d04..d74b3cae8 100644 --- a/packages/assets/external/patreon.svg +++ b/packages/assets/external/patreon.svg @@ -1 +1 @@ - +Patreon diff --git a/packages/assets/external/paypal.svg b/packages/assets/external/paypal.svg index a5da5a46c..ab48a0185 100644 --- a/packages/assets/external/paypal.svg +++ b/packages/assets/external/paypal.svg @@ -1 +1 @@ -PayPal \ No newline at end of file +PayPal diff --git a/packages/assets/external/pyro.svg b/packages/assets/external/pyro.svg deleted file mode 100644 index 16eebd786..000000000 --- a/packages/assets/external/pyro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/assets/external/reddit.svg b/packages/assets/external/reddit.svg index 5cfd11243..55e198be1 100644 --- a/packages/assets/external/reddit.svg +++ b/packages/assets/external/reddit.svg @@ -1 +1 @@ - \ No newline at end of file +Reddit diff --git a/packages/assets/external/tumblr.svg b/packages/assets/external/tumblr.svg index 86b2f2eec..bc76382b7 100644 --- a/packages/assets/external/tumblr.svg +++ b/packages/assets/external/tumblr.svg @@ -1,10 +1 @@ - - - - - - - - - - +Tumblr diff --git a/packages/assets/external/twitter.svg b/packages/assets/external/twitter.svg index 3cf66ecf6..2e154f7d3 100644 --- a/packages/assets/external/twitter.svg +++ b/packages/assets/external/twitter.svg @@ -1,10 +1 @@ - - - - - - - - - - +X diff --git a/packages/assets/external/youtube.svg b/packages/assets/external/youtube.svg index 5de99f86c..3ac2c781a 100644 --- a/packages/assets/external/youtube.svg +++ b/packages/assets/external/youtube.svg @@ -1 +1 @@ - \ No newline at end of file +YouTube diff --git a/packages/assets/generated-icons.ts b/packages/assets/generated-icons.ts new file mode 100644 index 000000000..9a76fc2cf --- /dev/null +++ b/packages/assets/generated-icons.ts @@ -0,0 +1,376 @@ +// Auto-generated icon imports and exports +// Do not edit this file manually - run 'pnpm run fix' to regenerate + +import _AlignLeftIcon from './icons/align-left.svg?component' +import _ArchiveIcon from './icons/archive.svg?component' +import _ArrowBigRightDashIcon from './icons/arrow-big-right-dash.svg?component' +import _ArrowBigUpDashIcon from './icons/arrow-big-up-dash.svg?component' +import _AsteriskIcon from './icons/asterisk.svg?component' +import _BadgeCheckIcon from './icons/badge-check.svg?component' +import _BanIcon from './icons/ban.svg?component' +import _BellRingIcon from './icons/bell-ring.svg?component' +import _BellIcon from './icons/bell.svg?component' +import _BlocksIcon from './icons/blocks.svg?component' +import _BoldIcon from './icons/bold.svg?component' +import _BookTextIcon from './icons/book-text.svg?component' +import _BookIcon from './icons/book.svg?component' +import _BookmarkIcon from './icons/bookmark.svg?component' +import _BotIcon from './icons/bot.svg?component' +import _BoxImportIcon from './icons/box-import.svg?component' +import _BoxIcon from './icons/box.svg?component' +import _BracesIcon from './icons/braces.svg?component' +import _CalendarIcon from './icons/calendar.svg?component' +import _CardIcon from './icons/card.svg?component' +import _ChangeSkinIcon from './icons/change-skin.svg?component' +import _ChartIcon from './icons/chart.svg?component' +import _CheckCheckIcon from './icons/check-check.svg?component' +import _CheckCircleIcon from './icons/check-circle.svg?component' +import _CheckIcon from './icons/check.svg?component' +import _ChevronLeftIcon from './icons/chevron-left.svg?component' +import _ChevronRightIcon from './icons/chevron-right.svg?component' +import _ClearIcon from './icons/clear.svg?component' +import _ClientIcon from './icons/client.svg?component' +import _ClipboardCopyIcon from './icons/clipboard-copy.svg?component' +import _CloudIcon from './icons/cloud.svg?component' +import _CodeIcon from './icons/code.svg?component' +import _CoffeeIcon from './icons/coffee.svg?component' +import _CogIcon from './icons/cog.svg?component' +import _CoinsIcon from './icons/coins.svg?component' +import _CollectionIcon from './icons/collection.svg?component' +import _CompassIcon from './icons/compass.svg?component' +import _ContractIcon from './icons/contract.svg?component' +import _CopyIcon from './icons/copy.svg?component' +import _CopyrightIcon from './icons/copyright.svg?component' +import _CpuIcon from './icons/cpu.svg?component' +import _CrownIcon from './icons/crown.svg?component' +import _CubeIcon from './icons/cube.svg?component' +import _CurrencyIcon from './icons/currency.svg?component' +import _DashboardIcon from './icons/dashboard.svg?component' +import _DatabaseIcon from './icons/database.svg?component' +import _DownloadIcon from './icons/download.svg?component' +import _DropdownIcon from './icons/dropdown.svg?component' +import _EditIcon from './icons/edit.svg?component' +import _ExpandIcon from './icons/expand.svg?component' +import _ExternalIcon from './icons/external.svg?component' +import _EyeOffIcon from './icons/eye-off.svg?component' +import _EyeIcon from './icons/eye.svg?component' +import _FileArchiveIcon from './icons/file-archive.svg?component' +import _FileTextIcon from './icons/file-text.svg?component' +import _FileIcon from './icons/file.svg?component' +import _FilterXIcon from './icons/filter-x.svg?component' +import _FilterIcon from './icons/filter.svg?component' +import _FolderArchiveIcon from './icons/folder-archive.svg?component' +import _FolderOpenIcon from './icons/folder-open.svg?component' +import _FolderSearchIcon from './icons/folder-search.svg?component' +import _GameIcon from './icons/game.svg?component' +import _GapIcon from './icons/gap.svg?component' +import _GaugeIcon from './icons/gauge.svg?component' +import _GitGraphIcon from './icons/git-graph.svg?component' +import _GlassesIcon from './icons/glasses.svg?component' +import _GlobeIcon from './icons/globe.svg?component' +import _GridIcon from './icons/grid.svg?component' +import _HamburgerIcon from './icons/hamburger.svg?component' +import _HammerIcon from './icons/hammer.svg?component' +import _HashIcon from './icons/hash.svg?component' +import _Heading1Icon from './icons/heading-1.svg?component' +import _Heading2Icon from './icons/heading-2.svg?component' +import _Heading3Icon from './icons/heading-3.svg?component' +import _HeartHandshakeIcon from './icons/heart-handshake.svg?component' +import _HeartIcon from './icons/heart.svg?component' +import _HistoryIcon from './icons/history.svg?component' +import _HomeIcon from './icons/home.svg?component' +import _ImageIcon from './icons/image.svg?component' +import _ImportIcon from './icons/import.svg?component' +import _InProgressIcon from './icons/in-progress.svg?component' +import _InfoIcon from './icons/info.svg?component' +import _IssuesIcon from './icons/issues.svg?component' +import _ItalicIcon from './icons/italic.svg?component' +import _KeyIcon from './icons/key.svg?component' +import _LanguagesIcon from './icons/languages.svg?component' +import _LeftArrowIcon from './icons/left-arrow.svg?component' +import _LibraryIcon from './icons/library.svg?component' +import _LightBulbIcon from './icons/light-bulb.svg?component' +import _LinkIcon from './icons/link.svg?component' +import _ListBulletedIcon from './icons/list-bulleted.svg?component' +import _ListEndIcon from './icons/list-end.svg?component' +import _ListOrderedIcon from './icons/list-ordered.svg?component' +import _ListIcon from './icons/list.svg?component' +import _LoaderIcon from './icons/loader.svg?component' +import _LockOpenIcon from './icons/lock-open.svg?component' +import _LockIcon from './icons/lock.svg?component' +import _LogInIcon from './icons/log-in.svg?component' +import _LogOutIcon from './icons/log-out.svg?component' +import _MailIcon from './icons/mail.svg?component' +import _ManageIcon from './icons/manage.svg?component' +import _MaximizeIcon from './icons/maximize.svg?component' +import _MemoryStickIcon from './icons/memory-stick.svg?component' +import _MessageIcon from './icons/message.svg?component' +import _MicrophoneIcon from './icons/microphone.svg?component' +import _MinimizeIcon from './icons/minimize.svg?component' +import _MinusIcon from './icons/minus.svg?component' +import _MonitorSmartphoneIcon from './icons/monitor-smartphone.svg?component' +import _MonitorIcon from './icons/monitor.svg?component' +import _MoonIcon from './icons/moon.svg?component' +import _MoreHorizontalIcon from './icons/more-horizontal.svg?component' +import _MoreVerticalIcon from './icons/more-vertical.svg?component' +import _NewspaperIcon from './icons/newspaper.svg?component' +import _NoSignalIcon from './icons/no-signal.svg?component' +import _OmorphiaIcon from './icons/omorphia.svg?component' +import _OrganizationIcon from './icons/organization.svg?component' +import _PackageClosedIcon from './icons/package-closed.svg?component' +import _PackageOpenIcon from './icons/package-open.svg?component' +import _PackageIcon from './icons/package.svg?component' +import _PaintbrushIcon from './icons/paintbrush.svg?component' +import _PickaxeIcon from './icons/pickaxe.svg?component' +import _PlayIcon from './icons/play.svg?component' +import _PlugIcon from './icons/plug.svg?component' +import _PlusIcon from './icons/plus.svg?component' +import _RadioButtonCheckedIcon from './icons/radio-button-checked.svg?component' +import _RadioButtonIcon from './icons/radio-button.svg?component' +import _ReceiptTextIcon from './icons/receipt-text.svg?component' +import _RedoIcon from './icons/redo.svg?component' +import _ReplyIcon from './icons/reply.svg?component' +import _ReportIcon from './icons/report.svg?component' +import _RestoreIcon from './icons/restore.svg?component' +import _RightArrowIcon from './icons/right-arrow.svg?component' +import _RotateClockwiseIcon from './icons/rotate-clockwise.svg?component' +import _RotateCounterClockwiseIcon from './icons/rotate-counter-clockwise.svg?component' +import _RssIcon from './icons/rss.svg?component' +import _SaveIcon from './icons/save.svg?component' +import _ScaleIcon from './icons/scale.svg?component' +import _ScanEyeIcon from './icons/scan-eye.svg?component' +import _SearchIcon from './icons/search.svg?component' +import _SendIcon from './icons/send.svg?component' +import _ServerPlusIcon from './icons/server-plus.svg?component' +import _ServerIcon from './icons/server.svg?component' +import _SettingsIcon from './icons/settings.svg?component' +import _ShareIcon from './icons/share.svg?component' +import _ShieldIcon from './icons/shield.svg?component' +import _SignalIcon from './icons/signal.svg?component' +import _SkullIcon from './icons/skull.svg?component' +import _SlashIcon from './icons/slash.svg?component' +import _SortAscIcon from './icons/sort-asc.svg?component' +import _SortDescIcon from './icons/sort-desc.svg?component' +import _SparklesIcon from './icons/sparkles.svg?component' +import _SpinnerIcon from './icons/spinner.svg?component' +import _StarIcon from './icons/star.svg?component' +import _StopCircleIcon from './icons/stop-circle.svg?component' +import _StrikethroughIcon from './icons/strikethrough.svg?component' +import _SunIcon from './icons/sun.svg?component' +import _SunriseIcon from './icons/sunrise.svg?component' +import _TagIcon from './icons/tag.svg?component' +import _TagsIcon from './icons/tags.svg?component' +import _TerminalSquareIcon from './icons/terminal-square.svg?component' +import _TestIcon from './icons/test.svg?component' +import _TextQuoteIcon from './icons/text-quote.svg?component' +import _TimerIcon from './icons/timer.svg?component' +import _TransferIcon from './icons/transfer.svg?component' +import _TrashIcon from './icons/trash.svg?component' +import _UnderlineIcon from './icons/underline.svg?component' +import _UndoIcon from './icons/undo.svg?component' +import _UnknownDonationIcon from './icons/unknown-donation.svg?component' +import _UnknownIcon from './icons/unknown.svg?component' +import _UnlinkIcon from './icons/unlink.svg?component' +import _UnplugIcon from './icons/unplug.svg?component' +import _UpdatedIcon from './icons/updated.svg?component' +import _UploadIcon from './icons/upload.svg?component' +import _UserPlusIcon from './icons/user-plus.svg?component' +import _UserXIcon from './icons/user-x.svg?component' +import _UserIcon from './icons/user.svg?component' +import _UsersIcon from './icons/users.svg?component' +import _VersionIcon from './icons/version.svg?component' +import _WikiIcon from './icons/wiki.svg?component' +import _WindowIcon from './icons/window.svg?component' +import _WorldIcon from './icons/world.svg?component' +import _WrenchIcon from './icons/wrench.svg?component' +import _XCircleIcon from './icons/x-circle.svg?component' +import _XIcon from './icons/x.svg?component' +import _ZoomInIcon from './icons/zoom-in.svg?component' +import _ZoomOutIcon from './icons/zoom-out.svg?component' + +export const AlignLeftIcon = _AlignLeftIcon +export const ArchiveIcon = _ArchiveIcon +export const ArrowBigRightDashIcon = _ArrowBigRightDashIcon +export const ArrowBigUpDashIcon = _ArrowBigUpDashIcon +export const AsteriskIcon = _AsteriskIcon +export const BadgeCheckIcon = _BadgeCheckIcon +export const BanIcon = _BanIcon +export const BellRingIcon = _BellRingIcon +export const BellIcon = _BellIcon +export const BlocksIcon = _BlocksIcon +export const BoldIcon = _BoldIcon +export const BookTextIcon = _BookTextIcon +export const BookIcon = _BookIcon +export const BookmarkIcon = _BookmarkIcon +export const BotIcon = _BotIcon +export const BoxImportIcon = _BoxImportIcon +export const BoxIcon = _BoxIcon +export const BracesIcon = _BracesIcon +export const CalendarIcon = _CalendarIcon +export const CardIcon = _CardIcon +export const ChangeSkinIcon = _ChangeSkinIcon +export const ChartIcon = _ChartIcon +export const CheckCheckIcon = _CheckCheckIcon +export const CheckCircleIcon = _CheckCircleIcon +export const CheckIcon = _CheckIcon +export const ChevronLeftIcon = _ChevronLeftIcon +export const ChevronRightIcon = _ChevronRightIcon +export const ClearIcon = _ClearIcon +export const ClientIcon = _ClientIcon +export const ClipboardCopyIcon = _ClipboardCopyIcon +export const CloudIcon = _CloudIcon +export const CodeIcon = _CodeIcon +export const CoffeeIcon = _CoffeeIcon +export const CogIcon = _CogIcon +export const CoinsIcon = _CoinsIcon +export const CollectionIcon = _CollectionIcon +export const CompassIcon = _CompassIcon +export const ContractIcon = _ContractIcon +export const CopyIcon = _CopyIcon +export const CopyrightIcon = _CopyrightIcon +export const CpuIcon = _CpuIcon +export const CrownIcon = _CrownIcon +export const CubeIcon = _CubeIcon +export const CurrencyIcon = _CurrencyIcon +export const DashboardIcon = _DashboardIcon +export const DatabaseIcon = _DatabaseIcon +export const DownloadIcon = _DownloadIcon +export const DropdownIcon = _DropdownIcon +export const EditIcon = _EditIcon +export const ExpandIcon = _ExpandIcon +export const ExternalIcon = _ExternalIcon +export const EyeOffIcon = _EyeOffIcon +export const EyeIcon = _EyeIcon +export const FileArchiveIcon = _FileArchiveIcon +export const FileTextIcon = _FileTextIcon +export const FileIcon = _FileIcon +export const FilterXIcon = _FilterXIcon +export const FilterIcon = _FilterIcon +export const FolderArchiveIcon = _FolderArchiveIcon +export const FolderOpenIcon = _FolderOpenIcon +export const FolderSearchIcon = _FolderSearchIcon +export const GameIcon = _GameIcon +export const GapIcon = _GapIcon +export const GaugeIcon = _GaugeIcon +export const GitGraphIcon = _GitGraphIcon +export const GlassesIcon = _GlassesIcon +export const GlobeIcon = _GlobeIcon +export const GridIcon = _GridIcon +export const HamburgerIcon = _HamburgerIcon +export const HammerIcon = _HammerIcon +export const HashIcon = _HashIcon +export const Heading1Icon = _Heading1Icon +export const Heading2Icon = _Heading2Icon +export const Heading3Icon = _Heading3Icon +export const HeartHandshakeIcon = _HeartHandshakeIcon +export const HeartIcon = _HeartIcon +export const HistoryIcon = _HistoryIcon +export const HomeIcon = _HomeIcon +export const ImageIcon = _ImageIcon +export const ImportIcon = _ImportIcon +export const InProgressIcon = _InProgressIcon +export const InfoIcon = _InfoIcon +export const IssuesIcon = _IssuesIcon +export const ItalicIcon = _ItalicIcon +export const KeyIcon = _KeyIcon +export const LanguagesIcon = _LanguagesIcon +export const LeftArrowIcon = _LeftArrowIcon +export const LibraryIcon = _LibraryIcon +export const LightBulbIcon = _LightBulbIcon +export const LinkIcon = _LinkIcon +export const ListBulletedIcon = _ListBulletedIcon +export const ListEndIcon = _ListEndIcon +export const ListOrderedIcon = _ListOrderedIcon +export const ListIcon = _ListIcon +export const LoaderIcon = _LoaderIcon +export const LockOpenIcon = _LockOpenIcon +export const LockIcon = _LockIcon +export const LogInIcon = _LogInIcon +export const LogOutIcon = _LogOutIcon +export const MailIcon = _MailIcon +export const ManageIcon = _ManageIcon +export const MaximizeIcon = _MaximizeIcon +export const MemoryStickIcon = _MemoryStickIcon +export const MessageIcon = _MessageIcon +export const MicrophoneIcon = _MicrophoneIcon +export const MinimizeIcon = _MinimizeIcon +export const MinusIcon = _MinusIcon +export const MonitorSmartphoneIcon = _MonitorSmartphoneIcon +export const MonitorIcon = _MonitorIcon +export const MoonIcon = _MoonIcon +export const MoreHorizontalIcon = _MoreHorizontalIcon +export const MoreVerticalIcon = _MoreVerticalIcon +export const NewspaperIcon = _NewspaperIcon +export const NoSignalIcon = _NoSignalIcon +export const OmorphiaIcon = _OmorphiaIcon +export const OrganizationIcon = _OrganizationIcon +export const PackageClosedIcon = _PackageClosedIcon +export const PackageOpenIcon = _PackageOpenIcon +export const PackageIcon = _PackageIcon +export const PaintbrushIcon = _PaintbrushIcon +export const PickaxeIcon = _PickaxeIcon +export const PlayIcon = _PlayIcon +export const PlugIcon = _PlugIcon +export const PlusIcon = _PlusIcon +export const RadioButtonCheckedIcon = _RadioButtonCheckedIcon +export const RadioButtonIcon = _RadioButtonIcon +export const ReceiptTextIcon = _ReceiptTextIcon +export const RedoIcon = _RedoIcon +export const ReplyIcon = _ReplyIcon +export const ReportIcon = _ReportIcon +export const RestoreIcon = _RestoreIcon +export const RightArrowIcon = _RightArrowIcon +export const RotateClockwiseIcon = _RotateClockwiseIcon +export const RotateCounterClockwiseIcon = _RotateCounterClockwiseIcon +export const RssIcon = _RssIcon +export const SaveIcon = _SaveIcon +export const ScaleIcon = _ScaleIcon +export const ScanEyeIcon = _ScanEyeIcon +export const SearchIcon = _SearchIcon +export const SendIcon = _SendIcon +export const ServerPlusIcon = _ServerPlusIcon +export const ServerIcon = _ServerIcon +export const SettingsIcon = _SettingsIcon +export const ShareIcon = _ShareIcon +export const ShieldIcon = _ShieldIcon +export const SignalIcon = _SignalIcon +export const SkullIcon = _SkullIcon +export const SlashIcon = _SlashIcon +export const SortAscIcon = _SortAscIcon +export const SortDescIcon = _SortDescIcon +export const SparklesIcon = _SparklesIcon +export const SpinnerIcon = _SpinnerIcon +export const StarIcon = _StarIcon +export const StopCircleIcon = _StopCircleIcon +export const StrikethroughIcon = _StrikethroughIcon +export const SunIcon = _SunIcon +export const SunriseIcon = _SunriseIcon +export const TagIcon = _TagIcon +export const TagsIcon = _TagsIcon +export const TerminalSquareIcon = _TerminalSquareIcon +export const TestIcon = _TestIcon +export const TextQuoteIcon = _TextQuoteIcon +export const TimerIcon = _TimerIcon +export const TransferIcon = _TransferIcon +export const TrashIcon = _TrashIcon +export const UnderlineIcon = _UnderlineIcon +export const UndoIcon = _UndoIcon +export const UnknownDonationIcon = _UnknownDonationIcon +export const UnknownIcon = _UnknownIcon +export const UnlinkIcon = _UnlinkIcon +export const UnplugIcon = _UnplugIcon +export const UpdatedIcon = _UpdatedIcon +export const UploadIcon = _UploadIcon +export const UserPlusIcon = _UserPlusIcon +export const UserXIcon = _UserXIcon +export const UserIcon = _UserIcon +export const UsersIcon = _UsersIcon +export const VersionIcon = _VersionIcon +export const WikiIcon = _WikiIcon +export const WindowIcon = _WindowIcon +export const WorldIcon = _WorldIcon +export const WrenchIcon = _WrenchIcon +export const XCircleIcon = _XCircleIcon +export const XIcon = _XIcon +export const ZoomInIcon = _ZoomInIcon +export const ZoomOutIcon = _ZoomOutIcon diff --git a/packages/assets/icons.d.ts b/packages/assets/icons.d.ts index e43e0e7f9..9e7826981 100644 --- a/packages/assets/icons.d.ts +++ b/packages/assets/icons.d.ts @@ -4,3 +4,13 @@ declare module '*.svg?component' { const src: FunctionalComponent export default src } + +declare module '*.webp' { + const src: string + export default src +} + +declare module '*?url' { + const src: string + export default src +} diff --git a/packages/assets/icons/arrow-big-right-dash.svg b/packages/assets/icons/arrow-big-right-dash.svg new file mode 100644 index 000000000..2e13baa29 --- /dev/null +++ b/packages/assets/icons/arrow-big-right-dash.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/packages/assets/icons/badge-check.svg b/packages/assets/icons/badge-check.svg new file mode 100644 index 000000000..ad45322e3 --- /dev/null +++ b/packages/assets/icons/badge-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/frontend/src/assets/images/utils/languages.svg b/packages/assets/icons/blocks.svg similarity index 52% rename from apps/frontend/src/assets/images/utils/languages.svg rename to packages/assets/icons/blocks.svg index 72ed7aeee..4b78f5051 100644 --- a/apps/frontend/src/assets/images/utils/languages.svg +++ b/packages/assets/icons/blocks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/packages/assets/icons/bot.svg b/packages/assets/icons/bot.svg new file mode 100644 index 000000000..812ca3495 --- /dev/null +++ b/packages/assets/icons/bot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/assets/icons/change-skin.svg b/packages/assets/icons/change-skin.svg new file mode 100644 index 000000000..762605150 --- /dev/null +++ b/packages/assets/icons/change-skin.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/assets/icons/cpu.svg b/packages/assets/icons/cpu.svg index f95f519b3..0b3bb3e35 100644 --- a/packages/assets/icons/cpu.svg +++ b/packages/assets/icons/cpu.svg @@ -1,14 +1,18 @@ - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/frontend/src/assets/images/utils/more-horizontal.svg b/packages/assets/icons/database.svg similarity index 55% rename from apps/frontend/src/assets/images/utils/more-horizontal.svg rename to packages/assets/icons/database.svg index 20338ba75..c86d4a04a 100644 --- a/apps/frontend/src/assets/images/utils/more-horizontal.svg +++ b/packages/assets/icons/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/packages/assets/icons/db.svg b/packages/assets/icons/db.svg deleted file mode 100644 index 196cf349e..000000000 --- a/packages/assets/icons/db.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/assets/icons/file-archive.svg b/packages/assets/icons/file-archive.svg new file mode 100644 index 000000000..b653d1cc9 --- /dev/null +++ b/packages/assets/icons/file-archive.svg @@ -0,0 +1 @@ + diff --git a/packages/assets/icons/folder-archive.svg b/packages/assets/icons/folder-archive.svg new file mode 100644 index 000000000..e29a2b4e8 --- /dev/null +++ b/packages/assets/icons/folder-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/assets/icons/git-graph.svg b/packages/assets/icons/git-graph.svg new file mode 100644 index 000000000..9b2b37b51 --- /dev/null +++ b/packages/assets/icons/git-graph.svg @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/packages/assets/icons/github.svg b/packages/assets/icons/github.svg deleted file mode 100644 index 90908bb31..000000000 --- a/packages/assets/icons/github.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - diff --git a/packages/assets/icons/memory-stick.svg b/packages/assets/icons/memory-stick.svg new file mode 100644 index 000000000..53bef3f86 --- /dev/null +++ b/packages/assets/icons/memory-stick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/assets/icons/no-signal.svg b/packages/assets/icons/no-signal.svg new file mode 100644 index 000000000..90318e971 --- /dev/null +++ b/packages/assets/icons/no-signal.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/packages/assets/icons/pickaxe.svg b/packages/assets/icons/pickaxe.svg new file mode 100644 index 000000000..40e92c49c --- /dev/null +++ b/packages/assets/icons/pickaxe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/frontend/src/assets/images/utils/check-check.svg b/packages/assets/icons/rotate-clockwise.svg similarity index 59% rename from apps/frontend/src/assets/images/utils/check-check.svg rename to packages/assets/icons/rotate-clockwise.svg index d3c06bd92..f857d60a6 100644 --- a/apps/frontend/src/assets/images/utils/check-check.svg +++ b/packages/assets/icons/rotate-clockwise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/apps/frontend/src/assets/images/utils/crown.svg b/packages/assets/icons/rotate-counter-clockwise.svg similarity index 59% rename from apps/frontend/src/assets/images/utils/crown.svg rename to packages/assets/icons/rotate-counter-clockwise.svg index 7772c5b55..99d7e6b38 100644 --- a/apps/frontend/src/assets/images/utils/crown.svg +++ b/packages/assets/icons/rotate-counter-clockwise.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/apps/frontend/src/assets/images/utils/book-text.svg b/packages/assets/icons/rss.svg similarity index 58% rename from apps/frontend/src/assets/images/utils/book-text.svg rename to packages/assets/icons/rss.svg index b2442799f..7d895b4ca 100644 --- a/apps/frontend/src/assets/images/utils/book-text.svg +++ b/packages/assets/icons/rss.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/packages/assets/icons/server-plus.svg b/packages/assets/icons/server-plus.svg new file mode 100644 index 000000000..b9bab1bd8 --- /dev/null +++ b/packages/assets/icons/server-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/assets/icons/signal.svg b/packages/assets/icons/signal.svg new file mode 100644 index 000000000..dcdd37462 --- /dev/null +++ b/packages/assets/icons/signal.svg @@ -0,0 +1 @@ + diff --git a/packages/assets/icons/skull.svg b/packages/assets/icons/skull.svg new file mode 100644 index 000000000..f56453eb2 --- /dev/null +++ b/packages/assets/icons/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/assets/icons/world.svg b/packages/assets/icons/world.svg new file mode 100644 index 000000000..cb5c68469 --- /dev/null +++ b/packages/assets/icons/world.svg @@ -0,0 +1 @@ + diff --git a/packages/assets/index.ts b/packages/assets/index.ts index 00bd02269..a7b3b95b0 100644 --- a/packages/assets/index.ts +++ b/packages/assets/index.ts @@ -1,9 +1,27 @@ -// NOTE: re-export using consts to help TypeScript resolve the proper type +/** + * NOTE: You should re-export any manually added icons + * using consts to help TypeScript resolve the proper type + * + * NOTE: If an icon is part of the lucide icon set, it should be placed in the "icons" folder + * and automatically generated through the "pnpm run fix" command. + */ + +import './omorphia.scss' // Branding import _ModrinthIcon from './branding/logo.svg?component' import _FourOhFourNotFound from './branding/404.svg?component' import _ModrinthPlusIcon from './branding/modrinth-plus.svg?component' +import _AngryRinthbot from './branding/rinthbot/angry.webp' +import _AnnoyedRinthbot from './branding/rinthbot/annoyed.webp' +import _ConfusedRinthbot from './branding/rinthbot/confused.webp' +import _ExcitedRinthbot from './branding/rinthbot/excited.webp' +import _LaughingRinthbot from './branding/rinthbot/laughing.webp' +import _SadRinthbot from './branding/rinthbot/sad.webp' +import _SleepingRinthbot from './branding/rinthbot/sleeping.webp' +import _SobbingRinthbot from './branding/rinthbot/sobbing.webp' +import _ThinkingRinthbot from './branding/rinthbot/thinking.webp' +import _WavingRinthbot from './branding/rinthbot/waving.webp' // External Icons import _SSODiscordIcon from './external/sso/discord.svg?component' @@ -15,6 +33,7 @@ import _SSOSteamIcon from './external/sso/steam.svg?component' import _AppleIcon from './external/apple.svg?component' import _BlueskyIcon from './external/bluesky.svg?component' import _BuyMeACoffeeIcon from './external/bmac.svg?component' +import _CurseForgeIcon from './external/curseforge.svg?component' import _DiscordIcon from './external/discord.svg?component' import _GithubIcon from './external/github.svg?component' import _KoFiIcon from './external/kofi.svg?component' @@ -27,185 +46,20 @@ import _TumblrIcon from './external/tumblr.svg?component' import _TwitterIcon from './external/twitter.svg?component' import _WindowsIcon from './external/windows.svg?component' import _YouTubeIcon from './external/youtube.svg?component' -import _PyroIcon from './external/pyro.svg?component' - -// Icons -import _AlignLeftIcon from './icons/align-left.svg?component' -import _ArchiveIcon from './icons/archive.svg?component' -import _ArrowBigUpDashIcon from './icons/arrow-big-up-dash.svg?component' -import _AsteriskIcon from './icons/asterisk.svg?component' -import _BanIcon from './icons/ban.svg?component' -import _BellIcon from './icons/bell.svg?component' -import _BellRingIcon from './icons/bell-ring.svg?component' -import _BookIcon from './icons/book.svg?component' -import _BookTextIcon from './icons/book-text.svg?component' -import _BookmarkIcon from './icons/bookmark.svg?component' -import _BoxIcon from './icons/box.svg?component' -import _BoxImportIcon from './icons/box-import.svg?component' -import _BracesIcon from './icons/braces.svg?component' -import _CalendarIcon from './icons/calendar.svg?component' -import _CardIcon from './icons/card.svg?component' -import _ChartIcon from './icons/chart.svg?component' -import _CheckIcon from './icons/check.svg?component' -import _CheckCheckIcon from './icons/check-check.svg?component' -import _CheckCircleIcon from './icons/check-circle.svg?component' -import _ChevronLeftIcon from './icons/chevron-left.svg?component' -import _ChevronRightIcon from './icons/chevron-right.svg?component' -import _ClearIcon from './icons/clear.svg?component' -import _ClientIcon from './icons/client.svg?component' -import _ClipboardCopyIcon from './icons/clipboard-copy.svg?component' -import _CodeIcon from './icons/code.svg?component' -import _CoffeeIcon from './icons/coffee.svg?component' -import _CoinsIcon from './icons/coins.svg?component' -import _CollectionIcon from './icons/collection.svg?component' -import _CompassIcon from './icons/compass.svg?component' -import _ContractIcon from './icons/contract.svg?component' -import _CopyIcon from './icons/copy.svg?component' -import _CopyrightIcon from './icons/copyright.svg?component' -import _CrownIcon from './icons/crown.svg?component' -import _CurrencyIcon from './icons/currency.svg?component' -import _DashboardIcon from './icons/dashboard.svg?component' -import _DownloadIcon from './icons/download.svg?component' -import _DropdownIcon from './icons/dropdown.svg?component' -import _EditIcon from './icons/edit.svg?component' -import _ExpandIcon from './icons/expand.svg?component' -import _ExternalIcon from './icons/external.svg?component' -import _EyeIcon from './icons/eye.svg?component' -import _EyeOffIcon from './icons/eye-off.svg?component' -import _FileIcon from './icons/file.svg?component' -import _FileTextIcon from './icons/file-text.svg?component' -import _FilterIcon from './icons/filter.svg?component' -import _FilterXIcon from './icons/filter-x.svg?component' -import _FolderOpenIcon from './icons/folder-open.svg?component' -import _FolderSearchIcon from './icons/folder-search.svg?component' -import _GapIcon from './icons/gap.svg?component' -import _GaugeIcon from './icons/gauge.svg?component' -import _GameIcon from './icons/game.svg?component' -import _GitHubIcon from './icons/github.svg?component' -import _GlassesIcon from './icons/glasses.svg?component' -import _GlobeIcon from './icons/globe.svg?component' -import _GridIcon from './icons/grid.svg?component' -import _HamburgerIcon from './icons/hamburger.svg?component' -import _HammerIcon from './icons/hammer.svg?component' -import _HashIcon from './icons/hash.svg?component' -import _HeartIcon from './icons/heart.svg?component' -import _HeartHandshakeIcon from './icons/heart-handshake.svg?component' -import _HistoryIcon from './icons/history.svg?component' -import _HomeIcon from './icons/home.svg?component' -import _ImageIcon from './icons/image.svg?component' -import _InProgressIcon from './icons/in-progress.svg?component' -import _InfoIcon from './icons/info.svg?component' -import _IssuesIcon from './icons/issues.svg?component' -import _KeyIcon from './icons/key.svg?component' -import _LanguagesIcon from './icons/languages.svg?component' -import _LeftArrowIcon from './icons/left-arrow.svg?component' -import _LibraryIcon from './icons/library.svg?component' -import _LightBulbIcon from './icons/light-bulb.svg?component' -import _LinkIcon from './icons/link.svg?component' -import _ListIcon from './icons/list.svg?component' -import _ListEndIcon from './icons/list-end.svg?component' -import _LockIcon from './icons/lock.svg?component' -import _LockOpenIcon from './icons/lock-open.svg?component' -import _LogInIcon from './icons/log-in.svg?component' -import _LogOutIcon from './icons/log-out.svg?component' -import _MailIcon from './icons/mail.svg?component' -import _ManageIcon from './icons/manage.svg?component' -import _MaximizeIcon from './icons/maximize.svg?component' -import _MessageIcon from './icons/message.svg?component' -import _MicrophoneIcon from './icons/microphone.svg?component' -import _MinimizeIcon from './icons/minimize.svg?component' -import _MinusIcon from './icons/minus.svg?component' -import _MonitorIcon from './icons/monitor.svg?component' -import _MonitorSmartphoneIcon from './icons/monitor-smartphone.svg?component' -import _MoonIcon from './icons/moon.svg?component' -import _MoreHorizontalIcon from './icons/more-horizontal.svg?component' -import _MoreVerticalIcon from './icons/more-vertical.svg?component' -import _NewspaperIcon from './icons/newspaper.svg?component' -import _OmorphiaIcon from './icons/omorphia.svg?component' -import _OrganizationIcon from './icons/organization.svg?component' -import _PackageIcon from './icons/package.svg?component' -import _PackageOpenIcon from './icons/package-open.svg?component' -import _PackageClosedIcon from './icons/package-closed.svg?component' -import _PaintBrushIcon from './icons/paintbrush.svg?component' -import _PlayIcon from './icons/play.svg?component' -import _PlugIcon from './icons/plug.svg?component' -import _PlusIcon from './icons/plus.svg?component' -import _RadioButtonIcon from './icons/radio-button.svg?component' -import _RadioButtonChecked from './icons/radio-button-checked.svg?component' -import _ReceiptTextIcon from './icons/receipt-text.svg?component' -import _ReplyIcon from './icons/reply.svg?component' -import _ReportIcon from './icons/report.svg?component' -import _RestoreIcon from './icons/restore.svg?component' -import _RightArrowIcon from './icons/right-arrow.svg?component' -import _SaveIcon from './icons/save.svg?component' -import _ScaleIcon from './icons/scale.svg?component' -import _ScanEyeIcon from './icons/scan-eye.svg?component' -import _SearchIcon from './icons/search.svg?component' -import _SendIcon from './icons/send.svg?component' -import _ServerIcon from './icons/server.svg?component' -import _SettingsIcon from './icons/settings.svg?component' -import _ShareIcon from './icons/share.svg?component' -import _ShieldIcon from './icons/shield.svg?component' -import _SlashIcon from './icons/slash.svg?component' -import _SortAscendingIcon from './icons/sort-asc.svg?component' -import _SortDescendingIcon from './icons/sort-desc.svg?component' -import _SparklesIcon from './icons/sparkles.svg?component' -import _SpinnerIcon from './icons/spinner.svg?component' -import _StarIcon from './icons/star.svg?component' -import _StopCircleIcon from './icons/stop-circle.svg?component' -import _SunIcon from './icons/sun.svg?component' -import _SunriseIcon from './icons/sunrise.svg?component' -import _TagIcon from './icons/tag.svg?component' -import _TagsIcon from './icons/tags.svg?component' -import _TerminalSquareIcon from './icons/terminal-square.svg?component' -import _TransferIcon from './icons/transfer.svg?component' -import _TrashIcon from './icons/trash.svg?component' -import _UndoIcon from './icons/undo.svg?component' -import _RedoIcon from './icons/redo.svg?component' -import _UnknownIcon from './icons/unknown.svg?component' -import _UnknownDonationIcon from './icons/unknown-donation.svg?component' -import _UpdatedIcon from './icons/updated.svg?component' -import _UnlinkIcon from './icons/unlink.svg?component' -import _UnplugIcon from './icons/unplug.svg?component' -import _UploadIcon from './icons/upload.svg?component' -import _UserIcon from './icons/user.svg?component' -import _UserPlusIcon from './icons/user-plus.svg?component' -import _UserXIcon from './icons/user-x.svg?component' -import _UsersIcon from './icons/users.svg?component' -import _VersionIcon from './icons/version.svg?component' -import _WikiIcon from './icons/wiki.svg?component' -import _WindowIcon from './icons/window.svg?component' -import _WrenchIcon from './icons/wrench.svg?component' -import _XIcon from './icons/x.svg?component' -import _XCircleIcon from './icons/x-circle.svg?component' -import _ZoomInIcon from './icons/zoom-in.svg?component' -import _ZoomOutIcon from './icons/zoom-out.svg?component' -import _CubeIcon from './icons/cube.svg?component' -import _CloudIcon from './icons/cloud.svg?component' -import _CogIcon from './icons/cog.svg?component' -import _CPUIcon from './icons/cpu.svg?component' -import _DBIcon from './icons/db.svg?component' -import _LoaderIcon from './icons/loader.svg?component' -import _ImportIcon from './icons/import.svg?component' -import _TimerIcon from './icons/timer.svg?component' - -// Editor Icons -import _BoldIcon from './icons/bold.svg?component' -import _ItalicIcon from './icons/italic.svg?component' -import _UnderlineIcon from './icons/underline.svg?component' -import _StrikethroughIcon from './icons/strikethrough.svg?component' -import _ListBulletedIcon from './icons/list-bulleted.svg?component' -import _ListOrderedIcon from './icons/list-ordered.svg?component' -import _TextQuoteIcon from './icons/text-quote.svg?component' -import _Heading1Icon from './icons/heading-1.svg?component' -import _Heading2Icon from './icons/heading-2.svg?component' -import _Heading3Icon from './icons/heading-3.svg?component' - -import './omorphia.scss' export const ModrinthIcon = _ModrinthIcon export const FourOhFourNotFound = _FourOhFourNotFound export const ModrinthPlusIcon = _ModrinthPlusIcon +export const AngryRinthbot = _AngryRinthbot +export const AnnoyedRinthbot = _AnnoyedRinthbot +export const ConfusedRinthbot = _ConfusedRinthbot +export const ExcitedRinthbot = _ExcitedRinthbot +export const LaughingRinthbot = _LaughingRinthbot +export const SadRinthbot = _SadRinthbot +export const SleepingRinthbot = _SleepingRinthbot +export const SobbingRinthbot = _SobbingRinthbot +export const ThinkingRinthbot = _ThinkingRinthbot +export const WavingRinthbot = _WavingRinthbot export const SSODiscordIcon = _SSODiscordIcon export const SSOGitHubIcon = _SSOGitHubIcon export const SSOGitLabIcon = _SSOGitLabIcon @@ -216,184 +70,21 @@ export const AppleIcon = _AppleIcon export const BlueskyIcon = _BlueskyIcon export const BuyMeACoffeeIcon = _BuyMeACoffeeIcon export const GithubIcon = _GithubIcon +export const CurseForgeIcon = _CurseForgeIcon export const DiscordIcon = _DiscordIcon export const KoFiIcon = _KoFiIcon export const MastodonIcon = _MastodonIcon export const OpenCollectiveIcon = _OpenCollectiveIcon export const PatreonIcon = _PatreonIcon export const PayPalIcon = _PayPalIcon -export const PyroIcon = _PyroIcon export const RedditIcon = _RedditIcon export const TumblrIcon = _TumblrIcon export const TwitterIcon = _TwitterIcon export const WindowsIcon = _WindowsIcon export const YouTubeIcon = _YouTubeIcon -export const AlignLeftIcon = _AlignLeftIcon -export const ArchiveIcon = _ArchiveIcon -export const ArrowBigUpDashIcon = _ArrowBigUpDashIcon -export const AsteriskIcon = _AsteriskIcon -export const BanIcon = _BanIcon -export const BellIcon = _BellIcon -export const BellRingIcon = _BellRingIcon -export const BookIcon = _BookIcon -export const BookTextIcon = _BookTextIcon -export const BookmarkIcon = _BookmarkIcon -export const BoxIcon = _BoxIcon -export const BoxImportIcon = _BoxImportIcon -export const BracesIcon = _BracesIcon -export const CalendarIcon = _CalendarIcon -export const ChartIcon = _ChartIcon -export const CheckIcon = _CheckIcon -export const CheckCheckIcon = _CheckCheckIcon -export const CheckCircleIcon = _CheckCircleIcon -export const ChevronLeftIcon = _ChevronLeftIcon -export const ChevronRightIcon = _ChevronRightIcon -export const ClearIcon = _ClearIcon -export const ClientIcon = _ClientIcon -export const ClipboardCopyIcon = _ClipboardCopyIcon -export const CodeIcon = _CodeIcon -export const CoffeeIcon = _CoffeeIcon -export const CoinsIcon = _CoinsIcon -export const CollectionIcon = _CollectionIcon -export const CompassIcon = _CompassIcon -export const ContractIcon = _ContractIcon -export const CopyIcon = _CopyIcon -export const CopyrightIcon = _CopyrightIcon -export const CrownIcon = _CrownIcon -export const CurrencyIcon = _CurrencyIcon -export const DashboardIcon = _DashboardIcon -export const DownloadIcon = _DownloadIcon -export const DropdownIcon = _DropdownIcon -export const EditIcon = _EditIcon -export const ExitIcon = _XIcon -export const ExpandIcon = _ExpandIcon -export const ExternalIcon = _ExternalIcon -export const EyeIcon = _EyeIcon -export const EyeOffIcon = _EyeOffIcon -export const FileIcon = _FileIcon -export const FileTextIcon = _FileTextIcon -export const FilterIcon = _FilterIcon -export const FilterXIcon = _FilterXIcon -export const FolderOpenIcon = _FolderOpenIcon -export const FolderSearchIcon = _FolderSearchIcon -export const GapIcon = _GapIcon -export const GaugeIcon = _GaugeIcon -export const GameIcon = _GameIcon -export const GitHubIcon = _GitHubIcon -export const GlassesIcon = _GlassesIcon -export const GlobeIcon = _GlobeIcon -export const GridIcon = _GridIcon -export const HamburgerIcon = _HamburgerIcon -export const HammerIcon = _HammerIcon -export const HashIcon = _HashIcon -export const HeartIcon = _HeartIcon -export const HeartHandshakeIcon = _HeartHandshakeIcon -export const HistoryIcon = _HistoryIcon -export const HomeIcon = _HomeIcon -export const ImageIcon = _ImageIcon -export const InProgressIcon = _InProgressIcon -export const InfoIcon = _InfoIcon -export const IssuesIcon = _IssuesIcon -export const KeyIcon = _KeyIcon -export const LanguagesIcon = _LanguagesIcon -export const LeftArrowIcon = _LeftArrowIcon -export const LibraryIcon = _LibraryIcon -export const LightBulbIcon = _LightBulbIcon -export const LinkIcon = _LinkIcon -export const ListIcon = _ListIcon -export const ListEndIcon = _ListEndIcon -export const LockIcon = _LockIcon -export const LockOpenIcon = _LockOpenIcon -export const LogInIcon = _LogInIcon -export const LogOutIcon = _LogOutIcon -export const MailIcon = _MailIcon -export const ManageIcon = _ManageIcon -export const MaximizeIcon = _MaximizeIcon -export const MessageIcon = _MessageIcon -export const MicrophoneIcon = _MicrophoneIcon -export const MinimizeIcon = _MinimizeIcon -export const MinusIcon = _MinusIcon -export const MonitorIcon = _MonitorIcon -export const MonitorSmartphoneIcon = _MonitorSmartphoneIcon -export const MoonIcon = _MoonIcon -export const MoreHorizontalIcon = _MoreHorizontalIcon -export const MoreVerticalIcon = _MoreVerticalIcon -export const NewspaperIcon = _NewspaperIcon -export const OmorphiaIcon = _OmorphiaIcon -export const OrganizationIcon = _OrganizationIcon -export const PackageIcon = _PackageIcon -export const PackageOpenIcon = _PackageOpenIcon -export const PackageClosedIcon = _PackageClosedIcon -export const PaintBrushIcon = _PaintBrushIcon -export const PlayIcon = _PlayIcon -export const PlugIcon = _PlugIcon -export const PlusIcon = _PlusIcon -export const RadioButtonIcon = _RadioButtonIcon -export const RadioButtonChecked = _RadioButtonChecked -export const ReceiptTextIcon = _ReceiptTextIcon -export const ReplyIcon = _ReplyIcon -export const ReportIcon = _ReportIcon -export const RestoreIcon = _RestoreIcon -export const RightArrowIcon = _RightArrowIcon -export const SaveIcon = _SaveIcon -export const ScaleIcon = _ScaleIcon -export const ScanEyeIcon = _ScanEyeIcon -export const SearchIcon = _SearchIcon -export const SendIcon = _SendIcon -export const ServerIcon = _ServerIcon -export const SettingsIcon = _SettingsIcon -export const ShareIcon = _ShareIcon -export const ShieldIcon = _ShieldIcon -export const SlashIcon = _SlashIcon -export const SortAscendingIcon = _SortAscendingIcon -export const SortDescendingIcon = _SortDescendingIcon -export const SparklesIcon = _SparklesIcon -export const SpinnerIcon = _SpinnerIcon -export const StarIcon = _StarIcon -export const StopCircleIcon = _StopCircleIcon -export const SunIcon = _SunIcon -export const SunriseIcon = _SunriseIcon -export const TagIcon = _TagIcon -export const TagsIcon = _TagsIcon -export const TerminalSquareIcon = _TerminalSquareIcon -export const TransferIcon = _TransferIcon -export const TrashIcon = _TrashIcon -export const UndoIcon = _UndoIcon -export const RedoIcon = _RedoIcon -export const UnknownIcon = _UnknownIcon -export const UnknownDonationIcon = _UnknownDonationIcon -export const UpdatedIcon = _UpdatedIcon -export const UnlinkIcon = _UnlinkIcon -export const UnplugIcon = _UnplugIcon -export const UploadIcon = _UploadIcon -export const UserIcon = _UserIcon -export const UserPlusIcon = _UserPlusIcon -export const UserXIcon = _UserXIcon -export const UsersIcon = _UsersIcon -export const VersionIcon = _VersionIcon -export const WikiIcon = _WikiIcon -export const WindowIcon = _WindowIcon -export const WrenchIcon = _WrenchIcon -export const XIcon = _XIcon -export const XCircleIcon = _XCircleIcon -export const ZoomInIcon = _ZoomInIcon -export const ZoomOutIcon = _ZoomOutIcon -export const BoldIcon = _BoldIcon -export const ItalicIcon = _ItalicIcon -export const UnderlineIcon = _UnderlineIcon -export const StrikethroughIcon = _StrikethroughIcon -export const ListBulletedIcon = _ListBulletedIcon -export const ListOrderedIcon = _ListOrderedIcon -export const TextQuoteIcon = _TextQuoteIcon -export const Heading1Icon = _Heading1Icon -export const Heading2Icon = _Heading2Icon -export const Heading3Icon = _Heading3Icon -export const CubeIcon = _CubeIcon -export const CloudIcon = _CloudIcon -export const CogIcon = _CogIcon -export const CPUIcon = _CPUIcon -export const DBIcon = _DBIcon -export const LoaderIcon = _LoaderIcon -export const ImportIcon = _ImportIcon -export const CardIcon = _CardIcon -export const TimerIcon = _TimerIcon + +export { default as CapeModel } from './models/cape.gltf?url' +export { default as ClassicPlayerModel } from './models/classic-player.gltf?url' +export { default as SlimPlayerModel } from './models/slim-player.gltf?url' + +export * from './generated-icons' diff --git a/packages/assets/models/cape.gltf b/packages/assets/models/cape.gltf new file mode 100644 index 000000000..a82808c48 --- /dev/null +++ b/packages/assets/models/cape.gltf @@ -0,0 +1,92 @@ +{ + "asset": { "version": "2.0", "generator": "Blockbench 4.12.4 glTF exporter" }, + "scenes": [{ "nodes": [1], "name": "blockbench_export" }], + "scene": 0, + "nodes": [ + { + "rotation": [0, 0, 0.19509032201612825, 0.9807852804032304], + "translation": [0.15625, 1, 0], + "name": "Cape", + "mesh": 0 + }, + { "children": [0] } + ], + "bufferViews": [ + { "buffer": 0, "byteOffset": 0, "byteLength": 288, "target": 34962, "byteStride": 12 }, + { "buffer": 0, "byteOffset": 288, "byteLength": 288, "target": 34962, "byteStride": 12 }, + { "buffer": 0, "byteOffset": 576, "byteLength": 192, "target": 34962, "byteStride": 8 }, + { "buffer": 0, "byteOffset": 768, "byteLength": 72, "target": 34963 } + ], + "buffers": [ + { + "byteLength": 840, + "uri": "data:application/octet-stream;base64,AAAAPQAAAAAAAKA+AAAAPQAAAAAAAKC+AAAAPQAAgL8AAKA+AAAAPQAAgL8AAKC+AAAAvQAAAAAAAKC+AAAAvQAAAAAAAKA+AAAAvQAAgL8AAKC+AAAAvQAAgL8AAKA+AAAAvQAAAAAAAKC+AAAAPQAAAAAAAKC+AAAAvQAAAAAAAKA+AAAAPQAAAAAAAKA+AAAAvQAAgL8AAKA+AAAAPQAAgL8AAKA+AAAAvQAAgL8AAKC+AAAAPQAAgL8AAKC+AAAAvQAAAAAAAKA+AAAAPQAAAAAAAKA+AAAAvQAAgL8AAKA+AAAAPQAAgL8AAKA+AAAAPQAAAAAAAKC+AAAAvQAAAAAAAKC+AAAAPQAAgL8AAKC+AAAAvQAAgL8AAKC+AACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AACAPAAAgD0AADA+AACAPQAAgDwAAAg/AAAwPgAACD8AAEA+AACAPQAAsD4AAIA9AABAPgAACD8AALA+AAAIPwAAgDwAAAA9AACAPAAAgD0AADA+AAAAPQAAMD4AAIA9AAAwPgAAAD0AAKg+AAAAPQAAMD4AAAAAAACoPgAAAAAAAEA+AACAPQAAMD4AAIA9AABAPgAACD8AADA+AAAIPwAAAAAAAIA9AACAPAAAgD0AAAAAAAAIPwAAgDwAAAg/AAACAAEAAgADAAEABAAGAAUABgAHAAUACAAKAAkACgALAAkADAAOAA0ADgAPAA0AEAASABEAEgATABEAFAAWABUAFgAXABUA" + } + ], + "accessors": [ + { + "bufferView": 0, + "componentType": 5126, + "count": 24, + "max": [0.03125, 0, 0.3125], + "min": [-0.03125, -1, -0.3125], + "type": "VEC3" + }, + { + "bufferView": 1, + "componentType": 5126, + "count": 24, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 24, + "max": [0.34375, 0.53125], + "min": [0, 0], + "type": "VEC2" + }, + { + "bufferView": 3, + "componentType": 5123, + "count": 36, + "max": [23], + "min": [0], + "type": "SCALAR" + } + ], + "materials": [ + { + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 1, + "baseColorTexture": { "index": 0 } + }, + "alphaMode": "MASK", + "alphaCutoff": 0.05, + "doubleSided": true + } + ], + "textures": [{ "sampler": 0, "source": 0, "name": "cape.png" }], + "samplers": [{ "magFilter": 9728, "minFilter": 9728, "wrapS": 33071, "wrapT": 33071 }], + "images": [ + { + "mimeType": "image/png", + "uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAgCAYAAACinX6EAAAAAXNSR0IArs4c6QAABCRJREFUaEPtlktoE1EUhm/sIzFpYsBgHyn2oRZt0C5ESxWFYutKNyKIWBBR6kpBd3Ur2J0FRdCiuKmIIG4qLnzgQqTUXSlVqdoXTU0lljRpYtOHI/8dznBnOm1mphMwJWeTzJ0795zznf/cex2MMXam2S/ht38siJ8V1lgd5mOBARerc3rZnmK37rwvCyk2nE6wezMRh+4EncH9B1ql+fkU64rPsaBz5bqh4T7Daxn1Kc5zVNeEePJIci0Aq71bzenY6JChwAnA0OBHQ/OtJLnWNwqAy61R1tO3k891ueRKoDKwtqbv7MGbgCnfRgHQoqG9hyX4hc/yiho+/HNqVPFtdj2jwTpQgd/RKT7/0ZUku/o4qAJw50KYXbzr4e+3BioYzc3kwGzAUCLWFw2+UBiCb3bNTDHiPQeAP3CGNmg/6VcSBpDu3hhvDQpOCwABwrQKsRIsqYAChy/EQAXwlPiZ3a3igNPkXIyTjr8o5L7PPdzGf59c+sV/faeWeIIIAHPJ8M3kc7l1K09LKghWAIgqoPZ7djPFTlxb4D6yAgBOQfntrUVWVeRk44tplXJorOVGkVIJTBCTpw9ECFYBIEkyMfmsAXh3u1qi5MlxbbGX/x1ZSCjBAAwgfPr6h49R5UVavk0FXC2wju5p07s6iqEF0PtqSlEf+bKzDRwdgaDU7AkoySJ5Oo/D6ZRq/H0yyuJ/lxkSheG/FgCNm7kL0BoEAG32sqtY1YIHd2/mGzTMVgD3y2slqjgW9xY6ma9AThAARIMiBtOpjADwTWc0bEkB+FZsSTxTW0KBsGPXx0yvrUpEeHAAQIM7wBJLcu8DwHaP/H8i6VSND6SiSjBlRW4WWUypVIBbIgzjVgB0tpdKqLReS0KVPTMTfH0ra2cEgAmAAEd+l1z52LybqwBQYAQAyZPh6gtDW4jjuC4fHx8wXSm0JDbeI95SRYHiFZlUaWVtPQiKAugl5E8ASAUYiy8vc0C474uGasPE5PHc4g0wK/f4obom6UNimol7kTZwQLANwOuqBokqDEeQf4lfvvnNxZJcBTBAGZplWQcQ3tcgwY9oWlXinRW4ugoAgNAWWe6ocn1QvgyRTUb4RZFVljlY/3hSBYCqb6cCZo8ekuATVRZPI/gQW8FWAI1VHganVgDQUajdA6y2gAgAcZFBjTBSpG0AcAqc3VVmCMDTbxGWZvIRCaMNkJ7pFMCzVQD4liCQ8kRFUlvaBkCvL+wYw2ZmNUgCgLajFhRPJlv3ADuS1VtjPQCk823S574ffN/x1dQqy8dHR5SN2Spcbaymz2mjwNYDAD4IQn3TDpVLQIAqNjwAANRrAdoI/3sAOF7Xe1khCNQGVH1bL0JGJb1R52VtD8gVYHkAuVKpbMWZV0C2yObKunkF5EqlshVnXgHZIpsr6/4DlbxcPydnT74AAAAASUVORK5CYII=" + } + ], + "meshes": [ + { + "primitives": [ + { + "mode": 4, + "attributes": { "POSITION": 0, "NORMAL": 1, "TEXCOORD_0": 2 }, + "indices": 3, + "material": 0 + } + ] + } + ] +} diff --git a/packages/assets/models/classic-player.gltf b/packages/assets/models/classic-player.gltf new file mode 100644 index 000000000..edee1626b --- /dev/null +++ b/packages/assets/models/classic-player.gltf @@ -0,0 +1,850 @@ +{ + "asset": { "generator": "FBX2glTF v0.13.1", "version": "2.0" }, + "scene": 0, + "buffers": [ + { + "byteLength": 71248, + "uri": "data:application/octet-stream;base64,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AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAiYgIPYmIiD3NzMw9iYgIPquqKj7NzEw+7+5uPomIiD6amZk+q6qqPry7uz7NzMw+3t3dPu/u7j4AAAA/iYgIPxERET+amRk/IiIiP6uqKj8zMzM/vLs7P0RERD/NzEw/VVVVP97dXT9mZmY/7+5uP3d3dz8AAIA/RESEP4mIiD/NzIw/ERGRP1VVlT+amZk/3t2dPyIioj9mZqY/q6qqP+/urj8zM7M/d3e3P7y7uz8AAMA/RETEP4mIyD/NzMw/ERHRP1VV1T+amdk/3t3dPyIi4j9mZuY/q6rqP+/u7j8zM/M/d3f3P7y7+z8AAABAIiICQEREBEBmZgZAiYgIQKuqCkDNzAxA7+4OQBEREUAzMxNAVVUVQHd3F0CamRlAvLsbQN7dHUAAACBAIiIiQEREJEBmZiZAiYgoQKuqKkDNzCxA7+4uQBERMUAzMzNAVVU1QHd3N0CamTlAvLs7QN7dPUAAAEBAAAAAAPUovD8AAAAAAAAAAHk7vD8AAAAAAAAAAG5uvD8AAAAAAAAAAPC6vD8AAAAAAAAAACIavT8AAAAAAAAAAB6FvT8AAAAAAAAAAAX1vT8AAAAAAAAAAPVivj8AAAAAAAAAAA3Ivj8AAAAAAAAAAGkdvz8AAAAAAAAAAClcvz8AAAAAAAAAACuIvz8AAAAAAAAAAAarvz8AAAAAAAAAACnGvz8AAAAAAAAAAMHavz8AAAAAAAAAANDpvz8AAAAAAAAAADn0vz8AAAAAAAAAAM/6vz8AAAAAAAAAAGH+vz8AAAAAAAAAAMn/vz8AAAAAAAAAAAAAwD8AAAAAAAAAAG3cvz8AAAAAAAAAAMd5vz8AAAAAAAAAALnmvj8AAAAAAAAAAIc1vj8AAAAAAAAAABx8vT8AAAAAAAAAAM/TvD8AAAAAAAAAAMVYvD8AAAAAAAAAAPUovD8AAAAAAAAAAL1CvD8AAAAAAAAAAOuMvD8AAAAAAAAAADj8vD8AAAAAAAAAAOJ9vT8AAAAAAAAAABL9vT8AAAAAAAAAABxpvj8AAAAAAAAAAFK4vj8AAAAAAAAAAJX4vj8AAAAAAAAAAIU3vz8AAAAAAAAAAMBvvz8AAAAAAAAAAN6dvz8AAAAAAAAAAEHBvz8AAAAAAAAAAAXbvz8AAAAAAAAAAMnsvz8AAAAAAAAAABP4vz8AAAAAAAAAACf+vz8AAAAAAAAAAAAAwD8AAAAAAAAAAFP4vz8AAAAAAAAAAPfnvz8AAAAAAAAAADPTvz8AAAAAAAAAAMC7vz8AAAAAAAAAAIKivz8AAAAAAAAAAAKIvz8AAAAAAAAAAJxsvz8AAAAAAAAAAI1Qvz8AAAAAAAAAAAU0vz8AAAAAAAAAACcXvz8AAAAAAAAAABP6vj8AAAAAAAAAAN3cvj8AAAAAAAAAAJm/vj8AAAAAAAAAAFyivj8AAAAAAAAAADCFvj8AAAAAAAAAACVovj8AAAAAAAAAAEZLvj8AAAAAAAAAAKAuvj8AAAAAAAAAADsSvj8AAAAAAAAAACX2vT8AAAAAAAAAAGTavT8AAAAAAAAAAAW/vT8AAAAAAAAAABCkvT8AAAAAAAAAAJCJvT8AAAAAAAAAAI9vvT8AAAAAAAAAABVWvT8AAAAAAAAAADA9vT8AAAAAAAAAAOokvT8AAAAAAAAAAE4NvT8AAAAAAAAAAGr2vD8AAAAAAAAAAErgvD8AAAAAAAAAAP3KvD8AAAAAAAAAAJS2vD8AAAAAAAAAAB6jvD8AAAAAAAAAALCQvD8AAAAAAAAAAF1/vD8AAAAAAAAAADxvvD8AAAAAAAAAAGdgvD8AAAAAAAAAAP1SvD8AAAAAAAAAAB1HvD8AAAAAAAAAAO08vD8AAAAAAAAAAJk0vD8AAAAAAAAAAFQuvD8AAAAAAAAAAFsqvD8AAAAAAAAAAPUovD8AAAAAAAAAAAAAAAAAAAAAAACAPwrQJzeEqX66zoiUuff/fz+SqSk4EU1vuxiSi7qH/38/TtTGOCJA/bvmsRO74P1/PxvxOjni4lO8gRx3uw36fz+XMZs5D9KbvHaxtbsi838/b+DsOTwc07z3G/a7Yeh/P3OsKTpqCAe92WAdvFfZfz9x7WY6onolvWzOQLzuxX8/326WOmACRL2kTmS8ga5/P9yEvDq5r2G9dGWDvO+Tfz/U2eM683l9vayIk7ykd38/tukEO7kYi71p4qG8tVt/P7mAFTv2NJW9+qGtvOlCfz+VgiE7fy2cvU/CtbzJMH8/nj0mOxbVnr1x6ri8pyl/P7Dl9zpfzZ69qGy5vLopfz/5K523f7aevbe5urzVKX8/w8RKu2eRnr1/v7y8gSl/P8cH6rsFYJ69SVy/vCIofz+DckK8jSWevSBewrwuJX8/GFeKvH/mnb3ZhcW8cCB/P4tFsrxOqJ29343IvEEafz/Yd9W8tXCdvX4zy7yCE38/A+DwvOhEnb0fP828bA1/P6IeAb3uKJ29CInOvC8Jfz/aGAS9TB+dvc/5zrypB38/jMn+vIAunb2wR868DAp/Pz0+5rzwVZ29WXXMvN4Pfz9fwMK8Vo6dvQfPybw/F38/0WCXvEDSnb23i8a8lh5/P1cTTbxmHZ69vNbCvKYkfz/MGsm7O2yevWfVvryOKH8/fa7iObS7nr3Eqrq8ySl/P95W5DsICZ+9kHq2vDMofz85zVg8hVGfvVJssrwNJH8/zD2bPEmSn73/rq68Ax5/P0vJwjzux5+9j36rvD8Xfz8JK9883e2fvaUtqbxzEX8/XoPqPPL8n72wOKi86g5/P4Mw6jx8ZZ69t0ymvEcTfz+7I+k8q7iZvUXBoLzZH38/rDznPMAukr2D3Je8XTN/PxpZ5Dw/HIi9cgWMvPxLfz9sUOA8rPB3vXqWe7x2Z38/Yu7aPE3GXL352Fu8YYN/P7Xt0zwrVUC9c7o6vH2dfz9W9Mo8spkkvcyVGrwDtH8/7JK/PIbrC71Abfy738V/P89UmTyo3+i8/XLKu8fYfz9nvQY8dHW1vNGUl7sB7X8/5hzTuywEfrwNzz+7e/Z/P8GCtrz5ZhC8KFKGuiftfz8N7hK95DIhuwHThjqX1X8/7xg3vR2gVjugl0s70r1/P/09Q70tcQc84GumO2uyfz+bo0G9tmpTPNik6Ducr38/KMA9vT8ejzxK5xc8zqx/P5dHOL18zrI8YbQ7PLSpfz/8vDG9KeXTPGoUXjxLpn8/oYYqvTan8Ty0vH08xKJ/PzL5Ir1/tgU9s8uMPHSffz8gXhu9tUsQPWZWmDzInH8/4fcTvZRDGD1DCaE8N5t/P4sEDb0CSx09im+mPDybfz/pvwa98QcfPfAOqDxGnX8/T+YAvRTxHj2Jp6Q856B/P74b9rx9xB49oUecPDSlfz9ecOq8QooePbs1kDzcqX8/nM3evM1IHj1LioE8la5/Pxg207wxBR49TXdiPCSzfz+ArMe8aMMdPVZPQDxet38/bjO8vISGHT0PNR48Jrt/P6XNsLzOUB09QlL7O3G+fz/IfaW85yMdPfA4wDs+wX8/sEaavN0AHT1M8o07l8N/P2Qrj7w56Bw9kaROO47Ffz/hLoS8EdocPflyHjszx38/sj1xvOL/GT3mPwA7bsp/P44SWLwzQhI9AmTKOm3Qfz8Mmj28H6wGPdr0mjoh2H8/NYgivG9o8Dyd4WQ6huB/P1CJB7xbgs88xMchOrfofz++idq7s1ysPCqH2DkH8H8/mb2ou3+diDxnDIc5BPZ/P7Tpdbvxw0s81kUZOXj6fz+x7CS7WIULPBYVmDhr/X8/yTnCunpopzsgEPU3E/9/P36UNLrrTh47RRwIN8v/fz/Lwzy5ZRAoOhfjeDX8/38/AAAAAAAAAAAAAAAAAACAPwAAAAD1KLw/AAAAAAAAAADzV7w/AAAAAAAAAACk2Lw/AAAAAAAAAABQkL0/AAAAAAAAAADlXb4/AAAAAAAAAACpIb8/AAAAAAAAAABcw78/AAAAAAAAAAAbNMA/AAAAAAAAAADQe8A/AAAAAAAAAAASr8A/AAAAAAAAAABb1MA/AAAAAAAAAABl78A/AAAAAAAAAACcAsE/AAAAAAAAAACwD8E/AAAAAAAAAADzF8E/AAAAAAAAAAB5HME/AAAAAAAAAABOHsE/AAAAAAAAAACZHsE/AAAAAAAAAAC3+MA/AAAAAAAAAACmj8A/AAAAAAAAAAAK878/AAAAAAAAAABTNr8/AAAAAAAAAADbcL4/AAAAAAAAAACcvb0/AAAAAAAAAACSOr0/AAAAAAAAAACnB70/AAAAAAAAAAAqKr0/AAAAAAAAAAAYjb0/AAAAAAAAAAC1IL4/AAAAAAAAAABLy74/AAAAAAAAAACNcL8/AAAAAAAAAAAX+r8/AAAAAAAAAAAZW8A/AAAAAAAAAABvnMA/AAAAAAAAAACLz8A/AAAAAAAAAACS+MA/AAAAAAAAAADSGcE/AAAAAAAAAAC0NME/AAAAAAAAAAAhSsE/AAAAAAAAAACnWsE/AAAAAAAAAACVZsE/AAAAAAAAAAD5bcE/AAAAAAAAAACScME/AAAAAAAAAAC3R8E/AAAAAAAAAABu1sA/AAAAAAAAAACOLcA/AAAAAAAAAAAQYr8/AAAAAAAAAAAijb4/AAAAAAAAAADby70/AAAAAAAAAACOPr0/AAAAAAAAAACnB70/AAAAAAAAAADKKL0/AAAAAAAAAAC3h70/AAAAAAAAAAAvFb4/AAAAAAAAAABkuL4/AAAAAAAAAAAVVr8/AAAAAAAAAAC+2L8/AAAAAAAAAAAbNMA/AAAAAAAAAADXb8A/AAAAAAAAAADcnMA/AAAAAAAAAADhv8A/AAAAAAAAAAB328A/AAAAAAAAAAAq8cA/AAAAAAAAAAD8AcE/AAAAAAAAAACZDsE/AAAAAAAAAABzF8E/AAAAAAAAAADGHME/AAAAAAAAAACZHsE/AAAAAAAAAAAB8cA/AAAAAAAAAABkbsA/AAAAAAAAAAAzqb8/AAAAAAAAAAD1wb4/AAAAAAAAAABe5b0/AAAAAAAAAAAlRL0/AAAAAAAAAACnB70/AAAAAAAAAADYEr0/AAAAAAAAAABeML0/AAAAAAAAAADGWL0/AAAAAAAAAACrg70/AAAAAAAAAAAXqb0/AAAAAAAAAACXwr0/AAAAAAAAAAC9y70/AAAAAAAAAABPur0/AAAAAAAAAAAqj70/AAAAAAAAAAC1VL0/AAAAAAAAAACvEr0/AAAAAAAAAABrz7w/AAAAAAAAAACbkLw/AAAAAAAAAADQW7w/AAAAAAAAAAD9Nrw/AAAAAAAAAAD1KLw/AAAAAAAAAAAAAAAAAAAAAAAAgD+i55i6AAAAgAAAAAD1/38/eCePuwAAAIAAAAAAYP9/P+i4ErwAAACAAAAAAF/9fz9WQWe8AAAAgAAAAAB5+X8/TDGcvAAAAIAAAAAAFvR/P6AkvrwAAACAAAAAAFjufz8Kcda8AAAAgAAAAACL6X8/GZLnvAAAAIAAAAAA0OV/P92H9bwAAACAAAAAAI/ifz/zYwC9AAAAgAAAAADM338/zdoEvQAAAIAAAAAAhN1/P5pSCL0AAACAAAAAALHbfz8X7wq9AAAAgAAAAABK2n8/us4MvQAAAIAAAAAARNl/P4gLDr0AAACAAAAAAJXYfz/Suw69AAAAgAAAAAAy2H8/xvIOvQAAAIAAAAAAFNh/PzMjC70AAACAAAAAAC7afz9dmQG9AAAAgAAAAAAw338/xF3ovAAAAIAAAAAAoeV/P5sJyLwAAACAAAAAAHXsfz9nvqO8AAAAgAAAAADo8n8/Ojx5vAAAAIAAAAAAa/h/PzUeJ7wAAACAAAAAAJf8fz/bY6W7AAAAgAAAAAAq/38/KHYmOQAAAAAAAAAAAACAPyShrjsAAAAAAAAAABL/fz8o3yk8AAAAAAAAAAB6/H8/z2N4PAAAAAAAAAAAePh/P1Q2oDwAAAAAAAAAAHfzfz8DPL88AAAAAAAAAAAk7n8/CnHWPAAAAAAAAAAAi+l/P3l/5zwAAAAAAAAAANTlfz8mqPY8AAAAAAAAAABJ4n8/sL4BPQAAAAAAAAAAHd9/P8DRBj0AAAAAAAAAAH3cfz+jewo9AAAAAAAAAACI2n8/bdYMPQAAAAAAAAAAP9l/P+gkDj0AAAAAAAAAAIbYfz95vA49AAAAAAAAAAAy2H8/xuwOPQAAAAAAAAAAF9h/P8byDj0AAAAAAAAAABTYfz8zIws9AAAAAAAAAAAu2n8/XZkBPQAAAAAAAAAAMN9/P8Rd6DwAAAAAAAAAAKHlfz+bCcg8AAAAAAAAAAB17H8/Z76jPAAAAAAAAAAA6PJ/Pzo8eTwAAAAAAAAAAGv4fz81Hic8AAAAAAAAAACX/H8/22OlOwAAAAAAAAAAKv9/Pyh2JrkAAACAAAAAAAAAgD8koa67AAAAgAAAAAAS/38/KN8pvAAAAIAAAAAAevx/P89jeLwAAACAAAAAAHj4fz9UNqC8AAAAgAAAAAB3838/Azy/vAAAAIAAAAAAJO5/Pwpx1rwAAACAAAAAAIvpfz8FGee8AAAAgAAAAADr5X8/T1n1vAAAAIAAAAAAmuJ/P+mdAL0AAACAAAAAAK/ffz/iaAW9AAAAgAAAAAA73X8/rRoJvQAAAIAAAAAAR9t/P1zGC70AAACAAAAAANXZfz+Xhg29AAAAgAAAAADe2H8/5X8OvQAAAIAAAAAAVNh/P3XjDr0AAACAAAAAABzYfz/G8g69AAAAgAAAAAAU2H8/S9IIvQAAAIAAAAAAbdt/Pw4m7rwAAACAAAAAAE3kfz/pnbe8AAAAgAAAAACJ738/nbZrvAAAAIAAAAAAOPl/P4y3z7sAAACAAAAAAK/+fz8zP2k5AAAAAAAAAAAAAIA/opKCOwAAAAAAAAAAe/9/P3vfvDsAAAAAAAAAAOn+fz+JHec7AAAAAAAAAABf/n8/MH4BPAAAAAAAAAAA9P1/P42XCTwAAAAAAAAAALD9fz/qew08AAAAAAAAAACO/X8/hc0OPAAAAAAAAAAAg/1/P775DjwAAAAAAAAAAIH9fz9iBgk8AAAAAAAAAAC1/X8/Hpf0OwAAAAAAAAAALf5/P7StzDsAAAAAAAAAALn+fz8ZmJ87AAAAAAAAAAA5/38/aVNjOwAAAAAAAAAAm/9/P3CKDTsAAAAAAAAAANn/fz/y5Yo6AAAAAAAAAAD3/38/o0mZOQAAAAAAAAAA//9/PwAAAAAAAAAAAAAAAAAAgD8AAKA+9iisPwAAAAAAAKA+UDasPzx3DjsAAKA+kFmsP1CcATwAAKA+r4ysPzf4hDwAAKA+tsqsP56q1zwAAKA+Lg+tP9B6GT0AAKA+vlWtP9KFSD0AAKA+vZmtP5XadT0AAKA+pdWtP0fljj0AAKA+KwKuP+q8nT0AAKA+exSuPwrXoz0AAKA+nhCuPwrXoz0AAKA+lwSuPwrXoz0AAKA+RfCtPwrXoz0AAKA+udStPwrXoz0AAKA+SbStPwrXoz0AAKA+AJKtPwrXoz0AAKA+pHCtPwrXoz0AAKA+nUmtPwrXoz0AAKA+FBmtPwrXoz0AAKA+FOSsPwrXoz0AAKA+xK6sPwrXoz0AAKA++XysPwrXoz0AAKA+u1KsPwrXoz0AAKA+tDSsPwrXoz0AAKA+9iisPwrXoz0AAKA+vUKsPwrXoz0AAKA+64ysPwrXoz0AAKA+OPysPwrXoz0AAKA+4n2tPwrXoz0AAKA+Ev2tPwrXoz0AAKA+HGmuPwrXoz0AAKA+UriuPwrXoz0AAKA++/KuPwrXoz0AAKA+TSavPwrXoz0AAKA+0lOvPwrXoz0AAKA+RHyvPwrXoz0AAKA+9J+vPwrXoz0AAKA+4r6vPwrXoz0AAKA+ztivPwrXoz0AAKA+IO2vPwrXoz0AAKA+zvqvPwrXoz0AAKA+AACwPwrXoz0AAKA+bdyvPwrXoz0AAKA+x3mvPwrXoz0AAKA+ueauPwrXoz0AAKA+hzWuPwrXoz0AAKA+HHytPwrXoz0AAKA+z9OsPwrXoz0AAKA+xVisPwrXoz0AAKA+9iisPwrXoz0AAKA+yUKsPwrXoz0AAKA+xIqsPwrXoz0AAKA+ifGsPwrXoz0AAKA+XGCtPwrXoz0AAKA+27+tPwrXoz0AAKA+y/6tPwrXoz0AAKA+exSuPwrXoz0AAKA+lhGuPwrXoz0AAKA+RwquPwrXoz0AAKA+vv+tPwrXoz0AAKA+lPKtPwrXoz0AAKA+FuOtPwrXoz0AAKA+YtGtPwrXoz0AAKA+cL2tPwrXoz0AAKA+DaetPwrXoz0AAKA+xI2tPwrXoz0AAKA+pHCtPwrXoz0AAKA+hEitPwrXoz0AAKA+jxCtPwrXoz0AAKA+Ns6sPwrXoz0AAKA+7YusPwrXoz0AAKA+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AACgvnsUrj8K16M9AACgvp4Qrj8K16M9AACgvpcErj8K16M9AACgvkXwrT8K16M9AACgvrnUrT8K16M9AACgvkm0rT8K16M9AACgvgCSrT8K16M9AACgvqRwrT8K16M9AACgvp1JrT8K16M9AACgvhQZrT8K16M9AACgvhTkrD8K16M9AACgvsSurD8K16M9AACgvvl8rD8K16M9AACgvrtSrD8K16M9AACgvrQ0rD8K16M9AACgvvYorD8K16M9AACgvr1CrD8K16M9AACgvuuMrD8K16M9AACgvjj8rD8K16M9AACgvuJ9rT8K16M9AACgvhL9rT8K16M9AACgvhxprj8K16M9AACgvlK4rj8K16M9AACgvvvyrj8K16M9AACgvk0mrz8K16M9AACgvtJTrz8K16M9AACgvkR8rz8K16M9AACgvvSfrz8K16M9AACgvuK+rz8K16M9AACgvs7Yrz8K16M9AACgviDtrz8K16M9AACgvs76rz8K16M9AACgvgAAsD8K16M9AACgvm3crz8K16M9AACgvsd5rz8K16M9AACgvrnmrj8K16M9AACgvoc1rj8K16M9AACgvhx8rT8K16M9AACgvs/TrD8K16M9AACgvsVYrD8K16M9AACgvvYorD8K16M9AACgvslCrD8K16M9AACgvsSKrD8K16M9AACgvonxrD8K16M9AACgvlxgrT8K16M9AACgvtu/rT8K16M9AACgvsv+rT8K16M9AACgvnsUrj8K16M9AACgvpYRrj8K16M9AACgvkcKrj8K16M9AACgvr7/rT8K16M9AACgvpTyrT8K16M9AACgvhbjrT8K16M9AACgvmLRrT8K16M9AACgvnC9rT8K16M9AACgvg2nrT8K16M9AACgvsSNrT8K16M9AACgvqRwrT8K16M9AACgvoRIrT8K16M9AACgvo8QrT8K16M9AACgvjbOrD8K16M9AACgvu2LrD8K16M9AACgvslVrD8K16M9AACgvgE0rD8K16M9AACgvvYorD8K16M9AACgvvYorD8rDZ49AACgvvYorD/2fJA9AACgvvYorD8l8Xw9AACgvvYorD8zu1M9AACgvvYorD/J6yc9AACgvvYorD9YUPc8AACgvvYorD+wNqI8AACgvvYorD+myis8AACgvvYorD9yFlQ7AACgvvYorD8AAAAA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AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAAAAAAAAAAAAAAAgD9VYfs5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mRPhOifxfz+f9im8Qr2DvOU9E7n/838/n4EWvFRda7yK1tS6Y/Z/P1j5BLwP8k68EFIqu2T4fz/CvOy7PqkyvEh1QLsc+n8/cpTRu4n3Frw5mDq7nft/P8Hxs7vfnfi7rYgsu+b8fz8hzpS7uDPGu766F7vz/X8/Vqtqu/aFl7tl//u6wv5/P/i+LbtE4Fq7g/zCulX/fz8Lfeu60qMRu/s+ibqy/38/2UmLujFRqroZyye65f9/P3VJAbpWXx26Fk6gufr/fz+YFga5kZwjuZePqrgAAIA/AAAAAACAQiMAAAAAAACAPwAAoL72KKw/AAAAAH7/n772KKw/ahYrOQr+n772KKw/RFAkOsL7n772KKw/FDqxOsH4n772KKw/fcIWOyT1n772KKw//PhgOwfxn772KKw/iluaO4fsn772KKw/hrjHO8Dnn772KKw/1U73O8/in772KKw/ROwTPM/dn772KKw/hQgsPN7Yn772KKw/NVlDPBfUn772KKw/CTxZPJfPn772KKw/DA5tPHrLn772KKw/6Sx+PN3Hn772KKw/5PqFPGHEn772KKw/pciLPJ7An772KKw/ukORPKq8n772KKw/zWKWPJm4n772KKw/gh2bPIS0n772KKw/1GyfPIGwn772KKw/fkujPKusn772KKw/K7amPBWpn772KKw/rqupPNWln772KKw/zyysPPyin772KKw/ODyuPJegn772KKw/EN6vPLKen772KKw/uBexPFSdn772KKw/Xe+xPICcn772KKw/smuyPDmcn772KKw/m5OyPO2cn772KKw/2XewPNSen772KKw/+LuqPK2hn772KKw/NhmiPEWln772KKw/JyCXPHGpn772KKw/Z0WKPBCun772KKw/E9R3PAOzn772KKw/IsFYPC+4n772KKw/XuM3PH69n772KKw/V70VPNfCn772KKw/Io7lOybIn772KKw/S+aeO1bNn772KKw/EMAwO1DSn772KKw/TLYWOgDXn772KKw/xU/Duk3bn772KKw/2Ghjux3fn772KKw/R8+uu1Xin772KKw/Bg3nu9Tkn772KKw/E5sMvHbmn772KKw/9u8hvAznn772KKw/eK8yvMvmn772KKw/IjdAvAvmn772KKw/ZYVMvNbkn772KKw/1ZZXvDfjn772KKw/x2thvD7hn772KKw/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AAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPzMz870AAEA/AAAAADMz870rHUA/AAAAADMz8725aUA/AAAAADMz873+2EA/AAAAADMz871zYUE/AAAAADMz870++0E/AAAAADMz871Kn0I/AAAAADMz871qRkM/AAAAADMz871t6EM/AAAAADMz872UekQ/AAAAADMz871d7EQ/AAAAADMz8724HkU/AAAAADMz872l8kQ/AAAAADMz872UVEQ/AAAAADMz871JZEM/AAAAADMz873vqUI/AAAAADMz873pTEI/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz873EUUI/AAAAADMz871qtUI/AAAAADMz871VaUM/AAAAADMz871JaEQ/AAAAADMz873rf0U/AAAAADMz8729UEY/AAAAADMz8725mEY/AAAAADMz870uO0Y/AAAAADMz873vSUU/AAAAADMz870SAEQ/AAAAADMz872nmEI/AAAAADMz873KTkE/AAAAADMz872LXUA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAAAAAAAAAAAAAAAAAAAAAgD+GlJY5v6ILumPVUrn9/38/44eKOtfG/rpy/EG60v9/P0OXEDuSr4O7FELKujz/fz8rC3A7nD3Yu2CVJ7vr/X8/nwOwO6qbHLzINnW7mvt/P57R7jtyg1G8Lfmluw/4fz/Skhk8EY+EvCcL1bso838/U909PF3JoLzujAO83Ox/P5aOYzw3S7y82b8dvFPlfz/Y04Q8s2XVvJ3KOLz53H8/IzSXPCQD6bwAP1S80NR/P/NIrTw3tfi85+N3vJ3Lfz+Prs08lF8EvZIxl7ztvX8/ugrxPCCFCr2esrW8/K1/Pyc+BD0wiA29LjrKvK+ifz80pwk9jaUOvc3J07xGnX8/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz9wBgs9L4gQvQ9q1rztmn8/BuEKPfGRFb3ju9a8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CAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgD4AAMA/AACAvgAAgL4AAMA/AACAvgAAgL4AAABAAACAvgAAgD4AAABAAACAvgAAgL4AAMA/AACAPgAAgD4AAMA/AACAPgAAgD4AAABAAACAPgAAgL4AAABAAACAPgAAgL4AAMA/AACAvgAAgD4AAMA/AACAvgAAgD4AAMA/AACAPgAAgL4AAMA/AACAPgAAgL4AAABAAACAPgAAgD4AAABAAACAPgAAgD4AAABAAACAvgAAgL4AAABAAACAvgAAgL4AAMA/AACAvgAAgL4AAMA/AACAPgAAgL4AAABAAACAPgAAgL4AAABAAACAvgAAgD4AAMA/AACAPgAAgD4AAMA/AACAvgAAgD4AAABAAACAvgAAgD4AAABAAACAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAABAAD4AwH8+AMB/PgDAfz4AwH8+AEAAPgBAAD4AQAA+ACDAPgDAfz4A4P8+AMB/PgDg/z4AQAA+ACDAPgBAAD4A4L8+AID/PQAggD4AgP89ACCAPgAAgDkA4L8+AACAOQDAfz4AAIA5AEAAPgAAgDkAQAA+AID/PQDAfz4AgP89ACCAPgDAfz4A4L8+AMB/PgDgvz4AQAA+ACCAPgBAAD4AAIA5AMB/PgCA/z0AwH8+AID/PQBAAD4AAIA5AEAAPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAkD4AALw/AACQvgAAkL4AALw/AACQvgAAkL4AAAJAAACQvgAAkD4AAAJAAACQvgAAkL4AALw/AACQPgAAkD4AALw/AACQPgAAkD4AAAJAAACQPgAAkL4AAAJAAACQPgAAkL4AALw/AACQvgAAkD4AALw/AACQvgAAkD4AALw/AACQPgAAkL4AALw/AACQPgAAkL4AAAJAAACQPgAAkD4AAAJAAACQPgAAkD4AAAJAAACQvgAAkL4AAAJAAACQvgAAkL4AALw/AACQvgAAkL4AALw/AACQPgAAkL4AAAJAAACQPgAAkL4AAAJAAACQvgAAkD4AALw/AACQPgAAkD4AALw/AACQvgAAkD4AAAJAAACQvgAAkD4AAAJAAACQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQID8AwH8+APA/PwDAfz4A8D8/AEAAPgAQID8AQAA+ABBgPwDAfz4A8H8/AMB/PgDwfz8AQAA+ABBgPwBAAD4A8F8/AID/PQAQQD8AgP89ABBAPwAAgDkA8F8/AACAOQDwPz8AAIA5ABAgPwAAgDkAECA/AID/PQDwPz8AgP89ABBAPwDAfz4A8F8/AMB/PgDwXz8AQAA+ABBAPwBAAD4AEAA/AMB/PgDwHz8AwH8+APAfPwBAAD4AEAA/AEAAPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgD4AAEA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAMA/AAAAvgAAgD4AAMA/AAAAvgAAgL4AAEA/AAAAPgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAEA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAEA/AAAAPgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAMA/AAAAvgAAgL4AAMA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAMA/AAAAvgAAgD4AAEA/AAAAPgAAgD4AAEA/AAAAvgAAgD4AAMA/AAAAvgAAgD4AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A4P8+AODfPgDg/z4A4N8+ACCgPgAgoD4AIKA+ABAAPwDg/z4A8B8/AOD/PgDwHz8AIKA+ABAAPwAgoD4A8A8/AOCfPgAg4D4A4J8+ACDgPgAggD4A8A8/ACCAPgDg3z4AIIA+ACCgPgAggD4AIKA+AOCfPgDg3z4A4J8+ACDgPgDg/z4A4P8+AOD/PgDg/z4AIKA+ACDgPgAgoD4AIIA+AOD/PgDgnz4A4P8+AOCfPgAgoD4AIIA+ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAiD4AADw/AAAQvgAAiL4AADw/AAAQvgAAiL4AAMI/AAAQvgAAiD4AAMI/AAAQvgAAiL4AADw/AAAQPgAAiD4AADw/AAAQPgAAiD4AAMI/AAAQPgAAiL4AAMI/AAAQPgAAiL4AADw/AAAQvgAAiD4AADw/AAAQvgAAiD4AADw/AAAQPgAAiL4AADw/AAAQPgAAiL4AAMI/AAAQPgAAiD4AAMI/AAAQPgAAiD4AAMI/AAAQvgAAiL4AAMI/AAAQvgAAiL4AADw/AAAQvgAAiL4AADw/AAAQPgAAiL4AAMI/AAAQPgAAiL4AAMI/AAAQvgAAiD4AADw/AAAQPgAAiD4AADw/AAAQvgAAiD4AAMI/AAAQvgAAiD4AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A8D8/AODfPgDwPz8A4N8+ABAQPwAgoD4AEBA/ABAAPwDwPz8A8B8/APA/PwDwHz8AEBA/ABAAPwAQED8A8A8/APAPPwAg4D4A8A8/ACDgPgAQAD8A8A8/ABAAPwDg3z4AEAA/ACCgPgAQAD8AIKA+APAPPwDg3z4A8A8/ACDgPgDwPz8A4P8+APA/PwDg/z4AEBA/ACDgPgAQED8AIIA+APA/PwDgnz4A8D8/AOCfPgAQED8AIIA+ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAAD8AAEA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAMA/AAAAvgAAAD8AAMA/AAAAvgAAgD4AAEA/AAAAPgAAAD8AAEA/AAAAPgAAAD8AAMA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAEA/AAAAvgAAAD8AAEA/AAAAvgAAAD8AAEA/AAAAPgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAAAD8AAMA/AAAAPgAAAD8AAMA/AAAAvgAAgD4AAMA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAMA/AAAAvgAAAD8AAEA/AAAAPgAAAD8AAEA/AAAAvgAAAD8AAMA/AAAAvgAAAD8AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQMD8A4P8+APA/PwDg/z4A8D8/ACCgPgAQMD8AIKA+ABBQPwDg/z4A8F8/AOD/PgDwXz8AIKA+ABBQPwAgoD4A8E8/AOCfPgAQQD8A4J8+ABBAPwAggD4A8E8/ACCAPgDwPz8AIIA+ABAwPwAggD4AEDA/AOCfPgDwPz8A4J8+ABBAPwDg/z4A8E8/AOD/PgDwTz8AIKA+ABBAPwAgoD4AECA/AOD/PgDwLz8A4P8+APAvPwAgoD4AECA/ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAABD8AADw/AAAQvgAAcD4AADw/AAAQvgAAcD4AAMI/AAAQvgAABD8AAMI/AAAQvgAAcD4AADw/AAAQPgAABD8AADw/AAAQPgAABD8AAMI/AAAQPgAAcD4AAMI/AAAQPgAAcD4AADw/AAAQvgAABD8AADw/AAAQvgAABD8AADw/AAAQPgAAcD4AADw/AAAQPgAAcD4AAMI/AAAQPgAABD8AAMI/AAAQPgAABD8AAMI/AAAQvgAAcD4AAMI/AAAQvgAAcD4AADw/AAAQvgAAcD4AADw/AAAQPgAAcD4AAMI/AAAQPgAAcD4AAMI/AAAQvgAABD8AADw/AAAQPgAABD8AADw/AAAQvgAABD8AAMI/AAAQvgAABD8AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQMD8A8D8/APA/PwDwPz8A8D8/ABAQPwAQMD8AEBA/ABBQPwDwPz8A8F8/APA/PwDwXz8AEBA/ABBQPwAQED8A8E8/APAPPwAQQD8A8A8/ABBAPwAQAD8A8E8/ABAAPwDwPz8AEAA/ABAwPwAQAD8AEDA/APAPPwDwPz8A8A8/ABBAPwDwPz8A8E8/APA/PwDwTz8AEBA/ABBAPwAQED8AECA/APA/PwDwLz8A8D8/APAvPwAQED8AECA/ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgL4AAEA/AAAAvgAAAL8AAEA/AAAAvgAAAL8AAMA/AAAAvgAAgL4AAMA/AAAAvgAAAL8AAEA/AAAAPgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAAAL8AAMA/AAAAPgAAAL8AAEA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAEA/AAAAPgAAAL8AAEA/AAAAPgAAAL8AAMA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAMA/AAAAvgAAAL8AAMA/AAAAvgAAAL8AAEA/AAAAvgAAAL8AAEA/AAAAPgAAAL8AAMA/AAAAPgAAAL8AAMA/AAAAvgAAgL4AAEA/AAAAPgAAgL4AAEA/AAAAvgAAgL4AAMA/AAAAvgAAgL4AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQED8A8H8/APAfPwDwfz8A8B8/ABBQPwAQED8AEFA/ABAwPwDwfz8A8D8/APB/PwDwPz8AEFA/ABAwPwAQUD8A8C8/APBPPwAQID8A8E8/ABAgPwAQQD8A8C8/ABBAPwDwHz8AEEA/ABAQPwAQQD8AEBA/APBPPwDwHz8A8E8/ABAgPwDwfz8A8C8/APB/PwDwLz8AEFA/ABAgPwAQUD8AEAA/APB/PwDwDz8A8H8/APAPPwAQUD8AEAA/ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAcL4AADw/AAAQvgAABL8AADw/AAAQvgAABL8AAMI/AAAQvgAAcL4AAMI/AAAQvgAABL8AADw/AAAQPgAAcL4AADw/AAAQPgAAcL4AAMI/AAAQPgAABL8AAMI/AAAQPgAABL8AADw/AAAQvgAAcL4AADw/AAAQvgAAcL4AADw/AAAQPgAABL8AADw/AAAQPgAABL8AAMI/AAAQPgAAcL4AAMI/AAAQPgAAcL4AAMI/AAAQvgAABL8AAMI/AAAQvgAABL8AADw/AAAQvgAABL8AADw/AAAQPgAABL8AAMI/AAAQPgAABL8AAMI/AAAQvgAAcL4AADw/AAAQPgAAcL4AADw/AAAQvgAAcL4AAMI/AAAQvgAAcL4AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQUD8A8H8/APBfPwDwfz8A8F8/ABBQPwAQUD8AEFA/ABBwPwDwfz8A8H8/APB/PwDwfz8AEFA/ABBwPwAQUD8A8G8/APBPPwAQYD8A8E8/ABBgPwAQQD8A8G8/ABBAPwDwXz8AEEA/ABBQPwAQQD8AEFA/APBPPwDwXz8A8E8/ABBgPwDwfz8A8G8/APB/PwDwbz8AEFA/ABBgPwAQUD8AEEA/APB/PwDwTz8A8H8/APBPPwAQUD8AEEA/ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAJmZeT4AAAAAAAAAvszMzLsAAAAAAAAAvszMzLsAAEA/AAAAvpmZeT4AAEA/AAAAvszMzLsAAAAAAAAAPpmZeT4AAAAAAAAAPpmZeT4AAEA/AAAAPszMzLsAAEA/AAAAPszMzLsAAAAAAAAAvpmZeT4AAAAAAAAAvpmZeT4AAAAAAAAAPszMzLsAAAAAAAAAPszMzLsAAEA/AAAAPpmZeT4AAEA/AAAAPpmZeT4AAEA/AAAAvszMzLsAAEA/AAAAvszMzLsAAAAAAAAAvszMzLsAAAAAAAAAPszMzLsAAEA/AAAAPszMzLsAAEA/AAAAvpmZeT4AAAAAAAAAPpmZeT4AAAAAAAAAvpmZeT4AAEA/AAAAvpmZeT4AAEA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A4P8+AID/PQDg/z4AgP89ACCgPgCAgD0AIKA+AEBAPgDg/z4AwH8+AOD/PgDAfz4AIKA+AEBAPgAgoD4AwD8+AOCfPgBAAD4A4J8+AEAAPgAggD4AwD8+ACCAPgCA/z0AIIA+AICAPQAggD4AgIA9AOCfPgCA/z0A4J8+AEAAPgDg/z4AwD8+AOD/PgDAPz4AIKA+AEAAPgAgoD4AAIA5AOD/PgAAfz0A4P8+AAB/PQAgoD4AAIA5ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAM3MhD4AAIC8AAAQvjMzs7wAAIC8AAAQvjMzs7wAAEQ/AAAQvs3MhD4AAEQ/AAAQvjMzs7wAAIC8AAAQPs3MhD4AAIC8AAAQPs3MhD4AAEQ/AAAQPjMzs7wAAEQ/AAAQPjMzs7wAAIC8AAAQvs3MhD4AAIC8AAAQvs3MhD4AAIC8AAAQPjMzs7wAAIC8AAAQPjMzs7wAAEQ/AAAQPs3MhD4AAEQ/AAAQPs3MhD4AAEQ/AAAQvjMzs7wAAEQ/AAAQvjMzs7wAAIC8AAAQvjMzs7wAAIC8AAAQPjMzs7wAAEQ/AAAQPjMzs7wAAEQ/AAAQvs3MhD4AAIC8AAAQPs3MhD4AAIC8AAAQvs3MhD4AAEQ/AAAQvs3MhD4AAEQ/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A8D8/AID/PQDwPz8AgP89ABAQPwCAgD0AEBA/AEBAPgDwPz8AwH8+APA/PwDAfz4AEBA/AEBAPgAQED8AwD8+APAPPwBAAD4A8A8/AEAAPgAQAD8AwD8+ABAAPwCA/z0AEAA/AICAPQAQAD8AgIA9APAPPwCA/z0A8A8/AEAAPgDwPz8AwD8+APA/PwDAPz4AEBA/AEAAPgAQED8AAIA5APA/PwAAfz0A8D8/AAB/PQAQED8AAIA5ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAMzMzDsAAAAAAAAAvpmZeb4AAAAAAAAAvpmZeb4AAEA/AAAAvszMzDsAAEA/AAAAvpmZeb4AAAAAAAAAPszMzDsAAAAAAAAAPszMzDsAAEA/AAAAPpmZeb4AAEA/AAAAPpmZeb4AAAAAAAAAvszMzDsAAAAAAAAAvszMzDsAAAAAAAAAPpmZeb4AAAAAAAAAPpmZeb4AAEA/AAAAPszMzDsAAEA/AAAAPszMzDsAAEA/AAAAvpmZeb4AAEA/AAAAvpmZeb4AAAAAAAAAvpmZeb4AAAAAAAAAPpmZeb4AAEA/AAAAPpmZeb4AAEA/AAAAvszMzDsAAAAAAAAAPszMzDsAAAAAAAAAvszMzDsAAEA/AAAAvszMzDsAAEA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A8H8/AOC/PgDwfz8A4L8+ABBQPwAgoD4AEFA/ACDgPgDwfz8A4P8+APB/PwDg/z4AEFA/ACDgPgAQUD8A4N8+APBPPwAgwD4A8E8/ACDAPgAQQD8A4N8+ABBAPwDgvz4AEEA/ACCgPgAQQD8AIKA+APBPPwDgvz4A8E8/ACDAPgDwfz8A4N8+APB/PwDg3z4AEFA/ACDAPgAQUD8AIIA+APB/PwDgnz4A8H8/AOCfPgAQUD8AIIA+ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWADMzszwAAIC8AAAQvs3MhL4AAIC8AAAQvs3MhL4AAEQ/AAAQvjMzszwAAEQ/AAAQvs3MhL4AAIC8AAAQPjMzszwAAIC8AAAQPjMzszwAAEQ/AAAQPs3MhL4AAEQ/AAAQPs3MhL4AAIC8AAAQvjMzszwAAIC8AAAQvjMzszwAAIC8AAAQPs3MhL4AAIC8AAAQPs3MhL4AAEQ/AAAQPjMzszwAAEQ/AAAQPjMzszwAAEQ/AAAQvs3MhL4AAEQ/AAAQvs3MhL4AAIC8AAAQvs3MhL4AAIC8AAAQPs3MhL4AAEQ/AAAQPs3MhL4AAEQ/AAAQvjMzszwAAIC8AAAQPjMzszwAAIC8AAAQvjMzszwAAEQ/AAAQvjMzszwAAEQ/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A8H8/AID/PQDwfz8AgP89ABBQPwCAgD0AEFA/AEBAPgDwfz8AwH8+APB/PwDAfz4AEFA/AEBAPgAQUD8AwD8+APBPPwBAAD4A8E8/AEAAPgAQQD8AwD8+ABBAPwCA/z0AEEA/AICAPQAQQD8AgIA9APBPPwCA/z0A8E8/AEAAPgDwfz8AwD8+APB/PwDAPz4AEFA/AEAAPgAQUD8AAIA5APB/PwAAfz0A8H8/AAB/PQAQUD8AAIA5ABBQPw==" + } + ], + "bufferViews": [ + { "buffer": 0, "byteLength": 4, "byteOffset": 0 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 4 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 368 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 1460 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 2916 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 4008 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 5464 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 6556 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 8012 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 9104 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 10560 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 12016 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 13472 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 13836 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 14928 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 16384 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 17476 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 18932 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 20024 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 21480 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 22572 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 24028 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 25120 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 26576 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 27668 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 29124 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 29488 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 30580 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 32036 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 33128 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 34584 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 35676 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 37132 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 38224 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 39680 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 40772 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 42228 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 43684 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 44048 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 45140 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 46596 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 47688 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 49144 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 50236 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 51692 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 52784 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 54240 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 55696 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 56788 }, + { "buffer": 0, "byteLength": 68, "byteOffset": 58244 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 58312 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 58516 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 58788 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 58992 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 59264 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 59468 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 59740 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 59944 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 60216 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 60420 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 60692 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 60896 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 61168, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 61240, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 61528, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 61816, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 62008, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62080, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62368, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 62656, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 62848, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62920, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 63208, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 63496, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 63688, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 63760, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64048, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 64336, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 64528, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64600, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64888, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 65176, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 65368, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 65440, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 65728, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 66016, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 66208, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 66280, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 66568, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 66856, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 67048, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67120, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67408, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 67696, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 67888, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67960, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 68248, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 68536, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 68728, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 68800, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69088, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 69376, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 69568, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69640, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69928, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 70216, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 70408, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 70480, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 70768, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 71056, "target": 34962 } + ], + "scenes": [{ "name": "Root Scene", "nodes": [0] }], + "accessors": [ + { + "componentType": 5126, + "type": "SCALAR", + "count": 1, + "bufferView": 0, + "byteOffset": 0, + "min": [0], + "max": [0] + }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 1, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 2, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 3, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 4, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 5, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 6, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 7, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 8, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 9, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 10, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 11, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 12, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 13, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 14, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 15, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 16, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 17, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 18, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 19, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 20, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 21, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 22, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 23, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 24, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 25, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 26, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 27, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 28, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 29, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 30, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 31, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 32, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 33, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 34, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 35, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 36, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 37, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 38, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 39, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 40, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 41, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 42, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 43, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 44, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 45, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 46, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 47, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 48, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 17, + "bufferView": 49, + "byteOffset": 0, + "min": [0], + "max": [0.533333361148834] + }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 50, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 51, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 52, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 53, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 54, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 55, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 56, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 57, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 58, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 59, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 60, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 61, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 62, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 63, + "byteOffset": 0, + "min": [-0.25, 1.5, -0.25], + "max": [0.25, 2, 0.25] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 64, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 65, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 66, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 67, + "byteOffset": 0, + "min": [-0.28125, 1.46875, -0.28125], + "max": [0.28125, 2.03125, 0.28125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 68, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 69, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 70, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 71, + "byteOffset": 0, + "min": [-0.25, 0.75, -0.125], + "max": [0.25, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 72, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 73, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 74, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 75, + "byteOffset": 0, + "min": [-0.265625, 0.734375, -0.140625], + "max": [0.265625, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 76, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 77, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 78, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 79, + "byteOffset": 0, + "min": [0.25, 0.75, -0.125], + "max": [0.5, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 80, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 81, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 82, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 83, + "byteOffset": 0, + "min": [0.234375, 0.734375, -0.140625], + "max": [0.515625, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 84, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 85, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 86, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 87, + "byteOffset": 0, + "min": [-0.5, 0.75, -0.125], + "max": [-0.25, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 88, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 89, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 90, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 91, + "byteOffset": 0, + "min": [-0.515625, 0.734375, -0.140625], + "max": [-0.234375, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 92, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 93, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 94, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 95, + "byteOffset": 0, + "min": [-0.00624999962747097, 0, -0.125], + "max": [0.243749991059303, 0.75, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 96, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 97, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 98, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 99, + "byteOffset": 0, + "min": [-0.021874999627471, -0.015625, -0.140625], + "max": [0.259375005960464, 0.765625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 100, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 101, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 102, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 103, + "byteOffset": 0, + "min": [-0.243749991059303, 0, -0.125], + "max": [0.00624999962747097, 0.75, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 104, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 105, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 106, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 107, + "byteOffset": 0, + "min": [-0.259375005960464, -0.015625, -0.140625], + "max": [0.021874999627471, 0.765625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 108, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 109, "byteOffset": 0 } + ], + "images": [{ "name": "steve.png", "uri": "steve.png" }], + "samplers": [{}], + "textures": [{ "name": "steve", "sampler": 0, "source": 0 }], + "materials": [ + { + "name": "Mat", + "alphaMode": "BLEND", + "doubleSided": false, + "extras": { "fromFBX": { "shadingModel": "Lambert", "isTruePBR": false } }, + "pbrMetallicRoughness": { + "baseColorTexture": { "index": 0, "texCoord": 0 }, + "baseColorFactor": [1, 1, 1, 1], + "metallicFactor": 0.200000002980232, + "roughnessFactor": 0.800000011920929 + } + } + ], + "meshes": [ + { + "name": "Head_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 64, "POSITION": 63, "TEXCOORD_0": 65 }, + "indices": 62 + } + ] + }, + { + "name": "Hat_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 68, "POSITION": 67, "TEXCOORD_0": 69 }, + "indices": 66 + } + ] + }, + { + "name": "Body_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 72, "POSITION": 71, "TEXCOORD_0": 73 }, + "indices": 70 + } + ] + }, + { + "name": "Body_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 76, "POSITION": 75, "TEXCOORD_0": 77 }, + "indices": 74 + } + ] + }, + { + "name": "Right_Arm_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 80, "POSITION": 79, "TEXCOORD_0": 81 }, + "indices": 78 + } + ] + }, + { + "name": "Right_Arm_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 84, "POSITION": 83, "TEXCOORD_0": 85 }, + "indices": 82 + } + ] + }, + { + "name": "Left_Arm_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 88, "POSITION": 87, "TEXCOORD_0": 89 }, + "indices": 86 + } + ] + }, + { + "name": "Left_Arm_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 92, "POSITION": 91, "TEXCOORD_0": 93 }, + "indices": 90 + } + ] + }, + { + "name": "Right_Leg_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 96, "POSITION": 95, "TEXCOORD_0": 97 }, + "indices": 94 + } + ] + }, + { + "name": "Right_Leg_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 100, "POSITION": 99, "TEXCOORD_0": 101 }, + "indices": 98 + } + ] + }, + { + "name": "Left_Leg_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 104, "POSITION": 103, "TEXCOORD_0": 105 }, + "indices": 102 + } + ] + }, + { + "name": "Left_Leg_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 108, "POSITION": 107, "TEXCOORD_0": 109 }, + "indices": 106 + } + ] + } + ], + "animations": [ + { "name": "CINEMA_4D_Main", "channels": [], "samplers": [] }, + { + "name": "idle", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 9, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 1, "interpolation": "LINEAR", "output": 2 }, + { "input": 1, "interpolation": "LINEAR", "output": 3 }, + { "input": 1, "interpolation": "LINEAR", "output": 4 }, + { "input": 1, "interpolation": "LINEAR", "output": 5 }, + { "input": 1, "interpolation": "LINEAR", "output": 6 }, + { "input": 1, "interpolation": "LINEAR", "output": 7 }, + { "input": 1, "interpolation": "LINEAR", "output": 8 }, + { "input": 1, "interpolation": "LINEAR", "output": 9 }, + { "input": 1, "interpolation": "LINEAR", "output": 10 }, + { "input": 1, "interpolation": "LINEAR", "output": 11 } + ] + }, + { + "name": "idle_sub_1", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "translation" } }, + { "sampler": 11, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 12, "interpolation": "LINEAR", "output": 13 }, + { "input": 12, "interpolation": "LINEAR", "output": 14 }, + { "input": 12, "interpolation": "LINEAR", "output": 15 }, + { "input": 12, "interpolation": "LINEAR", "output": 16 }, + { "input": 12, "interpolation": "LINEAR", "output": 17 }, + { "input": 12, "interpolation": "LINEAR", "output": 18 }, + { "input": 12, "interpolation": "LINEAR", "output": 19 }, + { "input": 12, "interpolation": "LINEAR", "output": 20 }, + { "input": 12, "interpolation": "LINEAR", "output": 21 }, + { "input": 12, "interpolation": "LINEAR", "output": 22 }, + { "input": 12, "interpolation": "LINEAR", "output": 23 }, + { "input": 12, "interpolation": "LINEAR", "output": 24 } + ] + }, + { + "name": "idle_sub_2", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 25, "interpolation": "LINEAR", "output": 26 }, + { "input": 25, "interpolation": "LINEAR", "output": 27 }, + { "input": 25, "interpolation": "LINEAR", "output": 28 }, + { "input": 25, "interpolation": "LINEAR", "output": 29 }, + { "input": 25, "interpolation": "LINEAR", "output": 30 }, + { "input": 25, "interpolation": "LINEAR", "output": 31 }, + { "input": 25, "interpolation": "LINEAR", "output": 32 }, + { "input": 25, "interpolation": "LINEAR", "output": 33 }, + { "input": 25, "interpolation": "LINEAR", "output": 34 }, + { "input": 25, "interpolation": "LINEAR", "output": 35 }, + { "input": 25, "interpolation": "LINEAR", "output": 36 } + ] + }, + { + "name": "idle_sub_3", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 9, "target": { "node": 19, "path": "translation" } }, + { "sampler": 10, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 37, "interpolation": "LINEAR", "output": 38 }, + { "input": 37, "interpolation": "LINEAR", "output": 39 }, + { "input": 37, "interpolation": "LINEAR", "output": 40 }, + { "input": 37, "interpolation": "LINEAR", "output": 41 }, + { "input": 37, "interpolation": "LINEAR", "output": 42 }, + { "input": 37, "interpolation": "LINEAR", "output": 43 }, + { "input": 37, "interpolation": "LINEAR", "output": 44 }, + { "input": 37, "interpolation": "LINEAR", "output": 45 }, + { "input": 37, "interpolation": "LINEAR", "output": 46 }, + { "input": 37, "interpolation": "LINEAR", "output": 47 }, + { "input": 37, "interpolation": "LINEAR", "output": 48 } + ] + }, + { + "name": "interact", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "translation" } }, + { "sampler": 11, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 49, "interpolation": "LINEAR", "output": 50 }, + { "input": 49, "interpolation": "LINEAR", "output": 51 }, + { "input": 49, "interpolation": "LINEAR", "output": 52 }, + { "input": 49, "interpolation": "LINEAR", "output": 53 }, + { "input": 49, "interpolation": "LINEAR", "output": 54 }, + { "input": 49, "interpolation": "LINEAR", "output": 55 }, + { "input": 49, "interpolation": "LINEAR", "output": 56 }, + { "input": 49, "interpolation": "LINEAR", "output": 57 }, + { "input": 49, "interpolation": "LINEAR", "output": 58 }, + { "input": 49, "interpolation": "LINEAR", "output": 59 }, + { "input": 49, "interpolation": "LINEAR", "output": 60 }, + { "input": 49, "interpolation": "LINEAR", "output": 61 } + ] + } + ], + "cameras": [ + { + "name": "", + "type": "perspective", + "perspective": { + "znear": 0.00100000004749745, + "zfar": 10000, + "aspectRatio": 1.77777779102325, + "yfov": 0.563196837902069 + } + } + ], + "nodes": [ + { + "name": "RootNode", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [1, 2] + }, + { + "name": "CINEMA_4D_Editor", + "translation": [-1.72273254394531, 1.66939282417297, 4.2865161895752], + "rotation": [-0.0691489353775978, -0.184313297271729, -0.0130005870014429, 0.980345845222473], + "scale": [1, 1, 1], + "camera": 0 + }, + { + "name": "blockbench_export", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [3] + }, + { + "name": "Node_18", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [4, 7, 10, 13, 16, 19] + }, + { + "name": "Head", + "translation": [0, 1.5, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [5, 6] + }, + { + "name": "Head_2", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 0 + }, + { + "name": "Hat_Layer", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 1 + }, + { + "name": "Body", + "translation": [0, 1.5, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [8, 9] + }, + { + "name": "Body_2", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 2 + }, + { + "name": "Body_Layer", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 3 + }, + { + "name": "Right_Arm", + "translation": [0.3125, 1.375, 0], + "rotation": [ + -0.087155744433403, 2.30725471715804e-17, 2.01858621960602e-18, 0.99619472026825 + ], + "scale": [1, 1, 1], + "children": [11, 12] + }, + { + "name": "Right_Arm_2", + "translation": [-0.3125, -1.375, 7.10542719878232e-17], + "rotation": [-1.0632883996222e-17, -1.38777878078145e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 4 + }, + { + "name": "Right_Arm_Layer", + "translation": [-0.3125, -1.375, 7.10542719878232e-17], + "rotation": [-1.0632883996222e-17, -1.38777878078145e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 5 + }, + { + "name": "Left_Arm", + "translation": [-0.3125, 1.375, 0], + "rotation": [0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [14, 15] + }, + { + "name": "Left_Arm_2", + "translation": [0.3125, -1.375, 0], + "rotation": [1.0632883996222e-17, 5.55111512312578e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 6 + }, + { + "name": "Left_Arm_Layer", + "translation": [0.3125, -1.375, 0], + "rotation": [1.0632883996222e-17, 5.55111512312578e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 7 + }, + { + "name": "Right_Leg", + "translation": [0.118749998509884, 0.75, 0], + "rotation": [0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [17, 18] + }, + { + "name": "Right_Leg_2", + "translation": [-0.118749998509884, -0.75, -1.77635679969558e-17], + "rotation": [1.0632883996222e-17, 2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 8 + }, + { + "name": "Right_Leg_Layer", + "translation": [-0.118749998509884, -0.75, -1.77635679969558e-17], + "rotation": [1.0632883996222e-17, 2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 9 + }, + { + "name": "Left_Leg", + "translation": [-0.118749998509884, 0.75, 0], + "rotation": [-0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [20, 21] + }, + { + "name": "Left_Leg_2", + "translation": [0.118749998509884, -0.75, 1.77635679969558e-17], + "rotation": [-1.0632883996222e-17, -2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 10 + }, + { + "name": "Left_Leg_Layer", + "translation": [0.118749998509884, -0.75, 1.77635679969558e-17], + "rotation": [-1.0632883996222e-17, -2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 11 + } + ] +} diff --git a/packages/assets/models/slim-player.gltf b/packages/assets/models/slim-player.gltf new file mode 100644 index 000000000..7d9773c61 --- /dev/null +++ b/packages/assets/models/slim-player.gltf @@ -0,0 +1,852 @@ +{ + "asset": { "generator": "FBX2glTF v0.13.1", "version": "2.0" }, + "scene": 0, + "buffers": [ + { + "byteLength": 71248, + "uri": "data:application/octet-stream;base64,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AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAiYgIPYmIiD3NzMw9iYgIPquqKj7NzEw+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o0mZOQAAAAAAAAAA//9/PwAAAAAAAAAAAAAAAAAAgD8AAKA+9iisPwAAAAAAAKA+UDasPzx3DjsAAKA+kFmsP1CcATwAAKA+r4ysPzf4hDwAAKA+tsqsP56q1zwAAKA+Lg+tP9B6GT0AAKA+vlWtP9KFSD0AAKA+vZmtP5XadT0AAKA+pdWtP0fljj0AAKA+KwKuP+q8nT0AAKA+exSuPwrXoz0AAKA+nhCuPwrXoz0AAKA+lwSuPwrXoz0AAKA+RfCtPwrXoz0AAKA+udStPwrXoz0AAKA+SbStPwrXoz0AAKA+AJKtPwrXoz0AAKA+pHCtPwrXoz0AAKA+nUmtPwrXoz0AAKA+FBmtPwrXoz0AAKA+FOSsPwrXoz0AAKA+xK6sPwrXoz0AAKA++XysPwrXoz0AAKA+u1KsPwrXoz0AAKA+tDSsPwrXoz0AAKA+9iisPwrXoz0AAKA+vUKsPwrXoz0AAKA+64ysPwrXoz0AAKA+OPysPwrXoz0AAKA+4n2tPwrXoz0AAKA+Ev2tPwrXoz0AAKA+HGmuPwrXoz0AAKA+UriuPwrXoz0AAKA++/KuPwrXoz0AAKA+TSavPwrXoz0AAKA+0lOvPwrXoz0AAKA+RHyvPwrXoz0AAKA+9J+vPwrXoz0AAKA+4r6vPwrXoz0AAKA+ztivPwrXoz0AAKA+IO2vPwrXoz0AAKA+zvqvPwrXoz0AAKA+AACwPwrXoz0AAKA+bdyvPwrXoz0AAKA+x3mvPwrXoz0AAKA+ueauPwrXoz0AAKA+hzWuPwrXoz0AAKA+HHytPwrXoz0AAKA+z9OsPwrXoz0AAKA+xVisPwrXoz0AAKA+9iisPwrXoz0AAKA+yUKsPwrXoz0AAKA+xIqsPwrXoz0AAKA+ifGsPwrXoz0AAKA+XGCtPwrXoz0AAKA+27+tPwrXoz0AAKA+y/6tPwrXoz0AAKA+exSuPwrXoz0AAKA+lhGuPwrXoz0AAKA+RwquPwrXoz0AAKA+vv+tPwrXoz0AAKA+lPKtPwrXoz0AAKA+FuOtPwrXoz0AAKA+YtGtPwrXoz0AAKA+cL2tPwrXoz0AAKA+DaetPwrXoz0AAKA+xI2tPwrXoz0AAKA+pHCtPwrXoz0AAKA+hEitPwrXoz0AAKA+jxCtPwrXoz0AAKA+Ns6sPwrXoz0AAKA+7YusPwrXoz0AAKA+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AACgvnsUrj8K16M9AACgvp4Qrj8K16M9AACgvpcErj8K16M9AACgvkXwrT8K16M9AACgvrnUrT8K16M9AACgvkm0rT8K16M9AACgvgCSrT8K16M9AACgvqRwrT8K16M9AACgvp1JrT8K16M9AACgvhQZrT8K16M9AACgvhTkrD8K16M9AACgvsSurD8K16M9AACgvvl8rD8K16M9AACgvrtSrD8K16M9AACgvrQ0rD8K16M9AACgvvYorD8K16M9AACgvr1CrD8K16M9AACgvuuMrD8K16M9AACgvjj8rD8K16M9AACgvuJ9rT8K16M9AACgvhL9rT8K16M9AACgvhxprj8K16M9AACgvlK4rj8K16M9AACgvvvyrj8K16M9AACgvk0mrz8K16M9AACgvtJTrz8K16M9AACgvkR8rz8K16M9AACgvvSfrz8K16M9AACgvuK+rz8K16M9AACgvs7Yrz8K16M9AACgviDtrz8K16M9AACgvs76rz8K16M9AACgvgAAsD8K16M9AACgvm3crz8K16M9AACgvsd5rz8K16M9AACgvrnmrj8K16M9AACgvoc1rj8K16M9AACgvhx8rT8K16M9AACgvs/TrD8K16M9AACgvsVYrD8K16M9AACgvvYorD8K16M9AACgvslCrD8K16M9AACgvsSKrD8K16M9AACgvonxrD8K16M9AACgvlxgrT8K16M9AACgvtu/rT8K16M9AACgvsv+rT8K16M9AACgvnsUrj8K16M9AACgvpYRrj8K16M9AACgvkcKrj8K16M9AACgvr7/rT8K16M9AACgvpTyrT8K16M9AACgvhbjrT8K16M9AACgvmLRrT8K16M9AACgvnC9rT8K16M9AACgvg2nrT8K16M9AACgvsSNrT8K16M9AACgvqRwrT8K16M9AACgvoRIrT8K16M9AACgvo8QrT8K16M9AACgvjbOrD8K16M9AACgvu2LrD8K16M9AACgvslVrD8K16M9AACgvgE0rD8K16M9AACgvvYorD8K16M9AACgvvYorD8rDZ49AACgvvYorD/2fJA9AACgvvYorD8l8Xw9AACgvvYorD8zu1M9AACgvvYorD/J6yc9AACgvvYorD9YUPc8AACgvvYorD+wNqI8AACgvvYorD+myis8AACgvvYorD9yFlQ7AACgvvYorD8AAAAA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AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAD1KLw/AAAAAAAAAAAAAAAAAAAAAAAAgD9VYfs5/tPoORy0Jrj8/38/rFrmOp8+6TphCSG5y/9/P6RObTvs84M7hpKwuQn/fz+Su8A7B9XsO+MWGrol/X8/NQYJPBGEOzzzs226Y/l/P2duMjx6Xok8qZqputjyfz9wkFk81wu/PFom5bpM6H8/NgV7PN4TAD25aBS7F9h/P6pbiTz1Sic91nI5u9W/fz8Ls408gINWPbPbX7vdm38/sW6GPDHFiz034YK71F1/PwLLYzxMwrg9Ef+Su7/tfj8SSSU80c7uPeerm7vVPH4/FX+5O0C1Ez7LOZq70lB9P7Q/wzqZii0+kK2Qu0dLfD/1g+S67StCPjSYhLtcWns/dixzuwp7UD5Spna7b6J6P3n0jruriVg+wDxvu+Q0ej8YIo276etcPnL5ZbuY93k/XwWHu2EyYD4CaU27Dsl5P1R5ersGtGI+y4EmuwuleT8Bg2C7F6RkPr675br4iHk/NglBu9gjZj7J41K6GnN5P7nwHLuKSmc+rr2IOS9ieT8iUeq6WCloPrBttjpEVXk/b06Vuo/NaD4C3yU7nEt5P6IF87n2QWk+ehNtO55EeT+rXWw5sY9pPk1qljvOP3k/DRBwOtO+aT6Wq7A7wDx5P9l50Trg1mk+HZvDOxA7eT9mihQ7L99pPsbJzTtcOnk/AEY/O1zfaT4bFc47Ozp5P5fWaDusK2U+XZDCOxaAeT9ZBIk7vrVXPilZqzvpP3o/7HaeO7ySQj51xYo7qVR7Pxf4tTssAic+sL1GOy2RfD9cltA7qWkGPgk/3zqGx30/ffnuO7uSxD0XLaw5qs9+P52dCDw0tHA9DBGFum2Mfz96bxs87cusPPUjFLtN7n8/83EvPGQmgLy7xlu72/N/Pwj2Qzwgo029yHiLuxKofz8RNVg8C/qmvWwVortJH38/32hrPETB3r0ncbG7bHN+P6/efDzoZAa+i525uy/AfT/fAoY87wgYvvTmuruyH30/8TuMPH/yI755tbW716d8P9tNkTyYPiy+mFipu99OfD9UlJU8RVwzvmMXlrsO/3s//SeZPG56Ob5h/nq71bd7P74enDzevT6+AJdBu5x4ez8sjJ48IURDvgf8AbvOQHs/1oGgPIYlR76TcHe62A97P3cPojxEdkq+mVwVOS/lej9CQ6M8oEdNvoaupDpKwHo/ByqkPGGoT76UBRw7q6B6P1TPpDxmpVG+flRlO9qFej+2PaU8LUpTvtqmljtjb3o/xX6lPOygVL4ngbk72Fx6P0abpTzzslW+ocXaO9NNej9Nm6U80ohWvsUB+jvuQXo/T4alPIkqV74OYQs8yzh6P0VjpTysn1e+BUgYPAsyej++OKU8gu9Xvgp4IzxTLXo//gylPCchWL6mryw8SSp6PyHmpDyoO1i+dqgzPJMoej87yqQ8KEZYvhwWODzTJ3o/f7+kPPpHWL5TpDk8qSd6P5rWozwG8la+rwo4PE06ej+tOqE8nSBTvr5/Mzzrbno/vRWdPNQZTb4UbCw89796Px2Olzw0IUW+4jwjPGknez/8x5A8GXg7viRgGDwTn3s/HueIPKJeML4wQgw84iB8P5cPgDyGEyS+GZX+OyGnfD8Jzmw89dQWvgW14zujLH0/SCpYPNDgCL6klsg74ax9P3KHQjxu6PS9lNitOyMkfj8GPyw8epnXva0FlDuGj34/2q4VPNROur2mI3c7DO1+Pwx0/jsdg5296bVJO5c7fz9fj9I7qLCBvWRRIDvqen8/7YSoO0WjTr0qt/Y6kat/P24xgTuiwh29jiy2Os3Ofz9l6zo742vjvJWQfjpy5n8/KdP4Oj3nlrzuQyQ6wPR/P2pUkTrs1S+8ZfC6OS78fz9f7wU67b+hu7fcKDkx/38/k6cKOZNBp7palSw48v9/PwAAAAAAAAAAAAAAAAAAgD8AAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAA9Si8PwAAAAAAAAAAAAAAAAAAAAAAAIA/AAAAAOvS4DkAAAAA/v9/PwAAAADok9Y6AAAAAOr/fz8AAAAAwd1lOwAAAACZ/38/AAAAALsTwjsAAAAA2v5/PwAAAAAhnQ88AAAAAHv9fz8AAAAAxkVDPAAAAABY+38/AAAAAOMWejwAAAAAXfh/PwAAAACTEpk8AAAAAI/0fz8AAAAA18G0PAAAAAAL8H8/AAAAALAjzzwAAAAADOt/PwAAAADbQec8AAAAAOLlfz8AAAAA7Cb8PAAAAADz4H8/AAAAAHNuBj0AAAAAstx/PwAAAAAwNww9AAAAAJfZfz8AAAAAxvIOPQAAAAAU2H8/AAAAAH3vDz0AAAAAhtd/PwAAAAB1zRA9AAAAAAnXfz8AAAAAEI0RPQAAAACc1n8/AAAAAEAvEj0AAAAAQNZ/PwAAAACGtRI9AAAAAPPVfz8AAAAA7CETPQAAAAC11X8/AAAAAOt2Ez0AAAAAhNV/PwAAAABPtxM9AAAAAF7Vfz8AAAAAGeYTPQAAAABD1X8/AAAAAFYGFD0AAAAAMdV/PwAAAAAFGxQ9AAAAACXVfz8AAAAA+yYUPQAAAAAe1X8/AAAAANEsFD0AAAAAGtV/PwAAAADcLhQ9AAAAABnVfz8AAAAAIi8UPQAAAAAZ1X8/AAAAABj6ET0AAAAAXtZ/PwAAAAD2AQw9AAAAALTZfz8AAAAAjRMDPQAAAABv3n8/AAAAAMOe7zwAAAAA9eN/PwAAAABFb9U8AAAAAMHpfz8AAAAA4HK4PAAAAABj738/AAAAANFkmTwAAAAAg/R/PwAAAABG13E8AAAAANz4fz8AAAAATD0vPAAAAABA/H8/AAAAAD8r2DsAAAAAk/5/PwAAAAA1wiU7AAAAAMr/fz8AAAAAoDy9ugAAAADv/38/AAAAANFMrLsAAAAAGP9/PwAAAAAO9RC8AAAAAG/9fz8AAAAAYuxGvAAAAAAr+38/AAAAAHvNdrwAAAAAkPh/PwAAAADgmY+8AAAAAO71fz8AAAAARkafvAAAAACd838/AAAAAKyAqbwAAAAA+PF/PwAAAABgMa28AAAAAFrxfz8AAAAA3TCtvAAAAABa8X8/AAAAADAtrbwAAAAAW/F/PwAAAADfIq28AAAAAF3xfz8AAAAAJg6tvAAAAABg8X8/AAAAABDrrLwAAAAAZvF/PwAAAACEtay8AAAAAG/xfz8AAAAAb2msvAAAAAB88X8/AAAAAOACrLwAAAAAjfF/PwAAAAAmfqu8AAAAAKPxfz8AAAAA8teqvAAAAAC/8X8/AAAAAHUNqrwAAAAA4fF/PwAAAABmHKm8AAAAAAnyfz8AAAAAGAOovAAAAAA38n8/AAAAAHDAprwAAAAAbPJ/PwAAAADmU6W8AAAAAKfyfz8AAAAAd72jvAAAAADo8n8/AAAAAI79obwAAAAAMPN/PwAAAAD+FKC8AAAAAHzzfz8AAAAAPyadvAAAAADx838/AAAAAAyImLwAAAAApPR/PwAAAACrgZK8AAAAAIX1fz8AAAAAclGLvAAAAACG9n8/AAAAAJgug7wAAAAAmfd/PwAAAADolXS8AAAAALL4fz8AAAAAQqdhvAAAAADJ+X8/AAAAAF7lTbwAAAAA0/p/PwAAAABPnjm8AAAAAMv7fz8AAAAAIhwlvAAAAACs/H8/AAAAAM+lELwAAAAAcv1/PwAAAAARAfm7AAAAABz+fz8AAAAAF9/RuwAAAACo/n8/AAAAADFsrLsAAAAAGP9/PwAAAAClL4m7AAAAAG3/fz8AAAAAL2NRuwAAAACq/38/AAAAALL+FrsAAAAA0/9/PwAAAADuqMi6AAAAAOz/fz8AAAAAullqugAAAAD5/38/AAAAAF1D2LkAAAAA//9/PwAAAADIjOC4AAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AACgPvYorD8AAAAAfv+fPvYorD9qFiu5Cv6fPvYorD9EUCS6wvufPvYorD8UOrG6wfifPvYorD99wha7JPWfPvYorD/8+GC7B/GfPvYorD+KW5q7h+yfPvYorD+GuMe7wOefPvYorD/VTve7z+KfPvYorD9E7BO8z92fPvYorD+FCCy83tifPvYorD81WUO8F9SfPvYorD8JPFm8l8+fPvYorD8MDm28esufPvYorD/pLH683cefPvYorD/k+oW8YcSfPvYorD+lyIu8nsCfPvYorD+6Q5G8qryfPvYorD/NYpa8mbifPvYorD+CHZu8hLSfPvYorD/UbJ+8gbCfPvYorD9+S6O8q6yfPvYorD8rtqa8FamfPvYorD+uq6m81aWfPvYorD/PLKy8/KKfPvYorD84PK68l6CfPvYorD8Q3q+8sp6fPvYorD+4F7G8VJ2fPvYorD9d77G8gJyfPvYorD+ya7K8OZyfPvYorD+bk7K87ZyfPvYorD/Zd7C81J6fPvYorD/4u6q8raGfPvYorD82GaK8RaWfPvYorD8nIJe8camfPvYorD9nRYq8EK6fPvYorD8T1He8A7OfPvYorD8iwVi8L7ifPvYorD9e4ze8fr2fPvYorD9XvRW818KfPvYorD8ijuW7JsifPvYorD9L5p67Vs2fPvYorD8QwDC7UNKfPvYorD9Mtha6ANefPvYorD/FT8M6TdufPvYorD/YaGM7Hd+fPvYorD9Hz647VeKfPvYorD8GDec71OSfPvYorD8Tmww8duafPvYorD/27yE8DOefPvYorD94rzI8y+afPvYorD8iN0A8C+afPvYorD9lhUw81uSfPvYorD/Vllc8N+OfPvYorD/Ha2E8PuGfPvYorD+hCGo8+96fPvYorD/bdXE8ftyfPvYorD9MwHc83dmfPvYorD8c+Xw8K9efPvYorD+XmoA8fdSfPvYorD9SRoI86NGfPvYorD/3jIM8fs+fPvYorD+NfIQ8Uc2fPvYorD9iI4U8ccufPvYorD+kj4U868mfPvYorD//zoU8y8ifPvYorD9L7oU8GsifPvYorD9f+YU83cefPvYorD/k+oU8RsifPvYorD+UAoU8Z8mfPvYorD8DToI8JsufPvYorD9VR3w8aM2fPvYorD8sgnE8FtCfPvYorD9ruWQ8G9OfPvYorD8cT1Y8ZdafPvYorD/mm0Y84tmfPvYorD8e8jU8hN2fPvYorD8eniQ8OeGfPvYorD8P6BI89uSfPvYorD/xFAE8qeifPvYorD+gz947R+yfPvYorD9gQ7w7w++fPvYorD/HBps7DfOfPvYorD+nN3c7GfafPvYorD8pCj072fifPvYorD86kwg7PfufPvYorD9J0LU6N/2fPvYorD8rsFQ6tv6fPvYorD+Kk8Q5qv+fPvYorD9NaMw4AACgPvYorD8AAAAAAAAAACBoQiMAAAAAAACAPxAiabk674g57FUKOf//fz88MV66Io6DOsFuBjrv/38/o5jtujv3DTs/7JI6s/9/P0QrSLs+sHE7zJ/9OiD/fz/ZvpO7G3m0O6tCQDsP/n8/uE3IuyDf9zvNMYY7Wvx/P4Wu/7tQgyA8d92wO+j5fz8K6Ru8cvVGPIhi3zut9n8/0FU3vJRAbjzregg8sfJ/P2MaUbwtr4o8n2IiPA3ufz9uNWi8iqKdPIr6PDzs6H8/Gal7vAB1rzwM0lc8jON/P9Q8hbyin788A3VyPDjefz8114m8FpvNPDc3hjxG2X8/SyiLvN3e2DwtpJI8EdV/Px4Vh7yjH+I8LaGfPKrRfz/3f3m89HrqPOEmrjy6zn8/P7JavEIA8jysz7089Mt/P1+/M7zLuvg8o0XOPA3Jfz/RYwa8KbP+PKA83zzDxX8/0GOou0T4AT0bbvA848F/P0Yk9brIPAQ97MoAPU29fz/rjcY6kCoGPZo3CT30t38/2mahO0XFBz1/WBE95bF/P0NnBzwUEQk9FwUZPUirfz+fHjs8yBIKPRwOID1kpH8/YLRpPOrPCj3jOSY9qJ1/PxU6iDy7Tgs91j0rPa6Xfz8V4ZU8E5YLPXK0Lj1Gk38/PTebPJ+sCz1cCTA9hJF/PxzGlzxMaAo9ZQIuPRyUfz+HnI08+owGPcMDKD2jm38/ppl6PDcVAD0SWx49Qad/P9riTzxuOe48vKERPYy1fz/Cfh48Rt7XPDXNAj29xH8/qvTVO60kvjznYeY8BdN/PxaAajtJh6I87c7IPPzefz9MbZY6i8mGPHZFsDzp538/w5/5uYZoWTzm3Z88vu1/P4TJjbrEois8Yv+ZPMnwfz/bF6m5Yn7+OyK3mzwu8n8/qYz9OpKNnDvVvaA8g/J/Pxg+sDsRzdE6aYOoPBrxfz8PXRw8KhTXugEWsjxw7X8/I6ZjPDK5nbsZS7w8med/P+n0kjz0kP+7F//FPFDgfz80j648rEssvJNJzjy12H8/Jc3CPAysU7zckdQ87NF/P1jbzjyys3W8Y4jYPNPMfz8cmNI8c0KJvKET2jznyX8/ePHMPEcslbwZ2dk8bsl/P6rDvzzpFJ+8mbrYPLvKfz/x1K08fXqnvEXx1jz5zH8/F7OYPCetrrxindQ8oM9/PwBcgTzO47S8K9PRPFfSfz8sBVE86UW6vBegzjzd1H8/LV0dPAXxvrxCDcs8CNd/P2U90TsK/MK8zyDHPLrYfz94Mk477HjGvIrewjzj2X8/Xv+RuEV2ybwkSL48ftp/P3f0UrsNAMy8f125PI3afz/7/My7MyDOvE8ctDwf2n8/vI0VvELfz7zuf648S9l/P8TkQLysRNG8i4CoPDPYfz89NWe8NlfSvN8RojwI138/yFuDvF8d07zkIJs8DNZ/PyBojrwRntO8+Y6TPJbVfz8spJK8xuHTvEwoizwc1n8/dnyRvAyH0rz3/IA849d/Pz6Fjryods68sedoPKPafz+g1Im8Jh3IvPGeSzwa3n8/cYyDvMTXv7zs2Co8A+J/P7a4d7y/97W84YsHPBjmfz9uB2a8hcWqvCPkxTsa6n8/fKVSvISCnrzWM3o71u1/P/dUPrxGbJG8mRPhOifxfz+f9im8Qr2DvOU9E7n/838/n4EWvFRda7yK1tS6Y/Z/P1j5BLwP8k68EFIqu2T4fz/CvOy7PqkyvEh1QLsc+n8/cpTRu4n3Frw5mDq7nft/P8Hxs7vfnfi7rYgsu+b8fz8hzpS7uDPGu766F7vz/X8/Vqtqu/aFl7tl//u6wv5/P/i+LbtE4Fq7g/zCulX/fz8Lfeu60qMRu/s+ibqy/38/2UmLujFRqroZyye65f9/P3VJAbpWXx26Fk6gufr/fz+YFga5kZwjuZePqrgAAIA/AAAAAACAQiMAAAAAAACAPwAAoL72KKw/AAAAAH7/n772KKw/ahYrOQr+n772KKw/RFAkOsL7n772KKw/FDqxOsH4n772KKw/fcIWOyT1n772KKw//PhgOwfxn772KKw/iluaO4fsn772KKw/hrjHO8Dnn772KKw/1U73O8/in772KKw/ROwTPM/dn772KKw/hQgsPN7Yn772KKw/NVlDPBfUn772KKw/CTxZPJfPn772KKw/DA5tPHrLn772KKw/6Sx+PN3Hn772KKw/5PqFPGHEn772KKw/pciLPJ7An772KKw/ukORPKq8n772KKw/zWKWPJm4n772KKw/gh2bPIS0n772KKw/1GyfPIGwn772KKw/fkujPKusn772KKw/K7amPBWpn772KKw/rqupPNWln772KKw/zyysPPyin772KKw/ODyuPJegn772KKw/EN6vPLKen772KKw/uBexPFSdn772KKw/Xe+xPICcn772KKw/smuyPDmcn772KKw/m5OyPO2cn772KKw/2XewPNSen772KKw/+LuqPK2hn772KKw/NhmiPEWln772KKw/JyCXPHGpn772KKw/Z0WKPBCun772KKw/E9R3PAOzn772KKw/IsFYPC+4n772KKw/XuM3PH69n772KKw/V70VPNfCn772KKw/Io7lOybIn772KKw/S+aeO1bNn772KKw/EMAwO1DSn772KKw/TLYWOgDXn772KKw/xU/Duk3bn772KKw/2Ghjux3fn772KKw/R8+uu1Xin772KKw/Bg3nu9Tkn772KKw/E5sMvHbmn772KKw/9u8hvAznn772KKw/eK8yvMvmn772KKw/IjdAvAvmn772KKw/ZYVMvNbkn772KKw/1ZZXvDfjn772KKw/x2thvD7hn772KKw/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AAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPzMz870AAEA/AAAAADMz870rHUA/AAAAADMz8725aUA/AAAAADMz873+2EA/AAAAADMz871zYUE/AAAAADMz870++0E/AAAAADMz871Kn0I/AAAAADMz871qRkM/AAAAADMz871t6EM/AAAAADMz872UekQ/AAAAADMz871d7EQ/AAAAADMz8724HkU/AAAAADMz872l8kQ/AAAAADMz872UVEQ/AAAAADMz871JZEM/AAAAADMz873vqUI/AAAAADMz873pTEI/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz8711M0I/AAAAADMz873EUUI/AAAAADMz871qtUI/AAAAADMz871VaUM/AAAAADMz871JaEQ/AAAAADMz873rf0U/AAAAADMz8729UEY/AAAAADMz8725mEY/AAAAADMz870uO0Y/AAAAADMz873vSUU/AAAAADMz870SAEQ/AAAAADMz872nmEI/AAAAADMz873KTkE/AAAAADMz872LXUA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAADMz870AAEA/AAAAAAAAAAAAAAAAAAAAAAAAgD+GlJY5v6ILumPVUrn9/38/44eKOtfG/rpy/EG60v9/P0OXEDuSr4O7FELKujz/fz8rC3A7nD3Yu2CVJ7vr/X8/nwOwO6qbHLzINnW7mvt/P57R7jtyg1G8Lfmluw/4fz/Skhk8EY+EvCcL1bso838/U909PF3JoLzujAO83Ox/P5aOYzw3S7y82b8dvFPlfz/Y04Q8s2XVvJ3KOLz53H8/IzSXPCQD6bwAP1S80NR/P/NIrTw3tfi85+N3vJ3Lfz+Prs08lF8EvZIxl7ztvX8/ugrxPCCFCr2esrW8/K1/Pyc+BD0wiA29LjrKvK+ifz80pwk9jaUOvc3J07xGnX8/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz+YEgs9POYOvZlP1rzXm38/mBILPTzmDr2ZT9a815t/P5gSCz085g69mU/WvNebfz9wBgs9L4gQvQ9q1rztmn8/BuEKPfGRFb3ju9a8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CAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgD4AAMA/AACAvgAAgL4AAMA/AACAvgAAgL4AAABAAACAvgAAgD4AAABAAACAvgAAgL4AAMA/AACAPgAAgD4AAMA/AACAPgAAgD4AAABAAACAPgAAgL4AAABAAACAPgAAgL4AAMA/AACAvgAAgD4AAMA/AACAvgAAgD4AAMA/AACAPgAAgL4AAMA/AACAPgAAgL4AAABAAACAPgAAgD4AAABAAACAPgAAgD4AAABAAACAvgAAgL4AAABAAACAvgAAgL4AAMA/AACAvgAAgL4AAMA/AACAPgAAgL4AAABAAACAPgAAgL4AAABAAACAvgAAgD4AAMA/AACAPgAAgD4AAMA/AACAvgAAgD4AAABAAACAvgAAgD4AAABAAACAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAABAAD4AwH8+AMB/PgDAfz4AwH8+AEAAPgBAAD4AQAA+ACDAPgDAfz4A4P8+AMB/PgDg/z4AQAA+ACDAPgBAAD4A4L8+AID/PQAggD4AgP89ACCAPgAAgDkA4L8+AACAOQDAfz4AAIA5AEAAPgAAgDkAQAA+AID/PQDAfz4AgP89ACCAPgDAfz4A4L8+AMB/PgDgvz4AQAA+ACCAPgBAAD4AAIA5AMB/PgCA/z0AwH8+AID/PQBAAD4AAIA5AEAAPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAkD4AALw/AACQvgAAkL4AALw/AACQvgAAkL4AAAJAAACQvgAAkD4AAAJAAACQvgAAkL4AALw/AACQPgAAkD4AALw/AACQPgAAkD4AAAJAAACQPgAAkL4AAAJAAACQPgAAkL4AALw/AACQvgAAkD4AALw/AACQvgAAkD4AALw/AACQPgAAkL4AALw/AACQPgAAkL4AAAJAAACQPgAAkD4AAAJAAACQPgAAkD4AAAJAAACQvgAAkL4AAAJAAACQvgAAkL4AALw/AACQvgAAkL4AALw/AACQPgAAkL4AAAJAAACQPgAAkL4AAAJAAACQvgAAkD4AALw/AACQPgAAkD4AALw/AACQvgAAkD4AAAJAAACQvgAAkD4AAAJAAACQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQID8AwH8+APA/PwDAfz4A8D8/AEAAPgAQID8AQAA+ABBgPwDAfz4A8H8/AMB/PgDwfz8AQAA+ABBgPwBAAD4A8F8/AID/PQAQQD8AgP89ABBAPwAAgDkA8F8/AACAOQDwPz8AAIA5ABAgPwAAgDkAECA/AID/PQDwPz8AgP89ABBAPwDAfz4A8F8/AMB/PgDwXz8AQAA+ABBAPwBAAD4AEAA/AMB/PgDwHz8AwH8+APAfPwBAAD4AEAA/AEAAPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgD4AAEA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAMA/AAAAvgAAgD4AAMA/AAAAvgAAgL4AAEA/AAAAPgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAEA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAEA/AAAAPgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAMA/AAAAvgAAgL4AAMA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAMA/AAAAvgAAgD4AAEA/AAAAPgAAgD4AAEA/AAAAvgAAgD4AAMA/AAAAvgAAgD4AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A4P8+AODfPgDg/z4A4N8+ACCgPgAgoD4AIKA+ABAAPwDg/z4A8B8/AOD/PgDwHz8AIKA+ABAAPwAgoD4A8A8/AOCfPgAg4D4A4J8+ACDgPgAggD4A8A8/ACCAPgDg3z4AIIA+ACCgPgAggD4AIKA+AOCfPgDg3z4A4J8+ACDgPgDg/z4A4P8+AOD/PgDg/z4AIKA+ACDgPgAgoD4AIIA+AOD/PgDgnz4A4P8+AOCfPgAgoD4AIIA+ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAiD4AADw/AAAQvgAAiL4AADw/AAAQvgAAiL4AAMI/AAAQvgAAiD4AAMI/AAAQvgAAiL4AADw/AAAQPgAAiD4AADw/AAAQPgAAiD4AAMI/AAAQPgAAiL4AAMI/AAAQPgAAiL4AADw/AAAQvgAAiD4AADw/AAAQvgAAiD4AADw/AAAQPgAAiL4AADw/AAAQPgAAiL4AAMI/AAAQPgAAiD4AAMI/AAAQPgAAiD4AAMI/AAAQvgAAiL4AAMI/AAAQvgAAiL4AADw/AAAQvgAAiL4AADw/AAAQPgAAiL4AAMI/AAAQPgAAiL4AAMI/AAAQvgAAiD4AADw/AAAQPgAAiD4AADw/AAAQvgAAiD4AAMI/AAAQvgAAiD4AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A8D8/AODfPgDwPz8A4N8+ABAQPwAgoD4AEBA/ABAAPwDwPz8A8B8/APA/PwDwHz8AEBA/ABAAPwAQED8A8A8/APAPPwAg4D4A8A8/ACDgPgAQAD8A8A8/ABAAPwDg3z4AEAA/ACCgPgAQAD8AIKA+APAPPwDg3z4A8A8/ACDgPgDwPz8A4P8+APA/PwDg/z4AEBA/ACDgPgAQED8AIIA+APA/PwDgnz4A8D8/AOCfPgAQED8AIIA+ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAA4D4AAEA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAMA/AAAAvgAA4D4AAMA/AAAAvgAAgD4AAEA/AAAAPgAA4D4AAEA/AAAAPgAA4D4AAMA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAEA/AAAAvgAA4D4AAEA/AAAAvgAA4D4AAEA/AAAAPgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAA4D4AAMA/AAAAPgAA4D4AAMA/AAAAvgAAgD4AAMA/AAAAvgAAgD4AAEA/AAAAvgAAgD4AAEA/AAAAPgAAgD4AAMA/AAAAPgAAgD4AAMA/AAAAvgAA4D4AAEA/AAAAPgAA4D4AAEA/AAAAvgAA4D4AAMA/AAAAvgAA4D4AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQMD8A4P8+APA7PwDg/z4A8Ds/ACCgPgAQMD8AIKA+ABBMPwDg/z4A8Fc/AOD/PgDwVz8AIKA+ABBMPwAgoD4A8Ec/AOCfPgAQPD8A4J8+ABA8PwAggD4A8Ec/ACCAPgDwOz8AIIA+ABAwPwAggD4AEDA/AOCfPgDwOz8A4J8+ABA8PwDg/z4A8Es/AOD/PgDwSz8AIKA+ABA8PwAgoD4AECA/AOD/PgDwLz8A4P8+APAvPwAgoD4AECA/ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAA6D4AADw/AAAQvgAAcD4AADw/AAAQvgAAcD4AAMI/AAAQvgAA6D4AAMI/AAAQvgAAcD4AADw/AAAQPgAA6D4AADw/AAAQPgAA6D4AAMI/AAAQPgAAcD4AAMI/AAAQPgAAcD4AADw/AAAQvgAA6D4AADw/AAAQvgAA6D4AADw/AAAQPgAAcD4AADw/AAAQPgAAcD4AAMI/AAAQPgAA6D4AAMI/AAAQPgAA6D4AAMI/AAAQvgAAcD4AAMI/AAAQvgAAcD4AADw/AAAQvgAAcD4AADw/AAAQPgAAcD4AAMI/AAAQPgAAcD4AAMI/AAAQvgAA6D4AADw/AAAQPgAA6D4AADw/AAAQvgAA6D4AAMI/AAAQvgAA6D4AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQMD8A8D8/APA7PwDwPz8A8Ds/ABAQPwAQMD8AEBA/ABBMPwDwPz8A8Fc/APA/PwDwVz8AEBA/ABBMPwAQED8A8Ec/APAPPwAQPD8A8A8/ABA8PwAQAD8A8Ec/ABAAPwDwOz8AEAA/ABAwPwAQAD8AEDA/APAPPwDwOz8A8A8/ABA8PwDwPz8A8Es/APA/PwDwSz8AEBA/ABA8PwAQED8AECA/APA/PwDwLz8A8D8/APAvPwAQED8AECA/ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAgL4AAEA/AAAAvgAA4L4AAEA/AAAAvgAA4L4AAMA/AAAAvgAAgL4AAMA/AAAAvgAA4L4AAEA/AAAAPgAAgL4AAEA/AAAAPgAAgL4AAMA/AAAAPgAA4L4AAMA/AAAAPgAA4L4AAEA/AAAAvgAAgL4AAEA/AAAAvgAAgL4AAEA/AAAAPgAA4L4AAEA/AAAAPgAA4L4AAMA/AAAAPgAAgL4AAMA/AAAAPgAAgL4AAMA/AAAAvgAA4L4AAMA/AAAAvgAA4L4AAEA/AAAAvgAA4L4AAEA/AAAAPgAA4L4AAMA/AAAAPgAA4L4AAMA/AAAAvgAAgL4AAEA/AAAAPgAAgL4AAEA/AAAAvgAAgL4AAMA/AAAAvgAAgL4AAMA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQED8A8H8/APAbPwDwfz8A8Bs/ABBQPwAQED8AEFA/ABAsPwDwfz8A8Dc/APB/PwDwNz8AEFA/ABAsPwAQUD8A8Cc/APBPPwAQHD8A8E8/ABAcPwAQQD8A8Cc/ABBAPwDwGz8AEEA/ABAQPwAQQD8AEBA/APBPPwDwGz8A8E8/ABAcPwDwfz8A8Cs/APB/PwDwKz8AEFA/ABAcPwAQUD8AEAA/APB/PwDwDz8A8H8/APAPPwAQUD8AEAA/ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAAAAcL4AADw/AAAQvgAA6L4AADw/AAAQvgAA6L4AAMI/AAAQvgAAcL4AAMI/AAAQvgAA6L4AADw/AAAQPgAAcL4AADw/AAAQPgAAcL4AAMI/AAAQPgAA6L4AAMI/AAAQPgAA6L4AADw/AAAQvgAAcL4AADw/AAAQvgAAcL4AADw/AAAQPgAA6L4AADw/AAAQPgAA6L4AAMI/AAAQPgAAcL4AAMI/AAAQPgAAcL4AAMI/AAAQvgAA6L4AAMI/AAAQvgAA6L4AADw/AAAQvgAA6L4AADw/AAAQPgAA6L4AAMI/AAAQPgAA6L4AAMI/AAAQvgAAcL4AADw/AAAQPgAAcL4AADw/AAAQvgAAcL4AAMI/AAAQvgAAcL4AAMI/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAQUD8A8H8/APBbPwDwfz8A8Fs/ABBQPwAQUD8AEFA/ABBsPwDwfz8A8Hc/APB/PwDwdz8AEFA/ABBsPwAQUD8A8Gc/APBPPwAQXD8A8E8/ABBcPwAQQD8A8Gc/ABBAPwDwWz8AEEA/ABBQPwAQQD8AEFA/APBPPwDwWz8A8E8/ABBcPwDwfz8A8Gs/APB/PwDwaz8AEFA/ABBcPwAQUD8AEEA/APB/PwDwTz8A8H8/APBPPwAQUD8AEEA/ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAJmZeT4AAAAAAAAAvszMzLsAAAAAAAAAvszMzLsAAEA/AAAAvpmZeT4AAEA/AAAAvszMzLsAAAAAAAAAPpmZeT4AAAAAAAAAPpmZeT4AAEA/AAAAPszMzLsAAEA/AAAAPszMzLsAAAAAAAAAvpmZeT4AAAAAAAAAvpmZeT4AAAAAAAAAPszMzLsAAAAAAAAAPszMzLsAAEA/AAAAPpmZeT4AAEA/AAAAPpmZeT4AAEA/AAAAvszMzLsAAEA/AAAAvszMzLsAAAAAAAAAvszMzLsAAAAAAAAAPszMzLsAAEA/AAAAPszMzLsAAEA/AAAAvpmZeT4AAAAAAAAAPpmZeT4AAAAAAAAAvpmZeT4AAEA/AAAAvpmZeT4AAEA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A4P8+AID/PQDg/z4AgP89ACCgPgCAgD0AIKA+AEBAPgDg/z4AwH8+AOD/PgDAfz4AIKA+AEBAPgAgoD4AwD8+AOCfPgBAAD4A4J8+AEAAPgAggD4AwD8+ACCAPgCA/z0AIIA+AICAPQAggD4AgIA9AOCfPgCA/z0A4J8+AEAAPgDg/z4AwD8+AOD/PgDAPz4AIKA+AEAAPgAgoD4AAIA5AOD/PgAAfz0A4P8+AAB/PQAgoD4AAIA5ACCgPgAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAM3MhD4AAIC8AAAQvjMzs7wAAIC8AAAQvjMzs7wAAEQ/AAAQvs3MhD4AAEQ/AAAQvjMzs7wAAIC8AAAQPs3MhD4AAIC8AAAQPs3MhD4AAEQ/AAAQPjMzs7wAAEQ/AAAQPjMzs7wAAIC8AAAQvs3MhD4AAIC8AAAQvs3MhD4AAIC8AAAQPjMzs7wAAIC8AAAQPjMzs7wAAEQ/AAAQPs3MhD4AAEQ/AAAQPs3MhD4AAEQ/AAAQvjMzs7wAAEQ/AAAQvjMzs7wAAIC8AAAQvjMzs7wAAIC8AAAQPjMzs7wAAEQ/AAAQPjMzs7wAAEQ/AAAQvs3MhD4AAIC8AAAQPs3MhD4AAIC8AAAQvs3MhD4AAEQ/AAAQvs3MhD4AAEQ/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A8D8/AID/PQDwPz8AgP89ABAQPwCAgD0AEBA/AEBAPgDwPz8AwH8+APA/PwDAfz4AEBA/AEBAPgAQED8AwD8+APAPPwBAAD4A8A8/AEAAPgAQAD8AwD8+ABAAPwCA/z0AEAA/AICAPQAQAD8AgIA9APAPPwCA/z0A8A8/AEAAPgDwPz8AwD8+APA/PwDAPz4AEBA/AEAAPgAQED8AAIA5APA/PwAAfz0A8D8/AAB/PQAQED8AAIA5ABAQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWAMzMzDsAAAAAAAAAvpmZeb4AAAAAAAAAvpmZeb4AAEA/AAAAvszMzDsAAEA/AAAAvpmZeb4AAAAAAAAAPszMzDsAAAAAAAAAPszMzDsAAEA/AAAAPpmZeb4AAEA/AAAAPpmZeb4AAAAAAAAAvszMzDsAAAAAAAAAvszMzDsAAAAAAAAAPpmZeb4AAAAAAAAAPpmZeb4AAEA/AAAAPszMzDsAAEA/AAAAPszMzDsAAEA/AAAAvpmZeb4AAEA/AAAAvpmZeb4AAAAAAAAAvpmZeb4AAAAAAAAAPpmZeb4AAEA/AAAAPpmZeb4AAEA/AAAAvszMzDsAAAAAAAAAPszMzDsAAAAAAAAAvszMzDsAAEA/AAAAvszMzDsAAEA/AAAAPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAgoD4A8H8/AOC/PgDwfz8A4L8+ABBQPwAgoD4AEFA/ACDgPgDwfz8A4P8+APB/PwDg/z4AEFA/ACDgPgAQUD8A4N8+APBPPwAgwD4A8E8/ACDAPgAQQD8A4N8+ABBAPwDgvz4AEEA/ACCgPgAQQD8AIKA+APBPPwDgvz4A8E8/ACDAPgDwfz8A4N8+APB/PwDg3z4AEFA/ACDAPgAQUD8AIIA+APB/PwDgnz4A8H8/AOCfPgAQUD8AIIA+ABBQPwAAAQACAAMAAAACAAQABQAGAAcABAAGAAgACQAKAAsACAAKAAwADQAOAA8ADAAOABAAEQASABMAEAASABQAFQAWABcAFAAWADMzszwAAIC8AAAQvs3MhL4AAIC8AAAQvs3MhL4AAEQ/AAAQvjMzszwAAEQ/AAAQvs3MhL4AAIC8AAAQPjMzszwAAIC8AAAQPjMzszwAAEQ/AAAQPs3MhL4AAEQ/AAAQPs3MhL4AAIC8AAAQvjMzszwAAIC8AAAQvjMzszwAAIC8AAAQPs3MhL4AAIC8AAAQPs3MhL4AAEQ/AAAQPjMzszwAAEQ/AAAQPjMzszwAAEQ/AAAQvs3MhL4AAEQ/AAAQvs3MhL4AAIC8AAAQvs3MhL4AAIC8AAAQPs3MhL4AAEQ/AAAQPs3MhL4AAEQ/AAAQvjMzszwAAIC8AAAQPjMzszwAAIC8AAAQvjMzszwAAEQ/AAAQvjMzszwAAEQ/AAAQPgAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAvwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIC/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgL8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAACAgD0A8H8/AID/PQDwfz8AgP89ABBQPwCAgD0AEFA/AEBAPgDwfz8AwH8+APB/PwDAfz4AEFA/AEBAPgAQUD8AwD8+APBPPwBAAD4A8E8/AEAAPgAQQD8AwD8+ABBAPwCA/z0AEEA/AICAPQAQQD8AgIA9APBPPwCA/z0A8E8/AEAAPgDwfz8AwD8+APB/PwDAPz4AEFA/AEAAPgAQUD8AAIA5APB/PwAAfz0A8H8/AAB/PQAQUD8AAIA5ABBQPw==" + } + ], + "bufferViews": [ + { "buffer": 0, "byteLength": 4, "byteOffset": 0 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 4 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 368 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 1460 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 2916 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 4008 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 5464 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 6556 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 8012 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 9104 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 10560 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 12016 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 13472 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 13836 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 14928 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 16384 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 17476 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 18932 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 20024 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 21480 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 22572 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 24028 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 25120 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 26576 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 27668 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 29124 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 29488 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 30580 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 32036 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 33128 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 34584 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 35676 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 37132 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 38224 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 39680 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 40772 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 42228 }, + { "buffer": 0, "byteLength": 364, "byteOffset": 43684 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 44048 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 45140 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 46596 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 47688 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 49144 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 50236 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 51692 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 52784 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 54240 }, + { "buffer": 0, "byteLength": 1092, "byteOffset": 55696 }, + { "buffer": 0, "byteLength": 1456, "byteOffset": 56788 }, + { "buffer": 0, "byteLength": 68, "byteOffset": 58244 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 58312 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 58516 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 58788 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 58992 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 59264 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 59468 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 59740 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 59944 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 60216 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 60420 }, + { "buffer": 0, "byteLength": 204, "byteOffset": 60692 }, + { "buffer": 0, "byteLength": 272, "byteOffset": 60896 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 61168, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 61240, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 61528, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 61816, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 62008, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62080, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62368, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 62656, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 62848, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 62920, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 63208, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 63496, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 63688, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 63760, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64048, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 64336, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 64528, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64600, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 64888, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 65176, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 65368, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 65440, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 65728, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 66016, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 66208, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 66280, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 66568, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 66856, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 67048, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67120, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67408, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 67696, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 67888, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 67960, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 68248, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 68536, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 68728, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 68800, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69088, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 69376, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 69568, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69640, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 69928, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 70216, "target": 34962 }, + { "buffer": 0, "byteLength": 72, "byteOffset": 70408, "target": 34963 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 70480, "target": 34962 }, + { "buffer": 0, "byteLength": 288, "byteOffset": 70768, "target": 34962 }, + { "buffer": 0, "byteLength": 192, "byteOffset": 71056, "target": 34962 } + ], + "scenes": [{ "name": "Root Scene", "nodes": [0] }], + "accessors": [ + { + "componentType": 5126, + "type": "SCALAR", + "count": 1, + "bufferView": 0, + "byteOffset": 0, + "min": [0], + "max": [0] + }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 1, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 2, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 3, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 4, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 5, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 6, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 7, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 8, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 9, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 10, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 11, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 12, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 13, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 14, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 15, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 16, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 17, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 18, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 19, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 20, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 21, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 22, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 23, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 24, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 25, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 26, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 27, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 28, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 29, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 30, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 31, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 32, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 33, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 34, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 35, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 36, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 91, + "bufferView": 37, + "byteOffset": 0, + "min": [0], + "max": [3] + }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 38, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 39, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 40, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 41, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 42, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 43, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 44, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 45, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 46, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 91, "bufferView": 47, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 91, "bufferView": 48, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "SCALAR", + "count": 17, + "bufferView": 49, + "byteOffset": 0, + "min": [0], + "max": [0.533333361148834] + }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 50, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 51, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 52, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 53, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 54, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 55, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 56, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 57, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 58, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 59, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC3", "count": 17, "bufferView": 60, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC4", "count": 17, "bufferView": 61, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 62, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 63, + "byteOffset": 0, + "min": [-0.25, 1.5, -0.25], + "max": [0.25, 2, 0.25] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 64, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 65, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 66, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 67, + "byteOffset": 0, + "min": [-0.28125, 1.46875, -0.28125], + "max": [0.28125, 2.03125, 0.28125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 68, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 69, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 70, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 71, + "byteOffset": 0, + "min": [-0.25, 0.75, -0.125], + "max": [0.25, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 72, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 73, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 74, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 75, + "byteOffset": 0, + "min": [-0.265625, 0.734375, -0.140625], + "max": [0.265625, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 76, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 77, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 78, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 79, + "byteOffset": 0, + "min": [0.25, 0.75, -0.125], + "max": [0.4375, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 80, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 81, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 82, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 83, + "byteOffset": 0, + "min": [0.234375, 0.734375, -0.140625], + "max": [0.453125, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 84, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 85, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 86, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 87, + "byteOffset": 0, + "min": [-0.4375, 0.75, -0.125], + "max": [-0.25, 1.5, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 88, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 89, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 90, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 91, + "byteOffset": 0, + "min": [-0.453125, 0.734375, -0.140625], + "max": [-0.234375, 1.515625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 92, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 93, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 94, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 95, + "byteOffset": 0, + "min": [-0.00624999962747097, 0, -0.125], + "max": [0.243749991059303, 0.75, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 96, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 97, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 98, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 99, + "byteOffset": 0, + "min": [-0.021874999627471, -0.015625, -0.140625], + "max": [0.259375005960464, 0.765625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 100, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 101, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 102, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 103, + "byteOffset": 0, + "min": [-0.243749991059303, 0, -0.125], + "max": [0.00624999962747097, 0.75, 0.125] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 104, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 105, "byteOffset": 0 }, + { "componentType": 5123, "type": "SCALAR", "count": 36, "bufferView": 106, "byteOffset": 0 }, + { + "componentType": 5126, + "type": "VEC3", + "count": 24, + "bufferView": 107, + "byteOffset": 0, + "min": [-0.259375005960464, -0.015625, -0.140625], + "max": [0.021874999627471, 0.765625, 0.140625] + }, + { "componentType": 5126, "type": "VEC3", "count": 24, "bufferView": 108, "byteOffset": 0 }, + { "componentType": 5126, "type": "VEC2", "count": 24, "bufferView": 109, "byteOffset": 0 } + ], + "images": [{ "name": "sunny.png", "uri": "sunny.png" }], + "samplers": [{}], + "textures": [{ "name": "sunny", "sampler": 0, "source": 0 }], + "materials": [ + { + "name": "Mat", + "alphaMode": "BLEND", + "doubleSided": false, + "extras": { "fromFBX": { "shadingModel": "Lambert", "isTruePBR": false } }, + "pbrMetallicRoughness": { + "baseColorTexture": { "index": 0, "texCoord": 0 }, + "baseColorFactor": [1, 1, 1, 1], + "metallicFactor": 0.200000002980232, + "roughnessFactor": 0.800000011920929 + } + } + ], + "meshes": [ + { + "name": "Head_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 64, "POSITION": 63, "TEXCOORD_0": 65 }, + "indices": 62 + } + ] + }, + { + "name": "Hat_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 68, "POSITION": 67, "TEXCOORD_0": 69 }, + "indices": 66 + } + ] + }, + { + "name": "Body_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 72, "POSITION": 71, "TEXCOORD_0": 73 }, + "indices": 70 + } + ] + }, + { + "name": "Body_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 76, "POSITION": 75, "TEXCOORD_0": 77 }, + "indices": 74 + } + ] + }, + { + "name": "Right_Arm_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 80, "POSITION": 79, "TEXCOORD_0": 81 }, + "indices": 78 + } + ] + }, + { + "name": "Right_Arm_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 84, "POSITION": 83, "TEXCOORD_0": 85 }, + "indices": 82 + } + ] + }, + { + "name": "Left_Arm_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 88, "POSITION": 87, "TEXCOORD_0": 89 }, + "indices": 86 + } + ] + }, + { + "name": "Left_Arm_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 92, "POSITION": 91, "TEXCOORD_0": 93 }, + "indices": 90 + } + ] + }, + { + "name": "Right_Leg_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 96, "POSITION": 95, "TEXCOORD_0": 97 }, + "indices": 94 + } + ] + }, + { + "name": "Right_Leg_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 100, "POSITION": 99, "TEXCOORD_0": 101 }, + "indices": 98 + } + ] + }, + { + "name": "Left_Leg_2", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 104, "POSITION": 103, "TEXCOORD_0": 105 }, + "indices": 102 + } + ] + }, + { + "name": "Left_Leg_Layer", + "primitives": [ + { + "material": 0, + "mode": 4, + "attributes": { "NORMAL": 108, "POSITION": 107, "TEXCOORD_0": 109 }, + "indices": 106 + } + ] + } + ], + "animations": [ + { "name": "CINEMA_4D_Main", "channels": [], "samplers": [] }, + { + "name": "idle", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 9, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 1, "interpolation": "LINEAR", "output": 2 }, + { "input": 1, "interpolation": "LINEAR", "output": 3 }, + { "input": 1, "interpolation": "LINEAR", "output": 4 }, + { "input": 1, "interpolation": "LINEAR", "output": 5 }, + { "input": 1, "interpolation": "LINEAR", "output": 6 }, + { "input": 1, "interpolation": "LINEAR", "output": 7 }, + { "input": 1, "interpolation": "LINEAR", "output": 8 }, + { "input": 1, "interpolation": "LINEAR", "output": 9 }, + { "input": 1, "interpolation": "LINEAR", "output": 10 }, + { "input": 1, "interpolation": "LINEAR", "output": 11 } + ] + }, + { + "name": "idle_sub_1", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "translation" } }, + { "sampler": 11, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 12, "interpolation": "LINEAR", "output": 13 }, + { "input": 12, "interpolation": "LINEAR", "output": 14 }, + { "input": 12, "interpolation": "LINEAR", "output": 15 }, + { "input": 12, "interpolation": "LINEAR", "output": 16 }, + { "input": 12, "interpolation": "LINEAR", "output": 17 }, + { "input": 12, "interpolation": "LINEAR", "output": 18 }, + { "input": 12, "interpolation": "LINEAR", "output": 19 }, + { "input": 12, "interpolation": "LINEAR", "output": 20 }, + { "input": 12, "interpolation": "LINEAR", "output": 21 }, + { "input": 12, "interpolation": "LINEAR", "output": 22 }, + { "input": 12, "interpolation": "LINEAR", "output": 23 }, + { "input": 12, "interpolation": "LINEAR", "output": 24 } + ] + }, + { + "name": "idle_sub_2", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 25, "interpolation": "LINEAR", "output": 26 }, + { "input": 25, "interpolation": "LINEAR", "output": 27 }, + { "input": 25, "interpolation": "LINEAR", "output": 28 }, + { "input": 25, "interpolation": "LINEAR", "output": 29 }, + { "input": 25, "interpolation": "LINEAR", "output": 30 }, + { "input": 25, "interpolation": "LINEAR", "output": 31 }, + { "input": 25, "interpolation": "LINEAR", "output": 32 }, + { "input": 25, "interpolation": "LINEAR", "output": 33 }, + { "input": 25, "interpolation": "LINEAR", "output": 34 }, + { "input": 25, "interpolation": "LINEAR", "output": 35 }, + { "input": 25, "interpolation": "LINEAR", "output": 36 } + ] + }, + { + "name": "idle_sub_3", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 9, "target": { "node": 19, "path": "translation" } }, + { "sampler": 10, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 37, "interpolation": "LINEAR", "output": 38 }, + { "input": 37, "interpolation": "LINEAR", "output": 39 }, + { "input": 37, "interpolation": "LINEAR", "output": 40 }, + { "input": 37, "interpolation": "LINEAR", "output": 41 }, + { "input": 37, "interpolation": "LINEAR", "output": 42 }, + { "input": 37, "interpolation": "LINEAR", "output": 43 }, + { "input": 37, "interpolation": "LINEAR", "output": 44 }, + { "input": 37, "interpolation": "LINEAR", "output": 45 }, + { "input": 37, "interpolation": "LINEAR", "output": 46 }, + { "input": 37, "interpolation": "LINEAR", "output": 47 }, + { "input": 37, "interpolation": "LINEAR", "output": 48 } + ] + }, + { + "name": "interact", + "channels": [ + { "sampler": 0, "target": { "node": 4, "path": "translation" } }, + { "sampler": 1, "target": { "node": 4, "path": "rotation" } }, + { "sampler": 2, "target": { "node": 7, "path": "translation" } }, + { "sampler": 3, "target": { "node": 7, "path": "rotation" } }, + { "sampler": 4, "target": { "node": 10, "path": "translation" } }, + { "sampler": 5, "target": { "node": 10, "path": "rotation" } }, + { "sampler": 6, "target": { "node": 13, "path": "translation" } }, + { "sampler": 7, "target": { "node": 13, "path": "rotation" } }, + { "sampler": 8, "target": { "node": 16, "path": "translation" } }, + { "sampler": 9, "target": { "node": 16, "path": "rotation" } }, + { "sampler": 10, "target": { "node": 19, "path": "translation" } }, + { "sampler": 11, "target": { "node": 19, "path": "rotation" } } + ], + "samplers": [ + { "input": 49, "interpolation": "LINEAR", "output": 50 }, + { "input": 49, "interpolation": "LINEAR", "output": 51 }, + { "input": 49, "interpolation": "LINEAR", "output": 52 }, + { "input": 49, "interpolation": "LINEAR", "output": 53 }, + { "input": 49, "interpolation": "LINEAR", "output": 54 }, + { "input": 49, "interpolation": "LINEAR", "output": 55 }, + { "input": 49, "interpolation": "LINEAR", "output": 56 }, + { "input": 49, "interpolation": "LINEAR", "output": 57 }, + { "input": 49, "interpolation": "LINEAR", "output": 58 }, + { "input": 49, "interpolation": "LINEAR", "output": 59 }, + { "input": 49, "interpolation": "LINEAR", "output": 60 }, + { "input": 49, "interpolation": "LINEAR", "output": 61 } + ] + } + ], + "cameras": [ + { + "name": "", + "type": "perspective", + "perspective": { + "znear": 0.00100000004749745, + "zfar": 10000, + "aspectRatio": 1.77777779102325, + "yfov": 0.563196837902069 + } + } + ], + "nodes": [ + { + "name": "RootNode", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [1, 2] + }, + { + "name": "CINEMA_4D_Editor", + "translation": [-2.45347762107849, 1.34939217567444, 4.26275205612183], + "rotation": [ + -0.0356462635099888, -0.252775251865387, -0.00931969191879034, 0.966823160648346 + ], + "scale": [1, 1, 1], + "camera": 0 + }, + { + "name": "blockbench_export", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [3] + }, + { + "name": "Node_18", + "translation": [0, 0, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [4, 7, 10, 13, 16, 19] + }, + { + "name": "Head", + "translation": [0, 1.5, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [5, 6] + }, + { + "name": "Head_2", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 0 + }, + { + "name": "Hat_Layer", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 1 + }, + { + "name": "Body", + "translation": [0, 1.5, 0], + "rotation": [0, 0, 0, 1], + "scale": [1, 1, 1], + "children": [8, 9] + }, + { + "name": "Body_2", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 2 + }, + { + "name": "Body_Layer", + "translation": [0, -1.5, 0], + "rotation": [0, 0, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 3 + }, + { + "name": "Right_Arm", + "translation": [0.3125, 1.375, 0], + "rotation": [ + -0.087155744433403, 1.04987070290598e-17, 9.18517895791133e-19, 0.99619472026825 + ], + "scale": [1, 1, 1], + "children": [11, 12] + }, + { + "name": "Right_Arm_2", + "translation": [-0.3125, -1.375, 7.10542719878232e-17], + "rotation": [-1.0632883996222e-17, -4.16333634234434e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 4 + }, + { + "name": "Right_Arm_Layer", + "translation": [-0.3125, -1.375, 7.10542719878232e-17], + "rotation": [-1.0632883996222e-17, -4.16333634234434e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 5 + }, + { + "name": "Left_Arm", + "translation": [-0.3125, 1.375, 0], + "rotation": [0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [14, 15] + }, + { + "name": "Left_Arm_2", + "translation": [0.3125, -1.375, 0], + "rotation": [1.0632883996222e-17, 5.55111512312578e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 6 + }, + { + "name": "Left_Arm_Layer", + "translation": [0.3125, -1.375, 0], + "rotation": [1.0632883996222e-17, 5.55111512312578e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 7 + }, + { + "name": "Right_Leg", + "translation": [0.118749998509884, 0.75, 0], + "rotation": [0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [17, 18] + }, + { + "name": "Right_Leg_2", + "translation": [-0.118749998509884, -0.75, -1.77635679969558e-17], + "rotation": [1.0632883996222e-17, 2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 8 + }, + { + "name": "Right_Leg_Layer", + "translation": [-0.118749998509884, -0.75, -1.77635679969558e-17], + "rotation": [1.0632883996222e-17, 2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 9 + }, + { + "name": "Left_Leg", + "translation": [-0.118749998509884, 0.75, 0], + "rotation": [-0.087155744433403, 0, 0, 0.99619472026825], + "scale": [1, 1, 1], + "children": [20, 21] + }, + { + "name": "Left_Leg_2", + "translation": [0.118749998509884, -0.75, 1.77635679969558e-17], + "rotation": [-1.0632883996222e-17, -2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 10 + }, + { + "name": "Left_Leg_Layer", + "translation": [0.118749998509884, -0.75, 1.77635679969558e-17], + "rotation": [-1.0632883996222e-17, -2.77555756156289e-17, 1, -6.12323426292584e-17], + "scale": [-1, -1, -1], + "mesh": 11 + } + ] +} diff --git a/packages/assets/package.json b/packages/assets/package.json index 96b19404d..3142a78e5 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -5,12 +5,16 @@ "main": "./index.ts", "types": "./index.ts", "scripts": { - "lint": "eslint . && prettier --check .", - "fix": "eslint . --fix && prettier --write ." + "lint": "pnpm run icons:validate && eslint . && prettier --check .", + "fix": "pnpm run icons:generate && eslint . --fix && prettier --write .", + "icons:test": "jiti build/generate-exports.ts --test", + "icons:validate": "jiti build/generate-exports.ts --validate", + "icons:generate": "jiti build/generate-exports.ts" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-custom": "workspace:*", + "jiti": "^2.4.2", "tsconfig": "workspace:*", "vue": "^3.5.13" } diff --git a/packages/assets/styles/classes.scss b/packages/assets/styles/classes.scss index 9b22f853d..59eaf9652 100644 --- a/packages/assets/styles/classes.scss +++ b/packages/assets/styles/classes.scss @@ -822,6 +822,65 @@ a, // TOOLTIPS +.v-popper--theme-dropdown, +.v-popper--theme-dropdown.v-popper--theme-ribbit-popout { + .v-popper__inner { + border: 1px solid var(--color-button-bg) !important; + padding: var(--gap-sm) !important; + width: fit-content !important; + border-radius: var(--radius-md) !important; + background-color: var(--color-raised-bg) !important; + box-shadow: var(--shadow-floating) !important; + } + + .v-popper__arrow-outer { + border-color: var(--color-button-bg) !important; + } + + .v-popper__arrow-inner { + border-color: var(--color-raised-bg) !important; + } +} + +.v-popper__popper[data-popper-placement='bottom-end'] .v-popper__wrapper { + transform-origin: top right; +} + +.v-popper__popper[data-popper-placement='top-end'] .v-popper__wrapper { + transform-origin: bottom right; +} + +.v-popper__popper[data-popper-placement='bottom-start'] .v-popper__wrapper { + transform-origin: top left; +} + +.v-popper__popper[data-popper-placement='top-start'] .v-popper__wrapper { + transform-origin: bottom left; +} + +.v-popper__popper.v-popper__popper--show-from .v-popper__wrapper { + transform: scale(0.85); + opacity: 0; +} + +.v-popper__popper.v-popper__popper--show-to .v-popper__wrapper { + transform: scale(1); + opacity: 1; + transition: + transform 0.125s ease-in-out, + opacity 0.125s ease-in-out; +} + +.v-popper__popper.v-popper__popper--hide-from .v-popper__wrapper { + transform: none; + opacity: 1; + transition: transform 0.0625s; +} + +.v-popper__popper.v-popper__popper--hide-to .v-popper__wrapper { + //transform: scale(.9); +} + .v-popper--theme-tooltip { .v-popper__inner { background: var(--color-tooltip-bg) !important; @@ -840,6 +899,30 @@ a, } } +.v-popper--theme-dismissable-prompt { + z-index: 10; + + .v-popper__inner { + background: var(--color-raised-bg) !important; + border: 1px solid var(--color-button-border); + color: var(--color-tooltip-text) !important; + padding: 0.75rem 1rem !important; + border-radius: 0.75rem !important; + filter: drop-shadow(5px 5px 0.8rem rgba(0, 0, 0, 0.35)); + font-size: 0.9rem; + font-weight: bold; + line-height: 1; + } + + .v-popper__arrow-outer { + border-color: var(--color-button-border); + } + + .v-popper__arrow-inner { + border-color: var(--color-raised-bg); + } +} + // MARKDOWN .markdown-body { @@ -1205,65 +1288,6 @@ select { border-top-right-radius: var(--radius-md) !important; } -.v-popper--theme-dropdown, -.v-popper--theme-dropdown.v-popper--theme-ribbit-popout { - .v-popper__inner { - border: 1px solid var(--color-button-bg) !important; - padding: var(--gap-sm) !important; - width: fit-content !important; - border-radius: var(--radius-md) !important; - background-color: var(--color-raised-bg) !important; - box-shadow: var(--shadow-floating) !important; - } - - .v-popper__arrow-outer { - border-color: var(--color-button-bg) !important; - } - - .v-popper__arrow-inner { - border-color: var(--color-raised-bg) !important; - } -} - -.v-popper__popper[data-popper-placement='bottom-end'] .v-popper__wrapper { - transform-origin: top right; -} - -.v-popper__popper[data-popper-placement='top-end'] .v-popper__wrapper { - transform-origin: bottom right; -} - -.v-popper__popper[data-popper-placement='bottom-start'] .v-popper__wrapper { - transform-origin: top left; -} - -.v-popper__popper[data-popper-placement='top-start'] .v-popper__wrapper { - transform-origin: bottom left; -} - -.v-popper__popper.v-popper__popper--show-from .v-popper__wrapper { - transform: scale(0.85); - opacity: 0; -} - -.v-popper__popper.v-popper__popper--show-to .v-popper__wrapper { - transform: scale(1); - opacity: 1; - transition: - transform 0.125s ease-in-out, - opacity 0.125s ease-in-out; -} - -.v-popper__popper.v-popper__popper--hide-from .v-popper__wrapper { - transform: none; - opacity: 1; - transition: transform 0.0625s; -} - -.v-popper__popper.v-popper__popper--hide-to .v-popper__wrapper { - //transform: scale(.9); -} - .preview-radio { width: 100% !important; border-radius: var(--radius-md); diff --git a/packages/assets/styles/defaults.scss b/packages/assets/styles/defaults.scss index 712817ee3..36ecd625b 100644 --- a/packages/assets/styles/defaults.scss +++ b/packages/assets/styles/defaults.scss @@ -59,7 +59,7 @@ textarea, padding: 0.5rem 1rem; font-weight: var(--font-weight-medium); transition: box-shadow 0.1s ease-in-out; - min-height: 40px; + min-height: 36px; box-shadow: var(--shadow-inset-sm), 0 0 0 0 transparent; @@ -159,7 +159,7 @@ input[type='number'] { @extend .transparent, .icon-only; position: absolute; - right: 0.25rem; + right: 0.125rem; z-index: 1; svg { diff --git a/packages/assets/styles/variables.scss b/packages/assets/styles/variables.scss index f462c886d..863e9b151 100644 --- a/packages/assets/styles/variables.scss +++ b/packages/assets/styles/variables.scss @@ -68,6 +68,8 @@ --color-button-bg-selected: var(--color-brand); --color-button-text-selected: var(--color-accent-contrast); + --color-gradient-button-bg: linear-gradient(180deg, #f8f9fa 0%, #dce0e6 100%); + --loading-bar-gradient: linear-gradient(to right, var(--color-brand) 0%, #00af5c 100%); --color-platform-fabric: #8a7b71; @@ -84,6 +86,12 @@ --color-platform-velocity: #4b98b0; --color-platform-waterfall: #5f83cb; --color-platform-sponge: #c49528; + --color-platform-ornithe: #6097ca; + --color-platform-bta-babric: #5ba938; + --color-platform-legacy-fabric: #6879f6; + --color-platform-nilloader: #dd5088; + + --hover-brightness: 0.9; } html { @@ -180,6 +188,8 @@ html { --color-button-bg-selected: var(--color-brand-highlight); --color-button-text-selected: var(--color-brand); + --color-gradient-button-bg: linear-gradient(180deg, #3a3d47 0%, #33363d 100%); + --loading-bar-gradient: linear-gradient(to right, var(--color-brand) 0%, #1ffa9a 100%); --color-platform-fabric: #dbb69b; @@ -196,6 +206,14 @@ html { --color-platform-velocity: #83d5ef; --color-platform-waterfall: #78a4fb; --color-platform-sponge: #f9e580; + --color-platform-ornithe: #87c7ff; + --color-platform-bta-babric: #72cc4a; + --color-platform-legacy-fabric: #6879f6; + --color-platform-nilloader: #f45e9a; + + --hover-brightness: 1.25; + + --experimental-color-button-bg: #33363d; } .oled-mode { @@ -216,6 +234,8 @@ html { rgba(9, 18, 14, 0.6) 10%, rgba(19, 31, 23, 0.5) 100% ); + + --color-gradient-button-bg: linear-gradient(180deg, #1b1b20 0%, #25262b 100%); } .retro-mode { @@ -253,7 +273,7 @@ html { } .dark-experiments { - --color-button-bg: #33363d; + --color-button-bg: var(--experimental-color-button-bg); } .dark-mode:not(.oled-mode), diff --git a/packages/blog/.eslintrc.js b/packages/blog/.eslintrc.js new file mode 100644 index 000000000..7c8979a43 --- /dev/null +++ b/packages/blog/.eslintrc.js @@ -0,0 +1,7 @@ +module.exports = { + root: true, + extends: ['custom/library'], + env: { + node: true, + }, +} diff --git a/packages/blog/LICENSE b/packages/blog/LICENSE new file mode 100644 index 000000000..e72bfddab --- /dev/null +++ b/packages/blog/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/packages/blog/README.md b/packages/blog/README.md new file mode 100644 index 000000000..b0aa4461b --- /dev/null +++ b/packages/blog/README.md @@ -0,0 +1,23 @@ +# Modrinth Blog Articles + +This package contains the articles for the Modrinth blog. The articles are written in Markdown and are rendered on the Modrinth website. + +## How to add a new article + +Write your article in the `articles` directory. The filename should be the slug of the article, and the file should have a `.md` extension. The first line of the file should be the frontmatter, which contains metadata about the article such as the title, summary and date of writing. + +### Example Frontmatter + +```md +--- +title: Quintupling Creator Revenue and Becoming Sustainable +short_title: Becoming Sustainable +summary: Announcing an update to our monetization program, creator split, and more! +short_summary: Announcing 5x creator revenue and updates to the monetization program. +date: 2024-09-13T12:00:00-08:00 +--- +``` + +You **can** link other articles in the frontmatter, but it's recommended you're explicit about it, for example: `https://modrinth.com/news/article/...` instead of `/news/article/...`. It's not a requirement though, you just have to be careful about it. + +You can place images in the `public/{slug}/...` directory, the thumbnail must be a `.webp` file named `thumbnail.webp` in the same public directory. diff --git a/packages/blog/articles/a-new-chapter-for-modrinth-servers.md b/packages/blog/articles/a-new-chapter-for-modrinth-servers.md new file mode 100644 index 000000000..4a8762f02 --- /dev/null +++ b/packages/blog/articles/a-new-chapter-for-modrinth-servers.md @@ -0,0 +1,36 @@ +--- +title: A New Chapter for Modrinth Servers +summary: Modrinth Servers is now fully operated in-house by the Modrinth Team. +date: 2025-03-13T00:00:00+00:00 +authors: ['MpxzqsyW', 'Dc7EYhxG'] +--- + +Over the few months, Modrinth has seen incredible interest towards our Servers product, and with significant growth, our vision for what Modrinth Servers can be has evolved alongside it. To continue striving towards our goal of providing the best place to get your own Minecraft multiplayer server, we’ve made the decision to bring our server hosting fully in-house. + +### Why We're Making This Change + +Modrinth has some ambitious goals for the next year. We want to create the best possible way for all Java players play Minecraft, and to host and play their favorite modpacks and custom servers. To achieve this, it’s clear that Modrinth Servers needs to be built and scaled on our own infrastructure. + +By running every aspect of our hosting platform, we gain the flexibility to tailor the experience to our community’s needs—whether that means deeper integrations with Modrinth’s ecosystem, better performance, or more innovative features. This also allows us to invest in the long-term sustainability of Modrinth Servers, ensuring that we can scale seamlessly and avoid running out of available servers stock. + +### A Thank You to Pyro + +This change is purely a logistical step forward and does not reflect negatively on our partnership with [Pyro](https://pyro.host). In fact, Pyro has been an incredible partner in getting Modrinth Servers off the ground and we are very grateful for their collaboration. We completely support Pyro and their future, and we know they’re working on some exciting new products of their own, which we can’t wait to check out! + +### What This Means for You + +We know you may have questions, and we want to make this transition as smooth as possible. + +- **What part of my server was being run by Pyro?** + + Until this point, Pyro has been responsible for the physical server machines that run your Modrinth servers. This means that they have been responsible for the hardware that powers your server, as well as the files and data for them. Moving forward, all of this will exist under Modrinth. + +- **What happens to my running servers?** + + Your current servers will continue running, and we’ll provide a clear migration path if any action is needed on your part. You can expect a follow up soon, however our goal is to do this with 0 downtime or impact to you if possible. + +- **Will anything else change that impacts me?** + + Modrinth Servers will remain the same great experience its has been, you likely won’t notice any changes right away. Long term, this means we’ll be able to improve both the stability of servers as well as the features that make managing your server a breeze. + +This is an exciting step toward a future where Modrinth is the go-to destination for Java Minecraft players—not just for mods and mod-packs, but for hosting and playing too. We appreciate your support and can’t wait to share more soon! diff --git a/packages/blog/articles/accelerating-development.md b/packages/blog/articles/accelerating-development.md new file mode 100644 index 000000000..aa848569f --- /dev/null +++ b/packages/blog/articles/accelerating-development.md @@ -0,0 +1,61 @@ +--- +title: Accelerating Modrinth's Development +summary: Our fundraiser and the future of Modrinth! +date: 2023-02-01T12:00:00-08:00 +authors: ['MpxzqsyW', 'Dc7EYhxG', '6plzAzU4'] +--- + +**Update: On [April 4, 2024](/news/article/capital-return) we announced that we had returned the remaining $800k in investor capital back to our investors to take a different path. [Read that announcement here](/news/article/capital-return). This article remains here for archival purposes.** + +--- + +There are over 3 billion gamers worldwide, but only a small fraction ever go further and mod the games they play. Modrinth is here to bring modding to every player on the planet—all the while allowing mod creators to make a living off of it. + +Since our founding in 2020 and up until a few months ago, Modrinth has been a purely volunteer project. In the past couple months, the Modrinth team has been more productive than ever. We've released the [Anniversary Update](../two-years-of-modrinth), we're actively working on the launcher once more, and we're laying out plans for how to multiply Modrinth creator payouts. + +The vision we have for the future of Modrinth is great, and right alongside that is the need for an amazing team to build out this vision. That's why we [recently announced](https://x.com/modrinth/status/1615416957905342472) that [we're hiring](https://careers.modrinth.com)—we've already come so far on just volunteer work, but for Modrinth to be sustainable and for its growth to be sustainable, we need to pick up the pace. + +That's why we're excited to announce that we've raised a pre-seed round of funding led by [Makers Fund](https://www.makersfund.com/), with investors including [Ryan Johnson](https://x.com/ryanmjohnson), [Stephen Cole](https://x.com/sthenc), [Pim de Witte](https://x.com/PimDeWitte), [Chris Lee](https://www.linkedin.com/in/leechris1/), and [Andreas Thorstensson](https://x.com/andreas) to accelerate development and expand to new horizons for Modrinth. + +## What's next? + +We're thrilled to keep on building and iterating on Modrinth over the next few years. Here's a look into what we have in store over the next few months for Modrinth: + +- A feature-packed launcher +- Creator organizations (like GitHub), wikis, graphs (with playtime, views, downloads, etc) +- More creator payouts, through the growth of Adrinth +- Discovery/recommendation of mods (especially up-and-coming content) +- Comments (with built-in moderation and spam protection) +- \[Redacted] + +Support for new games! + +We are excited that we are able to build a product that will manage to grow us to sustainability and create the best modding experience for creators and users. Being able to pay ourselves and bring on new people is a big step in making that happen. There is still a lot to do, so let's get to it! + +## Q&A: + +We know there might be some concerns so we included a short Q&A section below for some common ones. Feel free to ask in our [Discord](https://discord.modrinth.com) if you have any more questions! + +### Why does Modrinth need funding? + +Our main expense is and will continue to be salaries. The labor cost has always been the main bottleneck for Modrinth. Having paid employees will allow us to develop Modrinth faster, bringing Modrinth to a point of sustainability and growing the platform. For example, we're planning to release our launcher this year, and eventually we're hoping to expand into more games. Those won't be possible without having paid employees. + +### Is Modrinth still community-first? + +We started and always will have the goal of creating a community-oriented, open-source modding platform. Simply put, there isn't any reason for us not to be. It's clear that the previous impersonal, corporate approaches to video game modding have not worked, and Modrinth is excited to change that. + +### Will Modrinth still be open-source? + +Yes! We are committed to having all (when possible) our current code and future code we write to be open-source. Copyright is held by the contributors as we have no [CLA](https://en.wikipedia.org/wiki/Contributor_License_Agreement), so we cannot make it closed-source (even if we wanted to) without, well, violating the law. + +### Who's behind Modrinth? + +The Modrinth team (currently consisting of Prospector, Emma, and Geometrically) is behind Modrinth. We've been modding Minecraft for years, with connections extending back to grade school. Investors have a minority stake in the company, and have no control or say in our decisions. + +### Is Modrinth going to adopt web3/cryptocurrency? + +No. We have no plans to adopt or explore web3 for Modrinth. + +### Will investment money be used to fund creator payouts? + +Not directly. Hiring more people will allow us to build up the infrastructure that can increase payouts, but the money we pay out to creators will always come from sustainable sources such as advertising and never from investment funds. diff --git a/packages/blog/articles/becoming-sustainable.md b/packages/blog/articles/becoming-sustainable.md new file mode 100644 index 000000000..05fc03364 --- /dev/null +++ b/packages/blog/articles/becoming-sustainable.md @@ -0,0 +1,38 @@ +--- +title: Quintupling Creator Revenue and Becoming Sustainable +short_title: Becoming Sustainable +summary: Announcing an update to our monetization program, creator split, and more! +short_summary: Announcing 5x creator revenue and updates to the monetization program. +date: 2024-09-13T12:00:00-08:00 +authors: ['MpxzqsyW', 'Dc7EYhxG'] +--- + +Just over 3 weeks ago, we [launched](/news/article/introducing-modrinth-refreshed-site-look-new-advertising-system) our new ads powered by [Aditude](https://www.aditude.com/). These ads have allowed us to improve creator revenue drastically and become sustainable. Read on for more info! + +## Creator Revenue + +We’re excited to share we have been able to increase creator revenue by 5-8x what it was before! + +There’s a couple changes to how revenue is distributed out to creators coming with this increase. + +First, revenue is no longer entirely paid out the day they are earned. Previously, we used our own in-house advertisement deal which paid us in advance for the entire month, and we divided that among each day in the month, as the month progressed. With the switch to a more traditional ad network, we are paid on a NET 60 basis, which is fairly standard with ad networks. What this means is that some of your revenue may be pending until the ad network pays us out. Exactly how this works is explained further [here](legal/cmp-info#pending). + +Second, the revenue split between Modrinth and Creators has changed. See the next section on sustainability for more on this. + +![Some creators have wondered if the new revenue is a bug because it’s gone up so much!](./abnormally-high-revenue.webp) + +## Becoming Sustainable + +We have updated the Modrinth creator revenue split from 90/10 to 75/25. However, all of the increases listed above are with the new rate included, so while the percentage is lower, the overall revenue is much, much higher. + +While 90% is a more remarkable figure, we changed it in order to ensure we can keep running Modrinth and continue to grow creator revenue without having to worry about losing money on operational costs. + +Through these changes, we are proud to announce Modrinth is now fully sustainable with the new income, with all hosting and operational costs accounted for (including paying our developers, moderators, and support staff!) With the new revenue, users will see reduced support times and we will be able to ship bigger and better updates quicker to you all! + +In an effort to be more transparent with our community than ever before, we are opening up as many of our finances as possible so you all can know how we’re doing and where all the money is going. We’re working to develop a transparency page on our website for you to view all the graphs and numbers, but it wasn’t ready in time for this blog post (for now, you can view our site-wide ad revenue in the API [here](https://api.modrinth.com/v3/payout/platform_revenue). We also plan to publish monthly transparency reports with more details about our revenue and expenses, the first of which should be available in early October, so keep an eye out for that. + +For now, we can tell you that creators on Modrinth have earned a total of $160,868 on Modrinth to date (as of September 13, 2024), and here’s a graph of our revenue from the past 30 days: + +![Modrinth Advertising Revenue (last 30 days)](./revenue.webp) + +We have a lot of exciting things coming up still, and of course, we greatly appreciate all of your support! diff --git a/packages/blog/articles/capital-return.md b/packages/blog/articles/capital-return.md new file mode 100644 index 000000000..5b9efafb4 --- /dev/null +++ b/packages/blog/articles/capital-return.md @@ -0,0 +1,49 @@ +--- +title: A Sustainable Path Forward for Modrinth +summary: Our capital return and what’s next. +date: 2024-04-04T12:00:00-08:00 +authors: ['MpxzqsyW'] +--- + +Over three years ago, I started Modrinth: a new Minecraft modding platform built on community principles, a fully open-source codebase, and a focus on creators. + +What started as a hobby project quickly grew into something much bigger, with over twelve thousand creators and millions of players modding their game with Modrinth! Running Modrinth quickly evolved into a full-time job as we worked to scale the platform, develop new features, and fix bugs. + +As our small project that originated in the Fabric Discord server started to get more and more serious, we decided to seek funding to accelerate growth and keep up with the competition. A year and a half ago, we raised a $1.2 million [pre-seed round](/news/article/accelerating-development) of investor capital. With the money, we hired full-time developers and part-time community members, some of whom have supported Modrinth since the very beginning. With all this support, we launched creator monetization, authentication, analytics, organizations, collections, the Modrinth App, and support for more project types, growing Modrinth’s user base fifteen-fold! + +But, this rapid growth came at some costs. We let sustainable infrastructure for moderation slip to the back-burner since we could just hire extra moderators to compensate, and more and more of my time as the founder was taken up by things that didn’t make Modrinth better. Bugs and technical debt also gradually infected our codebase as we focused on hyper-growth over maintenance. + +Alongside this, as we looked more into the future, we saw that the venture-backed cycle wouldn’t be the right path for Modrinth. Every investor invests in a company with the expectation of a return on their investment, and while all of our backers have been incredibly supportive, we wanted to be able to work on Modrinth at our own pace and terms. We’ve seen other companies in this space prioritize profits and growth at the expense of the community and creators, and we didn’t want this to happen to Modrinth. + +In short, forgoing the venture route would allow us to build Modrinth independently at a sustainable pace and put our creators, community, open-source nature, and values first, without having to worry about expectations of profit or growth. + +In the end, as of February 1st, 2024, I decided to return $800k in remaining investor capital back to our investors. + +This decision was not an easy one, as without this funding, we would be unable to support the Modrinth team as it previously existed. With this reality, I made the difficult decision to significantly reduce the size of our team to match our goals of sustainable growth. + +I also owe a huge debt of gratitude to everyone on the team affected by all of this–Emma, Wyatt, Maya, Coolbot, Jade, Carter, and Prospector–for everything they have done to help make Modrinth what it is today. + +I want to take a moment to highlight each of their contributions: + +- Emma was our lead moderator, social media manager, overall marketing lead, blog post writer, documentation maintainer, Minotaur maintainer, and support manager since joining the team in April 2021 +- Wyatt was a full-time backend developer that worked on our authentication system, analytics, collections, organizations, and tons of work on API v3, and more, since joining the team in February 2023 +- Maya was our first exclusive moderator hire, and despite a rough onboarding due to a lack of internal documentation and procedures on our side, had reviewed thousands of projects since joining the team in April 2023 +- Coolbot was another one of our moderators who especially helped us establish new procedures and improved internal documentation for moderators and had also reviewed thousands of projects since they joined the team in August 2023 +- Jade was also a moderator and had reviewed thousands of projects since joining the team in August 2023 +- Carter was a full-time frontend developer that worked on OAuth, analytics, collections, organizations, and more, since joining the team in October 2023 +- Prospector is our frontend developer and lead designer, who has been with us since September 2020 and has spearheaded multiple site redesigns, developed the frontend for core parts of the site, and more + +This transition was challenging, causing significant delays in project reviews and support ticket resolution, not to mention the stress for the former team. While project review and support times have returned to normal, this was not the experience we wanted for our creators or users to have. I sincerely apologize that you all had to experience this transition, and I wish that it had been executed more smoothly. + +I would also like to apologize for how long this post has taken to come out. It took longer than I expected to do all the legal work and coordination necessary to return the remaining money to the investors, but it has finally been finished. + +Going forward, we will be continuing to build a platform that is sustainable for both the creators and all the people who work on making the platform what it is. Hosting Modrinth is already sustainable, and we are working to make developing Modrinth sustainable as well. + +We’ve made great strides in this already with new moderation infrastructure including AutoMod and a built-in moderator checklist, greatly reducing moderator time per project. We’re also focused on increased transparency, through providing consistent updates on Modrinth’s development and making it easier to contribute to Modrinth with better documentation and contribution cycle. + +We started Modrinth to serve the community, and are taking this path so we can continue to. We hope you all will continue to support us as the newly independent Modrinth. + +— + +**Jai (aka Geometrically)** +Founder of Modrinth diff --git a/packages/blog/articles/carbon-ads.md b/packages/blog/articles/carbon-ads.md new file mode 100644 index 000000000..191c657ce --- /dev/null +++ b/packages/blog/articles/carbon-ads.md @@ -0,0 +1,70 @@ +--- +title: Modrinth's Carbon Ads experiment +summary: 'Experimenting with a different ad providers to find one which one works for us.' +date: 2022-09-08 +authors: ['6plzAzU4'] +--- + +**Update 10/24:** A month and a half ago we began testing Carbon Ads on Modrinth, and in the end, using Carbon did not work out. After disabling ads with tracking in them, the revenue was about equal to or worse than what we were generating previously with EthicalAds. Effective today, we are switching our ads provider back to EthicalAds for the time being. + +As a step towards implementing author payouts, we're experimenting with a couple different ad providers to see which one works the best for us. We've been using [EthicalAds](https://www.ethicalads.io/) for a long time now, but we'd like to now try out [CarbonAds](https://www.carbonads.net/). + +In most respects, this is a temporary experiment, but we're hoping that Carbon will become our primary ad provider in the near future. + +Over the past week and a half, we've garnered a lot of useful feedback in the `#devlog` channel of [our Discord](https://discord.gg/EUHuJHt). Over those 1,300 or so messages of open discussion and debate, there were also a lot of questions, concerns, and misconceptions. This blog post aims to address the most frequent of those. + +## FAQ + +### Is Carbon GDPR and CCPA compliant? + +Yes. This was confirmed to us via email by a Carbon representative. + +### Are the ads intrusive? + +No. They fall under the [Acceptable Ads Standard](https://acceptableads.com/standard/); that is, there is only ever one per page, they are less than 120 pixels tall, and they are separate and distinguishable from actual site content. + +### Where did the privacy settings go? + +Alongside the introduction of Carbon, we have removed the privacy settings that we previously had. These privacy settings controlled whether PII would be sent in our internal analytics and whether you wanted personalized ads to show up. Our analytics do not contain PII and Modrinth does not show personalized ads. Both of those would be intense breaches of your privacy, opt-in or not, and Modrinth intends to respect your privacy. + +### Why are you switching before you've released payouts? + +We have been using [ariadne](https://github.com/modrinth/ariadne) to take note of page views and ad revenue since August 1st, 2022. While creator payouts cannot yet be claimed, all ad revenue from this date forward will be claimable once payouts are released! + +Payouts are not yet done, but this switch is one of the largest things that needs to be done prior to its release. + +### Why does Modrinth need to switch away from Ethical? + +There are quite a number of reasons why it's not feasible for us to continue using Ethical. In order to be fully transparent, let's go into detail about each of them. + +#### In-house ads + +Over half of the ads shown by Ethical are their so-called "in-house ads". That is, Ethical does not have enough inventory to always be showing an ad, so instead it shows an advertisement for itself. These self-advertisements make a whopping $0 for Modrinth. + +Ethical does provide an option to replace these self-advertisements with our own fallback ads, which we've done for the past month or so. However, negotiating those sorts of deals takes an excruciating amount of time, time that we would rather be spending on developing Modrinth to make it better. + +Carbon allows us to have a more hands-off approach with advertising, which is most ideal for us right now. + +#### Poor CPM + +Ethical gives us an average of $0.24 for every thousand page views (also known as CPM) after taking into account the aforementioned in-house ads. Anyone who knows anything about the advertising business knows that this figure is abysmally low. With Modrinth getting over four million page views in a month's timespan, we make an average of less than $1000 per month with Ethical. This simply isn't sustainable for the thousands of creators on Modrinth. + +While we can't quite be sure what our CPM with Carbon will be -- again, this is only a temporary experiment for now -- we have reason to believe that it will be considerably greater than what Ethical can provide. + +#### Network in decline + +Over the time that Modrinth has used Ethical, we have found that the diversity of the advertisers shown has declined at a rate greater than is sustainable. The vast majority of the ads shown by Ethical, excluding its in-house ads, are for DigitalOcean. If DigitalOcean decided to withdraw from Ethical, that would end up toppling our entire system. Modrinth's payouts simply cannot rest on this house of cards if we wish to grow in any capacity. + +### Can I still use my adblocker? + +You are still able to access Modrinth using an adblocker, and Modrinth will not force you to disable it to access the site. However, Modrinth's ads are unintrusive and take up no more space than it would otherwise. + +When you turn off your adblocker for Modrinth, you are supporting both Modrinth and its creators in the process. 100% of the ad revenue from creator pages, including projects, versions, and users, go directly to creators. The ad revenue from other pages, including search, pay for Modrinth's upkeep costs and allow us to continue to exist. + +For the benefit of everyone involved, we humbly request that you turn off your adblocker for Modrinth. We have a full guide for how to turn off your adblocker located [on our docs site](https://docs.modrinth.com/docs/details/carbon/). + +## Conclusion + +In conclusion, we hope you're as excited about our upcoming release of payouts as we are. Exploring our options for ad providers is quintessential if we wish to be sustainable for payouts, and the best time to do this is now. As always, though, no release ETAs! + +Please note that this blog post was not editorialized or reviewed by Carbon prior to publishing. These are the findings and words of Modrinth and Modrinth alone. What's said here about CPMs and other statistics will not be true of other sites, but they are true for Modrinth. diff --git a/packages/blog/articles/creator-monetization.md b/packages/blog/articles/creator-monetization.md new file mode 100644 index 000000000..a68ac03ff --- /dev/null +++ b/packages/blog/articles/creator-monetization.md @@ -0,0 +1,62 @@ +--- +title: Creators can now make money on Modrinth! +summary: 'Introducing the Creator Monetization Program allowing creators to earn revenue from their projects.' +date: 2022-11-12 +authors: ['6plzAzU4'] +--- + +Yes, you read the title correctly: Modrinth's Creator Monetization Program, also known as payouts, is now in an open beta phase. All of the money that project owners have earned since August 1st is available to claim **right now**! + +This includes even projects other than mods! Modpacks, plugins, and resource packs also generate payouts for creators to claim. + +Alongside this, the frontend also got a facelift across the entire site, most notably on the settings, notifications, and user profile pages. + +## Motivation + +Since the start, Modrinth has been a platform created by Minecraft content creators for Minecraft content creators. Allowing creators to earn a bit of money for their hard work and dedication to their content has been a goal since we started, and we are so incredibly ecstatic to finally be able to release this for everyone. + +Whether it's used for buying coffee, paying for server costs, or to get that luxury pair of socks, we hope that creators will be able to use their payouts on whatever keeps them running. We want to encourage creators to keep making content for everyone to enjoy, with the hope that everyone will eventually be able to call Modrinth their go-to destination for Minecraft modded content. + +## How it works + +For every project uploaded to Modrinth, we keep track of its page views and downloads through an internal system we call [ariadne](https://github.com/modrinth/ariadne). Through our payouts algorithm ([source code](https://github.com/modrinth/labrinth/blob/master/src/routes/admin.rs#L95)), we distribute 100% of ad revenue earned from creator pages to the creators behind these projects. Project owners can decide how to split it (or how not to split it) between their team members. + +Modpacks are a bit different, with revenue split 80% to the Modrinth dependencies on the pack and 20% to the modpack author. This split is subject to change and will be evaluated periodically to ensure the split is reasonably fair. + +After taking the search pages into account, around 10% of the site's ad revenue ends up going to us, mainly to cover hosting and personnel expenses, and 90% to creators. + +While payouts will be small at first, we're working on improving our ads system to better fund the program. We've also got big projects coming soon to continue our trajectory of making the monetization program and the site better! + +## How do I earn money? + +When a project of yours on Modrinth gets approved, you are automatically enrolled into the program. You will start to incur a balance, which you can view from the [Monetization dashboard](https://modrinth.com/dashboard). You can claim your first payout via PayPal or Venmo as soon as you enter your credentials and have the minimum balance of 0.26 USD. + +Even though the minimum is low, you will want to wait some time to allow your balance to build up before claiming. Each payment processor has its own fees which depend upon whether you're within the United States, which are detailed on the dashboard's [revenue tab](https://modrinth.com/dashboard/revenue). + +Once you request a transfer, you may have to confirm the transfer via email if you don't already have a PayPal account. If you do not confirm using the link in the email within 30 days, or the transfer fails for whatever reason, the amount requested will be returned to your Modrinth balance, though the processor's fees may already have been deducted by that point. + +### For residents outside the United States + +Since Modrinth is a US-based company, all amounts are stored, displayed, and paid out in US dollars. PayPal will convert the amount to your local currency once you begin the process of transferring from your Modrinth balance to your PayPal account. + +We're aware of some extenuating circumstances for creators living in areas affected by geopolitical conflict. As such, we are looking into alternative ways to allow payouts to continue in these regions. + +At the moment, there are no mechanisms in place to make your Modrinth balance expire after some time, though this is likely to be added in the future for creators who do not claim their balance after several years. Rest assured, we will have processes in place to make sure that your money doesn't go poof just because you weren't able to claim it in time. + +## Frontend facelift + +The website frontend has had some "small" changes of around 12,322 lines of code to accommodate payouts and many other changes. Many of these changes were inspired by the experiments done on the SvelteKit Rewrite, progress on which is paused for the time being. Navigate around the main site for a bit to discover some of these changes! Highlights include: + +- Improved project creation and report filing workflow via modals +- Improved 404 page +- Deduplicate identical version changelogs +- Cleaner user profile pages +- Easier to navigate settings and notifications +- Spacing, font, and accessibility tweaks +- And plenty more! + +## Conclusion + +This is a jam-packed update, and it would be impossible to list all the changes in this post. Feel free to explore the site, claim your funds, and give us feedback on [Discord](https://discord.modrinth.com). If you suspect you've found any critical bugs or exploits, please email us immediately at [support@modrinth.com](mailto:support@modrinth.com) - otherwise, for non-critical bugs, report them [on GitHub](https://github.com/modrinth). + +👑 diff --git a/packages/blog/articles/creator-update.md b/packages/blog/articles/creator-update.md new file mode 100644 index 000000000..78846ca4a --- /dev/null +++ b/packages/blog/articles/creator-update.md @@ -0,0 +1,99 @@ +--- +title: 'Creator Update: Analytics, Organizations, Collections, and more' +short_title: The Creator Update +summary: December may be over, but we’re not done giving gifts. +short_summary: Adding analytics, orgs, collections, and more! +date: 2024-01-06T12:00:00-08:00 +authors: ['6plzAzU4'] +--- + +December may be over, but that doesn’t mean we’re done giving gifts here at Modrinth. Over the past few months, we’ve been cooking up a whole bunch of new features for everyone to enjoy. Now seems like as good of a time as ever to bring you our Creator Update! Buckle up, because this is a big one. + +The headlining features include: + +- **Analytics** - Allowing Modrinth creators to see statistics from their projects. +- **Organizations** - Better tools to manage shared ownership over multiple projects. +- **Collections** - A system for putting together shared sets of projects, similar to Spotify playlists. +- **New payouts system** - Updates to the existing Creator Monetization Program to better serve creators around the world. +- **New Markdown editor** - Explore a complete reworking of our text editor, making it easy even for those unfamiliar with Markdown. +- **OAuth integrations** - Our own implementation of the OAuth specification, allowing external applications to “log in with Modrinth”. + +## Analytics + +The long-awaited addition of **analytics** is here for creators! You can view analytics over time for your projects, including downloads, page views, and revenue, all in an effortlessly easy-to-use dashboard. + +![The analytics for a project, showing downloads, page views, and revenue, with a breakdown by country.](./project-analytics.jpg) + +![A screenshot of the analytics for a user, showing multiple different projects.](./user-analytics.jpg) + +The data for analytics have been collected over the course of many months. In fact, the data for revenue goes all the way back to August 2022, and the data for downloads and views back to February 2023. + +You can view the analytics for an individual project by going to the settings and clicking “Analytics”. You can view analytics for all of your projects in [the analytics dashboard](/dashboard/analytics). + +## Organizations + +Isn’t managing permissions across a bunch of different projects pretty tedious? We sure thought so. Just like on GitHub, you can now create organizations on Modrinth to manage permissions across multiple projects. + +![A screenshot of the organizations section of the Modrinth dashboard.](./organizations.jpg) + +You can create organizations from the [organizations dashboard](/dashboard/organizations). Each organization has a name, a brief summary, and an icon. Just like project members, organization members have a role, a monetization weight, and project permissions, plus permissions for the organization as a whole. Roles, monetization weights, and project permissions can be overridden on a per-project basis. + +![A screenshot of a user page, with two organizations shown at the very bottom.](./user-orgs.jpg) + +Unlike GitHub, usernames and organization names on Modrinth do not conflict with one another. If you want to have an organization named after yourself, feel free to do so! + +## Collections + +Just like how Spotify has playlists or how Goodreads has shelves, Modrinth now has collections! Collections are lists of Modrinth projects put together for a common purpose. You can then share these collections with others to view. + +![A screenshot of the Project Odyssey suite of mods as a collection.](./collections.jpg) + +Your [followed projects](/collection/following) now make up an automatically generated private collection, which you can access from the [“Your collections” section of the dashboard](/dashboard/collections). + +### Wait… aren’t those just modpacks? + +Not quite! Modpacks are much more complex than collections. Collections are simply lists of projects. Here’s a quick comparison: + +| Modpacks | Collections | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | +| Created through a launcher, such as the [Modrinth App](/app). | Created on the [Modrinth website](/dashboard/collections). | +| Contains options files, configuration files, and optionally files from outside of Modrinth, wrapped together in a `.mrpack` file. | Contains a list of Modrinth projects (mods, plugins, data packs, resource packs, shaders, and modpacks). | +| Has individual releases with version history. | Instantly updates whenever a project is added or removed. | +| Must be reviewed by Modrinth’s staff and approved per [Modrinth’s rules](/legal/rules) before it can be published. | Does **not** need to be reviewed by Modrinth’s staff. Can go public at any time. | +| After approval, can be **listed** in search, **archived**, **unlisted**, or **private**. | Can be **public** (shows up on your Modrinth profile), **unlisted** (only accessible by direct URL), or **private** (only you can access it). | + +All in all, collections are handy for easily grouping together and sharing Modrinth projects. If you’re bored on the subway heading home, you can look for new mods on your phone and quickly add them to a Modrinth collection. However, for many use cases, spending the time to create a modpack might make more sense. Collections and modpacks are both here to stay—one is not going to replace the other. + +## New payouts system + +PayPal and Venmo are so 2023. To enter 2024, we are adding support for a bunch of different new payout methods, including ACH (available for direct transfer to a United States bank account) and a couple thousand gift cards. You know, just “a few”. + +![The withdrawal screen, with PayPal, Venmo, ACH, Visa, and a preview of two of the available options for the United States (AMC and Airbnb)](./payouts.jpg) + +Whether you want Applebee’s in America, Boek & Bladkado in Belgium, or Cineplex in Canada, we’ve got them all and plenty more. Prepaid Visa cards, Amazon gift cards, and Steam gift cards are among the available options. Does anyone want a Home Depot gift card? We’ve got those, too. + +## New Markdown editor + +For the longest time, Modrinth’s text editor for descriptions, changelogs, reports, and more has just been a box to enter [Markdown syntax](https://en.wikipedia.org/wiki/Markdown). What about people who don’t know Markdown, though? Even for those who do, writing it out by hand gets tedious after a while. That’s why we rebuilt it from the ground up to make it far easier to use. + + + +Among its features are standard shortcuts (like `Ctrl+B` for **bold**), a monospace font in the editor itself, and buttons for inserting headers, basic formatting, lists, spoilers, block quotes, links, images, and YouTube videos. + +Using the image button, you can also now upload images directly, instead of having to use an external host or the Gallery tab of a project. You can still insert images from outside sources, though certain sources (such as the Discord CDN) are blocked. We will notify authors using these blocked sources to replace the images. + +## OAuth integrations + +Wouldn’t it be nice if other websites or apps could add a “Sign in with Modrinth” feature? We asked ourselves this and thought, yes, it would be nice to add. So we added it. + +The [OAuth2 protocol](https://en.wikipedia.org/wiki/OAuth) allows other services to gain a limited amount of access to your Modrinth account without compromising your login information. Maybe you want to create your own analytics dashboard? Or maybe you want to make your own way to add content to collections? How about connecting organization permissions to roles in a Discord server? The possibilities are endless. + +![A screenshot of an OAuth app requesting permission to your user profile.](./oauth.jpg) + +You can create a new OAuth application in the [Applications](/settings/applications) section of your settings. You can see which applications you’ve granted access to in the [Authorizations](/settings/authorizations) section. + +## Conclusion + +Want to hear more from us on a regular basis? Check us out on our social media pages; we post often on both [Mastodon](https://floss.social/@modrinth) and [X/Twitter](https://twitter.com/modrinth). You can also chat with us on [Discord](https://discord.modrinth.com) if you like that. + +Thanks to [intergrav](https://github.com/intergrav) for making the banner image. diff --git a/packages/blog/articles/creator-updates-july-2025.md b/packages/blog/articles/creator-updates-july-2025.md new file mode 100644 index 000000000..cf0c914ec --- /dev/null +++ b/packages/blog/articles/creator-updates-july-2025.md @@ -0,0 +1,38 @@ +--- +title: Creator Updates, July 2025 +summary: Addressing recent growth and growing pains that have been affecting creators. +date: 2025-07-01T21:20:00-07:00 +authors: ['MpxzqsyW'] +--- + +Hey all, + +The last few months have been quite hectic for Modrinth. We've experienced all-time highs in both traffic and new creators and have outgrown a lot of our existing systems, which has led to a lot of issues plaguing creators, especially. + +The team has been super hard at work at this, and I'm really glad to announce that we've fixed most of these issues long term. + +1. **Upload issues (inputs not showing up, instability, etc)** + + We've tracked these issues down to conflicting code between our ad provider and Modrinth's. For now, we've **disabled ads for all logged in users across the site** while we work on resolving these long term. Both web users and logged-in web users make a very small percentage of our ad revenue (7% for web and 0.05% for logged-in web users) so creators should see a very minimal revenue drop from this, and have a much better experience navigating and uploading to the site. + +2. **Moderation and report response times** + + Creators have had to wait, in some cases, weeks to get their projects reviewed. This is unacceptable on our part and we are actively overhauling our moderation tooling to improve the moderation experience (and lowering time spent per project). We've also hired 3 additional moderators/support staff (**bringing our total to 7 and the total team to 17 people!**). We're hoping to see a significant reduction in queue times over the coming weeks. + +3. **Ad revenue instability** + + While ad revenue is generally out of our control and tends to fluctuate a lot, on June 4th we noticed a sharp decrease in creator revenue (~35% less than normal levels). While our ad provider initially thought this was a display issue, after further inquiry there were 2 causes: 1) Google AdExchange falsely flagging our traffic as invalid 2) Amazon banning many gaming publishers from their network [due to panic in the gaming ads space](https://www.adweek.com/media/exclusive-ads-from-verizon-shell-and-others-ran-next-to-explicit-videos-on-top-android-app/). While the Amazon ban is now resolved, we no longer are running Google AdExchange in the desktop app due to invalid traffic issues. This will lead to a permanent revenue decrease (AdX contributed to ~20% of our ad revenue). We also updated our prebid version (the underlying tech used to run ad auctions) which has shown a measurable increase, bringing revenue back to "normal" levels. Overall, we are closely monitoring and will keep you all posted. However, despite all the issues, due to some end-of-quarter campaigns, **revenue in June was an all time high, at $227k ($170k paid to creators)**! + +4. **Payout outages** + + Creators should be able to withdraw their revenue at all times, but due to slow PayPal clearing times and poor planning by us, we've had multiple week long outages in withdrawals. While we do store funds 1:1, these "outages" happen because we primarily store creator funds in an FDIC-insured bank account, as we wouldn't want a PayPal/Tremendous account suspension to cause creators to lose funds. We've now set up internal reporting which should never cause this to happen again (or, if it does, drastically reduce the time payout outages happen) + +5. **Platform Revenue Route** + + Due to some unannounced breaking changes in Aditude's API, the platform revenue API was broken. It is now [working](https://api.modrinth.com/v3/payout/platform_revenue). You can also use `start` and `end` fields to filter any date range! + +6. **API and Uptime** + + We've migrated our infrastructure for the website, app, and servers to OVH over our existing non-redundant AWS system. We've hit 99.96% uptime on our API and 99.98% on Modrinth Servers! + +Thank you all for your patience! If you are having any more issues or have any questions about all of this, feel free to DM @geometrically on Discord or [start a support chat](https://support.modrinth.com) and we will be happy to help! diff --git a/packages/blog/articles/design-refresh.md b/packages/blog/articles/design-refresh.md new file mode 100644 index 000000000..ac9ff877f --- /dev/null +++ b/packages/blog/articles/design-refresh.md @@ -0,0 +1,78 @@ +--- +title: Introducing Modrinth+, a refreshed site look, and a new advertising system! +short_title: Modrinth+ and New Ads +summary: Learn about this major update to Modrinth. +short_summary: Introducing a new ad system, a subscription to remove ads, and a redesign of the website! +date: 2024-08-21T12:00:00-08:00 +authors: ['MpxzqsyW', 'Dc7EYhxG'] +--- + +We’ve got a big launch with tons of new stuff today and some important updates about Modrinth. Read on, because we have a lot to cover! + +## Modrinth+ + +First off, we’re launching [Modrinth+](/plus), a monthly subscription to help support Modrinth and all of the creators on it directly! + +As a Modrinth+ subscriber, you will get: + +- Ad-free browsing on the Modrinth App and website +- An exclusive badge on your profile +- Half of your subscription will go to creators on the site! +- …and more coming soon! + +Pricing starts at $5/month, with discounts depending on what region you live in and if you opt for an annual plan. + +We created Modrinth+ so people could help support Modrinth and creators on the site. We have no plans to paywall any content on Modrinth, and creator features will never cost money. We started Modrinth as a free and open-source platform, and we intend to keep it that way. + +If you do have a few extra dollars a month and want to help support Modrinth, this is a great way to do it! + +## New Site Design: Stage One + +We’re launching Stage One of Modrinth’s refreshed look to Modrinth.com today as well. I want to stress that it’s not fully complete and we’re going to be continuing to refine and finish updating the rest of the pages over the coming weeks. However, it has enough significant usability improvements and new features that we’re launching it broadly now. Please bear with us while we work to complete it promptly! + +![A screenshot of the new project page](./project-page.webp) + +Key new features include: + +- **New download interface** to ensure users get the correct version for the Minecraft version and mod loader they’re using +- **New versions list** page built from the ground up with a clean new look and tons of shortcuts to make navigation easier +- **New “compatibility” widget** on project pages to see what game versions, platforms, and environments each mod supports at a glance +- **Exclusion filters** in search pages +- Improved support for **vertical desktop displays** + +We know there will be some minor hiccups and disruptions of workflows, but we’d really appreciate it if you could gently let us know how a particular change has affected you on GitHub [here](https://github.com/modrinth/code/issues) (or upvote/comment on an existing issue) rather than declaring it’s the end of the world. + +## New Advertising + +In the last few months, Modrinth has grown an incredible amount. We are now serving over a petabyte of data per month (that is, 1,000 terabytes!) to over 20 million unique IP addresses. It’s almost unfathomable how large we have become since we started from nothing just four years ago. + +However, with growth like this, our costs have also grown drastically—primarily in bandwidth. This, unfortunately, means that we’ve grown well beyond what a single advertiser could support. + +Our original plan was to build out our own ad network (Adrinth) where we could cut out the middleman and provide highly targeted ads without the need for tracking to our gaming-specific audience. Unfortunately, we’ve grown too quickly (a very good problem to have!) and don’t have the immediate resources to do this at this time. + +This leaves us with no choice but to switch to a more traditional programmatic ads setup powered by [Aditude](https://www.aditude.com/) for the time being. We're not making this decision lightly, and we understand that some folks will not be happy about this change. Rest assured, we've made sure that our new ad network partner meets our requirements, such as compliance with all local regulations such as GDPR and CCPA, and that the new ads remain as unobstructive as possible with this format. + +These changes bring Modrinth back to sustainability as well as conservatively increasing creator revenue by three-fold! Along with paying hosting bills, the new income will also be used for more support staff and paid team members, decreasing ticket time and speeding up our development. + +We also want to thank our friends over at [BisectHosting](https://www.bisecthosting.com/) for supporting us with our ad deal for the past year. + +## Modrinth App 0.8.1 + +Over the last few months, we’ve been overhauling the internals of the Modrinth App to drastically improve performance and stability. Over one hundred issues have been closed with this update alone! Here’s a short list of the major changes: + +- Newer versions of Forge and NeoForge now work! +- Migrated internal launcher data to use SQLite. The app now loads in <40ms on average (compared to ~2.5s before)! +- Fixed issues where profiles could disappear in the UI +- Fixed random cases of the UI freezing up during actions +- Fixed directory changes being very inconsistent +- Drastically improved offline mode +- Fix freezing and include crash reports logs tab +- And over one hundred more fixes! + +Don’t have the Modrinth App? Check it out [here](/app)! + +## Conclusion + +Want to hear more from us on a regular basis? Check us out on our social media pages; we post often on both [Mastodon](https://floss.social/@modrinth) and [X/Twitter](https://twitter.com/modrinth). You can also chat with us on [Discord](https://discord.modrinth.com) if you like that. + +Thanks to [intergrav](https://github.com/intergrav) for making the banner image. diff --git a/packages/blog/articles/download-adjustment.md b/packages/blog/articles/download-adjustment.md new file mode 100644 index 000000000..9c3393ca6 --- /dev/null +++ b/packages/blog/articles/download-adjustment.md @@ -0,0 +1,43 @@ +--- +title: Correcting Inflated Download Counts due to Rate Limiting Issue +short_title: Correcting Inflated Download Counts +summary: A rate limiting issue caused inflated download counts in certain countries. +date: 2023-11-10T12:00:00-08:00 +authors: ['6plzAzU4', 'MpxzqsyW'] +--- + +While working on the upcoming analytics update for Modrinth, our team found an issue leading to higher download counts from specific countries. This was caused by an oversight with regards to rate limiting, or in other words, certain files being downloaded over and over again. **Importantly, this did not affect creator payouts**; only our analytics. Approximately 15.4% of Modrinth downloads were found to be over-counted. These duplicates have been identified and are being removed from project download counts and analytics. Read on to learn about the cause of this error and how we fixed it. + +A graph of many Modrinth projects and their download counts, showing a disproportionate amount of downloads from China. + +![Notice anything out of the ordinary?](./country-download-counts.jpg) + +More specifically, the issue we encountered is that the download counts from China were through the roof compared to the page view statistics. + +![A graph of many Modrinth projects and their page views, showing a relatively even distribution across countries.](./country-page-views.jpg) + +Upon further investigation, there was one specific launcher that was repeatedly downloading the same files from Modrinth over and over again within a very short time span. + +![A table of downloads split into several parts.](./downloads-table.jpg) + +Notice how the downloads in each section (delineated by the bold line) have the same path and were created within the same second. + +This, to say the least, baffled us. We already had code called [Sisyphus](https://github.com/modrinth/sisyphus) in place to limit the number of downloads that a single source can make over a given span of time. So what gives? + +As it turns out, the issue lay in the underlying technology used by Sisyphus. It uses [Cloudflare Workers](https://workers.cloudflare.com/) in order to intercept the request each time that a file is requested to be downloaded. Essentially, it acted like so: + +1. A source (whether this be a launcher, someone clicking the download button on the website, etc.) would request a file from Modrinth. +2. Sisyphus would take note of this source’s information, including what it requested, its IP address, and its request headers, and write it to a small database. If this source had not requested this path before, it would add one download to this file. If it had already requested it, it would not. +3. Sisyphus would then give the file that the source requested. It gives the file regardless of whether the download counted or not. + +For the most part, this system works fairly well. The main issue comes in step 2: it takes a little while for different Sisyphus instances to sync up with each other. One of the benefits of Cloudflare Workers is that the code is deployed to hundreds of different servers around the world. When multiple requests come in at the same time, they can get routed to different servers in order to allow each request to be handled faster. Cloudflare Workers, however, takes [up to 60 seconds](https://developers.cloudflare.com/kv/concepts/how-kv-works/#consistency) for each server’s information to sync up with each other. A server in Australia might know that a given source has already downloaded something, but a server in Turkey might not. As a result, multiple downloads from the same source might all get counted if they are handled by different servers. + +In order to fix this, we entirely rewrote Sisyphus. It still uses Cloudflare Workers, but all of the processing of step 2 has been offloaded to the main Modrinth backend. This not only speeds up downloads (even if only briefly), but also makes download counts more reliable. Over the past few days, we've already implemented the necessary adjustments. Our observations have shown that the results are significantly more consistent in their accuracy. Instead of having strange spikes in activity, the graph of new downloads now follows the expected pattern. + +![A graph that is split up into two parts: on the left, a spiky graph with the text "old sisyphus". On the right, a graph with consistent dips and peaks.](./new-sisyphus.jpg) + +Notice the spikes on the left? Compare that to the silky-smooth sinusoidal satisfaction on the right! + +To reiterate, the issue is now resolved and **payouts were not affected**. Payouts do not take into account downloads from launchers other than the [Modrinth App](/app); therefore, this adjustment has no bearing on payouts. + +P.S. Are you curious about why our download counter is called Sisyphus? In Greek mythology, Sisyphus rolls a boulder up a hill for the rest of eternity. Like Sisyphus, our download counter has no point other than to keep increasing for as long as Modrinth exists. diff --git a/packages/blog/articles/knossos-v2.1.0.md b/packages/blog/articles/knossos-v2.1.0.md new file mode 100644 index 000000000..fcc8c99ba --- /dev/null +++ b/packages/blog/articles/knossos-v2.1.0.md @@ -0,0 +1,64 @@ +--- +title: 'This week in Modrinth development: Filters and Fixes' +summary: 'Continuing to improve the user interface after a great first week since Modrinth launched out of beta.' +date: 2022-03-09 +authors: ['Dc7EYhxG'] +--- + +It's officially been a bit over a week since Modrinth launched out of beta. We have continued to make improvements to the user experience on [the website](https://modrinth.com). + +## New features + +We've added a number of new features to improve your experience. + +### Click to expand gallery images + +![The new expanding gallery images](./expand-gallery.jpg) + +In the gallery page of a project, you can now click on the images to expand the image and view it more closely. You can also use the left arrow, right arrow, and Escape keyboard keys to aid navigation. + +### Filters for the 'Changelog' and 'Versions' pages + +![The new changelog and versions filtering options](./version-filters.jpg) + +Versions on the Changelog and Versions page can now be filtered by mod loader and Minecraft version. + +### More easily access the list of projects you follow + +![The new 'Following' button in the profile dropdown](./following.jpg) + +The link to the list of your followed projects is now listed in your profile dropdown. + +## Fixes and Changes + +While new features are great, we've also been working on a bunch of bugfixes. Below is a list of some of the notable fixes, but it is not a comprehensive list. + +- Improved the layout of the search page's search bar and options card to more dynamically adjust to screen size +- Changed the tab indicator to be rounded +- Changed the download icon to be more recognizable +- Changed the profile dropdown caret to use an SVG instead of a text symbol for better font support +- Changed the styling on text fields to be more consistent with the design language of the site +- Changed the styling on disabled buttons to use an outline to reduce confusion +- Changed the styling on links to be more consistent and obvious +- Changed the wording of the options that move the sidebars to the right +- Changed the green syntax highlighting in code blocks to match the brand color +- Fixed the styling on various buttons and links that were missing hover or active states +- Fixed the inconsistent rounding of the information card on the home page +- [[GH-370]](https://github.com/modrinth/knossos/issues/370) Fixed download buttons in the changelog page +- [[GH-384]](https://github.com/modrinth/knossos/issues/384) Fixed selecting too many Minecraft versions in the search page covering the license dropdown +- [[GH-390]](https://github.com/modrinth/knossos/issues/390) Fixed the hover state of checkboxes not updating when clicking on the label +- [[GH-393]](https://github.com/modrinth/knossos/issues/393) Fixed the padding of the donation link area when creating or editing a project +- [[GH-394]](https://github.com/modrinth/knossos/issues/394) Fixed the rounding radius of dropdowns when opening upwards + +## Minotaur fixes + +[Minotaur](https://github.com/modrinth/minotaur), our Gradle plugin, has also received a few fixes. This isn't going to be relevant to most people, but is relevant to some developers using this tool to deploy their mods. + +- Debug mode (enabled through `debugMode = true`) allows previewing the data to be uploaded before uploading +- Fix edge case with ForgeGradle due to broken publishing metadata +- Fix game version detection on Fabric Loom 0.11 +- Fix `doLast` and related methods not being usable because the task was registered in `afterEvaluate` + +These fixes should have been automatically pulled in, assuming you're using Minotaur `2.+`. If not, you should be upgrading to `2.0.2`. + +Need a guide to migrate from Minotaur v1 to v2? Check the migration guide on the [redesign post](../redesign/#minotaur). diff --git a/packages/blog/articles/licensing-guide.md b/packages/blog/articles/licensing-guide.md new file mode 100644 index 000000000..cfb9830a8 --- /dev/null +++ b/packages/blog/articles/licensing-guide.md @@ -0,0 +1,68 @@ +--- +title: Beginner's Guide to Licensing your Mods +summary: Software licenses; the nitty-gritty legal aspect of software development. They're more important than you think. +date: 2021-05-16 +authors: ['6plzAzU4', 'aNd6VJql'] +--- + +Why do you need to license your software? What are those licenses for anyway? These questions are more important than you think + +## What is a software license? + +To summarise the [Wikipedia article](https://en.wikipedia.org/wiki/Software_license) on the matter, it's essentially a legal contract between you (the mod developer) and anyone who uses, copies, modifies, etc the mod or any code having to do with it. License has the power to allow people to do whatever they want, or only permit the usage of the mod in-game. However, the majority of cases lie in-between these opposites. + +## So which software license should I choose? + +First and foremost, the choice of the software license is not entirely up to you, because you have to have the legal ability to do so. For instance, not all licenses are compatible with Minecraft's EULA (End-User License Agreement). Besides, if you are not the only one working on the project, you must get permission from all other contributors to your code before changing or adding a license. Please, ensure you have done so before implementing a license. + +Before we can decide which one to use, however, we must establish some additional definitions. Open software licenses can be split into three main categories: **public domain**, **permissive**, and **copyleft**. + +### Permissive license + +A permissive license is a type of license that usually gives the abilities to use, copy, modify, distribute, sell, and relicense a piece of software. + +The most popular license on Modrinth, the [MIT License](https://cdn.modrinth.com/licenses/mit.txt), is a permissive license. It is an easy-to-read license designed to be used for developers, which is why it is used extensively in the Minecraft open source community. + +The [Apache License 2.0](https://cdn.modrinth.com/licenses/apache.txt) is also a very good permissive license to use. The main difference between it and the MIT License is that the Apache License gives an explicit patent grant, whereas patents must be registered manually with the MIT. There is also an additional clause with the Apache License, stating that any modified files must "carry prominent notices" of it being modified. + +### Copyleft license + +A copyleft license gives to the other party specific rights usually only given to the copyright owner, under the condition that those same rights are applied to all variations of that software. These are also sometimes called "viral" or "infectious" licenses, because of the requirement to pass those rights on to derivatives. + +The second most common license on Modrinth is a copyleft license: the [GNU Lesser General Public License Version 3](https://cdn.modrinth.com/licenses/lgpl-3.txt) (usually [shortened to](https://spdx.org/licenses/LGPL-3.0-only.html) LGPL-3.0). + +Typically, when a copyleft license is wanted, the [GPL-3.0](https://spdx.org/licenses/GPL-3.0-only.html) or [AGPL-3.0](https://spdx.org/licenses/AGPL-3.0-only.html) would be used. However, these licenses are **incompatible** if linking into Minecraft, due to an issue with the difference between proprietary and free software outlined by these licenses (more information [here](https://www.gnu.org/licenses/gpl-faq.html#GPLPlugins)). An exception can be added to allow linking, such as that found [here](https://gist.github.com/wafflecoffee/588f353802a3b0ea649e4fc85f75e583), but it is recommended to just use the LGPL-3.0 instead if possible. + +### Public domain dedication + +A public domain dedication gives all rights to everyone who gets a copy of the software. This includes but is not limited to the ability to use, copy, modify, distribute, sell, or relicense that software. Software with a public domain dedication has no copyright holder. + +The third most common license used on Modrinth is the [Creative Commons Zero 1.0 Universal](https://cdn.modrinth.com/licenses/cc0.txt), which is a public domain dedication with a strong international legal basis, while still retaining trademark and patent rights. + +Creative Commons licenses as a whole are not recommended for software, but rather for other creative works: use this license with caution. If you wish to have the simplest public domain dedication possible, the [Unlicense](https://cdn.modrinth.com/licenses/unlicense.txt) is also an option. + +### What if I don't want to choose a license? + +Without a license software is considered proprietary and all rights reserved. This means that people may only use it in the ways the copyright owner specifies, which, in the Minecraft world (no pun intended), typically just means downloading and using it; no modifications, unauthorized distributions: basically nothing. + +This is why picking a proper software license is so important. It tells everyone what they can and cannot do with your software, making the difference between software anyone can contribute to and change however they want, and software that only you have the code behind. + +That being said, All Rights Reserved and not using a license are options, if you don't want to choose a public domain, permissive, _or_ copyleft license. This can be useful in some cases, but as with any license, be aware of the effects: contributions will be difficult or impossible, and users may be inclined not to use your software. Also, in case of Minecraft, all mods, including the All Rights Reserved mods, are affected by Minecraft's EULA, which states: + +> Any Mods you create for the Game from scratch belong to you (including pre-run Mods and in-memory Mods) and you can do whatever you want with them, as long as you don't sell them for money / try to make money from them and so long as you don't distribute Modded Versions of the Game. + +What this means is you are not allowed to sell your mods even if you reserve all rights to them. There are plenty more examples of such details in licenses and other legal agreements in the modding world. All in all, be aware that you cannot decide all of your and other's rights with your license. + +## Conclusion + +To conclude, the importance of a software license cannot be overstated. You can choose whatever license you want (assuming you have the legal ability, of course), but be aware of the differences and consequences of choosing one over another. The licenses we've specified are what we recommend, as they are common and easy to understand. Hopefully, you will make your decision based on what you want to use and what your goals and purposes are. + +A massive thank you goes to Alexander Ryckeboer (Progryck) for the cover image! + +## Disclaimers + +We are not lawyers, and thus, **this is not legal advice.** No warranty is given regarding this information, and we (Modrinth) disclaim liability for damages resulting in using this information given on an "as-is" basis. For more information on the legal aspect to software licensing, please refer to "[The Legal Side of Open Source](https://opensource.guide/legal/)". + +No matter your choice of license, by uploading any Content (including but not limited to text, software, and graphics) to Modrinth, you give us certain rights to your Content, including but not limited to the ability to use, reproduce, or distribute. For more information, please see the [Modrinth Terms of Use](https://modrinth.com/legal/terms). + +Measurements for "most popular license", "second most common license", and "third most common license", were taken 2021-04-30. Custom licenses were not taken into account. diff --git a/packages/blog/articles/modpack-changes.md b/packages/blog/articles/modpack-changes.md new file mode 100644 index 000000000..600d35dea --- /dev/null +++ b/packages/blog/articles/modpack-changes.md @@ -0,0 +1,53 @@ +--- +title: 'Changes to Modrinth Modpacks' +summary: 'CurseForge CDN links requested to be removed by the end of the month' +date: 2022-05-28 +authors: ['MpxzqsyW', 'Dc7EYhxG'] +--- + +CurseForge CDN links requested to be removed by the end of the month + +Modrinth's alpha launch of modpacks has been highly successful in the nearly two weeks it has been live, with over forty +packs launched to the platform. However, a number of these packs include links to download mods from CurseForge's CDN, +which has caught the attention of CurseForge. On May 24th, 2022, a representative from Overwolf sent email correspondence +to us demanding us to remove all modpacks and documentation that contain references to CurseForge CDN links by the end +of the month. The message was vague, and didn't specify whether or not they were making a legal threat against us or not, +so we responded in attempt to clarify what would happen if we chose not to comply. In response, they told us that they +would "consider next steps." + +Modrinth has every intention of complying with their demands, despite our belief that this is a huge loss for the +community. However, CurseForge's immediate "next steps" were to message launcher developers, requesting that they break +support for Modrinth packs that contain CurseForge CDN links, and claiming to them that we outright refused to remove the +packs containing the links from our platform ourselves when we did not refuse. + +To be clear, Modrinth condemns the anti-competitive behaviors that CurseForge are engaging in, however, we do not wish +for CurseForge or authors who have elected to opt-out of third party downloads from their platform to be our enemies. +Modrinth is and will always remain a project in support of open source software, with open and free APIs for all to use, +and encouraging of much needed competition and diversity in the mod hosting space. + +Unfortunately, in order to comply with their request, all Modrinth modpacks must now use override JARs in place of any +links to CurseForge's CDN. Specifically, CDN links to `edge.forgecdn.net` and `media.forgecdn.net` will no longer be part +of the `.mrpack` [specification](https://docs.modrinth.com/docs/modpacks/format_definition/#downloads), effective today. +Of course, modpack authors must ensure that they are properly licensed to redistribute any mods that are not hosted on +the Modrinth platform. While this is a huge blow to modpack creators and users of our platform for now, relying on +CurseForge CDN links has always been unreliable as a long-term solution, because they could choose to change the links +at any time, and it leaves variables outside of our control. In the long run, packs containing mostly mods hosted on +Modrinth will be better for the growth of our platform and for the stability of modpacks. + +In order to use mods exclusively hosted on CurseForge as override JARs, pack creators must ensure that either of the +following conditions must be met: + +1. The mod is licensed under terms that allow for redistribution. The pack author is responsible for following the terms of the license. +2. General or individual permission is granted from the mod author. This can be in the form of a message from the author or a statement made on a mod's project description granting permission to use it in modpacks. + +In order to aid in this process, Modrinth will be building a third party mod license database and automated tools that +will help pack creators with the hassle that will be ensuring all of the mods in their packs are properly licensed. +In addition, packs will continue to be hand-reviewed by Modrinth moderation staff and verified. Do note that in this +transition time, the review process for modpack projects may experience significant delays. Authors of existing modpacks +on the platform will be reached out to in order to help them convert their existing packs to compliant packs. + +For those wondering, our next steps as a company are: + +1. Mod license database for Modpack authors +2. Creator monetization +3. The Modrinth launcher for downloading and creating modpacks. diff --git a/packages/blog/articles/modpacks-alpha.md b/packages/blog/articles/modpacks-alpha.md new file mode 100644 index 000000000..28b932b30 --- /dev/null +++ b/packages/blog/articles/modpacks-alpha.md @@ -0,0 +1,54 @@ +--- +title: 'Modrinth Modpacks: Now in alpha testing' +summary: After over a year of development, we're happy to announce that modpack support is now in alpha testing. +date: 2022-05-15 +authors: ['6plzAzU4'] +--- + +After over a year of development, Modrinth is happy to announce that modpack support is now in alpha testing! + +What does alpha mean, exactly? Principally, it means that **modpack support is still unstable** and that not everything is perfect yet. However, we believe it to be complete enough that it can be released for general use and testing. + +From this point forward, Modrinth has shifted development effort from modpacks to creator payouts. This long-anticipated feature means that mod developers, modpack creators, and anyone else who uploads content to Modrinth will be eligible to get the ad revenue generated from their project pages. + +## Where can I find them? + +Right next to mods on the site! URLs to modpacks are the same as mods, just with `mod` replaced with `modpacks`, so you can find the search at https://modrinth.com/modpacks. + +Over a dozen modpacks have already been created by our early pack adopters, and those are available for download right now! + +## Wait, so how do I download them? + +At this point in time, the only stable way to download modpacks and use them is through [ATLauncher]. You can also install Modrinth packs if you switch to the development branch of [MultiMC]. We're hoping to be supported by more launchers in the future, including our own launcher, which is still in development. Our [documentation for playing modpacks] will always have an up-to-date listing of the most popular ways to play packs. + +## How do I create packs? + +You can either use [ATLauncher] or [packwiz] to create modpacks. The [Modrinth format] is unique for our purposes, which is specifically in order to allow mods from multiple platforms to be in a pack. Our [documentation for creating modpacks] will always have an up-to-date listing of the most popular ways to create packs. + +## Can I use CurseForge mods in my modpack? + +Yes! The [Modrinth format] uses a link-based approach, meaning that theoretically, mods from any platform are usable. In practice, we are only allowing links from **Modrinth**, **CurseForge**, and **GitHub**. In the future, we may allow other sites. + +## What happened to Theseus? + +For a while, we've been teasing Theseus, our own launcher. While lots of progress has been made on it, we haven't yet gotten it to a usable state even for alpha testing. Once we think it's usable, we will provide alpha builds -- however, for now, our main focus will be shifting to payouts, with Theseus development ramping up once that is out. + +Remember: Modrinth only has a small team, and we have a lot of real-life responsibilities too. If you have experience in Rust or Svelte and would like to help out in developing it, please feel free to shoot a message in the `#launcher` channel in our [Discord]. + +## Conclusion + +All in all, this update is quite exciting for everyone involved. Just like with [the redesign](/packages/blog/articles/redesign.md), this is the culmination of months upon months of work, and modpack support is really a big stepping stone for what's still yet to come. + +Remember: alpha means that it's still unstable! We are not expecting this release to go perfectly smoothly, but we still hope to provide the best modding experience possible. As always, the fastest and best way to get support is through our [Discord]. + +Next stop: creator payouts! + +[ATLauncher]: https://atlauncher.com +[MultiMC]: https://multimc.org +[packwiz]: https://github.com/packwiz/packwiz +[Modrinth format]: https://docs.modrinth.com/docs/modpacks/format_definition/ +[documentation for creating modpacks]: https://docs.modrinth.com/docs/modpacks/creating_modpacks/ +[documentation for playing modpacks]: https://docs.modrinth.com/docs/modpacks/playing_modpacks/ +[`packwiz cf import`]: https://packwiz.infra.link/reference/commands/packwiz_curseforge_import/ +[`packwiz mr export`]: https://packwiz.infra.link/reference/commands/packwiz_modrinth_export/ +[Discord]: https://discord.gg/EUHuJHt diff --git a/packages/blog/articles/modrinth-app-beta.md b/packages/blog/articles/modrinth-app-beta.md new file mode 100644 index 000000000..7af4a3ea7 --- /dev/null +++ b/packages/blog/articles/modrinth-app-beta.md @@ -0,0 +1,41 @@ +--- +title: Introducing Modrinth App Beta +short_title: Modrinth App Beta and Upgraded Authentication +summary: Changing the modded Minecraft landscape with the new Modrinth App, alongside several other major features. +short_summary: Launching Modrinth App Beta and upgrading authentication. +date: 2023-08-05T12:00:00-08:00 +authors: ['6plzAzU4'] +--- + +The past few months have been a bit quiet on our part, but that doesn’t mean we haven’t been working on anything. In fact, this is quite possibly our biggest update yet, bringing the much-anticipated Modrinth App to general availability, alongside several other major features. Let’s get right into it! + +## Modrinth App Beta + +Most of our time has been spent working on [Modrinth App](/app). This launcher integrates tightly with the website, bringing you the same bank of mods, modpacks, data packs, shaders, and resource packs already available for download on Modrinth. + +Alongside that, there are a wealth of other features for you to find, including: + +- Full support for vanilla, Forge, Fabric, and Quilt +- Full support for Windows, macOS, and Linux +- Modrinth modpack importing, either through the website or through a .mrpack file +- Modrinth modpack exporting to the .mrpack format to upload to the website or share with friends +- Importing of instances from a variety of different launchers, including MultiMC, GDLauncher, ATLauncher, CurseForge, and Prism Launcher +- The ability to update, add, and remove individual mods in a modpack +- The ability to run different modded instances in parallel +- The ability to view and share current and historical logs +- An auto-updater to ensure the app is always up-to-date +- An interactive tutorial to show you through the core features of the app +- Performance through the roof, backed by Rust and Tauri (not Electron!) +- Fully open-source under the GNU GPLv3 license + +More features will, of course, be coming in the future. This is being considered a **beta release**. Nonetheless, we’re still very proud of what we’ve already created, and we’re pleased to say that it’s available for download on our website **right now** at [https://modrinth.app](/app). Check it out, play around with it, and have fun! + +## Authentication, scoped tokens, and security + +The second major thing we’re releasing today is a wide range of changes to our authentication system. Security is a top concern at Modrinth, especially following recent events in the modded Minecraft community when several individuals were compromised due to [a virus](https://github.com/trigram-mrp/fractureiser/tree/main#readme). While Modrinth was not affected directly by this attack, it provided a harrowing reminder of what we’re working with. That’s why we’re pleased to announce three major features today that will strengthen Modrinth’s security significantly: in-house authentication, two-factor authentication, and scoped personal access tokens. + +### In-house authentication and two-factor authentication + +![A screenshot of the new Modrinth sign-in page, showing options to sign in with Discord, GitHub, Microsoft, Google, Steam, GitLab, or with an email and password.](./auth.jpg) + +Until today, Modrinth has always used GitHub accounts exclusively for authentication. That changes now. Starting today, you can now connect your Discord, Microsoft, Google, Steam, and/or GitLab accounts to your Modrinth account. You may also forgo all six of those options and elect to use a good ol’ fashioned email and password. No problems with that! (If you’re curious, we store passwords hashed with the Argon2id method, meaning we couldn't read them even if we wanted to.) diff --git a/packages/blog/articles/modrinth-beta.md b/packages/blog/articles/modrinth-beta.md new file mode 100644 index 000000000..1ebc9221b --- /dev/null +++ b/packages/blog/articles/modrinth-beta.md @@ -0,0 +1,31 @@ +--- +title: Welcome to Modrinth Beta +summary: 'After six months of work, Modrinth enters Beta, helping modders host their mods with ease!' +date: 2020-12-01 +authors: ['Dc7EYhxG'] +--- + +After six months of work, Modrinth enters Beta, helping modders host their mods with ease! + +Six months ago, in order to fill a void in the modding community, the project that would eventually become Modrinth was founded. Modrinth was created to bring change to an otherwise stagnant landscape of hosts. Today, Modrinth enters Beta, a huge step forward for Modrinth! + +![Modrinth's brand new design, rolling out with the launch of Beta](./new-design.jpg) + +> Modrinth's brand new design, rolling out with the launch of Beta + +## What's new? + +If you've checked out Modrinth in the past, here's the main things you'll notice that have changed: + +- All new clean and modern design in both light and dark modes +- Mods now display download counts correctly +- Mod information can now be edited in the author Dashboard +- More information can be added to mods + +## What's next? + +Modrinth is still in beta, of course, so there will be bugs. In the coming weeks and months, we will be prioritizing fixing the issues that currently exist and continue refining the design in areas that are rough. + +If you find any, please report them to the issue tracker: https://github.com/modrinth/code/issues + +If you would like to chat about Modrinth, our discord is open to all here: https://discord.modrinth.com diff --git a/packages/blog/articles/modrinth-servers-beta.md b/packages/blog/articles/modrinth-servers-beta.md new file mode 100644 index 000000000..8a500aa17 --- /dev/null +++ b/packages/blog/articles/modrinth-servers-beta.md @@ -0,0 +1,57 @@ +--- +title: Host your own server with Modrinth Servers — now in beta +short_title: Introducing Modrinth Servers +summary: Fast, simple, reliable servers directly integrated into Modrinth. +short_summary: Host your next Minecraft server with Modrinth. +date: 2024-11-02T22:00:00-08:00 +authors: ['MpxzqsyW', 'Dc7EYhxG'] +--- + +It's been almost _four_ years since we publicly launched Modrinth Beta. Today, we're thrilled to unveil a new beta release of a product we've been eagerly developing: Modrinth Servers. + +Modrinth Servers aims to provide the most seamless experience for running and playing on modded servers. To make this possible, we have partnered with our friends at the server hosting provider [Pyro](https://pyro.host). Together, we've developed fully custom software that gives us a unique advantage in scaling, offering new features and integrations that other hosts couldn't dream of. + +For this beta launch, **all servers are US-only**. Please be aware of this if you are looking to purchase a server, as it may not be optimal for users outside of North America. + +![A screenshot of the fully-custom Modrinth Servers panel integrated into Modrinth](./panel.jpg) + +## What makes Modrinth Servers unique? + +We understand that entering the server hosting industry might come as a surprise given the number of existing providers. Here's what sets Modrinth Servers apart: + +### The most modern hardware + +Your modpack shouldn't have to run slow. All our servers are powered by cutting-edge 2023 Ryzen 7 and Ryzen 9 CPUs with DDR5 memory. From our research, we couldn't find any other Minecraft server host offering such modern hardware at any price point, much less at our affordably low one. This ensures smooth performance even with the most demanding modpacks. + +### Seamless integration with Modrinth content + +Download mods and modpacks directly from Modrinth without any hassle. This deep integration simplifies server setup and management like never before. With just a few clicks, you can have your server up and running with your favorite mods. + +### Fully custom panel and backend + +Unlike most other server hosts that rely on off-the-shelf software like Multicraft or Pterodactyl, Modrinth Servers is fully custom-built from front to back. This enables higher performance and much deeper integration than is otherwise possible. Our intuitive interface makes server management a breeze, even for newcomers. + +### Dedicated support + +Our team is committed to providing exceptional support. Whether you're experiencing technical issues or have questions, we're here to ensure your experience with Modrinth Servers is top-notch. + +### No tricky fees or up-charges + +Modrinth Servers are offered in a very simple Small, Medium, and Large pricing model, and are priced based on the amount of RAM at $3/GB. Custom URLs, port configuration, off-site backups, and plenty of storage is included in every Modrinth Server purchase at no additional cost. + +## What’s next? + +As this is a beta release, there's much more to come for Modrinth Servers: + +- **Global availability:** We plan to expand to more worldwide regions and offer the ability to select a region for your server, ensuring optimal performance no matter where you are. +- **Support more types of content:** We'll be adding support for plugin loaders and improving support for data packs, giving you more flexibility and functionality +- **Social features:** A friends system to make sharing invites to servers easier, streamlining sharing custom-built modpacks and servers with your community. +- **App integration:** Full integration with Modrinth App, including the ability to sync an instance with a server or friends, making collaboration seamless. +- **Collaborative management:** Give other Modrinth users access to your server panel so you can manage your server with your team. +- **Automatic creator commissions:** Creators will automatically earn a portion of server proceeds when content is installed on a Modrinth Server. + +And so much more... stay tuned! + +We can't wait for you to try out [Modrinth Servers](https://modrinth.gg) and share your feedback. This is just the beginning, and we're excited to continue improving and expanding our services to better serve the Minecraft community. + +**From the teams at Modrinth and Pyro, with <3** diff --git a/packages/blog/articles/new-site-beta.md b/packages/blog/articles/new-site-beta.md new file mode 100644 index 000000000..889f9a5b6 --- /dev/null +++ b/packages/blog/articles/new-site-beta.md @@ -0,0 +1,25 @@ +--- +title: '(April Fools 2023) Powering up your experience: Modrinth Technologies™️ beta launch!' +short_title: '(April Fools 2023) Modrinth Technologies™️ beta launch!' +summary: Welcome to the new era of Modrinth. We can't wait to hear your feedback. +short_summary: Power up your experience. +date: 2023-04-01T00:00:00-08:00 +--- + +**Update 04/02: Due to a number of (ridiculous) complaints we received such as “not being able to use the site on mobile” and “the ads are a bit much”, we have decided to halt the rollout of the beta site. Happy April 1st, everyone.** + +--- + +OwO hewwo evewyone! I'm super exdited to announth that Modwinth is getting a bwand new update! WOOHOO! But, befowe I dwelve into the detaiws, I want to apologize in advance because my grammar and spwelling might not be the best (teehee). Anyway, this new update is going to be sow awesome and is going to make Modwinth the best modding website evew! + +But first, a quick message to all of our mobile users: We don't cawe about you anymore! _insert evil laughter here_ We've decided to focus all of our efforts on desktop users, so we won't be supporting mobile devices anymore. If you want to use Modwinth, you'll have to buy a desktop or laptop computer! (LOL) + +And that's not aww, we've also added a bunch mowe ads! Because, wet's face it, who doesn't wove ads? Am I wight? (hehe) We've added ads that will pop up evewy five seconds, so you won't miss them. And to make suwe you don't get bowed of seeing the same ad over and over again, we've made suwe to wotate them frequently. You'we welcome! UwU + +Oh, and did I mention the nyew wayout and design? We've made it weally cool! YAY! We wanted to make suwe that UwU aww feel a sense of nyostalgia and weminisce about the good owd days of the intewnet. Wemembew those days when websites wooked wike they wewe made by a 5-yeaw-owd? Well, we've bwought that back! (WINKY WINK) + +The Fitneshgwam Pacew Test is a multistage aewobic capabiwity test that pwogwessively gets mowe difficult as it continyues. The 20 metew pacer test will begin in 30 seconds. Nyya~ Meowmeow! Win the pacer test you must weach the othew end befowe the beep. Each time you hear the beep meow, uwu wun nyya to the othew end nya. The wun nya must be in wine with the beep. Meowmeow! The eawwier nya you wun, the mowe time you have to westa nya. If you faiw to weach the othew end befowe the beep nya meow, the test will end. So twy youw best and Gud wuck! + +In suwummawy, we'we weally excited about the nyew changes and we hope UwU awe too! Modwinth is no wonger a pwace for everyone, but wather, for deskto-p users onwy. We've also added mowe ads than evew befowe and made suwe to make the wayout and design as tewwible as possibwe! + +Enjoy! UwU diff --git a/packages/blog/articles/plugins-resource-packs.md b/packages/blog/articles/plugins-resource-packs.md new file mode 100644 index 000000000..86ecc3dd9 --- /dev/null +++ b/packages/blog/articles/plugins-resource-packs.md @@ -0,0 +1,95 @@ +--- +title: Plugins and Resource Packs now have a home on Modrinth +summary: 'A small update with a big impact: plugins and resource packs are now available on Modrinth!' +date: 2022-08-27 +authors: ['6plzAzU4'] +--- + +With the addition of modpacks, creating new project types has become a lot easier. Our first additions to our new system are plugins and resource packs. We'll also be working on adding datapacks, shader packs, and worlds after payouts are released. + +Don't worry - this hasn't taken away an awful lot of development time from author payouts. Those are still being worked on! + +## Plugins + +With plugins, we're supporting five loaders and three proxies: Bukkit, Spigot, Paper, Purpur, Sponge, BungeeCord, Waterfall, and Velocity. + +Several new categories have specifically been added for plugins, though mod categories can be used for plugins and vice versa. + +[Go browse our plugin section!](https://modrinth.com/plugins) + +### Why add plugins? + +This is a question we've received quite often since we first announced our intention to host plugins, so let's break it down a bit. + +Currently, there are three main platforms on which plugins can be downloaded from: Bukkit, Spigot, and Sponge's Ore. Notice the main issue there? These sites are bound to a specific loader. This isn't inherently _bad_ - however, as forks and new projects spawn, there is a noticeable lack of flexibility in what can be hosted on a given platform. For example, Spigot is unable to host plugins which specifically depend on the exclusive features provided by Paper's API. Paper's solution to this is to build their own platform, but this simply perpetuates the same problem. + +The best solution here is to create a separate platform which is unbiased and flexible enough to adapt to a changing ecosystem. Modrinth is the perfect candidate for this - after all, plugins are mods under a different name, and likewise mods are plugins under a different name. + +No matter the situation, authors are always allowed to upload their plugins to multiple sites. Build automation is incredibly easy to set up, especially with "set it and forget it" build tools such as [Minotaur](https://github.com/modrinth/minotaur). + +### Will paid plugins be supported? + +No. Modrinth does not have the infrastructure to support this, and it's not currently planned. Author payouts are still being worked on. + +### What about mods that have plugin versions and vice versa? + +Modrinth is taking a unique approach to this. While the search pages are separate, in reality, the backend is the same. You can select plugin loaders when creating a mod and you can select mod loaders when creating a plugin. The split only exists on the frontend so that projects like [Chunky](https://modrinth.com/mod/chunky) can share a single page across their versions. + +Plugins which also have versions for mod loaders will be displayed under the `/mod/` URL on the frontend. Plugins without mod loader versions are displayed under `/plugin/`. + +## Resource packs + +The other thing we've added support for is resource packs! + +Previously we hinted at Bedrock resource packs being supported in addition to Java resource packs. We've decided not to add Bedrock resource packs until we also add support for other Bedrock resources for various technical reasons. + +[Go browse our resource pack section!](https://modrinth.com/resourcepacks) + +### Secondary categories + +Resource packs are capable of adding a wide range of different things, like fonts, sounds, and core shaders. We found that the current category system was inadequate to account for all of these, especially with the three maximum limit. Thus, we've introduced a "secondary category" system, for categories which don't display by default but can still be searched. These secondary categories have a limit of 255 instead of three. Please add as many secondary categories as are relevant! + +On search pages, "Features" have been split into their own header. Where categories for resource packs can be accurately described as themes, features instead show what exactly a resource pack adds. Resolutions have also been split into their own header, though selecting a pack resolution is optional. + +### What about resource packs that require a mod to function? + +Resource packs are able to set dependencies on other projects (even those which aren't resource packs), just like how modpacks are able to set dependencies on mods. It's worth noting that OptiFine is not on the platform, and thus you cannot set a dependency on that; however, you can set a dependency on any of the other alternative mods which _are_ available on Modrinth, including [Entity Texture Features](https://modrinth.com/mod/entitytexturefeatures), [OptiGUI](https://modrinth.com/mod/optigui), [Continuity](https://modrinth.com/mod/continuity), [CIT Resewn](https://modrinth.com/mod/cit-resewn), [Animatica](https://modrinth.com/mod/animatica), or [Custom Entity Models](https://modrinth.com/mod/cem). + +## Other miscellaneous changes + +### Version number changes + +For a long time, version numbers have had a requirement to be unique within the same project. Alongside this update, we found it necessary to remove this restriction on version numbers. Thus, you'll no longer have to use something like `1.2.3+forge` and `1.2.3+fabric` if you have a project on multiple loaders - instead, you can just use `1.2.3`. + +To accommodate this, the frontend now appends the loaders and game versions onto the end of a URL if there are duplicates, and the [Modrinth Maven] now supports version IDs. + +We do not recommend retroactively changing version numbers to remove this additional metadata, though. If you change your version numbers, the following will break: + +- URLs to specific versions +- Buildscripts depending on your project via the [Modrinth Maven] +- Download counters (see labrinth issue [#351](https://github.com/modrinth/labrinth/issues/351)) + +### LiteLoader support + +Modrinth now supports LiteLoader for mods. It's nothing special, but it should help with some archival efforts. + +### Misc category deletion + +We've also deleted the `Misc` category as no one is going to want to filter by `Misc` in search. If you have any other suggestions for categories, feel free to suggest them in [our Discord][Discord] or [Tweet at us](https://twitter.com/modrinth)! + +## Developer/API changes + +The changes in this update are rather minimal when it comes to API-related stuff. Two new fields have been added to the [project struct](https://docs.modrinth.com/api-spec/#tag/project_model) - `approved`, which is the timestamp of when the project was approved (null if it's not approved or unlisted), and `additional_categories`, another set of categories which are to be seen as less important than normal categories. You can read the [secondary categories](#secondary-categories) section for more info on it. If you wish to implement the headers in your API integration, the [category list](https://docs.modrinth.com/api-spec/#tag/tags/operation/categoryList) now has a `header` field. + +As for the [search result struct](https://docs.modrinth.com/api-spec/#tag/project_result_model), `created` now matches the `approved` date rather than the `published` project field, and `categories` now also includes secondary categories. A new field, `display_categories`, matches only primary categories. + +Differences between mod loaders and plugins will need to be hardcoded within your API integration for the time being if you wish to have them shown separately. This will be cleaned up in API v3 alongside a general cleanup of a lot of other small aspects of the API. If you have any suggestions for breaking API v3 changes, feel free to suggest them in [our Discord][Discord]. Development on API v3 is likely to begin before the end of the year. + +## Conclusion + +We're very happy to be announcing this feature, even if it is minor in comparison to some of our other past and future announcements. Don't worry - author payouts are still being worked on, and will most likely be our next major announcement! We saw this as an opportunity to get a feature out with relatively little new code (since we'd already done everything needed alongside modpacks), so we ran with it. + +As always, feel free to provide feedback on [our Discord][Discord], and please report any bugs you come across on [our GitHub](https://github.com/modrinth). + +[Discord]: https://discord.modrinth.com +[Modrinth Maven]: https://support.modrinth.com/en/articles/8801191-modrinth-maven diff --git a/packages/blog/articles/pride-campaign-2025.md b/packages/blog/articles/pride-campaign-2025.md new file mode 100644 index 000000000..c7e6eca8b --- /dev/null +++ b/packages/blog/articles/pride-campaign-2025.md @@ -0,0 +1,22 @@ +--- +title: 'A Pride Month Success: Over $8,400 Raised for The Trevor Project!' +short_title: Pride Month Fundraiser 2025 +summary: Reflecting on our Pride Month fundraiser campaign for LGBTQ+ youth. +short_summary: A reflection on our Pride Month fundraiser campaign. +date: 2025-07-01T14:00:00-04:00 +authors: ['6plzAzU4', 'bOHH0P9Z', '2cqK8Q5p', 'vNcGR3Fd'] +--- + +What an incredible Pride Month! This June, we came together to support [The Trevor Project](https://www.thetrevorproject.org/), an essential organization providing crisis support and life-saving resources for LGBTQ+ young people. We are absolutely thrilled to announce that our community raised a stellar **$2,395**. That's not all, though — during the campaign, some donations were matched by H&M and the Trevor Project's Board of Directors up to **six times**, meaning the final impact of Modrinth's donations is a whopping **$8,464**. Our team was also in the top ten for most funds raised this year! + +To put your generosity into perspective, a donation this size can fund hundreds of hours on The Trevor Project's 24/7 crisis hotline. It gives young people a lifeline in their hardest moments and supports important educational services for many others. + +We couldn't have done it without you. To every person who donated, shared the post, or simply cheered us on from the sidelines — thank you. We are incredibly proud of what we've achieved together as a community. + +While Pride Month provides a special opportunity to focus our efforts, the need for these critical resources continues all year long. The challenges faced by LGBTQ+ young people do not end on July 1st, and organizations like The Trevor Project require ongoing support to continue their life-saving work. If you are able, we encourage you to consider making a contribution at any time. + +As part of this campaign, we also added the option to donate part of a Modrinth rewards balance to a variety of charities. This means Modrinth creators can directly use the revenue they earned from ads and [Modrinth+](/plus) to donate to dozens of causes close to their heart. The Trevor Project is one option, alongside other prominent non-profits such as the American Cancer Society, St. Jude's Children's Research Hospital, Doctors Without Borders, and the Southern Poverty Law Center. You can donate your Modrinth balance to these groups and many more by clicking the "Withdraw" button on [your revenue dashboard](/dashboard/revenue). + +Modrinth's June 2025 campaign will be kept for posterity at [this link](https://modrinth.com/pride). + +**[You can donate to The Trevor Project at any time at this link.](https://www.thetrevorproject.org/)** diff --git a/packages/blog/articles/redesign.md b/packages/blog/articles/redesign.md new file mode 100644 index 000000000..1a83e1e0f --- /dev/null +++ b/packages/blog/articles/redesign.md @@ -0,0 +1,141 @@ +--- +title: 'Now showing on Modrinth: A new look!' +summary: 'Releasing many new features and improvements, including a redesign!' +date: 2022-02-27 +authors: ['6plzAzU4'] +--- + +After months of relatively quiet development, Modrinth has released many new features and improvements, including a redesign. While we've been a bit silent recently on the website and blog, our [Discord server][Discord] has activity on the daily. Join us there and follow along with the development channels for the very latest information! + +For both those who aren't in the Discord and for those who are, this serves as a status update for what exactly has been going on in our silence. There have been an unparalleled amount of changes, improvements, bug fixes, and new features being worked on since April 2021, and we are incredibly excited to share them with everyone. There are still many things we're still working on, such as modpacks, but we've decided to hold back on that as there is still some fine-tuning that needs to be done on that front. + +## New and improved design + +The [frontend](https://github.com/modrinth/knossos) has received a considerable facelift. With designs made in part by [falseresync](https://modrinth.com/user/falseresync) (and a sprinkle of bikeshedding), we present to you, the redesign! + +As they say, a picture tells somewhere around nine-hundred odd words. As such, this section will be heavily focused on screenshots of the pages rather than long descriptions. + +### Project pages + +![The new page design, shown for Iris](./iris.jpg) + +_A beautiful project page for Iris to match its beautiful shaders_ + +On project pages, much of the focus has been shifted to the extended description rather than the metadata, which has been put over on the side. We've also added an option to switch this from the left side to the right side in your user settings, if you so desire. + +### Gallery + +![A preview of the gallery functionality](./consistency.jpg) + +_Pictures... pretty!_ + +Developers can now add a Gallery section on each project page! Each uploaded image or GIF can have a title and description associated with them. + +### Changelog + +![The changelog page](./adorn.jpg) + +_A changelog page for showing the difference between updates!_ + +Version changelogs are automatically compiled together into a large changelog list. These are put in reverse chronological order, and are separated for Fabric and Forge versions. + +### Version creation and dependencies + +![The version creation page](./version-creation.jpg) + +_Version creation has gotten an overhaul!_ + +While dependencies have existed in the backend for a while, their implementation was a bit haphazard and was never widely used due to never being in the frontend. Thus, all previous dependencies have been wiped, and they have been redone better(TM). And hey, now you can add and see dependencies in the frontend! + +### Profile settings & dashboard + +![The profile settings page](./profile-settings.jpg) + +_The new settings panel for managing your profile and other visual settings_ + +The dashboard has been reworked and reorganized: the "My mods" section has been merged into the profile page itself, and the "Settings" page has been split into "Profile" and "Security". There are also options for switching the project and search information from the left side of the screen to the right. + +![A user's profile](./jellysquid.jpg) + +The notifications page is also now its own page separate from the dashboard, accessible only from the header. The notifications page also has a highly-requested "Clear all" button. + +![The notifications page](./notifications.jpg) + +## Backend changes and API v2 + +There have been a number of breaking changes in this update, and as such, the API number has been bumped. The `/api/` prefix has also been removed, as it's redundant when the base API URL is `api.modrinth.com`. This means the production URL is now `api.modrinth.com/v2` instead of `api.modrinth.com/api/v1`. + +The major changes include the universal rename of `mod` to `project`, as well as the move of the `mod` endpoint to `search`. While version 1 will be supported until January 2024 and won't be removed until July 2024, we still highly recommend that applications migrate as soon as possible. For full migration instructions, see the migration guide [on the docs site](https://docs.modrinth.com/docs/migrations/v1-to-v2/). + +## Minotaur + +[Minotaur](https://github.com/modrinth/minotaur) is the tool for mod developers to upload their mod directly to Modrinth automated through Gradle. Minotaur received a considerable facelift and is now a lot more user-friendly. Previously, an example buildscript might look like this: + +```groovy +task publishModrinth(type: com.modrinth.minotaur.TaskModrinthUpload) { + onlyIf { + System.getenv().MODRINTH_TOKEN + } + token = System.getenv().MODRINTH_TOKEN + projectId = 'AABBCCDD' + versionNumber = version + versionName = "[$project.minecraft_version] Mod Name $project.version" + releaseType = 'alpha' + changelog = project.changelog + uploadFile = remapJar + addGameVersion('1.18') + addGameVersion('1.18.1') + addGameVersion('1.18.2') + addLoader('fabric') +} +``` + +This exact same buildscript snippet, in Minotaur 2.0.0, can be written as the following: + +```groovy +modrinth { + projectId = 'AABBCCDD' + versionName = "[$project.minecraft_version] Mod Name $project.version" + releaseType = 'alpha' + changelog = project.changelog + uploadFile = remapJar + gameVersions = ['1.18', '1.18.1', '1.18.2'] + loaders = ['fabric'] + dependencies = [ + new ModDependency('P7dR8mSH', 'required') // Creates a new required dependency on Fabric API + ] +} +``` + +Notice how it's now in a `modrinth {...}` block instead of creating a new task. The `modrinth` task is automatically created. + +The `loaders` declaration in the new version isn't even needed if you're using Fabric Loom or ForgeGradle. The project version can be detected automatically, and the token uses the `MODRINTH_TOKEN` environment variable by default now. The game version and loader listings actually make sense now, and dependencies are possible! + +## More miscellanea + +Along with the major headlining features, there are also a number of smaller features, fixes, and improvements coming with the big update. Most of these need no more than a bullet to describe, so here's a bullet list of the smaller things! + +- If you are the owner of a project, you can now transfer the ownership to another user, as long as they have already accepted an invitation to be a member. In the frontend, this can be done on the Settings page, under the "Team members" section. +- iframes for YouTube videos are now allowed. Any iframes from elsewhere are still not allowed. +- Files are now validated to ensure they contain a valid Forge or Fabric mod, or are in the correct modpack format. +- When changing the status of a project, file moderators are now able to add a message (heading and body separate) to be seen by project team members. +- Versions must now always have a file attached. +- Projects will only be able to have `draft` status if they contain no versions. Additionally, a new `archived` status has been added. +- Donation URLs have been re-enabled. +- Fix: Markdown checkboxes will no longer render strangely ([knossos#291](https://github.com/modrinth/knossos/pull/291)) +- Fix: [Maven](https://docs.modrinth.com/docs/tutorials/maven/) will no longer randomly break ([labrinth#264](https://github.com/modrinth/labrinth/pull/264) and [labrinth#252](https://github.com/modrinth/labrinth/pull/252)) +- ...and many other smaller things! + +## What happened to modpacks? + +We've been teasing modpacks for a long time now. While they're done for the most part, we've decided to hold back on their release for the time being. We're working hard to get those done some time soon, and there'll be another post when those are ready for general consumption. + +## Conclusion and a call for developers + +In conclusion, we hope that you're excited about this update as much as we are. We believe that, with how much work has been put into this update, it has definitely been worth the wait. + +On a separate note, are you looking to contribute to Modrinth? Have you got experience with Rust or Svelte? We're hiring! Please reach out to `Geometrically#8387` on Discord to apply for a position. + +Thank you for reading, and may your dreams be filled with pineapples, tiny potatoes, and squirrels. + +[Discord]: https://discord.gg/EUHuJHt diff --git a/packages/blog/articles/skins-now-in-modrinth-app.md b/packages/blog/articles/skins-now-in-modrinth-app.md new file mode 100644 index 000000000..6c6970a6d --- /dev/null +++ b/packages/blog/articles/skins-now-in-modrinth-app.md @@ -0,0 +1,24 @@ +--- +title: 'Skins — Now in Modrinth App!' +summary: 'Customize your look, save your favorite skins, and swap them out in a flash, all within Modrinth App.' +date: 2025-07-06T16:45:00-07:00 +authors: [bOHH0P9Z, Dc7EYhxG] +--- + +We're thrilled to roll out Modrinth App **v0.10** with a beta release of one of our most highly requested features, the **Skins page**. The Skins page allows you to manage all of your Minecraft skins directly within Modrinth App. You can see all your saved custom skins and the default Minecraft skins in one convenient place. + +![The new skins page, featuring a cute animated player model, your custom skins & default skins.](./skins-page.webp) + +Adding a new skin is simple, even Herobrine could do it! When you add or edit a skin, you can **upload** your custom texture file directly from your computer, **choose** between the wide or slim arm style to match your preferred character model, and even **assign** a specific cape to that look for the perfect finishing touch. + +The interface makes it easy to preview your changes in real-time with the animated player model, so you can see exactly how your skin will look in-game before saving it. + +![The edit skin modal that shows when you go to add or edit a skin.](./edit-skin.webp) + +## Fixes and More! + +Alongside this major new feature, **v0.10** includes a host of improvements and bug fixes to make your experience smoother. We've updated the news feed to use our new system, fixed issues with project descriptions, and tidied up how data is handled. For a full breakdown of all the changes, you can [check out the complete changelog here.](https://modrinth.com/news/changelog?filter=app) + +As the skins feature is in _beta_, we're eager to hear your feedback! **Jump in, give it a try**, and let us know what you think. You can share your thoughts on our [Discord server](https://discord.modrinth.com/) or [start a support chat](https://support.modrinth.com) if you're running into issues. + +Thank you! We can't wait to see your skins in action. Happy customizing! diff --git a/packages/blog/articles/two-years-of-modrinth-history.md b/packages/blog/articles/two-years-of-modrinth-history.md new file mode 100644 index 000000000..cdfca3f78 --- /dev/null +++ b/packages/blog/articles/two-years-of-modrinth-history.md @@ -0,0 +1,90 @@ +--- +title: 'Two years of Modrinth: a retrospective' +summary: The history of Modrinth as we know it from December 2020 to December 2022. +date: 2023-01-07 +authors: ['6plzAzU4'] +--- + +Let's rewind a bit and take a look at the past two years of Modrinth's history. We've come so far from our pre-beta HexFabric days to today. A good portion of our pre-beta history can be found in the [What is Modrinth](../what-is-modrinth) blog post, but Modrinth obviously is not the same platform it was two years ago. + +## December 2020: Modrinth Beta begins + +![Modrinth's brand new design, rolling out with the launch of Beta](../modrinth-beta/new-design.jpg) + +> Modrinth's brand new design, rolling out with the launch of Beta + +December was the release of the initial [Modrinth Beta](../modrinth-beta), bringing a completely different interface and the ability for mods to be created for the first time. This interface has since been completely discarded, but this is what Modrinth looked like for well over a year. It's hard to believe! + +December also brought the introduction of the [Minotaur](https://github.com/modrinth/minotaur) Gradle plugin for the first time for upload automation. Minotaur today also looks nothing like it did when it was introduced, but it still accomplishes the same exact thing. + +## January 2021: Improvements to mod uploading + +An announcement in mid-January brought several essential additions and improvements to Modrinth which we consider commonplace today. Among these were: + +- A separate version creation page +- The ability to edit and delete existing versions +- The ability to delete existing mods and users + +January also brought the introduction of Google AdSense onto Modrinth. The eventual results, including our switch after to EthicalAds, solidified Modrinth's stance that ads should be unobtrusive and generally friendly to users. + +## February-March 2021: Follows, reports, notifications, oh my! + +March brought the first introduction of the abilities to follow and report projects, as well as the automatic featuring of some versions depending on loader and Minecraft version. These systems have largely remained unchanged since their introduction, though the notification system will likely be getting a refresh come 2023. + +## April-December 2021: Season of silence + +After follows, reports, and all that jazz, Modrinth largely went silent for a good while. This time period had some of the largest growth Modrinth had ever seen, and yet it seemed Modrinth's development had ground to a halt. Modrinth Team members were dropping like flies until there was a point where there was a single person on the team. What happened? + +For various reasons, whether it be lack of free time or a lack of interest in Minecraft in general, people ended up leaving to pursue other things. It's not quite as apocalyptic or barren as these descriptions make it seem, but it's more fun to describe it like this. + +Picking up the remnants from what others had left behind, one man was destined to continue developing for Modrinth. The one who began the whole operation in the first place, Geometrically, stood up and began developing. Thus came the development of project types, gallery images, API v2, and modpacks. + +## January 2022: API v2 introduction + +Right around the corner came 2022. Perchance this would be the time for the silence to be broken? Indeed, the world would be able to hear about all that was brewing over the past few months. + +Of course, this wasn't all introduced at once—it was a gradual rollout over several months. First was the introduction of v2 of Modrinth's API, allowing many breaking changes to occur, including namely the renaming of _mods_ to _projects_. Wait, why was this necessary? + +Up until this point, Modrinth only hosted mods. Project types, as we call them, allow projects to be given the designation of something other than _mod_; for example, _modpack_ or _resourcepack_, like we have today. This simple field, alongside all of the infrastructure which was needed to support it, was the first step to allow modpacks on Modrinth. + +## February 2022: Redesign + +Remember the interface introduced in December 2020? Let's scrap it! Actually, it wasn't entirely scrapped, but it got a treatment similar to the [Ship of Theseus](https://en.wikipedia.org/wiki/Ship_of_Theseus) to the point that it was barely recognizable. + +![The Modrinth homepage](../redesign/thumbnail.jpg) + +> The former Modrinth homepage + +Alongside this was the official announcement of API v2, as well as the introduction of the project gallery, the changelog tab, dependencies, and many other things. [Here's the blog post announcement for the redesign](../redesign)! + +February also brought the introduction of several new Modrinth Team members to the fold, including Prospector and triphora, both of whom are still on the team, alongside Hutzdog and venashial, who we thank for helping us through much of 2022. + +## March-April 2022: Small changes and preparation for modpacks + +A couple weeks after the redesign we pushed out some changes which included improvements to several tabs on project pages and many bug fixes. [The blog post from that can be found here](../knossos-v2.1.0). + +The next couple months were spent preparing for the release of modpacks. This is the first introduction of our "early adopters" program, still in use today, allowing a feedback loop of authors and other community members to create the best product that we can. Without early adopters, many of the features on Modrinth which you've come to love, including modpacks, plugins, resource packs, would be less than ideal. + +## May 2022: Modpacks in alpha + +In May, we finally did the big release of modpacks on Modrinth. Well, in alpha, anyway—but that was less of a marker of instability and more a marker of being incomplete without the launcher. [The modpack alpha release blog post can be found here](../modpacks-alpha). + +When we first announced modpacks, the initial format had been set in stone for a couple years, and it had been decided that CurseForge links would be allowed within them. This got turned on its head due to an email sent to us by Overwolf. More information on that can be found on the [Changes to Modrinth Modpacks blog post](../modpack-changes). + +![Progryck](../modpack-changes/thumbnail.jpg) + +## June-August 2022: Plugins and resource packs + +The summer of 2022 was largely dedicated to working on releasing creator monetization. First, though, we made a pit stop to introduce plugins and resource packs to Modrinth. [Find that blog post here](../plugins-resource-packs). + +Plugins in particular were tricky since we had to account for projects which had both mod and plugin versions. It was at this point we realized that the project type system isn't entirely what we cracked it up to be, and we're hoping to completely replace it once API v4 rolls around, as far away as that may sound. For now, though, it will suffice. + +## September-November 2022: Creator monetization + +With plugins and resource packs done, we continued working on creator monetization. This included [a brief experiment](../carbon-ads) with a different ad provider before we eventually switched to creating [our own ad system](https://adrinth.com). + +November brought the actual beta release of creator monetization—[here's the blog post for that](../creator-monetization-beta). We are continuing to develop and refine this system to ensure authors continue to earn money from publishing projects on Modrinth. + +## December 2022-January 2023: Anniversary Update + +That, of course, brings us to today's [Anniversary Update](../two-years-of-modrinth)! Now that you're done reading this, feel free to go back over to that post and read about everything that's new in the Anniversary Update so that I don't have to repeat myself. Take a look at our New Year's Resolutions for 2023 while you're at it, too! diff --git a/packages/blog/articles/two-years-of-modrinth.md b/packages/blog/articles/two-years-of-modrinth.md new file mode 100644 index 000000000..55541f41b --- /dev/null +++ b/packages/blog/articles/two-years-of-modrinth.md @@ -0,0 +1,128 @@ +--- +title: Modrinth's Anniversary Update +summary: Marking two years of Modrinth and discussing our New Year's Resolutions for 2023. +date: 2023-01-07 +authors: ['6plzAzU4'] +--- + +Modrinth initially [went into beta](../modrinth-beta) on November 30th, 2020. Just over a month ago was November 30th, 2022, marking **two years** since Modrinth was generally available as a platform for everyone to use. Today, we're proud to announce the Anniversary Update, celebrating both two years of Modrinth as well as the coming of the new year, and we'll be discussing our New Year's Resolutions for 2023. + +Before you read this post, though, we recommend taking a look at [our retrospective on Modrinth's history through 2020—2022](../two-years-of-modrinth-history). It just wouldn't be right to take a look at the present and the future without also taking a look at our past, seeing how far we've come from our humble beginnings. + +With that out of the way, this post primarily serves to announce a few of the smaller features we've been working on after the release of creator monetization. We've bundled these all together as the **Anniversary Update**. + +Looking just at what's already done is boring, though, so we'll also be looking at what's yet to come. Modrinth's future is even brighter than any of us can imagine, so we'll be focusing on what we're gonna do in order to get to that bright future. If you've ever made **New Year's Resolutions**, we're going to briefly discuss our resolutions for 2023. + +Without further adieu, let's get right into what's new with this new year! + +## Shader packs and data packs + +The long-awaited arrival of shader packs and data packs is now here on Modrinth! + +Shader packs can be viewed in the [shaders tab](/shaders). This includes shaders that support [Iris](/mod/iris), [Canvas](/mod/canvas), and OptiFine, as well as vanilla core shaders. (Even though they're installed via the resource pack system, we have decided to put Canvas and core shaders in shader packs since most users will not search in resource packs for shader packs, even if that's how they're installed.) + +Data packs can be found in the [data packs tab](/datapacks). These are implemented similarly to plugins, in that projects with a mod version can also upload a data pack version (and vice versa). Additionally, data pack authors can choose to have their data packs packaged as a mod using the handy-dandy button on the site. + +Data packs can optionally upload a corresponding resource pack as a separate file. We discourage bundling data files and asset files in the same zip file. + +## New landing page + +The [homepage](/) has been completely remade, featuring a scrolling list of random projects from Modrinth. Feel free to use this to discover new projects—just make sure you refresh occasionally, because they loop after a little while until you refresh! + +![A screenshot of the new homepage, with a maze background and projects scrolling across the bottom. Bold across the front is "The place for Minecraft mods".](./landing-page.jpg) + +## Project overhaul for creators + +We're continuing to bring expansions to the creator dashboard introduced with monetization. The new **Projects** tab allows you to view all of your projects in a table and quickly access their information and settings. + +[![The new Modrinth project dashboard](./projects-dashboard.jpg)](/dashboard/projects) + +The same page also introduces the ability to bulk-edit the external resource links without having to edit each page individually. For example, if your Discord invite expires, you used to have to edit each of your projects individually to add it back. Now you can just select the projects you want to edit the links for and edit them all at the same time! + +![A modal with several input fields for external resource links, listing multiple projects the input changes will be applied to.](./bulk-edit.jpg) + +Even better are the changes to the settings page for individual projects. Previously, the project settings page was disorganized and cluttered. The project settings page has been completely redone, inspired by GitHub's repository settings page. + +![The new project settings page, shown for Sodium.](./project-settings.jpg) + +Draft projects also now have a publishing checklist, making it more clear to authors as to what their next steps should look like. Red asterisks are items that must be completed before submitting and purple light bulbs are suggestions. + +![A card with several tasks for a draft project owner to do, such as adding a description and selecting the necessary information.](./publishing-checklist.jpg) + +## Version page overhaul + +The layout of the individual version page has gotten a complete overhaul. It's much easier to just show the new UI in action rather than trying to explain it! + +A screenshot of the way that individual versions look now: + +![A screenshot of the way that individual versions look now.](./version-page.jpg) + +That's not all, though. Version creation now automatically infers most details after you upload your first file. Try it out sometime—whenever you upload your first file, most stuff should already be filled in. This system is still in-development, so if you find any issues, please file an issue on [GitHub](https://github.com/modrinth/code). + +## Project card views + +Anywhere which lists projects, namely search and user pages, have gotten a great overhaul. You can choose between the classic list view, the grid view, and the gallery view. + +![A screenshot of the default view for the Modrinth shaders search.](./search-gallery-view.jpg) + +By default, shader packs and resource packs use the gallery view, user pages use the grid view, and everywhere else use the list view. You can cycle through them near the top of each page or change them in your [display settings](/settings). + +The gallery image uses the featured gallery image on a project, so please ensure if you are a shader pack or resource pack author that you set a featured gallery image! + +## Gallery image UI for creators + +The existing UI for gallery image creation, editing, and deletion was flawed in many ways, so we threw out the old way of doing it and created a whole new system for this. It should be less prone to the many many bugs that plagued the previous implementation. + +![The new gallery image editing UI, in a modal](./gallery-ui.jpg) + +## New project webhook + +Our [Discord server](https://discord.modrinth.com) has a brand new channel: #new-projects. A webhook sends a message to this channel every time a new project gets approved. Check it out when you get a chance! + +![A screenshot of the new project webhook for Iris Shaders.](./project-webhook.jpg) + +## Miscellaneous additions + +- Custom SPDX license identifiers can now be selected, and a license's text is now displayed in a modal if the author has not manually set a license link. +- Each project now has a color associated with it, generated from the icon. This color is used in place of a gallery image in search if the project has no gallery image. +- The [bug with disappearing and duplicated versions](https://github.com/modrinth/code/issues/1748) due to the reuse of version numbers is now fixed. +- Whenever a project gets its status updated (for example from _under review_ to _approved_), the project's team members will now get a notification. +- The ability to manually reorder gallery images has been added via an integer ordering field. In the future, this sorting ability may expand to team members and versions. We also hope to add a drag-and-drop functionality similar to Discord server organization. +- You can also now formally request that your project be marked as unlisted, private, or archived instead of always having it be listed first. +- The ability to schedule the release of projects and versions has been added to the backend and is likely to be added to the frontend in the next few weeks. +- Several other bug fixes and minor features, mainly contributed by community members. + +## New Year's Resolutions + +Now that we've looked at everything accomplished over the past month and a half, let's take a look at our New Year's Resolutions—things we wish to achieve during 2023. + +### Theseus Launcher + +During 2023, our main focus will shift to the Modrinth launcher, code-named Theseus. Progress has been off and on for the past year and a half, but we intend to fully launch it before the end of the year. Theseus will bring a next-level experience to Minecraft launchers, bringing first-class support for Modrinth and unique features that would be difficult for other providers to parallel. + +The release of the Theseus project will also mark the end of the "alpha" status for Modrinth modpacks. Stay tuned for more information about alpha tests and early adopters programs! + +### Continuing to grow creator tools + +Another one of our focuses for this year is to put more work into our analytics system and in growing creator monetization through our [Adrinth](https://adrinth.com) ad network. As of today, monetization is now out of beta, but we are still constantly working on ways to make Modrinth even better and easier to use for new and returning creators. Some of these improvements are big, like the project settings overhaul, while others are more subtle quality-of-life improvements, like the fixes to usage of duplicate version numbers. + +### API changes + +This year, Modrinth hopes to introduce version 3 of [our API](https://docs.modrinth.com/api/) with lots of fixes and smaller changes. While our plans are still work-in-progress for this, one of the things that needs to be done first is the removal of the old API v1, which was deprecated starting in January 2022. Here's our planned timeline for the removal of API v1: + +- **January 7th, 2023 (Now):** Begin sending messages to existing API v1 users +- **January 7th, 2023 (Now):** Add a field to each API result telling people to switch +- **February 14th, 2023:** Begin doing flickers of 5-10 minutes of 410 GONE response codes +- **March 1st, 2023:** Begin sending a permanent 410 GONE response for any non-GET routes +- **March 1st, 2023:** Ramp up 410 GONE flickers to last 6-12 hours for GET routes +- **March 15th, 2023:** Replace all remaining GET routes with a permanent 410 GONE response + +### Small updates throughout the year + +As always, we will be interspersing other, smaller quality-of-life updates throughout the year even as we work on the big stuff. We also want to fix any bugs which might come up alongside any updates. + +## Conclusion + +Modrinth was founded with the goal of creating a platform which keeps the broader modding community's interests at heart. Modrinth would not exist without the support of our users and of our contributors, and we thank everyone involved immensely for everything. Modrinth's development shall continue as long as the community is willing to support us on the way! + +We would love to hear any feedback you might have. Feel free to get in contact on [Discord](https://discord.modrinth.com), on [Twitter](https://twitter.com/modrinth), and on [Mastodon](https://floss.social/@modrinth). diff --git a/packages/blog/articles/whats-modrinth.md b/packages/blog/articles/whats-modrinth.md new file mode 100644 index 000000000..1994c84c4 --- /dev/null +++ b/packages/blog/articles/whats-modrinth.md @@ -0,0 +1,62 @@ +--- +title: What is Modrinth? +summary: "Hello, we are Modrinth – an open source mods hosting platform. Sounds dry, doesn't it? So let me tell you our story – and I promise, it won't be boring!" +date: 2020-11-27 +authors: ['aNd6VJql'] +--- + +Hello, we are Modrinth – an open source mods hosting platform. Sounds dry, doesn't it? So let me tell you our story – and I promise, it won't be boring! + +## Prelude and conception + +Before Modrinth was even thought of, there already were several giant platforms for mod hosting. However, most of them were too specialized, outdated, or transitively dependent on an uncaring hegemonic 3rd party. Authors and players were always in struggle. The community had to choose 2 out of 3: inconvenience, indifference, obsolescence. Urge for better service, either new or renewed, just founded or acquired arose. + +Although demand for proper competition is the seed, the germ of Modrinth, the biggest role was played by the Fabric project. It set an example of a community-powered alternative. It was democratic, FOSS, listening to the community, and welcoming contribution and 3rd party initiatives. They have shown the modding community that they can evolve and adapt, be accessible and welcoming, cooperative, and caring. + +## Fabricate and HexFabric + +And, oh boy, did they connect – the demand for competition grew so high, that at some point the community just exploded with novelty. During several months, almost a dozen projects were aiming to be the second Walmart, the third IKEA, the fourth Amazon for your mods. Here beings the story of HexFabrics... – wait, what? What's that? + +> HexFabric is an umbrella term for modern mod hosting technology. It got its name from Fabric, which at the point was poorly supported (if at all) by the major players on the stage. In practice, HexFabric is just a cozy Discord server, on which several projects have their deputizing channels. + +Back on track – Lots of HexFabrics were founded almost simultaneously. Altar.gg, Astronave, Diluv, ModForest, Minerepo... and, most importantly, Fabricate. + +Fabricate began its journey as a proprietary project indexing website by a single developer – Geometrically. It remained relatively unnoticed for a couple of weeks, and then it started gaining attention. This new website has amazing search! Yup, the whole thing was primarily about making seamless, gracious, appeasing smart real-time search. The community is now intrigued. + +## Becoming a team + +"But this looks awful! And it's proprietary!" – a few voices said. Among those voices were falseresync and MulverineX. They both had several objections to that and were pestering the original author. "FOSS is the true way for community project" and "Just use a license to prevent others from creating instances of your work," they told. + +Yet Fabricate remained proprietary for a while. However, once the pressure on the author became high, they gave up and open-sourced their work. This was the birth of Modrinth. It did not get its name for a little while longer though. + +Now that Modrinth was open source, it started gaining traction. Remember falseresync and MulverineX? They joined Geometrically on the branding site, and somewhere in the middle of the brainstorming process the logo and the name were born. At the same time AppleTheGolden, Aeledfyr, and Redblueflame began contributing to the actual code of the project, which is – nowadays known to everyone – in Rust. A solo suddenly became a team, ready for whatever future holds. + +## Development non-stop + +The newly born FOSS project is now evolving swiftly. Before our team arose the question: monolithic vs split app architecture. Monolithic would be easier to deploy and can serve pages quicker. The split architecture will simplify the development and allow for a feature-full user experience. The discussion was hot, and the sides were fierce. Nevertheless, the split pattern won. Now it was time to make proper backend and frontend apps. + +The work first began with the backend. Aeled, Red, and Geo started detaching API methods from visuals. The team worked hard. Consequent to the API splitting from the GUI, it became getting new and exciting features. The first feature to be added was custom Modrinth mods – before that, the website only indexed the competitor's service. + +However, for that to happen there had to be another step taken – migration from MongoDB to PostgreSQL. It was crucial for efficient data storage and complex relationships between projects. And the biggest propagator of that change was Apple, who introduced and successfully defended their case. + +Thus, with custom mods, better yet search has been implemented. After search, user accounts with external log-in made their way into the project. Now it first creators started uploading their mods – a monumental achievement. + +After the first creators came more – the community began taking Modrinth as a serious alternative hosting. At some point, uploads accelerated to the point that our team was forced to redo their plans and establish project editing and moderation considerably earlier than it could have been. Besides, creators need analytics, they need teams, they needed support system. So the backend developers tried their best to keep up and achieved their goals through enthusiastic labor and dedication. + +## Refreshed look + +Although, on the frontend side things weren't as bright, unfortunately. Once falseresync presented the new look and feel Modrinth should aim for, he was forced to dedicate less time to the project. As a consequence, the frontend was implemented rather haphazardly and was lacking in features compared to the backend. + +However, this did not stop the project from evolving. The backend team has continued to expand on existing features, and after a long period of time, the savior descended on the frontend – Prospector, who rapidly became a crucial contributor and a part of the team. With new and comprehensive design guidance from falseresync and critique from MulverineX and the community, Prospector achieved feature parity with backend and greatly improved the website look and feel. + +Improving the frontend wasn't an easy job: naughty CSS, runtime errors, the abundance of framework-related nuances – all were obstacles, and all were defeated. Through battles with web technologies, jokes about quirky styles, and hard work our team created the UI you see today. + +## Going beta + +> You have to believe that the dots will somehow connect in your future. _– Steve Jobs_ + +With the story complete, we are proud to announce that the Modrinth beta will be coming out on November 30th, with a refreshed look and a feature-complete modding website! It is a tremendous achievement for us and the community, which we are very proud of. + +It is heart-warming to admit that we're finally going officially online. We know it's not perfect yet. But regardless, we will continue our passion project as a team, and we will expand on it and make it only better! + +Stay tuned! diff --git a/packages/blog/articles/windows-borderless-malware-disclosure.md b/packages/blog/articles/windows-borderless-malware-disclosure.md new file mode 100644 index 000000000..746522c07 --- /dev/null +++ b/packages/blog/articles/windows-borderless-malware-disclosure.md @@ -0,0 +1,84 @@ +--- +title: 'Malware Discovery Disclosure: "Windows Borderless" mod' +summary: Threat Analysis and Plan of Action +date: 2024-05-07T12:00:00-08:00 +authors: ['Dc7EYhxG', 'MpxzqsyW'] +--- + +This is a disclosure of a malicious mod discovered to be hosted on the Modrinth platform. It is important to not panic or jump to conclusions, please carefully read the [Am I Affected?](#am-i-affected) and [Threat Summary](#threat-summary) sections. + +## Am I Affected? + +If you run **Windows** and have downloaded a mod called "**Windows Borderless**" (specific files listed below) between May 4th, 2024 and May 6th, 2024 and have run the game with the mod installed, you are affected. + +**IMPORTANT NOTE:** This mod is called, exactly, "Windows Borderless". There are other mods with similar names on Modrinth, which are **_NOT_** malware, such as "Borderless Mining", "Borderless", and "Borderless Mining Reworked". + +If you have not downloaded that mod or do not run Windows, there is no reason to believe you are at any risk. We have released a detection tool [available here](https://github.com/modrinth/oracle/releases/download/v0.0.1/ModrinthMalwareScanner.exe) which can scan your mods folder for the malicious files if you wish to make sure your instance does not have the mod. The tool is also [open-source](https://github.com/modrinth/oracle). + +**Download and run the detection tool [here](https://github.com/modrinth/oracle/releases/download/v0.0.1/ModrinthMalwareScanner.exe)!** + +### What do I do if I have used the "Windows Borderless" mod? + +First, delete the mod entirely from your computer. + +The mod harvested data stored by many Chromium-based projects such as **Google Chrome**, **Discord**, **Microsoft Edge**, and many other browsers such as Opera/Opera GX, Vivaldi, Brave, Firefox and over dozen more. Included in this data may be **account tokens**, **stored passwords**, **banking information**, **addresses**, and more. + +In order to protect yourself, change all of your passwords, and keep an eye out on your bank accounts and credit cards. + +## Threat Summary + +**Exposure level:** Low, ~372 distinct IPs downloaded affected files. One Discord account is alleged to have been stolen due to this. + +**Malware severity:** Medium (Discord, browser, and system info stealer, but does not self-replicate) + +**Projects affected:** + +| Name | Project ID | Former URL | +| ------------------ | ---------- | -------------------------------------------- | +| Windows Borderless | `ZQpQzwWE` | `https://modrinth.com/mod/windowsborderless` | + +**Files affected:** + +| Name | SHA1 Hash | Version ID | Download count | +| ---------------------------------------- | ------------------------------------------ | ---------- | -------------- | +| `windowedborderless-v0.2 - 1.20.4.jar` | `179b5da318604f97616b5108f305e2a8e4609484` | `NkTbhEmf` | 116 | +| `windowedborderless-v0.3 - 1.20.4.jar` | `1a1c4dcae846866c58cc1abf71fb7f7aa4e7352a` | `v87dk8Q7` | 15 | +| `windowedborderless-v0.4 - 1.20.+.jar` | `e4d55310039b965fce6756da5286b481cfb09946` | `pVfdgPhy` | 68 | +| `windowedborderless-v0.4 - 1.20.+.jar` | `2f47e57a6bedc729359ffaf6f0149876008b5cc3` | `Wt4RjZ49` | 119 | +| `windowedborderless-v0.4.1_-_1.20.+.jar` | `2f47e57a6bedc729359ffaf6f0149876008b5cc3` | `oIlYelrb` | 1 | + +None of these files were included in any modpacks on the Modrinth platform, so you are only at risk if you downloaded the mod directly. + +## Timeline + +### April 29th, 2:39pm - Project submitted for review as a legitimate mod + +The Modrinth project "Windows Borderless" is submitted for review with a single file uploaded that does not contain any malware. + +### April 30th, 12:15am - Modrinth moderators approve the project + +The "Windows Borderless" project is approved with only one file, which contained no malware. + +### May 2nd, 3:50am - New version containing malware is published + +A "Windows Borderless" version containing the file windowedborderless-v0.2 - 1.20.4.jar (mentioned in the table of affected files above) is published. This initial version of the malware did not include any credential or token stealing, but only sent identifying information about a user’s machine to a discord webhook. + +### May 4th, 4:01pm thru May 6th, 3:46am - More versions are uploaded + +Between May 4th, 4:01pm and May 6th, 3:46am, more new versions of the mod containing the malware were uploaded. These versions all contain credential and token stealers. + +### May 6, 2024 @ 7:21am - A Modrinth user reports the project + +A user submits a report against the mod, alleging that their Discord account got compromised after using the mod. + +### May 6, 2024 @ 10:37am - Modrinth moderators investigate the project + +The mod is investigated by Modrinth staff. We decompiled the mod and discovered that the mod contained malicious code. The threat is immediately obvious, so within a few minutes we take down the project, all CDN links related to the project, and all other projects by the same users. + +## Conclusion + +In response to this incident, we are actively developing a shared system to effectively quarantine known malicious mods by creating a web API to allow launchers to check if any of the files a user has downloaded match any of the files in our known malware database, and return up-to-date information about any known malware. + +We are also in the process with working with relevant law enforcement agencies to pass along all information we have. + +In order to also more proactively increase safety, we're also investigating possible methods of sandboxing or algorithmically detecting malware patterns in Java software. While these are infamously tricky to implement on certain platforms, we hope to do our best in order to ensure the best security for the modding community. diff --git a/packages/blog/blog.config.ts b/packages/blog/blog.config.ts new file mode 100644 index 000000000..91858f0cc --- /dev/null +++ b/packages/blog/blog.config.ts @@ -0,0 +1,34 @@ +import * as path from 'path' +import { repoPath } from './utils' + +/** + * The glob pattern to find all markdown articles which should be compiled. + */ +export const ARTICLES_GLOB = repoPath('packages/blog/articles/**/*.md') + +/** + * The directory where compiled articles are stored. + */ +export const COMPILED_DIR = repoPath('packages/blog/compiled') +export const ROOT_FILE = path.join(COMPILED_DIR, 'index.ts') + +/** + * The source directory for public assets used in articles. + */ +export const PUBLIC_SRC = repoPath('packages/blog/public') + +/** + * An array of git-repository-root-relative paths where public assets should be copied to. + */ +export const PUBLIC_LOCATIONS = [repoPath('apps/frontend/src/public/news/article')] + +/** + * The git-repository-root-relative path to the frontend RSS feed file. + */ +export const RSS_PATH = repoPath('apps/frontend/src/public/news/feed/rss.xml') +export const JSON_PATH = repoPath('apps/frontend/src/public/news/feed/articles.json') + +/** + * The base URL of the Modrinth site, used for the RSS feed. + */ +export const SITE_URL = 'https://modrinth.com' diff --git a/packages/blog/check.ts b/packages/blog/check.ts new file mode 100644 index 000000000..b976e053a --- /dev/null +++ b/packages/blog/check.ts @@ -0,0 +1,85 @@ +import { promises as fs } from 'fs' +import * as path from 'path' +import fastGlob from 'fast-glob' +import { repoPath, toVarName } from './utils' + +import { PUBLIC_SRC, PUBLIC_LOCATIONS, ARTICLES_GLOB, COMPILED_DIR } from './blog.config' + +async function checkPublicAssets() { + const srcFiles = await fastGlob(['**/*'], { cwd: PUBLIC_SRC, dot: true }) + let allOk = true + for (const target of PUBLIC_LOCATIONS) { + for (const relativeFile of srcFiles) { + const shouldExist = path.join(target, relativeFile) + try { + await fs.access(shouldExist) + } catch { + console.error(`⚠️ Missing public asset: ${shouldExist}`) + allOk = false + } + } + if (allOk) { + console.log(`✅ All public assets exist in: ${target}`) + } + } + if (!allOk) process.exit(1) +} + +async function checkCompiledArticles() { + const mdFiles = await fastGlob([ARTICLES_GLOB]) + const compiledFiles = await fastGlob([`${COMPILED_DIR}/*.ts`]) + const compiledVarNames = compiledFiles.map((f) => path.basename(f, '.ts')) + + // Check all .md have compiled .ts and .content.ts and the proper public thumbnail + for (const file of mdFiles) { + const varName = toVarName(path.basename(file, '.md')) + const compiledPath = path.join(COMPILED_DIR, varName + '.ts') + const contentPath = path.join(COMPILED_DIR, varName + '.content.ts') + if (!compiledVarNames.includes(varName)) { + console.error(`⚠️ Missing compiled article for: ${file} (should be: ${compiledPath})`) + process.exit(1) + } + try { + await fs.access(compiledPath) + } catch { + console.error(`⚠️ Compiled article file not found: ${compiledPath}`) + process.exit(1) + } + try { + await fs.access(contentPath) + } catch { + console.error(`⚠️ Compiled article content file not found: ${contentPath}`) + process.exit(1) + } + } + + // Check compiled .ts still have corresponding .md + for (const compiled of compiledFiles) { + const varName = path.basename(compiled, '.ts') + if (varName === 'index' || varName.endsWith('.content')) continue + + const mdPathGlob = repoPath(`packages/blog/articles/**/${varName.replace(/_/g, '*')}.md`) + const found = await fastGlob([mdPathGlob]) + if (!found.length) { + console.error(`❌ Compiled article ${compiled} has no matching markdown source!`) + process.exit(1) + } + } + + console.log( + '🎉 All articles are correctly compiled, matched, and have thumbnails (if declared)!', + ) +} + +async function main() { + console.log('🔎 Checking public assets...') + await checkPublicAssets() + + console.log('🔎 Checking compiled articles...') + await checkCompiledArticles() +} + +main().catch((e) => { + console.error('❌ Error in check.ts:', e) + process.exit(1) +}) diff --git a/packages/blog/compile.ts b/packages/blog/compile.ts new file mode 100644 index 000000000..684d13b29 --- /dev/null +++ b/packages/blog/compile.ts @@ -0,0 +1,256 @@ +import { promises as fs } from 'fs' +import * as path from 'path' +import fg from 'fast-glob' +import matter from 'gray-matter' +import { md } from '@modrinth/utils' +import { minify } from 'html-minifier-terser' +import { copyDir, toVarName } from './utils' +import RSS from 'rss' +import { parseStringPromise } from 'xml2js' + +import { + ARTICLES_GLOB, + COMPILED_DIR, + ROOT_FILE, + PUBLIC_SRC, + PUBLIC_LOCATIONS, + RSS_PATH, + JSON_PATH, + SITE_URL, +} from './blog.config' + +async function ensureCompiledDir() { + await fs.mkdir(COMPILED_DIR, { recursive: true }) +} + +async function hasThumbnail(slug: string): Promise { + const thumbnailPath = path.join(PUBLIC_SRC, slug, 'thumbnail.webp') + try { + await fs.access(thumbnailPath) + return true + } catch { + return false + } +} + +function getArticleLink(slug: string): string { + return `${SITE_URL}/news/article/${slug}` +} + +function getThumbnailUrl(slug: string, hasThumb: boolean): string { + if (hasThumb) { + return `${SITE_URL}/news/article/${slug}/thumbnail.webp` + } else { + return `${SITE_URL}/news/default.webp` + } +} + +async function compileArticles() { + await ensureCompiledDir() + + const files = await fg([ARTICLES_GLOB]) + console.log(`🔎 Found ${files.length} markdown articles!`) + const articleExports: string[] = [] + const articlesArray: string[] = [] + const articlesForRss = [] + const articlesForJson = [] + + for (const file of files) { + const src = await fs.readFile(file, 'utf8') + const { content, data } = matter(src) + + const { title, summary, date, slug: frontSlug, authors: authorsData, ...rest } = data + if (!title || !summary || !date) { + console.error(`❌ Missing required frontmatter in ${file}. Required: title, summary, date`) + process.exit(1) + } + + const html = md().render(content) + const minifiedHtml = await minify(html, { + collapseWhitespace: true, + removeComments: true, + }) + + const authors = authorsData ? authorsData : [] + + const slug = frontSlug || path.basename(file, '.md') + const varName = toVarName(slug) + const exportFile = path.join(COMPILED_DIR, `${varName}.ts`) + const contentFile = path.join(COMPILED_DIR, `${varName}.content.ts`) + const thumbnailPresent = await hasThumbnail(slug) + + const contentTs = ` +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = \`${minifiedHtml}\`; +`.trimStart() + await fs.writeFile(contentFile, contentTs, 'utf8') + + const ts = ` +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(\`./${varName}.content\`).then(m => m.html), + title: ${JSON.stringify(title)}, + summary: ${JSON.stringify(summary)}, + date: ${JSON.stringify(date)}, + slug: ${JSON.stringify(slug)}, + authors: ${JSON.stringify(authors)}, + thumbnail: ${thumbnailPresent}, + ${Object.keys(rest) + .map((k) => `${k}: ${JSON.stringify(rest[k])},`) + .join('\n ')} +}; +`.trimStart() + + await fs.writeFile(exportFile, ts, 'utf8') + articleExports.push(`import { article as ${varName} } from "./${varName}";`) + articlesArray.push(varName) + + articlesForRss.push({ + title, + summary, + date, + slug, + html: minifiedHtml, + } as never) + + articlesForJson.push({ + title, + summary, + thumbnail: getThumbnailUrl(slug, thumbnailPresent), + date: new Date(date).toISOString(), + link: getArticleLink(slug), + } as never) + } + + console.log(`📂 Compiled ${files.length} articles.`) + + const rootExport = ` +// AUTO-GENERATED FILE - DO NOT EDIT +${articleExports.join('\n')} + +export const articles = [ + ${articlesArray.join(',\n ')} +]; +`.trimStart() + + await fs.writeFile(ROOT_FILE, rootExport, 'utf8') + console.log(`🌟 Done! Wrote root articles export.`) + + await generateRssFeed(articlesForRss) + await generateJsonFile(articlesForJson) +} + +async function generateRssFeed(articles): Promise { + const sorted = [...articles].sort( + (a, b) => new Date(b.date).getTime() - new Date(a.date).getTime(), + ) + + let currentRssArticles: { title: string; html: string }[] = [] + try { + const xml = await fs.readFile(RSS_PATH, 'utf8') + const parsed = await parseStringPromise(xml) + const items = parsed.rss?.channel?.[0]?.item || [] + currentRssArticles = items.map((item) => ({ + title: (item.title?.[0] ?? '').trim(), + html: (item['content:encoded']?.[0] ?? '').replace(/^$/g, '').trim(), + })) + } catch { + currentRssArticles = [] + } + + const newArr = sorted.map((a) => ({ + title: (a.title ?? '').trim(), + html: (a.html ?? '').trim(), + })) + + let isEqual = currentRssArticles.length === newArr.length + if (isEqual) { + for (let i = 0; i < newArr.length; ++i) { + if ( + currentRssArticles[i].title !== newArr[i].title || + currentRssArticles[i].html !== newArr[i].html + ) { + isEqual = false + break + } + } + } + + if (isEqual) { + console.log(`⏭️ RSS feed not regenerated (articles unchanged)`) + return + } + + const feed = new RSS({ + title: 'Modrinth News', + description: 'Keep up-to-date on the latest news from Modrinth.', + feed_url: `${SITE_URL}/news/feed/rss.xml`, + site_url: `${SITE_URL}/news/`, + language: 'en', + generator: '@modrinth/blog', + }) + + for (const article of sorted) { + feed.item({ + title: article.title, + description: article.summary, + url: `${SITE_URL}/news/article/${article.slug}/`, + guid: `${SITE_URL}/news/article/${article.slug}/`, + date: article.date, + custom_elements: [{ 'content:encoded': `${article.html}` }], + }) + } + + await fs.mkdir(path.dirname(RSS_PATH), { recursive: true }) + await fs.writeFile(RSS_PATH, feed.xml({ indent: true }), 'utf8') + console.log(`📂 RSS feed written to ${RSS_PATH}`) +} + +async function generateJsonFile(articles): Promise { + const sorted = [...articles].sort( + (a, b) => new Date(b.date).getTime() - new Date(a.date).getTime(), + ) + const json = { articles: sorted } + await fs.mkdir(path.dirname(JSON_PATH), { recursive: true }) + await fs.writeFile(JSON_PATH, JSON.stringify(json, null, 2) + '\n', 'utf8') + console.log(`📝 Wrote JSON articles to ${JSON_PATH}`) +} + +async function deleteDirContents(dir: string) { + try { + const entries = await fs.readdir(dir, { withFileTypes: true }) + await Promise.all( + entries.map(async (entry) => { + const fullPath = path.join(dir, entry.name) + if (entry.isDirectory()) { + await fs.rm(fullPath, { recursive: true, force: true }) + } else { + await fs.unlink(fullPath) + } + }), + ) + } catch (error) { + console.error(`❌ Error deleting contents of ${dir}:`, error) + throw error + } +} + +async function copyPublicAssets() { + console.log('🚚 Copying ./public to all PUBLIC_LOCATIONS...') + for (const loc of PUBLIC_LOCATIONS) { + await deleteDirContents(loc) + await copyDir(PUBLIC_SRC, loc) + console.log(`📂 Copied ./public to ${loc}`) + } + console.log('🎉 All public assets copied!') +} + +async function main() { + await compileArticles() + await copyPublicAssets() +} + +main().catch((e) => { + console.error('❌ Error in compile.ts:', e) + process.exit(1) +}) diff --git a/packages/blog/compiled/a_new_chapter_for_modrinth_servers.content.ts b/packages/blog/compiled/a_new_chapter_for_modrinth_servers.content.ts new file mode 100644 index 000000000..d6cb247c8 --- /dev/null +++ b/packages/blog/compiled/a_new_chapter_for_modrinth_servers.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Over the few months, Modrinth has seen incredible interest towards our Servers product, and with significant growth, our vision for what Modrinth Servers can be has evolved alongside it. To continue striving towards our goal of providing the best place to get your own Minecraft multiplayer server, we’ve made the decision to bring our server hosting fully in-house.

    Why We're Making This Change

    Modrinth has some ambitious goals for the next year. We want to create the best possible way for all Java players play Minecraft, and to host and play their favorite modpacks and custom servers. To achieve this, it’s clear that Modrinth Servers needs to be built and scaled on our own infrastructure.

    By running every aspect of our hosting platform, we gain the flexibility to tailor the experience to our community’s needs—whether that means deeper integrations with Modrinth’s ecosystem, better performance, or more innovative features. This also allows us to invest in the long-term sustainability of Modrinth Servers, ensuring that we can scale seamlessly and avoid running out of available servers stock.

    A Thank You to Pyro

    This change is purely a logistical step forward and does not reflect negatively on our partnership with Pyro. In fact, Pyro has been an incredible partner in getting Modrinth Servers off the ground and we are very grateful for their collaboration. We completely support Pyro and their future, and we know they’re working on some exciting new products of their own, which we can’t wait to check out!

    What This Means for You

    We know you may have questions, and we want to make this transition as smooth as possible.

    • What part of my server was being run by Pyro?

      Until this point, Pyro has been responsible for the physical server machines that run your Modrinth servers. This means that they have been responsible for the hardware that powers your server, as well as the files and data for them. Moving forward, all of this will exist under Modrinth.

    • What happens to my running servers?

      Your current servers will continue running, and we’ll provide a clear migration path if any action is needed on your part. You can expect a follow up soon, however our goal is to do this with 0 downtime or impact to you if possible.

    • Will anything else change that impacts me?

      Modrinth Servers will remain the same great experience its has been, you likely won’t notice any changes right away. Long term, this means we’ll be able to improve both the stability of servers as well as the features that make managing your server a breeze.

    This is an exciting step toward a future where Modrinth is the go-to destination for Java Minecraft players—not just for mods and mod-packs, but for hosting and playing too. We appreciate your support and can’t wait to share more soon!

    ` diff --git a/packages/blog/compiled/a_new_chapter_for_modrinth_servers.ts b/packages/blog/compiled/a_new_chapter_for_modrinth_servers.ts new file mode 100644 index 000000000..ea943dc1c --- /dev/null +++ b/packages/blog/compiled/a_new_chapter_for_modrinth_servers.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./a_new_chapter_for_modrinth_servers.content`).then((m) => m.html), + title: 'A New Chapter for Modrinth Servers', + summary: 'Modrinth Servers is now fully operated in-house by the Modrinth Team.', + date: '2025-03-13T00:00:00.000Z', + slug: 'a-new-chapter-for-modrinth-servers', + authors: ['MpxzqsyW', 'Dc7EYhxG'], + thumbnail: true, +} diff --git a/packages/blog/compiled/accelerating_development.content.ts b/packages/blog/compiled/accelerating_development.content.ts new file mode 100644 index 000000000..0f1e1ed22 --- /dev/null +++ b/packages/blog/compiled/accelerating_development.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Update: On April 4, 2024 we announced that we had returned the remaining $800k in investor capital back to our investors to take a different path. Read that announcement here. This article remains here for archival purposes.


    There are over 3 billion gamers worldwide, but only a small fraction ever go further and mod the games they play. Modrinth is here to bring modding to every player on the planet—all the while allowing mod creators to make a living off of it.

    Since our founding in 2020 and up until a few months ago, Modrinth has been a purely volunteer project. In the past couple months, the Modrinth team has been more productive than ever. We've released the Anniversary Update, we're actively working on the launcher once more, and we're laying out plans for how to multiply Modrinth creator payouts.

    The vision we have for the future of Modrinth is great, and right alongside that is the need for an amazing team to build out this vision. That's why we recently announced that we're hiring—we've already come so far on just volunteer work, but for Modrinth to be sustainable and for its growth to be sustainable, we need to pick up the pace.

    That's why we're excited to announce that we've raised a pre-seed round of funding led by Makers Fund, with investors including Ryan Johnson, Stephen Cole, Pim de Witte, Chris Lee, and Andreas Thorstensson to accelerate development and expand to new horizons for Modrinth.

    What's next?

    We're thrilled to keep on building and iterating on Modrinth over the next few years. Here's a look into what we have in store over the next few months for Modrinth:

    • A feature-packed launcher
    • Creator organizations (like GitHub), wikis, graphs (with playtime, views, downloads, etc)
    • More creator payouts, through the growth of Adrinth
    • Discovery/recommendation of mods (especially up-and-coming content)
    • Comments (with built-in moderation and spam protection)
    • [Redacted]

    Support for new games!

    We are excited that we are able to build a product that will manage to grow us to sustainability and create the best modding experience for creators and users. Being able to pay ourselves and bring on new people is a big step in making that happen. There is still a lot to do, so let's get to it!

    Q&A:

    We know there might be some concerns so we included a short Q&A section below for some common ones. Feel free to ask in our Discord if you have any more questions!

    Why does Modrinth need funding?

    Our main expense is and will continue to be salaries. The labor cost has always been the main bottleneck for Modrinth. Having paid employees will allow us to develop Modrinth faster, bringing Modrinth to a point of sustainability and growing the platform. For example, we're planning to release our launcher this year, and eventually we're hoping to expand into more games. Those won't be possible without having paid employees.

    Is Modrinth still community-first?

    We started and always will have the goal of creating a community-oriented, open-source modding platform. Simply put, there isn't any reason for us not to be. It's clear that the previous impersonal, corporate approaches to video game modding have not worked, and Modrinth is excited to change that.

    Will Modrinth still be open-source?

    Yes! We are committed to having all (when possible) our current code and future code we write to be open-source. Copyright is held by the contributors as we have no CLA, so we cannot make it closed-source (even if we wanted to) without, well, violating the law.

    Who's behind Modrinth?

    The Modrinth team (currently consisting of Prospector, Emma, and Geometrically) is behind Modrinth. We've been modding Minecraft for years, with connections extending back to grade school. Investors have a minority stake in the company, and have no control or say in our decisions.

    Is Modrinth going to adopt web3/cryptocurrency?

    No. We have no plans to adopt or explore web3 for Modrinth.

    Will investment money be used to fund creator payouts?

    Not directly. Hiring more people will allow us to build up the infrastructure that can increase payouts, but the money we pay out to creators will always come from sustainable sources such as advertising and never from investment funds.

    ` diff --git a/packages/blog/compiled/accelerating_development.ts b/packages/blog/compiled/accelerating_development.ts new file mode 100644 index 000000000..7f4926d3b --- /dev/null +++ b/packages/blog/compiled/accelerating_development.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./accelerating_development.content`).then((m) => m.html), + title: "Accelerating Modrinth's Development", + summary: 'Our fundraiser and the future of Modrinth!', + date: '2023-02-01T20:00:00.000Z', + slug: 'accelerating-development', + authors: ['MpxzqsyW', 'Dc7EYhxG', '6plzAzU4'], + thumbnail: false, +} diff --git a/packages/blog/compiled/becoming_sustainable.content.ts b/packages/blog/compiled/becoming_sustainable.content.ts new file mode 100644 index 000000000..7a7c4760d --- /dev/null +++ b/packages/blog/compiled/becoming_sustainable.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Just over 3 weeks ago, we launched our new ads powered by Aditude. These ads have allowed us to improve creator revenue drastically and become sustainable. Read on for more info!

    Creator Revenue

    We’re excited to share we have been able to increase creator revenue by 5-8x what it was before!

    There’s a couple changes to how revenue is distributed out to creators coming with this increase.

    First, revenue is no longer entirely paid out the day they are earned. Previously, we used our own in-house advertisement deal which paid us in advance for the entire month, and we divided that among each day in the month, as the month progressed. With the switch to a more traditional ad network, we are paid on a NET 60 basis, which is fairly standard with ad networks. What this means is that some of your revenue may be pending until the ad network pays us out. Exactly how this works is explained further here.

    Second, the revenue split between Modrinth and Creators has changed. See the next section on sustainability for more on this.

    Some creators have wondered if the new revenue is a bug because it’s gone up so much!

    Becoming Sustainable

    We have updated the Modrinth creator revenue split from 90/10 to 75/25. However, all of the increases listed above are with the new rate included, so while the percentage is lower, the overall revenue is much, much higher.

    While 90% is a more remarkable figure, we changed it in order to ensure we can keep running Modrinth and continue to grow creator revenue without having to worry about losing money on operational costs.

    Through these changes, we are proud to announce Modrinth is now fully sustainable with the new income, with all hosting and operational costs accounted for (including paying our developers, moderators, and support staff!) With the new revenue, users will see reduced support times and we will be able to ship bigger and better updates quicker to you all!

    In an effort to be more transparent with our community than ever before, we are opening up as many of our finances as possible so you all can know how we’re doing and where all the money is going. We’re working to develop a transparency page on our website for you to view all the graphs and numbers, but it wasn’t ready in time for this blog post (for now, you can view our site-wide ad revenue in the API here. We also plan to publish monthly transparency reports with more details about our revenue and expenses, the first of which should be available in early October, so keep an eye out for that.

    For now, we can tell you that creators on Modrinth have earned a total of $160,868 on Modrinth to date (as of September 13, 2024), and here’s a graph of our revenue from the past 30 days:

    Modrinth Advertising Revenue (last 30 days)

    We have a lot of exciting things coming up still, and of course, we greatly appreciate all of your support!

    ` diff --git a/packages/blog/compiled/becoming_sustainable.ts b/packages/blog/compiled/becoming_sustainable.ts new file mode 100644 index 000000000..6f5da748a --- /dev/null +++ b/packages/blog/compiled/becoming_sustainable.ts @@ -0,0 +1,12 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./becoming_sustainable.content`).then((m) => m.html), + title: 'Quintupling Creator Revenue and Becoming Sustainable', + summary: 'Announcing an update to our monetization program, creator split, and more!', + date: '2024-09-13T20:00:00.000Z', + slug: 'becoming-sustainable', + authors: ['MpxzqsyW', 'Dc7EYhxG'], + thumbnail: true, + short_title: 'Becoming Sustainable', + short_summary: 'Announcing 5x creator revenue and updates to the monetization program.', +} diff --git a/packages/blog/compiled/capital_return.content.ts b/packages/blog/compiled/capital_return.content.ts new file mode 100644 index 000000000..801927642 --- /dev/null +++ b/packages/blog/compiled/capital_return.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Over three years ago, I started Modrinth: a new Minecraft modding platform built on community principles, a fully open-source codebase, and a focus on creators.

    What started as a hobby project quickly grew into something much bigger, with over twelve thousand creators and millions of players modding their game with Modrinth! Running Modrinth quickly evolved into a full-time job as we worked to scale the platform, develop new features, and fix bugs.

    As our small project that originated in the Fabric Discord server started to get more and more serious, we decided to seek funding to accelerate growth and keep up with the competition. A year and a half ago, we raised a $1.2 million pre-seed round of investor capital. With the money, we hired full-time developers and part-time community members, some of whom have supported Modrinth since the very beginning. With all this support, we launched creator monetization, authentication, analytics, organizations, collections, the Modrinth App, and support for more project types, growing Modrinth’s user base fifteen-fold!

    But, this rapid growth came at some costs. We let sustainable infrastructure for moderation slip to the back-burner since we could just hire extra moderators to compensate, and more and more of my time as the founder was taken up by things that didn’t make Modrinth better. Bugs and technical debt also gradually infected our codebase as we focused on hyper-growth over maintenance.

    Alongside this, as we looked more into the future, we saw that the venture-backed cycle wouldn’t be the right path for Modrinth. Every investor invests in a company with the expectation of a return on their investment, and while all of our backers have been incredibly supportive, we wanted to be able to work on Modrinth at our own pace and terms. We’ve seen other companies in this space prioritize profits and growth at the expense of the community and creators, and we didn’t want this to happen to Modrinth.

    In short, forgoing the venture route would allow us to build Modrinth independently at a sustainable pace and put our creators, community, open-source nature, and values first, without having to worry about expectations of profit or growth.

    In the end, as of February 1st, 2024, I decided to return $800k in remaining investor capital back to our investors.

    This decision was not an easy one, as without this funding, we would be unable to support the Modrinth team as it previously existed. With this reality, I made the difficult decision to significantly reduce the size of our team to match our goals of sustainable growth.

    I also owe a huge debt of gratitude to everyone on the team affected by all of this–Emma, Wyatt, Maya, Coolbot, Jade, Carter, and Prospector–for everything they have done to help make Modrinth what it is today.

    I want to take a moment to highlight each of their contributions:

    • Emma was our lead moderator, social media manager, overall marketing lead, blog post writer, documentation maintainer, Minotaur maintainer, and support manager since joining the team in April 2021
    • Wyatt was a full-time backend developer that worked on our authentication system, analytics, collections, organizations, and tons of work on API v3, and more, since joining the team in February 2023
    • Maya was our first exclusive moderator hire, and despite a rough onboarding due to a lack of internal documentation and procedures on our side, had reviewed thousands of projects since joining the team in April 2023
    • Coolbot was another one of our moderators who especially helped us establish new procedures and improved internal documentation for moderators and had also reviewed thousands of projects since they joined the team in August 2023
    • Jade was also a moderator and had reviewed thousands of projects since joining the team in August 2023
    • Carter was a full-time frontend developer that worked on OAuth, analytics, collections, organizations, and more, since joining the team in October 2023
    • Prospector is our frontend developer and lead designer, who has been with us since September 2020 and has spearheaded multiple site redesigns, developed the frontend for core parts of the site, and more

    This transition was challenging, causing significant delays in project reviews and support ticket resolution, not to mention the stress for the former team. While project review and support times have returned to normal, this was not the experience we wanted for our creators or users to have. I sincerely apologize that you all had to experience this transition, and I wish that it had been executed more smoothly.

    I would also like to apologize for how long this post has taken to come out. It took longer than I expected to do all the legal work and coordination necessary to return the remaining money to the investors, but it has finally been finished.

    Going forward, we will be continuing to build a platform that is sustainable for both the creators and all the people who work on making the platform what it is. Hosting Modrinth is already sustainable, and we are working to make developing Modrinth sustainable as well.

    We’ve made great strides in this already with new moderation infrastructure including AutoMod and a built-in moderator checklist, greatly reducing moderator time per project. We’re also focused on increased transparency, through providing consistent updates on Modrinth’s development and making it easier to contribute to Modrinth with better documentation and contribution cycle.

    We started Modrinth to serve the community, and are taking this path so we can continue to. We hope you all will continue to support us as the newly independent Modrinth.

    Jai (aka Geometrically)
    Founder of Modrinth

    ` diff --git a/packages/blog/compiled/capital_return.ts b/packages/blog/compiled/capital_return.ts new file mode 100644 index 000000000..b67f3e4fb --- /dev/null +++ b/packages/blog/compiled/capital_return.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./capital_return.content`).then((m) => m.html), + title: 'A Sustainable Path Forward for Modrinth', + summary: 'Our capital return and what’s next.', + date: '2024-04-04T20:00:00.000Z', + slug: 'capital-return', + authors: ['MpxzqsyW'], + thumbnail: false, +} diff --git a/packages/blog/compiled/carbon_ads.content.ts b/packages/blog/compiled/carbon_ads.content.ts new file mode 100644 index 000000000..0e2fd8a74 --- /dev/null +++ b/packages/blog/compiled/carbon_ads.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Update 10/24: A month and a half ago we began testing Carbon Ads on Modrinth, and in the end, using Carbon did not work out. After disabling ads with tracking in them, the revenue was about equal to or worse than what we were generating previously with EthicalAds. Effective today, we are switching our ads provider back to EthicalAds for the time being.

    As a step towards implementing author payouts, we're experimenting with a couple different ad providers to see which one works the best for us. We've been using EthicalAds for a long time now, but we'd like to now try out CarbonAds.

    In most respects, this is a temporary experiment, but we're hoping that Carbon will become our primary ad provider in the near future.

    Over the past week and a half, we've garnered a lot of useful feedback in the #devlog channel of our Discord. Over those 1,300 or so messages of open discussion and debate, there were also a lot of questions, concerns, and misconceptions. This blog post aims to address the most frequent of those.

    FAQ

    Is Carbon GDPR and CCPA compliant?

    Yes. This was confirmed to us via email by a Carbon representative.

    Are the ads intrusive?

    No. They fall under the Acceptable Ads Standard; that is, there is only ever one per page, they are less than 120 pixels tall, and they are separate and distinguishable from actual site content.

    Where did the privacy settings go?

    Alongside the introduction of Carbon, we have removed the privacy settings that we previously had. These privacy settings controlled whether PII would be sent in our internal analytics and whether you wanted personalized ads to show up. Our analytics do not contain PII and Modrinth does not show personalized ads. Both of those would be intense breaches of your privacy, opt-in or not, and Modrinth intends to respect your privacy.

    Why are you switching before you've released payouts?

    We have been using ariadne to take note of page views and ad revenue since August 1st, 2022. While creator payouts cannot yet be claimed, all ad revenue from this date forward will be claimable once payouts are released!

    Payouts are not yet done, but this switch is one of the largest things that needs to be done prior to its release.

    Why does Modrinth need to switch away from Ethical?

    There are quite a number of reasons why it's not feasible for us to continue using Ethical. In order to be fully transparent, let's go into detail about each of them.

    In-house ads

    Over half of the ads shown by Ethical are their so-called "in-house ads". That is, Ethical does not have enough inventory to always be showing an ad, so instead it shows an advertisement for itself. These self-advertisements make a whopping $0 for Modrinth.

    Ethical does provide an option to replace these self-advertisements with our own fallback ads, which we've done for the past month or so. However, negotiating those sorts of deals takes an excruciating amount of time, time that we would rather be spending on developing Modrinth to make it better.

    Carbon allows us to have a more hands-off approach with advertising, which is most ideal for us right now.

    Poor CPM

    Ethical gives us an average of $0.24 for every thousand page views (also known as CPM) after taking into account the aforementioned in-house ads. Anyone who knows anything about the advertising business knows that this figure is abysmally low. With Modrinth getting over four million page views in a month's timespan, we make an average of less than $1000 per month with Ethical. This simply isn't sustainable for the thousands of creators on Modrinth.

    While we can't quite be sure what our CPM with Carbon will be -- again, this is only a temporary experiment for now -- we have reason to believe that it will be considerably greater than what Ethical can provide.

    Network in decline

    Over the time that Modrinth has used Ethical, we have found that the diversity of the advertisers shown has declined at a rate greater than is sustainable. The vast majority of the ads shown by Ethical, excluding its in-house ads, are for DigitalOcean. If DigitalOcean decided to withdraw from Ethical, that would end up toppling our entire system. Modrinth's payouts simply cannot rest on this house of cards if we wish to grow in any capacity.

    Can I still use my adblocker?

    You are still able to access Modrinth using an adblocker, and Modrinth will not force you to disable it to access the site. However, Modrinth's ads are unintrusive and take up no more space than it would otherwise.

    When you turn off your adblocker for Modrinth, you are supporting both Modrinth and its creators in the process. 100% of the ad revenue from creator pages, including projects, versions, and users, go directly to creators. The ad revenue from other pages, including search, pay for Modrinth's upkeep costs and allow us to continue to exist.

    For the benefit of everyone involved, we humbly request that you turn off your adblocker for Modrinth. We have a full guide for how to turn off your adblocker located on our docs site.

    Conclusion

    In conclusion, we hope you're as excited about our upcoming release of payouts as we are. Exploring our options for ad providers is quintessential if we wish to be sustainable for payouts, and the best time to do this is now. As always, though, no release ETAs!

    Please note that this blog post was not editorialized or reviewed by Carbon prior to publishing. These are the findings and words of Modrinth and Modrinth alone. What's said here about CPMs and other statistics will not be true of other sites, but they are true for Modrinth.

    ` diff --git a/packages/blog/compiled/carbon_ads.ts b/packages/blog/compiled/carbon_ads.ts new file mode 100644 index 000000000..6f30ddc2e --- /dev/null +++ b/packages/blog/compiled/carbon_ads.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./carbon_ads.content`).then((m) => m.html), + title: "Modrinth's Carbon Ads experiment", + summary: 'Experimenting with a different ad providers to find one which one works for us.', + date: '2022-09-08T00:00:00.000Z', + slug: 'carbon-ads', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/creator_monetization.content.ts b/packages/blog/compiled/creator_monetization.content.ts new file mode 100644 index 000000000..5e48f5f88 --- /dev/null +++ b/packages/blog/compiled/creator_monetization.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Yes, you read the title correctly: Modrinth's Creator Monetization Program, also known as payouts, is now in an open beta phase. All of the money that project owners have earned since August 1st is available to claim right now!

    This includes even projects other than mods! Modpacks, plugins, and resource packs also generate payouts for creators to claim.

    Alongside this, the frontend also got a facelift across the entire site, most notably on the settings, notifications, and user profile pages.

    Motivation

    Since the start, Modrinth has been a platform created by Minecraft content creators for Minecraft content creators. Allowing creators to earn a bit of money for their hard work and dedication to their content has been a goal since we started, and we are so incredibly ecstatic to finally be able to release this for everyone.

    Whether it's used for buying coffee, paying for server costs, or to get that luxury pair of socks, we hope that creators will be able to use their payouts on whatever keeps them running. We want to encourage creators to keep making content for everyone to enjoy, with the hope that everyone will eventually be able to call Modrinth their go-to destination for Minecraft modded content.

    How it works

    For every project uploaded to Modrinth, we keep track of its page views and downloads through an internal system we call ariadne. Through our payouts algorithm (source code), we distribute 100% of ad revenue earned from creator pages to the creators behind these projects. Project owners can decide how to split it (or how not to split it) between their team members.

    Modpacks are a bit different, with revenue split 80% to the Modrinth dependencies on the pack and 20% to the modpack author. This split is subject to change and will be evaluated periodically to ensure the split is reasonably fair.

    After taking the search pages into account, around 10% of the site's ad revenue ends up going to us, mainly to cover hosting and personnel expenses, and 90% to creators.

    While payouts will be small at first, we're working on improving our ads system to better fund the program. We've also got big projects coming soon to continue our trajectory of making the monetization program and the site better!

    How do I earn money?

    When a project of yours on Modrinth gets approved, you are automatically enrolled into the program. You will start to incur a balance, which you can view from the Monetization dashboard. You can claim your first payout via PayPal or Venmo as soon as you enter your credentials and have the minimum balance of 0.26 USD.

    Even though the minimum is low, you will want to wait some time to allow your balance to build up before claiming. Each payment processor has its own fees which depend upon whether you're within the United States, which are detailed on the dashboard's revenue tab.

    Once you request a transfer, you may have to confirm the transfer via email if you don't already have a PayPal account. If you do not confirm using the link in the email within 30 days, or the transfer fails for whatever reason, the amount requested will be returned to your Modrinth balance, though the processor's fees may already have been deducted by that point.

    For residents outside the United States

    Since Modrinth is a US-based company, all amounts are stored, displayed, and paid out in US dollars. PayPal will convert the amount to your local currency once you begin the process of transferring from your Modrinth balance to your PayPal account.

    We're aware of some extenuating circumstances for creators living in areas affected by geopolitical conflict. As such, we are looking into alternative ways to allow payouts to continue in these regions.

    At the moment, there are no mechanisms in place to make your Modrinth balance expire after some time, though this is likely to be added in the future for creators who do not claim their balance after several years. Rest assured, we will have processes in place to make sure that your money doesn't go poof just because you weren't able to claim it in time.

    Frontend facelift

    The website frontend has had some "small" changes of around 12,322 lines of code to accommodate payouts and many other changes. Many of these changes were inspired by the experiments done on the SvelteKit Rewrite, progress on which is paused for the time being. Navigate around the main site for a bit to discover some of these changes! Highlights include:

    • Improved project creation and report filing workflow via modals
    • Improved 404 page
    • Deduplicate identical version changelogs
    • Cleaner user profile pages
    • Easier to navigate settings and notifications
    • Spacing, font, and accessibility tweaks
    • And plenty more!

    Conclusion

    This is a jam-packed update, and it would be impossible to list all the changes in this post. Feel free to explore the site, claim your funds, and give us feedback on Discord. If you suspect you've found any critical bugs or exploits, please email us immediately at support@modrinth.com - otherwise, for non-critical bugs, report them on GitHub.

    👑

    ` diff --git a/packages/blog/compiled/creator_monetization.ts b/packages/blog/compiled/creator_monetization.ts new file mode 100644 index 000000000..2db2b74d1 --- /dev/null +++ b/packages/blog/compiled/creator_monetization.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./creator_monetization.content`).then((m) => m.html), + title: 'Creators can now make money on Modrinth!', + summary: + 'Introducing the Creator Monetization Program allowing creators to earn revenue from their projects.', + date: '2022-11-12T00:00:00.000Z', + slug: 'creator-monetization', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/creator_update.content.ts b/packages/blog/compiled/creator_update.content.ts new file mode 100644 index 000000000..424d28762 --- /dev/null +++ b/packages/blog/compiled/creator_update.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    December may be over, but that doesn’t mean we’re done giving gifts here at Modrinth. Over the past few months, we’ve been cooking up a whole bunch of new features for everyone to enjoy. Now seems like as good of a time as ever to bring you our Creator Update! Buckle up, because this is a big one.

    The headlining features include:

    • Analytics - Allowing Modrinth creators to see statistics from their projects.
    • Organizations - Better tools to manage shared ownership over multiple projects.
    • Collections - A system for putting together shared sets of projects, similar to Spotify playlists.
    • New payouts system - Updates to the existing Creator Monetization Program to better serve creators around the world.
    • New Markdown editor - Explore a complete reworking of our text editor, making it easy even for those unfamiliar with Markdown.
    • OAuth integrations - Our own implementation of the OAuth specification, allowing external applications to “log in with Modrinth”.

    Analytics

    The long-awaited addition of analytics is here for creators! You can view analytics over time for your projects, including downloads, page views, and revenue, all in an effortlessly easy-to-use dashboard.

    The analytics for a project, showing downloads, page views, and revenue, with a breakdown by country.

    A screenshot of the analytics for a user, showing multiple different projects.

    The data for analytics have been collected over the course of many months. In fact, the data for revenue goes all the way back to August 2022, and the data for downloads and views back to February 2023.

    You can view the analytics for an individual project by going to the settings and clicking “Analytics”. You can view analytics for all of your projects in the analytics dashboard.

    Organizations

    Isn’t managing permissions across a bunch of different projects pretty tedious? We sure thought so. Just like on GitHub, you can now create organizations on Modrinth to manage permissions across multiple projects.

    A screenshot of the organizations section of the Modrinth dashboard.

    You can create organizations from the organizations dashboard. Each organization has a name, a brief summary, and an icon. Just like project members, organization members have a role, a monetization weight, and project permissions, plus permissions for the organization as a whole. Roles, monetization weights, and project permissions can be overridden on a per-project basis.

    A screenshot of a user page, with two organizations shown at the very bottom.

    Unlike GitHub, usernames and organization names on Modrinth do not conflict with one another. If you want to have an organization named after yourself, feel free to do so!

    Collections

    Just like how Spotify has playlists or how Goodreads has shelves, Modrinth now has collections! Collections are lists of Modrinth projects put together for a common purpose. You can then share these collections with others to view.

    A screenshot of the Project Odyssey suite of mods as a collection.

    Your followed projects now make up an automatically generated private collection, which you can access from the “Your collections” section of the dashboard.

    Wait… aren’t those just modpacks?

    Not quite! Modpacks are much more complex than collections. Collections are simply lists of projects. Here’s a quick comparison:

    ModpacksCollections
    Created through a launcher, such as the Modrinth App.Created on the Modrinth website.
    Contains options files, configuration files, and optionally files from outside of Modrinth, wrapped together in a .mrpack file.Contains a list of Modrinth projects (mods, plugins, data packs, resource packs, shaders, and modpacks).
    Has individual releases with version history.Instantly updates whenever a project is added or removed.
    Must be reviewed by Modrinth’s staff and approved per Modrinth’s rules before it can be published.Does not need to be reviewed by Modrinth’s staff. Can go public at any time.
    After approval, can be listed in search, archived, unlisted, or private.Can be public (shows up on your Modrinth profile), unlisted (only accessible by direct URL), or private (only you can access it).

    All in all, collections are handy for easily grouping together and sharing Modrinth projects. If you’re bored on the subway heading home, you can look for new mods on your phone and quickly add them to a Modrinth collection. However, for many use cases, spending the time to create a modpack might make more sense. Collections and modpacks are both here to stay—one is not going to replace the other.

    New payouts system

    PayPal and Venmo are so 2023. To enter 2024, we are adding support for a bunch of different new payout methods, including ACH (available for direct transfer to a United States bank account) and a couple thousand gift cards. You know, just “a few”.

    The withdrawal screen, with PayPal, Venmo, ACH, Visa, and a preview of two of the available options for the United States (AMC and Airbnb)

    Whether you want Applebee’s in America, Boek & Bladkado in Belgium, or Cineplex in Canada, we’ve got them all and plenty more. Prepaid Visa cards, Amazon gift cards, and Steam gift cards are among the available options. Does anyone want a Home Depot gift card? We’ve got those, too.

    New Markdown editor

    For the longest time, Modrinth’s text editor for descriptions, changelogs, reports, and more has just been a box to enter Markdown syntax. What about people who don’t know Markdown, though? Even for those who do, writing it out by hand gets tedious after a while. That’s why we rebuilt it from the ground up to make it far easier to use.

    Among its features are standard shortcuts (like Ctrl+B for bold), a monospace font in the editor itself, and buttons for inserting headers, basic formatting, lists, spoilers, block quotes, links, images, and YouTube videos.

    Using the image button, you can also now upload images directly, instead of having to use an external host or the Gallery tab of a project. You can still insert images from outside sources, though certain sources (such as the Discord CDN) are blocked. We will notify authors using these blocked sources to replace the images.

    OAuth integrations

    Wouldn’t it be nice if other websites or apps could add a “Sign in with Modrinth” feature? We asked ourselves this and thought, yes, it would be nice to add. So we added it.

    The OAuth2 protocol allows other services to gain a limited amount of access to your Modrinth account without compromising your login information. Maybe you want to create your own analytics dashboard? Or maybe you want to make your own way to add content to collections? How about connecting organization permissions to roles in a Discord server? The possibilities are endless.

    A screenshot of an OAuth app requesting permission to your user profile.

    You can create a new OAuth application in the Applications section of your settings. You can see which applications you’ve granted access to in the Authorizations section.

    Conclusion

    Want to hear more from us on a regular basis? Check us out on our social media pages; we post often on both Mastodon and X/Twitter. You can also chat with us on Discord if you like that.

    Thanks to intergrav for making the banner image.

    ` diff --git a/packages/blog/compiled/creator_update.ts b/packages/blog/compiled/creator_update.ts new file mode 100644 index 000000000..534cd4921 --- /dev/null +++ b/packages/blog/compiled/creator_update.ts @@ -0,0 +1,12 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./creator_update.content`).then((m) => m.html), + title: 'Creator Update: Analytics, Organizations, Collections, and more', + summary: 'December may be over, but we’re not done giving gifts.', + date: '2024-01-06T20:00:00.000Z', + slug: 'creator-update', + authors: ['6plzAzU4'], + thumbnail: true, + short_title: 'The Creator Update', + short_summary: 'Adding analytics, orgs, collections, and more!', +} diff --git a/packages/blog/compiled/creator_updates_july_2025.content.ts b/packages/blog/compiled/creator_updates_july_2025.content.ts new file mode 100644 index 000000000..9d682f2b5 --- /dev/null +++ b/packages/blog/compiled/creator_updates_july_2025.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Hey all,

    The last few months have been quite hectic for Modrinth. We've experienced all-time highs in both traffic and new creators and have outgrown a lot of our existing systems, which has led to a lot of issues plaguing creators, especially.

    The team has been super hard at work at this, and I'm really glad to announce that we've fixed most of these issues long term.

    1. Upload issues (inputs not showing up, instability, etc)

      We've tracked these issues down to conflicting code between our ad provider and Modrinth's. For now, we've disabled ads for all logged in users across the site while we work on resolving these long term. Both web users and logged-in web users make a very small percentage of our ad revenue (7% for web and 0.05% for logged-in web users) so creators should see a very minimal revenue drop from this, and have a much better experience navigating and uploading to the site.

    2. Moderation and report response times

      Creators have had to wait, in some cases, weeks to get their projects reviewed. This is unacceptable on our part and we are actively overhauling our moderation tooling to improve the moderation experience (and lowering time spent per project). We've also hired 3 additional moderators/support staff (bringing our total to 7 and the total team to 17 people!). We're hoping to see a significant reduction in queue times over the coming weeks.

    3. Ad revenue instability

      While ad revenue is generally out of our control and tends to fluctuate a lot, on June 4th we noticed a sharp decrease in creator revenue (~35% less than normal levels). While our ad provider initially thought this was a display issue, after further inquiry there were 2 causes: 1) Google AdExchange falsely flagging our traffic as invalid 2) Amazon banning many gaming publishers from their network due to panic in the gaming ads space. While the Amazon ban is now resolved, we no longer are running Google AdExchange in the desktop app due to invalid traffic issues. This will lead to a permanent revenue decrease (AdX contributed to ~20% of our ad revenue). We also updated our prebid version (the underlying tech used to run ad auctions) which has shown a measurable increase, bringing revenue back to "normal" levels. Overall, we are closely monitoring and will keep you all posted. However, despite all the issues, due to some end-of-quarter campaigns, revenue in June was an all time high, at $227k ($170k paid to creators)!

    4. Payout outages

      Creators should be able to withdraw their revenue at all times, but due to slow PayPal clearing times and poor planning by us, we've had multiple week long outages in withdrawals. While we do store funds 1:1, these "outages" happen because we primarily store creator funds in an FDIC-insured bank account, as we wouldn't want a PayPal/Tremendous account suspension to cause creators to lose funds. We've now set up internal reporting which should never cause this to happen again (or, if it does, drastically reduce the time payout outages happen)

    5. Platform Revenue Route

      Due to some unannounced breaking changes in Aditude's API, the platform revenue API was broken. It is now working. You can also use start and end fields to filter any date range!

    6. API and Uptime

      We've migrated our infrastructure for the website, app, and servers to OVH over our existing non-redundant AWS system. We've hit 99.96% uptime on our API and 99.98% on Modrinth Servers!

    Thank you all for your patience! If you are having any more issues or have any questions about all of this, feel free to DM @geometrically on Discord or start a support chat and we will be happy to help!

    ` diff --git a/packages/blog/compiled/creator_updates_july_2025.ts b/packages/blog/compiled/creator_updates_july_2025.ts new file mode 100644 index 000000000..4e0fd6cef --- /dev/null +++ b/packages/blog/compiled/creator_updates_july_2025.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./creator_updates_july_2025.content`).then((m) => m.html), + title: 'Creator Updates, July 2025', + summary: 'Addressing recent growth and growing pains that have been affecting creators.', + date: '2025-07-02T04:20:00.000Z', + slug: 'creator-updates-july-2025', + authors: ['MpxzqsyW'], + thumbnail: false, +} diff --git a/packages/blog/compiled/design_refresh.content.ts b/packages/blog/compiled/design_refresh.content.ts new file mode 100644 index 000000000..c63e4c231 --- /dev/null +++ b/packages/blog/compiled/design_refresh.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    We’ve got a big launch with tons of new stuff today and some important updates about Modrinth. Read on, because we have a lot to cover!

    Modrinth+

    First off, we’re launching Modrinth+, a monthly subscription to help support Modrinth and all of the creators on it directly!

    As a Modrinth+ subscriber, you will get:

    • Ad-free browsing on the Modrinth App and website
    • An exclusive badge on your profile
    • Half of your subscription will go to creators on the site!
    • …and more coming soon!

    Pricing starts at $5/month, with discounts depending on what region you live in and if you opt for an annual plan.

    We created Modrinth+ so people could help support Modrinth and creators on the site. We have no plans to paywall any content on Modrinth, and creator features will never cost money. We started Modrinth as a free and open-source platform, and we intend to keep it that way.

    If you do have a few extra dollars a month and want to help support Modrinth, this is a great way to do it!

    New Site Design: Stage One

    We’re launching Stage One of Modrinth’s refreshed look to Modrinth.com today as well. I want to stress that it’s not fully complete and we’re going to be continuing to refine and finish updating the rest of the pages over the coming weeks. However, it has enough significant usability improvements and new features that we’re launching it broadly now. Please bear with us while we work to complete it promptly!

    A screenshot of the new project page

    Key new features include:

    • New download interface to ensure users get the correct version for the Minecraft version and mod loader they’re using
    • New versions list page built from the ground up with a clean new look and tons of shortcuts to make navigation easier
    • New “compatibility” widget on project pages to see what game versions, platforms, and environments each mod supports at a glance
    • Exclusion filters in search pages
    • Improved support for vertical desktop displays

    We know there will be some minor hiccups and disruptions of workflows, but we’d really appreciate it if you could gently let us know how a particular change has affected you on GitHub here (or upvote/comment on an existing issue) rather than declaring it’s the end of the world.

    New Advertising

    In the last few months, Modrinth has grown an incredible amount. We are now serving over a petabyte of data per month (that is, 1,000 terabytes!) to over 20 million unique IP addresses. It’s almost unfathomable how large we have become since we started from nothing just four years ago.

    However, with growth like this, our costs have also grown drastically—primarily in bandwidth. This, unfortunately, means that we’ve grown well beyond what a single advertiser could support.

    Our original plan was to build out our own ad network (Adrinth) where we could cut out the middleman and provide highly targeted ads without the need for tracking to our gaming-specific audience. Unfortunately, we’ve grown too quickly (a very good problem to have!) and don’t have the immediate resources to do this at this time.

    This leaves us with no choice but to switch to a more traditional programmatic ads setup powered by Aditude for the time being. We're not making this decision lightly, and we understand that some folks will not be happy about this change. Rest assured, we've made sure that our new ad network partner meets our requirements, such as compliance with all local regulations such as GDPR and CCPA, and that the new ads remain as unobstructive as possible with this format.

    These changes bring Modrinth back to sustainability as well as conservatively increasing creator revenue by three-fold! Along with paying hosting bills, the new income will also be used for more support staff and paid team members, decreasing ticket time and speeding up our development.

    We also want to thank our friends over at BisectHosting for supporting us with our ad deal for the past year.

    Modrinth App 0.8.1

    Over the last few months, we’ve been overhauling the internals of the Modrinth App to drastically improve performance and stability. Over one hundred issues have been closed with this update alone! Here’s a short list of the major changes:

    • Newer versions of Forge and NeoForge now work!
    • Migrated internal launcher data to use SQLite. The app now loads in <40ms on average (compared to ~2.5s before)!
    • Fixed issues where profiles could disappear in the UI
    • Fixed random cases of the UI freezing up during actions
    • Fixed directory changes being very inconsistent
    • Drastically improved offline mode
    • Fix freezing and include crash reports logs tab
    • And over one hundred more fixes!

    Don’t have the Modrinth App? Check it out here!

    Conclusion

    Want to hear more from us on a regular basis? Check us out on our social media pages; we post often on both Mastodon and X/Twitter. You can also chat with us on Discord if you like that.

    Thanks to intergrav for making the banner image.

    ` diff --git a/packages/blog/compiled/design_refresh.ts b/packages/blog/compiled/design_refresh.ts new file mode 100644 index 000000000..cbeeb15cd --- /dev/null +++ b/packages/blog/compiled/design_refresh.ts @@ -0,0 +1,13 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./design_refresh.content`).then((m) => m.html), + title: 'Introducing Modrinth+, a refreshed site look, and a new advertising system!', + summary: 'Learn about this major update to Modrinth.', + date: '2024-08-21T20:00:00.000Z', + slug: 'design-refresh', + authors: ['MpxzqsyW', 'Dc7EYhxG'], + thumbnail: true, + short_title: 'Modrinth+ and New Ads', + short_summary: + 'Introducing a new ad system, a subscription to remove ads, and a redesign of the website!', +} diff --git a/packages/blog/compiled/download_adjustment.content.ts b/packages/blog/compiled/download_adjustment.content.ts new file mode 100644 index 000000000..d77095cf9 --- /dev/null +++ b/packages/blog/compiled/download_adjustment.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    While working on the upcoming analytics update for Modrinth, our team found an issue leading to higher download counts from specific countries. This was caused by an oversight with regards to rate limiting, or in other words, certain files being downloaded over and over again. Importantly, this did not affect creator payouts; only our analytics. Approximately 15.4% of Modrinth downloads were found to be over-counted. These duplicates have been identified and are being removed from project download counts and analytics. Read on to learn about the cause of this error and how we fixed it.

    A graph of many Modrinth projects and their download counts, showing a disproportionate amount of downloads from China.

    Notice anything out of the ordinary?

    More specifically, the issue we encountered is that the download counts from China were through the roof compared to the page view statistics.

    A graph of many Modrinth projects and their page views, showing a relatively even distribution across countries.

    Upon further investigation, there was one specific launcher that was repeatedly downloading the same files from Modrinth over and over again within a very short time span.

    A table of downloads split into several parts.

    Notice how the downloads in each section (delineated by the bold line) have the same path and were created within the same second.

    This, to say the least, baffled us. We already had code called Sisyphus in place to limit the number of downloads that a single source can make over a given span of time. So what gives?

    As it turns out, the issue lay in the underlying technology used by Sisyphus. It uses Cloudflare Workers in order to intercept the request each time that a file is requested to be downloaded. Essentially, it acted like so:

    1. A source (whether this be a launcher, someone clicking the download button on the website, etc.) would request a file from Modrinth.
    2. Sisyphus would take note of this source’s information, including what it requested, its IP address, and its request headers, and write it to a small database. If this source had not requested this path before, it would add one download to this file. If it had already requested it, it would not.
    3. Sisyphus would then give the file that the source requested. It gives the file regardless of whether the download counted or not.

    For the most part, this system works fairly well. The main issue comes in step 2: it takes a little while for different Sisyphus instances to sync up with each other. One of the benefits of Cloudflare Workers is that the code is deployed to hundreds of different servers around the world. When multiple requests come in at the same time, they can get routed to different servers in order to allow each request to be handled faster. Cloudflare Workers, however, takes up to 60 seconds for each server’s information to sync up with each other. A server in Australia might know that a given source has already downloaded something, but a server in Turkey might not. As a result, multiple downloads from the same source might all get counted if they are handled by different servers.

    In order to fix this, we entirely rewrote Sisyphus. It still uses Cloudflare Workers, but all of the processing of step 2 has been offloaded to the main Modrinth backend. This not only speeds up downloads (even if only briefly), but also makes download counts more reliable. Over the past few days, we've already implemented the necessary adjustments. Our observations have shown that the results are significantly more consistent in their accuracy. Instead of having strange spikes in activity, the graph of new downloads now follows the expected pattern.

    A graph that is split up into two parts: on the left, a spiky graph with the text "old sisyphus". On the right, a graph with consistent dips and peaks.

    Notice the spikes on the left? Compare that to the silky-smooth sinusoidal satisfaction on the right!

    To reiterate, the issue is now resolved and payouts were not affected. Payouts do not take into account downloads from launchers other than the Modrinth App; therefore, this adjustment has no bearing on payouts.

    P.S. Are you curious about why our download counter is called Sisyphus? In Greek mythology, Sisyphus rolls a boulder up a hill for the rest of eternity. Like Sisyphus, our download counter has no point other than to keep increasing for as long as Modrinth exists.

    ` diff --git a/packages/blog/compiled/download_adjustment.ts b/packages/blog/compiled/download_adjustment.ts new file mode 100644 index 000000000..bf8fec048 --- /dev/null +++ b/packages/blog/compiled/download_adjustment.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./download_adjustment.content`).then((m) => m.html), + title: 'Correcting Inflated Download Counts due to Rate Limiting Issue', + summary: 'A rate limiting issue caused inflated download counts in certain countries.', + date: '2023-11-10T20:00:00.000Z', + slug: 'download-adjustment', + authors: ['6plzAzU4', 'MpxzqsyW'], + thumbnail: false, + short_title: 'Correcting Inflated Download Counts', +} diff --git a/packages/blog/compiled/index.ts b/packages/blog/compiled/index.ts new file mode 100644 index 000000000..df58df5ec --- /dev/null +++ b/packages/blog/compiled/index.ts @@ -0,0 +1,56 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +import { article as a_new_chapter_for_modrinth_servers } from './a_new_chapter_for_modrinth_servers' +import { article as accelerating_development } from './accelerating_development' +import { article as becoming_sustainable } from './becoming_sustainable' +import { article as capital_return } from './capital_return' +import { article as carbon_ads } from './carbon_ads' +import { article as creator_monetization } from './creator_monetization' +import { article as creator_update } from './creator_update' +import { article as creator_updates_july_2025 } from './creator_updates_july_2025' +import { article as design_refresh } from './design_refresh' +import { article as download_adjustment } from './download_adjustment' +import { article as knossos_v2_1_0 } from './knossos_v2_1_0' +import { article as licensing_guide } from './licensing_guide' +import { article as modpack_changes } from './modpack_changes' +import { article as modpacks_alpha } from './modpacks_alpha' +import { article as modrinth_app_beta } from './modrinth_app_beta' +import { article as modrinth_beta } from './modrinth_beta' +import { article as modrinth_servers_beta } from './modrinth_servers_beta' +import { article as new_site_beta } from './new_site_beta' +import { article as plugins_resource_packs } from './plugins_resource_packs' +import { article as pride_campaign_2025 } from './pride_campaign_2025' +import { article as redesign } from './redesign' +import { article as skins_now_in_modrinth_app } from './skins_now_in_modrinth_app' +import { article as two_years_of_modrinth_history } from './two_years_of_modrinth_history' +import { article as two_years_of_modrinth } from './two_years_of_modrinth' +import { article as whats_modrinth } from './whats_modrinth' +import { article as windows_borderless_malware_disclosure } from './windows_borderless_malware_disclosure' + +export const articles = [ + a_new_chapter_for_modrinth_servers, + accelerating_development, + becoming_sustainable, + capital_return, + carbon_ads, + creator_monetization, + creator_update, + creator_updates_july_2025, + design_refresh, + download_adjustment, + knossos_v2_1_0, + licensing_guide, + modpack_changes, + modpacks_alpha, + modrinth_app_beta, + modrinth_beta, + modrinth_servers_beta, + new_site_beta, + plugins_resource_packs, + pride_campaign_2025, + redesign, + skins_now_in_modrinth_app, + two_years_of_modrinth_history, + two_years_of_modrinth, + whats_modrinth, + windows_borderless_malware_disclosure, +] diff --git a/packages/blog/compiled/knossos_v2_1_0.content.ts b/packages/blog/compiled/knossos_v2_1_0.content.ts new file mode 100644 index 000000000..e131389c9 --- /dev/null +++ b/packages/blog/compiled/knossos_v2_1_0.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    It's officially been a bit over a week since Modrinth launched out of beta. We have continued to make improvements to the user experience on the website.

    New features

    We've added a number of new features to improve your experience.

    Click to expand gallery images

    The new expanding gallery images

    In the gallery page of a project, you can now click on the images to expand the image and view it more closely. You can also use the left arrow, right arrow, and Escape keyboard keys to aid navigation.

    Filters for the 'Changelog' and 'Versions' pages

    The new changelog and versions filtering options

    Versions on the Changelog and Versions page can now be filtered by mod loader and Minecraft version.

    More easily access the list of projects you follow

    The new 'Following' button in the profile dropdown

    The link to the list of your followed projects is now listed in your profile dropdown.

    Fixes and Changes

    While new features are great, we've also been working on a bunch of bugfixes. Below is a list of some of the notable fixes, but it is not a comprehensive list.

    • Improved the layout of the search page's search bar and options card to more dynamically adjust to screen size
    • Changed the tab indicator to be rounded
    • Changed the download icon to be more recognizable
    • Changed the profile dropdown caret to use an SVG instead of a text symbol for better font support
    • Changed the styling on text fields to be more consistent with the design language of the site
    • Changed the styling on disabled buttons to use an outline to reduce confusion
    • Changed the styling on links to be more consistent and obvious
    • Changed the wording of the options that move the sidebars to the right
    • Changed the green syntax highlighting in code blocks to match the brand color
    • Fixed the styling on various buttons and links that were missing hover or active states
    • Fixed the inconsistent rounding of the information card on the home page
    • [GH-370] Fixed download buttons in the changelog page
    • [GH-384] Fixed selecting too many Minecraft versions in the search page covering the license dropdown
    • [GH-390] Fixed the hover state of checkboxes not updating when clicking on the label
    • [GH-393] Fixed the padding of the donation link area when creating or editing a project
    • [GH-394] Fixed the rounding radius of dropdowns when opening upwards

    Minotaur fixes

    Minotaur, our Gradle plugin, has also received a few fixes. This isn't going to be relevant to most people, but is relevant to some developers using this tool to deploy their mods.

    • Debug mode (enabled through debugMode = true) allows previewing the data to be uploaded before uploading
    • Fix edge case with ForgeGradle due to broken publishing metadata
    • Fix game version detection on Fabric Loom 0.11
    • Fix doLast and related methods not being usable because the task was registered in afterEvaluate

    These fixes should have been automatically pulled in, assuming you're using Minotaur 2.+. If not, you should be upgrading to 2.0.2.

    Need a guide to migrate from Minotaur v1 to v2? Check the migration guide on the redesign post.

    ` diff --git a/packages/blog/compiled/knossos_v2_1_0.ts b/packages/blog/compiled/knossos_v2_1_0.ts new file mode 100644 index 000000000..3c36f0729 --- /dev/null +++ b/packages/blog/compiled/knossos_v2_1_0.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./knossos_v2_1_0.content`).then((m) => m.html), + title: 'This week in Modrinth development: Filters and Fixes', + summary: + 'Continuing to improve the user interface after a great first week since Modrinth launched out of beta.', + date: '2022-03-09T00:00:00.000Z', + slug: 'knossos-v2.1.0', + authors: ['Dc7EYhxG'], + thumbnail: true, +} diff --git a/packages/blog/compiled/licensing_guide.content.ts b/packages/blog/compiled/licensing_guide.content.ts new file mode 100644 index 000000000..86fa58473 --- /dev/null +++ b/packages/blog/compiled/licensing_guide.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Why do you need to license your software? What are those licenses for anyway? These questions are more important than you think

    What is a software license?

    To summarise the Wikipedia article on the matter, it's essentially a legal contract between you (the mod developer) and anyone who uses, copies, modifies, etc the mod or any code having to do with it. License has the power to allow people to do whatever they want, or only permit the usage of the mod in-game. However, the majority of cases lie in-between these opposites.

    So which software license should I choose?

    First and foremost, the choice of the software license is not entirely up to you, because you have to have the legal ability to do so. For instance, not all licenses are compatible with Minecraft's EULA (End-User License Agreement). Besides, if you are not the only one working on the project, you must get permission from all other contributors to your code before changing or adding a license. Please, ensure you have done so before implementing a license.

    Before we can decide which one to use, however, we must establish some additional definitions. Open software licenses can be split into three main categories: public domain, permissive, and copyleft.

    Permissive license

    A permissive license is a type of license that usually gives the abilities to use, copy, modify, distribute, sell, and relicense a piece of software.

    The most popular license on Modrinth, the MIT License, is a permissive license. It is an easy-to-read license designed to be used for developers, which is why it is used extensively in the Minecraft open source community.

    The Apache License 2.0 is also a very good permissive license to use. The main difference between it and the MIT License is that the Apache License gives an explicit patent grant, whereas patents must be registered manually with the MIT. There is also an additional clause with the Apache License, stating that any modified files must "carry prominent notices" of it being modified.

    Copyleft license

    A copyleft license gives to the other party specific rights usually only given to the copyright owner, under the condition that those same rights are applied to all variations of that software. These are also sometimes called "viral" or "infectious" licenses, because of the requirement to pass those rights on to derivatives.

    The second most common license on Modrinth is a copyleft license: the GNU Lesser General Public License Version 3 (usually shortened to LGPL-3.0).

    Typically, when a copyleft license is wanted, the GPL-3.0 or AGPL-3.0 would be used. However, these licenses are incompatible if linking into Minecraft, due to an issue with the difference between proprietary and free software outlined by these licenses (more information here). An exception can be added to allow linking, such as that found here, but it is recommended to just use the LGPL-3.0 instead if possible.

    Public domain dedication

    A public domain dedication gives all rights to everyone who gets a copy of the software. This includes but is not limited to the ability to use, copy, modify, distribute, sell, or relicense that software. Software with a public domain dedication has no copyright holder.

    The third most common license used on Modrinth is the Creative Commons Zero 1.0 Universal, which is a public domain dedication with a strong international legal basis, while still retaining trademark and patent rights.

    Creative Commons licenses as a whole are not recommended for software, but rather for other creative works: use this license with caution. If you wish to have the simplest public domain dedication possible, the Unlicense is also an option.

    What if I don't want to choose a license?

    Without a license software is considered proprietary and all rights reserved. This means that people may only use it in the ways the copyright owner specifies, which, in the Minecraft world (no pun intended), typically just means downloading and using it; no modifications, unauthorized distributions: basically nothing.

    This is why picking a proper software license is so important. It tells everyone what they can and cannot do with your software, making the difference between software anyone can contribute to and change however they want, and software that only you have the code behind.

    That being said, All Rights Reserved and not using a license are options, if you don't want to choose a public domain, permissive, or copyleft license. This can be useful in some cases, but as with any license, be aware of the effects: contributions will be difficult or impossible, and users may be inclined not to use your software. Also, in case of Minecraft, all mods, including the All Rights Reserved mods, are affected by Minecraft's EULA, which states:

    Any Mods you create for the Game from scratch belong to you (including pre-run Mods and in-memory Mods) and you can do whatever you want with them, as long as you don't sell them for money / try to make money from them and so long as you don't distribute Modded Versions of the Game.

    What this means is you are not allowed to sell your mods even if you reserve all rights to them. There are plenty more examples of such details in licenses and other legal agreements in the modding world. All in all, be aware that you cannot decide all of your and other's rights with your license.

    Conclusion

    To conclude, the importance of a software license cannot be overstated. You can choose whatever license you want (assuming you have the legal ability, of course), but be aware of the differences and consequences of choosing one over another. The licenses we've specified are what we recommend, as they are common and easy to understand. Hopefully, you will make your decision based on what you want to use and what your goals and purposes are.

    A massive thank you goes to Alexander Ryckeboer (Progryck) for the cover image!

    Disclaimers

    We are not lawyers, and thus, this is not legal advice. No warranty is given regarding this information, and we (Modrinth) disclaim liability for damages resulting in using this information given on an "as-is" basis. For more information on the legal aspect to software licensing, please refer to "The Legal Side of Open Source".

    No matter your choice of license, by uploading any Content (including but not limited to text, software, and graphics) to Modrinth, you give us certain rights to your Content, including but not limited to the ability to use, reproduce, or distribute. For more information, please see the Modrinth Terms of Use.

    Measurements for "most popular license", "second most common license", and "third most common license", were taken 2021-04-30. Custom licenses were not taken into account.

    ` diff --git a/packages/blog/compiled/licensing_guide.ts b/packages/blog/compiled/licensing_guide.ts new file mode 100644 index 000000000..5d1bfc48d --- /dev/null +++ b/packages/blog/compiled/licensing_guide.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./licensing_guide.content`).then((m) => m.html), + title: "Beginner's Guide to Licensing your Mods", + summary: + "Software licenses; the nitty-gritty legal aspect of software development. They're more important than you think.", + date: '2021-05-16T00:00:00.000Z', + slug: 'licensing-guide', + authors: ['6plzAzU4', 'aNd6VJql'], + thumbnail: true, +} diff --git a/packages/blog/compiled/modpack_changes.content.ts b/packages/blog/compiled/modpack_changes.content.ts new file mode 100644 index 000000000..4d5da95de --- /dev/null +++ b/packages/blog/compiled/modpack_changes.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    CurseForge CDN links requested to be removed by the end of the month

    Modrinth's alpha launch of modpacks has been highly successful in the nearly two weeks it has been live, with over forty packs launched to the platform. However, a number of these packs include links to download mods from CurseForge's CDN, which has caught the attention of CurseForge. On May 24th, 2022, a representative from Overwolf sent email correspondence to us demanding us to remove all modpacks and documentation that contain references to CurseForge CDN links by the end of the month. The message was vague, and didn't specify whether or not they were making a legal threat against us or not, so we responded in attempt to clarify what would happen if we chose not to comply. In response, they told us that they would "consider next steps."

    Modrinth has every intention of complying with their demands, despite our belief that this is a huge loss for the community. However, CurseForge's immediate "next steps" were to message launcher developers, requesting that they break support for Modrinth packs that contain CurseForge CDN links, and claiming to them that we outright refused to remove the packs containing the links from our platform ourselves when we did not refuse.

    To be clear, Modrinth condemns the anti-competitive behaviors that CurseForge are engaging in, however, we do not wish for CurseForge or authors who have elected to opt-out of third party downloads from their platform to be our enemies. Modrinth is and will always remain a project in support of open source software, with open and free APIs for all to use, and encouraging of much needed competition and diversity in the mod hosting space.

    Unfortunately, in order to comply with their request, all Modrinth modpacks must now use override JARs in place of any links to CurseForge's CDN. Specifically, CDN links to edge.forgecdn.net and media.forgecdn.net will no longer be part of the .mrpack specification, effective today. Of course, modpack authors must ensure that they are properly licensed to redistribute any mods that are not hosted on the Modrinth platform. While this is a huge blow to modpack creators and users of our platform for now, relying on CurseForge CDN links has always been unreliable as a long-term solution, because they could choose to change the links at any time, and it leaves variables outside of our control. In the long run, packs containing mostly mods hosted on Modrinth will be better for the growth of our platform and for the stability of modpacks.

    In order to use mods exclusively hosted on CurseForge as override JARs, pack creators must ensure that either of the following conditions must be met:

    1. The mod is licensed under terms that allow for redistribution. The pack author is responsible for following the terms of the license.
    2. General or individual permission is granted from the mod author. This can be in the form of a message from the author or a statement made on a mod's project description granting permission to use it in modpacks.

    In order to aid in this process, Modrinth will be building a third party mod license database and automated tools that will help pack creators with the hassle that will be ensuring all of the mods in their packs are properly licensed. In addition, packs will continue to be hand-reviewed by Modrinth moderation staff and verified. Do note that in this transition time, the review process for modpack projects may experience significant delays. Authors of existing modpacks on the platform will be reached out to in order to help them convert their existing packs to compliant packs.

    For those wondering, our next steps as a company are:

    1. Mod license database for Modpack authors
    2. Creator monetization
    3. The Modrinth launcher for downloading and creating modpacks.
    ` diff --git a/packages/blog/compiled/modpack_changes.ts b/packages/blog/compiled/modpack_changes.ts new file mode 100644 index 000000000..2923bc98c --- /dev/null +++ b/packages/blog/compiled/modpack_changes.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./modpack_changes.content`).then((m) => m.html), + title: 'Changes to Modrinth Modpacks', + summary: 'CurseForge CDN links requested to be removed by the end of the month', + date: '2022-05-28T00:00:00.000Z', + slug: 'modpack-changes', + authors: ['MpxzqsyW', 'Dc7EYhxG'], + thumbnail: true, +} diff --git a/packages/blog/compiled/modpacks_alpha.content.ts b/packages/blog/compiled/modpacks_alpha.content.ts new file mode 100644 index 000000000..1e2d14b3d --- /dev/null +++ b/packages/blog/compiled/modpacks_alpha.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    After over a year of development, Modrinth is happy to announce that modpack support is now in alpha testing!

    What does alpha mean, exactly? Principally, it means that modpack support is still unstable and that not everything is perfect yet. However, we believe it to be complete enough that it can be released for general use and testing.

    From this point forward, Modrinth has shifted development effort from modpacks to creator payouts. This long-anticipated feature means that mod developers, modpack creators, and anyone else who uploads content to Modrinth will be eligible to get the ad revenue generated from their project pages.

    Where can I find them?

    Right next to mods on the site! URLs to modpacks are the same as mods, just with mod replaced with modpacks, so you can find the search at https://modrinth.com/modpacks.

    Over a dozen modpacks have already been created by our early pack adopters, and those are available for download right now!

    Wait, so how do I download them?

    At this point in time, the only stable way to download modpacks and use them is through ATLauncher. You can also install Modrinth packs if you switch to the development branch of MultiMC. We're hoping to be supported by more launchers in the future, including our own launcher, which is still in development. Our documentation for playing modpacks will always have an up-to-date listing of the most popular ways to play packs.

    How do I create packs?

    You can either use ATLauncher or packwiz to create modpacks. The Modrinth format is unique for our purposes, which is specifically in order to allow mods from multiple platforms to be in a pack. Our documentation for creating modpacks will always have an up-to-date listing of the most popular ways to create packs.

    Can I use CurseForge mods in my modpack?

    Yes! The Modrinth format uses a link-based approach, meaning that theoretically, mods from any platform are usable. In practice, we are only allowing links from Modrinth, CurseForge, and GitHub. In the future, we may allow other sites.

    What happened to Theseus?

    For a while, we've been teasing Theseus, our own launcher. While lots of progress has been made on it, we haven't yet gotten it to a usable state even for alpha testing. Once we think it's usable, we will provide alpha builds -- however, for now, our main focus will be shifting to payouts, with Theseus development ramping up once that is out.

    Remember: Modrinth only has a small team, and we have a lot of real-life responsibilities too. If you have experience in Rust or Svelte and would like to help out in developing it, please feel free to shoot a message in the #launcher channel in our Discord.

    Conclusion

    All in all, this update is quite exciting for everyone involved. Just like with the redesign, this is the culmination of months upon months of work, and modpack support is really a big stepping stone for what's still yet to come.

    Remember: alpha means that it's still unstable! We are not expecting this release to go perfectly smoothly, but we still hope to provide the best modding experience possible. As always, the fastest and best way to get support is through our Discord.

    Next stop: creator payouts!

    ` diff --git a/packages/blog/compiled/modpacks_alpha.ts b/packages/blog/compiled/modpacks_alpha.ts new file mode 100644 index 000000000..79fbb520a --- /dev/null +++ b/packages/blog/compiled/modpacks_alpha.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./modpacks_alpha.content`).then((m) => m.html), + title: 'Modrinth Modpacks: Now in alpha testing', + summary: + "After over a year of development, we're happy to announce that modpack support is now in alpha testing.", + date: '2022-05-15T00:00:00.000Z', + slug: 'modpacks-alpha', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/modrinth_app_beta.content.ts b/packages/blog/compiled/modrinth_app_beta.content.ts new file mode 100644 index 000000000..04b491347 --- /dev/null +++ b/packages/blog/compiled/modrinth_app_beta.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    The past few months have been a bit quiet on our part, but that doesn’t mean we haven’t been working on anything. In fact, this is quite possibly our biggest update yet, bringing the much-anticipated Modrinth App to general availability, alongside several other major features. Let’s get right into it!

    Modrinth App Beta

    Most of our time has been spent working on Modrinth App. This launcher integrates tightly with the website, bringing you the same bank of mods, modpacks, data packs, shaders, and resource packs already available for download on Modrinth.

    Alongside that, there are a wealth of other features for you to find, including:

    • Full support for vanilla, Forge, Fabric, and Quilt
    • Full support for Windows, macOS, and Linux
    • Modrinth modpack importing, either through the website or through a .mrpack file
    • Modrinth modpack exporting to the .mrpack format to upload to the website or share with friends
    • Importing of instances from a variety of different launchers, including MultiMC, GDLauncher, ATLauncher, CurseForge, and Prism Launcher
    • The ability to update, add, and remove individual mods in a modpack
    • The ability to run different modded instances in parallel
    • The ability to view and share current and historical logs
    • An auto-updater to ensure the app is always up-to-date
    • An interactive tutorial to show you through the core features of the app
    • Performance through the roof, backed by Rust and Tauri (not Electron!)
    • Fully open-source under the GNU GPLv3 license

    More features will, of course, be coming in the future. This is being considered a beta release. Nonetheless, we’re still very proud of what we’ve already created, and we’re pleased to say that it’s available for download on our website right now at https://modrinth.app. Check it out, play around with it, and have fun!

    Authentication, scoped tokens, and security

    The second major thing we’re releasing today is a wide range of changes to our authentication system. Security is a top concern at Modrinth, especially following recent events in the modded Minecraft community when several individuals were compromised due to a virus. While Modrinth was not affected directly by this attack, it provided a harrowing reminder of what we’re working with. That’s why we’re pleased to announce three major features today that will strengthen Modrinth’s security significantly: in-house authentication, two-factor authentication, and scoped personal access tokens.

    In-house authentication and two-factor authentication

    A screenshot of the new Modrinth sign-in page, showing options to sign in with Discord, GitHub, Microsoft, Google, Steam, GitLab, or with an email and password.

    Until today, Modrinth has always used GitHub accounts exclusively for authentication. That changes now. Starting today, you can now connect your Discord, Microsoft, Google, Steam, and/or GitLab accounts to your Modrinth account. You may also forgo all six of those options and elect to use a good ol’ fashioned email and password. No problems with that! (If you’re curious, we store passwords hashed with the Argon2id method, meaning we couldn't read them even if we wanted to.)

    ` diff --git a/packages/blog/compiled/modrinth_app_beta.ts b/packages/blog/compiled/modrinth_app_beta.ts new file mode 100644 index 000000000..35c3f050d --- /dev/null +++ b/packages/blog/compiled/modrinth_app_beta.ts @@ -0,0 +1,13 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./modrinth_app_beta.content`).then((m) => m.html), + title: 'Introducing Modrinth App Beta', + summary: + 'Changing the modded Minecraft landscape with the new Modrinth App, alongside several other major features.', + date: '2023-08-05T20:00:00.000Z', + slug: 'modrinth-app-beta', + authors: ['6plzAzU4'], + thumbnail: false, + short_title: 'Modrinth App Beta and Upgraded Authentication', + short_summary: 'Launching Modrinth App Beta and upgrading authentication.', +} diff --git a/packages/blog/compiled/modrinth_beta.content.ts b/packages/blog/compiled/modrinth_beta.content.ts new file mode 100644 index 000000000..376758cfe --- /dev/null +++ b/packages/blog/compiled/modrinth_beta.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    After six months of work, Modrinth enters Beta, helping modders host their mods with ease!

    Six months ago, in order to fill a void in the modding community, the project that would eventually become Modrinth was founded. Modrinth was created to bring change to an otherwise stagnant landscape of hosts. Today, Modrinth enters Beta, a huge step forward for Modrinth!

    Modrinth's brand new design, rolling out with the launch of Beta

    Modrinth's brand new design, rolling out with the launch of Beta

    What's new?

    If you've checked out Modrinth in the past, here's the main things you'll notice that have changed:

    • All new clean and modern design in both light and dark modes
    • Mods now display download counts correctly
    • Mod information can now be edited in the author Dashboard
    • More information can be added to mods

    What's next?

    Modrinth is still in beta, of course, so there will be bugs. In the coming weeks and months, we will be prioritizing fixing the issues that currently exist and continue refining the design in areas that are rough.

    If you find any, please report them to the issue tracker: https://github.com/modrinth/code/issues

    If you would like to chat about Modrinth, our discord is open to all here: https://discord.modrinth.com

    ` diff --git a/packages/blog/compiled/modrinth_beta.ts b/packages/blog/compiled/modrinth_beta.ts new file mode 100644 index 000000000..8fe49c317 --- /dev/null +++ b/packages/blog/compiled/modrinth_beta.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./modrinth_beta.content`).then((m) => m.html), + title: 'Welcome to Modrinth Beta', + summary: + 'After six months of work, Modrinth enters Beta, helping modders host their mods with ease!', + date: '2020-12-01T00:00:00.000Z', + slug: 'modrinth-beta', + authors: ['Dc7EYhxG'], + thumbnail: true, +} diff --git a/packages/blog/compiled/modrinth_servers_beta.content.ts b/packages/blog/compiled/modrinth_servers_beta.content.ts new file mode 100644 index 000000000..277b7aac8 --- /dev/null +++ b/packages/blog/compiled/modrinth_servers_beta.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    It's been almost four years since we publicly launched Modrinth Beta. Today, we're thrilled to unveil a new beta release of a product we've been eagerly developing: Modrinth Servers.

    Modrinth Servers aims to provide the most seamless experience for running and playing on modded servers. To make this possible, we have partnered with our friends at the server hosting provider Pyro. Together, we've developed fully custom software that gives us a unique advantage in scaling, offering new features and integrations that other hosts couldn't dream of.

    For this beta launch, all servers are US-only. Please be aware of this if you are looking to purchase a server, as it may not be optimal for users outside of North America.

    A screenshot of the fully-custom Modrinth Servers panel integrated into Modrinth

    What makes Modrinth Servers unique?

    We understand that entering the server hosting industry might come as a surprise given the number of existing providers. Here's what sets Modrinth Servers apart:

    The most modern hardware

    Your modpack shouldn't have to run slow. All our servers are powered by cutting-edge 2023 Ryzen 7 and Ryzen 9 CPUs with DDR5 memory. From our research, we couldn't find any other Minecraft server host offering such modern hardware at any price point, much less at our affordably low one. This ensures smooth performance even with the most demanding modpacks.

    Seamless integration with Modrinth content

    Download mods and modpacks directly from Modrinth without any hassle. This deep integration simplifies server setup and management like never before. With just a few clicks, you can have your server up and running with your favorite mods.

    Fully custom panel and backend

    Unlike most other server hosts that rely on off-the-shelf software like Multicraft or Pterodactyl, Modrinth Servers is fully custom-built from front to back. This enables higher performance and much deeper integration than is otherwise possible. Our intuitive interface makes server management a breeze, even for newcomers.

    Dedicated support

    Our team is committed to providing exceptional support. Whether you're experiencing technical issues or have questions, we're here to ensure your experience with Modrinth Servers is top-notch.

    No tricky fees or up-charges

    Modrinth Servers are offered in a very simple Small, Medium, and Large pricing model, and are priced based on the amount of RAM at $3/GB. Custom URLs, port configuration, off-site backups, and plenty of storage is included in every Modrinth Server purchase at no additional cost.

    What’s next?

    As this is a beta release, there's much more to come for Modrinth Servers:

    • Global availability: We plan to expand to more worldwide regions and offer the ability to select a region for your server, ensuring optimal performance no matter where you are.
    • Support more types of content: We'll be adding support for plugin loaders and improving support for data packs, giving you more flexibility and functionality
    • Social features: A friends system to make sharing invites to servers easier, streamlining sharing custom-built modpacks and servers with your community.
    • App integration: Full integration with Modrinth App, including the ability to sync an instance with a server or friends, making collaboration seamless.
    • Collaborative management: Give other Modrinth users access to your server panel so you can manage your server with your team.
    • Automatic creator commissions: Creators will automatically earn a portion of server proceeds when content is installed on a Modrinth Server.

    And so much more... stay tuned!

    We can't wait for you to try out Modrinth Servers and share your feedback. This is just the beginning, and we're excited to continue improving and expanding our services to better serve the Minecraft community.

    From the teams at Modrinth and Pyro, with <3

    ` diff --git a/packages/blog/compiled/modrinth_servers_beta.ts b/packages/blog/compiled/modrinth_servers_beta.ts new file mode 100644 index 000000000..828c24bef --- /dev/null +++ b/packages/blog/compiled/modrinth_servers_beta.ts @@ -0,0 +1,12 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./modrinth_servers_beta.content`).then((m) => m.html), + title: 'Host your own server with Modrinth Servers — now in beta', + summary: 'Fast, simple, reliable servers directly integrated into Modrinth.', + date: '2024-11-03T06:00:00.000Z', + slug: 'modrinth-servers-beta', + authors: ['MpxzqsyW', 'Dc7EYhxG'], + thumbnail: true, + short_title: 'Introducing Modrinth Servers', + short_summary: 'Host your next Minecraft server with Modrinth.', +} diff --git a/packages/blog/compiled/new_site_beta.content.ts b/packages/blog/compiled/new_site_beta.content.ts new file mode 100644 index 000000000..14f2cf4f1 --- /dev/null +++ b/packages/blog/compiled/new_site_beta.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Update 04/02: Due to a number of (ridiculous) complaints we received such as “not being able to use the site on mobile” and “the ads are a bit much”, we have decided to halt the rollout of the beta site. Happy April 1st, everyone.


    OwO hewwo evewyone! I'm super exdited to announth that Modwinth is getting a bwand new update! WOOHOO! But, befowe I dwelve into the detaiws, I want to apologize in advance because my grammar and spwelling might not be the best (teehee). Anyway, this new update is going to be sow awesome and is going to make Modwinth the best modding website evew!

    But first, a quick message to all of our mobile users: We don't cawe about you anymore! insert evil laughter here We've decided to focus all of our efforts on desktop users, so we won't be supporting mobile devices anymore. If you want to use Modwinth, you'll have to buy a desktop or laptop computer! (LOL)

    And that's not aww, we've also added a bunch mowe ads! Because, wet's face it, who doesn't wove ads? Am I wight? (hehe) We've added ads that will pop up evewy five seconds, so you won't miss them. And to make suwe you don't get bowed of seeing the same ad over and over again, we've made suwe to wotate them frequently. You'we welcome! UwU

    Oh, and did I mention the nyew wayout and design? We've made it weally cool! YAY! We wanted to make suwe that UwU aww feel a sense of nyostalgia and weminisce about the good owd days of the intewnet. Wemembew those days when websites wooked wike they wewe made by a 5-yeaw-owd? Well, we've bwought that back! (WINKY WINK)

    The Fitneshgwam Pacew Test is a multistage aewobic capabiwity test that pwogwessively gets mowe difficult as it continyues. The 20 metew pacer test will begin in 30 seconds. Nyya~ Meowmeow! Win the pacer test you must weach the othew end befowe the beep. Each time you hear the beep meow, uwu wun nyya to the othew end nya. The wun nya must be in wine with the beep. Meowmeow! The eawwier nya you wun, the mowe time you have to westa nya. If you faiw to weach the othew end befowe the beep nya meow, the test will end. So twy youw best and Gud wuck!

    In suwummawy, we'we weally excited about the nyew changes and we hope UwU awe too! Modwinth is no wonger a pwace for everyone, but wather, for deskto-p users onwy. We've also added mowe ads than evew befowe and made suwe to make the wayout and design as tewwible as possibwe!

    Enjoy! UwU

    ` diff --git a/packages/blog/compiled/new_site_beta.ts b/packages/blog/compiled/new_site_beta.ts new file mode 100644 index 000000000..47820dc11 --- /dev/null +++ b/packages/blog/compiled/new_site_beta.ts @@ -0,0 +1,12 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./new_site_beta.content`).then((m) => m.html), + title: '(April Fools 2023) Powering up your experience: Modrinth Technologies™️ beta launch!', + summary: "Welcome to the new era of Modrinth. We can't wait to hear your feedback.", + date: '2023-04-01T08:00:00.000Z', + slug: 'new-site-beta', + authors: [], + thumbnail: true, + short_title: '(April Fools 2023) Modrinth Technologies™️ beta launch!', + short_summary: 'Power up your experience.', +} diff --git a/packages/blog/compiled/plugins_resource_packs.content.ts b/packages/blog/compiled/plugins_resource_packs.content.ts new file mode 100644 index 000000000..71c9de554 --- /dev/null +++ b/packages/blog/compiled/plugins_resource_packs.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    With the addition of modpacks, creating new project types has become a lot easier. Our first additions to our new system are plugins and resource packs. We'll also be working on adding datapacks, shader packs, and worlds after payouts are released.

    Don't worry - this hasn't taken away an awful lot of development time from author payouts. Those are still being worked on!

    Plugins

    With plugins, we're supporting five loaders and three proxies: Bukkit, Spigot, Paper, Purpur, Sponge, BungeeCord, Waterfall, and Velocity.

    Several new categories have specifically been added for plugins, though mod categories can be used for plugins and vice versa.

    Go browse our plugin section!

    Why add plugins?

    This is a question we've received quite often since we first announced our intention to host plugins, so let's break it down a bit.

    Currently, there are three main platforms on which plugins can be downloaded from: Bukkit, Spigot, and Sponge's Ore. Notice the main issue there? These sites are bound to a specific loader. This isn't inherently bad - however, as forks and new projects spawn, there is a noticeable lack of flexibility in what can be hosted on a given platform. For example, Spigot is unable to host plugins which specifically depend on the exclusive features provided by Paper's API. Paper's solution to this is to build their own platform, but this simply perpetuates the same problem.

    The best solution here is to create a separate platform which is unbiased and flexible enough to adapt to a changing ecosystem. Modrinth is the perfect candidate for this - after all, plugins are mods under a different name, and likewise mods are plugins under a different name.

    No matter the situation, authors are always allowed to upload their plugins to multiple sites. Build automation is incredibly easy to set up, especially with "set it and forget it" build tools such as Minotaur.

    Will paid plugins be supported?

    No. Modrinth does not have the infrastructure to support this, and it's not currently planned. Author payouts are still being worked on.

    What about mods that have plugin versions and vice versa?

    Modrinth is taking a unique approach to this. While the search pages are separate, in reality, the backend is the same. You can select plugin loaders when creating a mod and you can select mod loaders when creating a plugin. The split only exists on the frontend so that projects like Chunky can share a single page across their versions.

    Plugins which also have versions for mod loaders will be displayed under the /mod/ URL on the frontend. Plugins without mod loader versions are displayed under /plugin/.

    Resource packs

    The other thing we've added support for is resource packs!

    Previously we hinted at Bedrock resource packs being supported in addition to Java resource packs. We've decided not to add Bedrock resource packs until we also add support for other Bedrock resources for various technical reasons.

    Go browse our resource pack section!

    Secondary categories

    Resource packs are capable of adding a wide range of different things, like fonts, sounds, and core shaders. We found that the current category system was inadequate to account for all of these, especially with the three maximum limit. Thus, we've introduced a "secondary category" system, for categories which don't display by default but can still be searched. These secondary categories have a limit of 255 instead of three. Please add as many secondary categories as are relevant!

    On search pages, "Features" have been split into their own header. Where categories for resource packs can be accurately described as themes, features instead show what exactly a resource pack adds. Resolutions have also been split into their own header, though selecting a pack resolution is optional.

    What about resource packs that require a mod to function?

    Resource packs are able to set dependencies on other projects (even those which aren't resource packs), just like how modpacks are able to set dependencies on mods. It's worth noting that OptiFine is not on the platform, and thus you cannot set a dependency on that; however, you can set a dependency on any of the other alternative mods which are available on Modrinth, including Entity Texture Features, OptiGUI, Continuity, CIT Resewn, Animatica, or Custom Entity Models.

    Other miscellaneous changes

    Version number changes

    For a long time, version numbers have had a requirement to be unique within the same project. Alongside this update, we found it necessary to remove this restriction on version numbers. Thus, you'll no longer have to use something like 1.2.3+forge and 1.2.3+fabric if you have a project on multiple loaders - instead, you can just use 1.2.3.

    To accommodate this, the frontend now appends the loaders and game versions onto the end of a URL if there are duplicates, and the Modrinth Maven now supports version IDs.

    We do not recommend retroactively changing version numbers to remove this additional metadata, though. If you change your version numbers, the following will break:

    • URLs to specific versions
    • Buildscripts depending on your project via the Modrinth Maven
    • Download counters (see labrinth issue #351)

    LiteLoader support

    Modrinth now supports LiteLoader for mods. It's nothing special, but it should help with some archival efforts.

    Misc category deletion

    We've also deleted the Misc category as no one is going to want to filter by Misc in search. If you have any other suggestions for categories, feel free to suggest them in our Discord or Tweet at us!

    Developer/API changes

    The changes in this update are rather minimal when it comes to API-related stuff. Two new fields have been added to the project struct - approved, which is the timestamp of when the project was approved (null if it's not approved or unlisted), and additional_categories, another set of categories which are to be seen as less important than normal categories. You can read the secondary categories section for more info on it. If you wish to implement the headers in your API integration, the category list now has a header field.

    As for the search result struct, created now matches the approved date rather than the published project field, and categories now also includes secondary categories. A new field, display_categories, matches only primary categories.

    Differences between mod loaders and plugins will need to be hardcoded within your API integration for the time being if you wish to have them shown separately. This will be cleaned up in API v3 alongside a general cleanup of a lot of other small aspects of the API. If you have any suggestions for breaking API v3 changes, feel free to suggest them in our Discord. Development on API v3 is likely to begin before the end of the year.

    Conclusion

    We're very happy to be announcing this feature, even if it is minor in comparison to some of our other past and future announcements. Don't worry - author payouts are still being worked on, and will most likely be our next major announcement! We saw this as an opportunity to get a feature out with relatively little new code (since we'd already done everything needed alongside modpacks), so we ran with it.

    As always, feel free to provide feedback on our Discord, and please report any bugs you come across on our GitHub.

    ` diff --git a/packages/blog/compiled/plugins_resource_packs.ts b/packages/blog/compiled/plugins_resource_packs.ts new file mode 100644 index 000000000..101fe93d4 --- /dev/null +++ b/packages/blog/compiled/plugins_resource_packs.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./plugins_resource_packs.content`).then((m) => m.html), + title: 'Plugins and Resource Packs now have a home on Modrinth', + summary: + 'A small update with a big impact: plugins and resource packs are now available on Modrinth!', + date: '2022-08-27T00:00:00.000Z', + slug: 'plugins-resource-packs', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/pride_campaign_2025.content.ts b/packages/blog/compiled/pride_campaign_2025.content.ts new file mode 100644 index 000000000..67fbc1514 --- /dev/null +++ b/packages/blog/compiled/pride_campaign_2025.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    What an incredible Pride Month! This June, we came together to support The Trevor Project, an essential organization providing crisis support and life-saving resources for LGBTQ+ young people. We are absolutely thrilled to announce that our community raised a stellar $2,395. That's not all, though — during the campaign, some donations were matched by H&M and the Trevor Project's Board of Directors up to six times, meaning the final impact of Modrinth's donations is a whopping $8,464. Our team was also in the top ten for most funds raised this year!

    To put your generosity into perspective, a donation this size can fund hundreds of hours on The Trevor Project's 24/7 crisis hotline. It gives young people a lifeline in their hardest moments and supports important educational services for many others.

    We couldn't have done it without you. To every person who donated, shared the post, or simply cheered us on from the sidelines — thank you. We are incredibly proud of what we've achieved together as a community.

    While Pride Month provides a special opportunity to focus our efforts, the need for these critical resources continues all year long. The challenges faced by LGBTQ+ young people do not end on July 1st, and organizations like The Trevor Project require ongoing support to continue their life-saving work. If you are able, we encourage you to consider making a contribution at any time.

    As part of this campaign, we also added the option to donate part of a Modrinth rewards balance to a variety of charities. This means Modrinth creators can directly use the revenue they earned from ads and Modrinth+ to donate to dozens of causes close to their heart. The Trevor Project is one option, alongside other prominent non-profits such as the American Cancer Society, St. Jude's Children's Research Hospital, Doctors Without Borders, and the Southern Poverty Law Center. You can donate your Modrinth balance to these groups and many more by clicking the "Withdraw" button on your revenue dashboard.

    Modrinth's June 2025 campaign will be kept for posterity at this link.

    You can donate to The Trevor Project at any time at this link.

    ` diff --git a/packages/blog/compiled/pride_campaign_2025.ts b/packages/blog/compiled/pride_campaign_2025.ts new file mode 100644 index 000000000..b069acc6b --- /dev/null +++ b/packages/blog/compiled/pride_campaign_2025.ts @@ -0,0 +1,12 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./pride_campaign_2025.content`).then((m) => m.html), + title: 'A Pride Month Success: Over $8,400 Raised for The Trevor Project!', + summary: 'Reflecting on our Pride Month fundraiser campaign for LGBTQ+ youth.', + date: '2025-07-01T18:00:00.000Z', + slug: 'pride-campaign-2025', + authors: ['6plzAzU4', 'bOHH0P9Z', '2cqK8Q5p', 'vNcGR3Fd'], + thumbnail: true, + short_title: 'Pride Month Fundraiser 2025', + short_summary: 'A reflection on our Pride Month fundraiser campaign.', +} diff --git a/packages/blog/compiled/redesign.content.ts b/packages/blog/compiled/redesign.content.ts new file mode 100644 index 000000000..dc57e1d5c --- /dev/null +++ b/packages/blog/compiled/redesign.content.ts @@ -0,0 +1,30 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    After months of relatively quiet development, Modrinth has released many new features and improvements, including a redesign. While we've been a bit silent recently on the website and blog, our Discord server has activity on the daily. Join us there and follow along with the development channels for the very latest information!

    For both those who aren't in the Discord and for those who are, this serves as a status update for what exactly has been going on in our silence. There have been an unparalleled amount of changes, improvements, bug fixes, and new features being worked on since April 2021, and we are incredibly excited to share them with everyone. There are still many things we're still working on, such as modpacks, but we've decided to hold back on that as there is still some fine-tuning that needs to be done on that front.

    New and improved design

    The frontend has received a considerable facelift. With designs made in part by falseresync (and a sprinkle of bikeshedding), we present to you, the redesign!

    As they say, a picture tells somewhere around nine-hundred odd words. As such, this section will be heavily focused on screenshots of the pages rather than long descriptions.

    Project pages

    The new page design, shown for Iris

    A beautiful project page for Iris to match its beautiful shaders

    On project pages, much of the focus has been shifted to the extended description rather than the metadata, which has been put over on the side. We've also added an option to switch this from the left side to the right side in your user settings, if you so desire.

    Gallery

    A preview of the gallery functionality

    Pictures... pretty!

    Developers can now add a Gallery section on each project page! Each uploaded image or GIF can have a title and description associated with them.

    Changelog

    The changelog page

    A changelog page for showing the difference between updates!

    Version changelogs are automatically compiled together into a large changelog list. These are put in reverse chronological order, and are separated for Fabric and Forge versions.

    Version creation and dependencies

    The version creation page

    Version creation has gotten an overhaul!

    While dependencies have existed in the backend for a while, their implementation was a bit haphazard and was never widely used due to never being in the frontend. Thus, all previous dependencies have been wiped, and they have been redone better(TM). And hey, now you can add and see dependencies in the frontend!

    Profile settings & dashboard

    The profile settings page

    The new settings panel for managing your profile and other visual settings

    The dashboard has been reworked and reorganized: the "My mods" section has been merged into the profile page itself, and the "Settings" page has been split into "Profile" and "Security". There are also options for switching the project and search information from the left side of the screen to the right.

    A user's profile

    The notifications page is also now its own page separate from the dashboard, accessible only from the header. The notifications page also has a highly-requested "Clear all" button.

    The notifications page

    Backend changes and API v2

    There have been a number of breaking changes in this update, and as such, the API number has been bumped. The /api/ prefix has also been removed, as it's redundant when the base API URL is api.modrinth.com. This means the production URL is now api.modrinth.com/v2 instead of api.modrinth.com/api/v1.

    The major changes include the universal rename of mod to project, as well as the move of the mod endpoint to search. While version 1 will be supported until January 2024 and won't be removed until July 2024, we still highly recommend that applications migrate as soon as possible. For full migration instructions, see the migration guide on the docs site.

    Minotaur

    Minotaur is the tool for mod developers to upload their mod directly to Modrinth automated through Gradle. Minotaur received a considerable facelift and is now a lot more user-friendly. Previously, an example buildscript might look like this:

    task publishModrinth(type: com.modrinth.minotaur.TaskModrinthUpload) {
    +  onlyIf {
    +    System.getenv().MODRINTH_TOKEN
    +  }
    +  token = System.getenv().MODRINTH_TOKEN
    +  projectId = 'AABBCCDD'
    +  versionNumber = version
    +  versionName = "[$project.minecraft_version] Mod Name $project.version"
    +  releaseType = 'alpha'
    +  changelog = project.changelog
    +  uploadFile = remapJar
    +  addGameVersion('1.18')
    +  addGameVersion('1.18.1')
    +  addGameVersion('1.18.2')
    +  addLoader('fabric')
    +}
    +

    This exact same buildscript snippet, in Minotaur 2.0.0, can be written as the following:

    modrinth {
    +  projectId = 'AABBCCDD'
    +  versionName = "[$project.minecraft_version] Mod Name $project.version"
    +  releaseType = 'alpha'
    +  changelog = project.changelog
    +  uploadFile = remapJar
    +  gameVersions = ['1.18', '1.18.1', '1.18.2']
    +  loaders = ['fabric']
    +  dependencies = [
    +          new ModDependency('P7dR8mSH', 'required') // Creates a new required dependency on Fabric API
    +  ]
    +}
    +

    Notice how it's now in a modrinth {...} block instead of creating a new task. The modrinth task is automatically created.

    The loaders declaration in the new version isn't even needed if you're using Fabric Loom or ForgeGradle. The project version can be detected automatically, and the token uses the MODRINTH_TOKEN environment variable by default now. The game version and loader listings actually make sense now, and dependencies are possible!

    More miscellanea

    Along with the major headlining features, there are also a number of smaller features, fixes, and improvements coming with the big update. Most of these need no more than a bullet to describe, so here's a bullet list of the smaller things!

    • If you are the owner of a project, you can now transfer the ownership to another user, as long as they have already accepted an invitation to be a member. In the frontend, this can be done on the Settings page, under the "Team members" section.
    • iframes for YouTube videos are now allowed. Any iframes from elsewhere are still not allowed.
    • Files are now validated to ensure they contain a valid Forge or Fabric mod, or are in the correct modpack format.
    • When changing the status of a project, file moderators are now able to add a message (heading and body separate) to be seen by project team members.
    • Versions must now always have a file attached.
    • Projects will only be able to have draft status if they contain no versions. Additionally, a new archived status has been added.
    • Donation URLs have been re-enabled.
    • Fix: Markdown checkboxes will no longer render strangely (knossos#291)
    • Fix: Maven will no longer randomly break (labrinth#264 and labrinth#252)
    • ...and many other smaller things!

    What happened to modpacks?

    We've been teasing modpacks for a long time now. While they're done for the most part, we've decided to hold back on their release for the time being. We're working hard to get those done some time soon, and there'll be another post when those are ready for general consumption.

    Conclusion and a call for developers

    In conclusion, we hope that you're excited about this update as much as we are. We believe that, with how much work has been put into this update, it has definitely been worth the wait.

    On a separate note, are you looking to contribute to Modrinth? Have you got experience with Rust or Svelte? We're hiring! Please reach out to Geometrically#8387 on Discord to apply for a position.

    Thank you for reading, and may your dreams be filled with pineapples, tiny potatoes, and squirrels.

    ` diff --git a/packages/blog/compiled/redesign.ts b/packages/blog/compiled/redesign.ts new file mode 100644 index 000000000..36d1b677c --- /dev/null +++ b/packages/blog/compiled/redesign.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./redesign.content`).then((m) => m.html), + title: 'Now showing on Modrinth: A new look!', + summary: 'Releasing many new features and improvements, including a redesign!', + date: '2022-02-27T00:00:00.000Z', + slug: 'redesign', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/skins_now_in_modrinth_app.content.ts b/packages/blog/compiled/skins_now_in_modrinth_app.content.ts new file mode 100644 index 000000000..557550755 --- /dev/null +++ b/packages/blog/compiled/skins_now_in_modrinth_app.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    We're thrilled to roll out Modrinth App v0.10 with a beta release of one of our most highly requested features, the Skins page. The Skins page allows you to manage all of your Minecraft skins directly within Modrinth App. You can see all your saved custom skins and the default Minecraft skins in one convenient place.

    The new skins page, featuring a cute animated player model, your custom skins & default skins.

    Adding a new skin is simple, even Herobrine could do it! When you add or edit a skin, you can upload your custom texture file directly from your computer, choose between the wide or slim arm style to match your preferred character model, and even assign a specific cape to that look for the perfect finishing touch.

    The interface makes it easy to preview your changes in real-time with the animated player model, so you can see exactly how your skin will look in-game before saving it.

    The edit skin modal that shows when you go to add or edit a skin.

    Fixes and More!

    Alongside this major new feature, v0.10 includes a host of improvements and bug fixes to make your experience smoother. We've updated the news feed to use our new system, fixed issues with project descriptions, and tidied up how data is handled. For a full breakdown of all the changes, you can check out the complete changelog here.

    As the skins feature is in beta, we're eager to hear your feedback! Jump in, give it a try, and let us know what you think. You can share your thoughts on our Discord server or start a support chat if you're running into issues.

    Thank you! We can't wait to see your skins in action. Happy customizing!

    ` diff --git a/packages/blog/compiled/skins_now_in_modrinth_app.ts b/packages/blog/compiled/skins_now_in_modrinth_app.ts new file mode 100644 index 000000000..66cdd264b --- /dev/null +++ b/packages/blog/compiled/skins_now_in_modrinth_app.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./skins_now_in_modrinth_app.content`).then((m) => m.html), + title: 'Skins — Now in Modrinth App!', + summary: + 'Customize your look, save your favorite skins, and swap them out in a flash, all within Modrinth App.', + date: '2025-07-06T23:45:00.000Z', + slug: 'skins-now-in-modrinth-app', + authors: ['bOHH0P9Z', 'Dc7EYhxG'], + thumbnail: true, +} diff --git a/packages/blog/compiled/two_years_of_modrinth.content.ts b/packages/blog/compiled/two_years_of_modrinth.content.ts new file mode 100644 index 000000000..45e4ee2ed --- /dev/null +++ b/packages/blog/compiled/two_years_of_modrinth.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Modrinth initially went into beta on November 30th, 2020. Just over a month ago was November 30th, 2022, marking two years since Modrinth was generally available as a platform for everyone to use. Today, we're proud to announce the Anniversary Update, celebrating both two years of Modrinth as well as the coming of the new year, and we'll be discussing our New Year's Resolutions for 2023.

    Before you read this post, though, we recommend taking a look at our retrospective on Modrinth's history through 2020—2022. It just wouldn't be right to take a look at the present and the future without also taking a look at our past, seeing how far we've come from our humble beginnings.

    With that out of the way, this post primarily serves to announce a few of the smaller features we've been working on after the release of creator monetization. We've bundled these all together as the Anniversary Update.

    Looking just at what's already done is boring, though, so we'll also be looking at what's yet to come. Modrinth's future is even brighter than any of us can imagine, so we'll be focusing on what we're gonna do in order to get to that bright future. If you've ever made New Year's Resolutions, we're going to briefly discuss our resolutions for 2023.

    Without further adieu, let's get right into what's new with this new year!

    Shader packs and data packs

    The long-awaited arrival of shader packs and data packs is now here on Modrinth!

    Shader packs can be viewed in the shaders tab. This includes shaders that support Iris, Canvas, and OptiFine, as well as vanilla core shaders. (Even though they're installed via the resource pack system, we have decided to put Canvas and core shaders in shader packs since most users will not search in resource packs for shader packs, even if that's how they're installed.)

    Data packs can be found in the data packs tab. These are implemented similarly to plugins, in that projects with a mod version can also upload a data pack version (and vice versa). Additionally, data pack authors can choose to have their data packs packaged as a mod using the handy-dandy button on the site.

    Data packs can optionally upload a corresponding resource pack as a separate file. We discourage bundling data files and asset files in the same zip file.

    New landing page

    The homepage has been completely remade, featuring a scrolling list of random projects from Modrinth. Feel free to use this to discover new projects—just make sure you refresh occasionally, because they loop after a little while until you refresh!

    A screenshot of the new homepage, with a maze background and projects scrolling across the bottom. Bold across the front is "The place for Minecraft mods".

    Project overhaul for creators

    We're continuing to bring expansions to the creator dashboard introduced with monetization. The new Projects tab allows you to view all of your projects in a table and quickly access their information and settings.

    The new Modrinth project dashboard

    The same page also introduces the ability to bulk-edit the external resource links without having to edit each page individually. For example, if your Discord invite expires, you used to have to edit each of your projects individually to add it back. Now you can just select the projects you want to edit the links for and edit them all at the same time!

    A modal with several input fields for external resource links, listing multiple projects the input changes will be applied to.

    Even better are the changes to the settings page for individual projects. Previously, the project settings page was disorganized and cluttered. The project settings page has been completely redone, inspired by GitHub's repository settings page.

    The new project settings page, shown for Sodium.

    Draft projects also now have a publishing checklist, making it more clear to authors as to what their next steps should look like. Red asterisks are items that must be completed before submitting and purple light bulbs are suggestions.

    A card with several tasks for a draft project owner to do, such as adding a description and selecting the necessary information.

    Version page overhaul

    The layout of the individual version page has gotten a complete overhaul. It's much easier to just show the new UI in action rather than trying to explain it!

    A screenshot of the way that individual versions look now:

    A screenshot of the way that individual versions look now.

    That's not all, though. Version creation now automatically infers most details after you upload your first file. Try it out sometime—whenever you upload your first file, most stuff should already be filled in. This system is still in-development, so if you find any issues, please file an issue on GitHub.

    Project card views

    Anywhere which lists projects, namely search and user pages, have gotten a great overhaul. You can choose between the classic list view, the grid view, and the gallery view.

    A screenshot of the default view for the Modrinth shaders search.

    By default, shader packs and resource packs use the gallery view, user pages use the grid view, and everywhere else use the list view. You can cycle through them near the top of each page or change them in your display settings.

    The gallery image uses the featured gallery image on a project, so please ensure if you are a shader pack or resource pack author that you set a featured gallery image!

    Gallery image UI for creators

    The existing UI for gallery image creation, editing, and deletion was flawed in many ways, so we threw out the old way of doing it and created a whole new system for this. It should be less prone to the many many bugs that plagued the previous implementation.

    The new gallery image editing UI, in a modal

    New project webhook

    Our Discord server has a brand new channel: #new-projects. A webhook sends a message to this channel every time a new project gets approved. Check it out when you get a chance!

    A screenshot of the new project webhook for Iris Shaders.

    Miscellaneous additions

    • Custom SPDX license identifiers can now be selected, and a license's text is now displayed in a modal if the author has not manually set a license link.
    • Each project now has a color associated with it, generated from the icon. This color is used in place of a gallery image in search if the project has no gallery image.
    • The bug with disappearing and duplicated versions due to the reuse of version numbers is now fixed.
    • Whenever a project gets its status updated (for example from under review to approved), the project's team members will now get a notification.
    • The ability to manually reorder gallery images has been added via an integer ordering field. In the future, this sorting ability may expand to team members and versions. We also hope to add a drag-and-drop functionality similar to Discord server organization.
    • You can also now formally request that your project be marked as unlisted, private, or archived instead of always having it be listed first.
    • The ability to schedule the release of projects and versions has been added to the backend and is likely to be added to the frontend in the next few weeks.
    • Several other bug fixes and minor features, mainly contributed by community members.

    New Year's Resolutions

    Now that we've looked at everything accomplished over the past month and a half, let's take a look at our New Year's Resolutions—things we wish to achieve during 2023.

    Theseus Launcher

    During 2023, our main focus will shift to the Modrinth launcher, code-named Theseus. Progress has been off and on for the past year and a half, but we intend to fully launch it before the end of the year. Theseus will bring a next-level experience to Minecraft launchers, bringing first-class support for Modrinth and unique features that would be difficult for other providers to parallel.

    The release of the Theseus project will also mark the end of the "alpha" status for Modrinth modpacks. Stay tuned for more information about alpha tests and early adopters programs!

    Continuing to grow creator tools

    Another one of our focuses for this year is to put more work into our analytics system and in growing creator monetization through our Adrinth ad network. As of today, monetization is now out of beta, but we are still constantly working on ways to make Modrinth even better and easier to use for new and returning creators. Some of these improvements are big, like the project settings overhaul, while others are more subtle quality-of-life improvements, like the fixes to usage of duplicate version numbers.

    API changes

    This year, Modrinth hopes to introduce version 3 of our API with lots of fixes and smaller changes. While our plans are still work-in-progress for this, one of the things that needs to be done first is the removal of the old API v1, which was deprecated starting in January 2022. Here's our planned timeline for the removal of API v1:

    • January 7th, 2023 (Now): Begin sending messages to existing API v1 users
    • January 7th, 2023 (Now): Add a field to each API result telling people to switch
    • February 14th, 2023: Begin doing flickers of 5-10 minutes of 410 GONE response codes
    • March 1st, 2023: Begin sending a permanent 410 GONE response for any non-GET routes
    • March 1st, 2023: Ramp up 410 GONE flickers to last 6-12 hours for GET routes
    • March 15th, 2023: Replace all remaining GET routes with a permanent 410 GONE response

    Small updates throughout the year

    As always, we will be interspersing other, smaller quality-of-life updates throughout the year even as we work on the big stuff. We also want to fix any bugs which might come up alongside any updates.

    Conclusion

    Modrinth was founded with the goal of creating a platform which keeps the broader modding community's interests at heart. Modrinth would not exist without the support of our users and of our contributors, and we thank everyone involved immensely for everything. Modrinth's development shall continue as long as the community is willing to support us on the way!

    We would love to hear any feedback you might have. Feel free to get in contact on Discord, on Twitter, and on Mastodon.

    ` diff --git a/packages/blog/compiled/two_years_of_modrinth.ts b/packages/blog/compiled/two_years_of_modrinth.ts new file mode 100644 index 000000000..828c7ff05 --- /dev/null +++ b/packages/blog/compiled/two_years_of_modrinth.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./two_years_of_modrinth.content`).then((m) => m.html), + title: "Modrinth's Anniversary Update", + summary: "Marking two years of Modrinth and discussing our New Year's Resolutions for 2023.", + date: '2023-01-07T00:00:00.000Z', + slug: 'two-years-of-modrinth', + authors: ['6plzAzU4'], + thumbnail: true, +} diff --git a/packages/blog/compiled/two_years_of_modrinth_history.content.ts b/packages/blog/compiled/two_years_of_modrinth_history.content.ts new file mode 100644 index 000000000..f80ef901d --- /dev/null +++ b/packages/blog/compiled/two_years_of_modrinth_history.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Let's rewind a bit and take a look at the past two years of Modrinth's history. We've come so far from our pre-beta HexFabric days to today. A good portion of our pre-beta history can be found in the What is Modrinth blog post, but Modrinth obviously is not the same platform it was two years ago.

    December 2020: Modrinth Beta begins

    Modrinth's brand new design, rolling out with the launch of Beta

    Modrinth's brand new design, rolling out with the launch of Beta

    December was the release of the initial Modrinth Beta, bringing a completely different interface and the ability for mods to be created for the first time. This interface has since been completely discarded, but this is what Modrinth looked like for well over a year. It's hard to believe!

    December also brought the introduction of the Minotaur Gradle plugin for the first time for upload automation. Minotaur today also looks nothing like it did when it was introduced, but it still accomplishes the same exact thing.

    January 2021: Improvements to mod uploading

    An announcement in mid-January brought several essential additions and improvements to Modrinth which we consider commonplace today. Among these were:

    • A separate version creation page
    • The ability to edit and delete existing versions
    • The ability to delete existing mods and users

    January also brought the introduction of Google AdSense onto Modrinth. The eventual results, including our switch after to EthicalAds, solidified Modrinth's stance that ads should be unobtrusive and generally friendly to users.

    February-March 2021: Follows, reports, notifications, oh my!

    March brought the first introduction of the abilities to follow and report projects, as well as the automatic featuring of some versions depending on loader and Minecraft version. These systems have largely remained unchanged since their introduction, though the notification system will likely be getting a refresh come 2023.

    April-December 2021: Season of silence

    After follows, reports, and all that jazz, Modrinth largely went silent for a good while. This time period had some of the largest growth Modrinth had ever seen, and yet it seemed Modrinth's development had ground to a halt. Modrinth Team members were dropping like flies until there was a point where there was a single person on the team. What happened?

    For various reasons, whether it be lack of free time or a lack of interest in Minecraft in general, people ended up leaving to pursue other things. It's not quite as apocalyptic or barren as these descriptions make it seem, but it's more fun to describe it like this.

    Picking up the remnants from what others had left behind, one man was destined to continue developing for Modrinth. The one who began the whole operation in the first place, Geometrically, stood up and began developing. Thus came the development of project types, gallery images, API v2, and modpacks.

    January 2022: API v2 introduction

    Right around the corner came 2022. Perchance this would be the time for the silence to be broken? Indeed, the world would be able to hear about all that was brewing over the past few months.

    Of course, this wasn't all introduced at once—it was a gradual rollout over several months. First was the introduction of v2 of Modrinth's API, allowing many breaking changes to occur, including namely the renaming of mods to projects. Wait, why was this necessary?

    Up until this point, Modrinth only hosted mods. Project types, as we call them, allow projects to be given the designation of something other than mod; for example, modpack or resourcepack, like we have today. This simple field, alongside all of the infrastructure which was needed to support it, was the first step to allow modpacks on Modrinth.

    February 2022: Redesign

    Remember the interface introduced in December 2020? Let's scrap it! Actually, it wasn't entirely scrapped, but it got a treatment similar to the Ship of Theseus to the point that it was barely recognizable.

    The Modrinth homepage

    The former Modrinth homepage

    Alongside this was the official announcement of API v2, as well as the introduction of the project gallery, the changelog tab, dependencies, and many other things. Here's the blog post announcement for the redesign!

    February also brought the introduction of several new Modrinth Team members to the fold, including Prospector and triphora, both of whom are still on the team, alongside Hutzdog and venashial, who we thank for helping us through much of 2022.

    March-April 2022: Small changes and preparation for modpacks

    A couple weeks after the redesign we pushed out some changes which included improvements to several tabs on project pages and many bug fixes. The blog post from that can be found here.

    The next couple months were spent preparing for the release of modpacks. This is the first introduction of our "early adopters" program, still in use today, allowing a feedback loop of authors and other community members to create the best product that we can. Without early adopters, many of the features on Modrinth which you've come to love, including modpacks, plugins, resource packs, would be less than ideal.

    May 2022: Modpacks in alpha

    In May, we finally did the big release of modpacks on Modrinth. Well, in alpha, anyway—but that was less of a marker of instability and more a marker of being incomplete without the launcher. The modpack alpha release blog post can be found here.

    When we first announced modpacks, the initial format had been set in stone for a couple years, and it had been decided that CurseForge links would be allowed within them. This got turned on its head due to an email sent to us by Overwolf. More information on that can be found on the Changes to Modrinth Modpacks blog post.

    Progryck

    June-August 2022: Plugins and resource packs

    The summer of 2022 was largely dedicated to working on releasing creator monetization. First, though, we made a pit stop to introduce plugins and resource packs to Modrinth. Find that blog post here.

    Plugins in particular were tricky since we had to account for projects which had both mod and plugin versions. It was at this point we realized that the project type system isn't entirely what we cracked it up to be, and we're hoping to completely replace it once API v4 rolls around, as far away as that may sound. For now, though, it will suffice.

    September-November 2022: Creator monetization

    With plugins and resource packs done, we continued working on creator monetization. This included a brief experiment with a different ad provider before we eventually switched to creating our own ad system.

    November brought the actual beta release of creator monetization—here's the blog post for that. We are continuing to develop and refine this system to ensure authors continue to earn money from publishing projects on Modrinth.

    December 2022-January 2023: Anniversary Update

    That, of course, brings us to today's Anniversary Update! Now that you're done reading this, feel free to go back over to that post and read about everything that's new in the Anniversary Update so that I don't have to repeat myself. Take a look at our New Year's Resolutions for 2023 while you're at it, too!

    ` diff --git a/packages/blog/compiled/two_years_of_modrinth_history.ts b/packages/blog/compiled/two_years_of_modrinth_history.ts new file mode 100644 index 000000000..9458ebbb8 --- /dev/null +++ b/packages/blog/compiled/two_years_of_modrinth_history.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./two_years_of_modrinth_history.content`).then((m) => m.html), + title: 'Two years of Modrinth: a retrospective', + summary: 'The history of Modrinth as we know it from December 2020 to December 2022.', + date: '2023-01-07T00:00:00.000Z', + slug: 'two-years-of-modrinth-history', + authors: ['6plzAzU4'], + thumbnail: false, +} diff --git a/packages/blog/compiled/whats_modrinth.content.ts b/packages/blog/compiled/whats_modrinth.content.ts new file mode 100644 index 000000000..3e07d1ee9 --- /dev/null +++ b/packages/blog/compiled/whats_modrinth.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    Hello, we are Modrinth – an open source mods hosting platform. Sounds dry, doesn't it? So let me tell you our story – and I promise, it won't be boring!

    Prelude and conception

    Before Modrinth was even thought of, there already were several giant platforms for mod hosting. However, most of them were too specialized, outdated, or transitively dependent on an uncaring hegemonic 3rd party. Authors and players were always in struggle. The community had to choose 2 out of 3: inconvenience, indifference, obsolescence. Urge for better service, either new or renewed, just founded or acquired arose.

    Although demand for proper competition is the seed, the germ of Modrinth, the biggest role was played by the Fabric project. It set an example of a community-powered alternative. It was democratic, FOSS, listening to the community, and welcoming contribution and 3rd party initiatives. They have shown the modding community that they can evolve and adapt, be accessible and welcoming, cooperative, and caring.

    Fabricate and HexFabric

    And, oh boy, did they connect – the demand for competition grew so high, that at some point the community just exploded with novelty. During several months, almost a dozen projects were aiming to be the second Walmart, the third IKEA, the fourth Amazon for your mods. Here beings the story of HexFabrics... – wait, what? What's that?

    HexFabric is an umbrella term for modern mod hosting technology. It got its name from Fabric, which at the point was poorly supported (if at all) by the major players on the stage. In practice, HexFabric is just a cozy Discord server, on which several projects have their deputizing channels.

    Back on track – Lots of HexFabrics were founded almost simultaneously. Altar.gg, Astronave, Diluv, ModForest, Minerepo... and, most importantly, Fabricate.

    Fabricate began its journey as a proprietary project indexing website by a single developer – Geometrically. It remained relatively unnoticed for a couple of weeks, and then it started gaining attention. This new website has amazing search! Yup, the whole thing was primarily about making seamless, gracious, appeasing smart real-time search. The community is now intrigued.

    Becoming a team

    "But this looks awful! And it's proprietary!" – a few voices said. Among those voices were falseresync and MulverineX. They both had several objections to that and were pestering the original author. "FOSS is the true way for community project" and "Just use a license to prevent others from creating instances of your work," they told.

    Yet Fabricate remained proprietary for a while. However, once the pressure on the author became high, they gave up and open-sourced their work. This was the birth of Modrinth. It did not get its name for a little while longer though.

    Now that Modrinth was open source, it started gaining traction. Remember falseresync and MulverineX? They joined Geometrically on the branding site, and somewhere in the middle of the brainstorming process the logo and the name were born. At the same time AppleTheGolden, Aeledfyr, and Redblueflame began contributing to the actual code of the project, which is – nowadays known to everyone – in Rust. A solo suddenly became a team, ready for whatever future holds.

    Development non-stop

    The newly born FOSS project is now evolving swiftly. Before our team arose the question: monolithic vs split app architecture. Monolithic would be easier to deploy and can serve pages quicker. The split architecture will simplify the development and allow for a feature-full user experience. The discussion was hot, and the sides were fierce. Nevertheless, the split pattern won. Now it was time to make proper backend and frontend apps.

    The work first began with the backend. Aeled, Red, and Geo started detaching API methods from visuals. The team worked hard. Consequent to the API splitting from the GUI, it became getting new and exciting features. The first feature to be added was custom Modrinth mods – before that, the website only indexed the competitor's service.

    However, for that to happen there had to be another step taken – migration from MongoDB to PostgreSQL. It was crucial for efficient data storage and complex relationships between projects. And the biggest propagator of that change was Apple, who introduced and successfully defended their case.

    Thus, with custom mods, better yet search has been implemented. After search, user accounts with external log-in made their way into the project. Now it first creators started uploading their mods – a monumental achievement.

    After the first creators came more – the community began taking Modrinth as a serious alternative hosting. At some point, uploads accelerated to the point that our team was forced to redo their plans and establish project editing and moderation considerably earlier than it could have been. Besides, creators need analytics, they need teams, they needed support system. So the backend developers tried their best to keep up and achieved their goals through enthusiastic labor and dedication.

    Refreshed look

    Although, on the frontend side things weren't as bright, unfortunately. Once falseresync presented the new look and feel Modrinth should aim for, he was forced to dedicate less time to the project. As a consequence, the frontend was implemented rather haphazardly and was lacking in features compared to the backend.

    However, this did not stop the project from evolving. The backend team has continued to expand on existing features, and after a long period of time, the savior descended on the frontend – Prospector, who rapidly became a crucial contributor and a part of the team. With new and comprehensive design guidance from falseresync and critique from MulverineX and the community, Prospector achieved feature parity with backend and greatly improved the website look and feel.

    Improving the frontend wasn't an easy job: naughty CSS, runtime errors, the abundance of framework-related nuances – all were obstacles, and all were defeated. Through battles with web technologies, jokes about quirky styles, and hard work our team created the UI you see today.

    Going beta

    You have to believe that the dots will somehow connect in your future. – Steve Jobs

    With the story complete, we are proud to announce that the Modrinth beta will be coming out on November 30th, with a refreshed look and a feature-complete modding website! It is a tremendous achievement for us and the community, which we are very proud of.

    It is heart-warming to admit that we're finally going officially online. We know it's not perfect yet. But regardless, we will continue our passion project as a team, and we will expand on it and make it only better!

    Stay tuned!

    ` diff --git a/packages/blog/compiled/whats_modrinth.ts b/packages/blog/compiled/whats_modrinth.ts new file mode 100644 index 000000000..133ad0249 --- /dev/null +++ b/packages/blog/compiled/whats_modrinth.ts @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./whats_modrinth.content`).then((m) => m.html), + title: 'What is Modrinth?', + summary: + "Hello, we are Modrinth – an open source mods hosting platform. Sounds dry, doesn't it? So let me tell you our story – and I promise, it won't be boring!", + date: '2020-11-27T00:00:00.000Z', + slug: 'whats-modrinth', + authors: ['aNd6VJql'], + thumbnail: false, +} diff --git a/packages/blog/compiled/windows_borderless_malware_disclosure.content.ts b/packages/blog/compiled/windows_borderless_malware_disclosure.content.ts new file mode 100644 index 000000000..7eb6c1eb3 --- /dev/null +++ b/packages/blog/compiled/windows_borderless_malware_disclosure.content.ts @@ -0,0 +1,2 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const html = `

    This is a disclosure of a malicious mod discovered to be hosted on the Modrinth platform. It is important to not panic or jump to conclusions, please carefully read the Am I Affected? and Threat Summary sections.

    Am I Affected?

    If you run Windows and have downloaded a mod called "Windows Borderless" (specific files listed below) between May 4th, 2024 and May 6th, 2024 and have run the game with the mod installed, you are affected.

    IMPORTANT NOTE: This mod is called, exactly, "Windows Borderless". There are other mods with similar names on Modrinth, which are NOT malware, such as "Borderless Mining", "Borderless", and "Borderless Mining Reworked".

    If you have not downloaded that mod or do not run Windows, there is no reason to believe you are at any risk. We have released a detection tool available here which can scan your mods folder for the malicious files if you wish to make sure your instance does not have the mod. The tool is also open-source.

    Download and run the detection tool here!

    What do I do if I have used the "Windows Borderless" mod?

    First, delete the mod entirely from your computer.

    The mod harvested data stored by many Chromium-based projects such as Google Chrome, Discord, Microsoft Edge, and many other browsers such as Opera/Opera GX, Vivaldi, Brave, Firefox and over dozen more. Included in this data may be account tokens, stored passwords, banking information, addresses, and more.

    In order to protect yourself, change all of your passwords, and keep an eye out on your bank accounts and credit cards.

    Threat Summary

    Exposure level: Low, ~372 distinct IPs downloaded affected files. One Discord account is alleged to have been stolen due to this.

    Malware severity: Medium (Discord, browser, and system info stealer, but does not self-replicate)

    Projects affected:

    NameProject IDFormer URL
    Windows BorderlessZQpQzwWEhttps://modrinth.com/mod/windowsborderless

    Files affected:

    NameSHA1 HashVersion IDDownload count
    windowedborderless-v0.2 - 1.20.4.jar179b5da318604f97616b5108f305e2a8e4609484NkTbhEmf116
    windowedborderless-v0.3 - 1.20.4.jar1a1c4dcae846866c58cc1abf71fb7f7aa4e7352av87dk8Q715
    windowedborderless-v0.4 - 1.20.+.jare4d55310039b965fce6756da5286b481cfb09946pVfdgPhy68
    windowedborderless-v0.4 - 1.20.+.jar2f47e57a6bedc729359ffaf6f0149876008b5cc3Wt4RjZ49119
    windowedborderless-v0.4.1_-_1.20.+.jar2f47e57a6bedc729359ffaf6f0149876008b5cc3oIlYelrb1

    None of these files were included in any modpacks on the Modrinth platform, so you are only at risk if you downloaded the mod directly.

    Timeline

    April 29th, 2:39pm - Project submitted for review as a legitimate mod

    The Modrinth project "Windows Borderless" is submitted for review with a single file uploaded that does not contain any malware.

    April 30th, 12:15am - Modrinth moderators approve the project

    The "Windows Borderless" project is approved with only one file, which contained no malware.

    May 2nd, 3:50am - New version containing malware is published

    A "Windows Borderless" version containing the file windowedborderless-v0.2 - 1.20.4.jar (mentioned in the table of affected files above) is published. This initial version of the malware did not include any credential or token stealing, but only sent identifying information about a user’s machine to a discord webhook.

    May 4th, 4:01pm thru May 6th, 3:46am - More versions are uploaded

    Between May 4th, 4:01pm and May 6th, 3:46am, more new versions of the mod containing the malware were uploaded. These versions all contain credential and token stealers.

    May 6, 2024 @ 7:21am - A Modrinth user reports the project

    A user submits a report against the mod, alleging that their Discord account got compromised after using the mod.

    May 6, 2024 @ 10:37am - Modrinth moderators investigate the project

    The mod is investigated by Modrinth staff. We decompiled the mod and discovered that the mod contained malicious code. The threat is immediately obvious, so within a few minutes we take down the project, all CDN links related to the project, and all other projects by the same users.

    Conclusion

    In response to this incident, we are actively developing a shared system to effectively quarantine known malicious mods by creating a web API to allow launchers to check if any of the files a user has downloaded match any of the files in our known malware database, and return up-to-date information about any known malware.

    We are also in the process with working with relevant law enforcement agencies to pass along all information we have.

    In order to also more proactively increase safety, we're also investigating possible methods of sandboxing or algorithmically detecting malware patterns in Java software. While these are infamously tricky to implement on certain platforms, we hope to do our best in order to ensure the best security for the modding community.

    ` diff --git a/packages/blog/compiled/windows_borderless_malware_disclosure.ts b/packages/blog/compiled/windows_borderless_malware_disclosure.ts new file mode 100644 index 000000000..d10209a51 --- /dev/null +++ b/packages/blog/compiled/windows_borderless_malware_disclosure.ts @@ -0,0 +1,10 @@ +// AUTO-GENERATED FILE - DO NOT EDIT +export const article = { + html: () => import(`./windows_borderless_malware_disclosure.content`).then((m) => m.html), + title: 'Malware Discovery Disclosure: "Windows Borderless" mod', + summary: 'Threat Analysis and Plan of Action', + date: '2024-05-07T20:00:00.000Z', + slug: 'windows-borderless-malware-disclosure', + authors: ['Dc7EYhxG', 'MpxzqsyW'], + thumbnail: true, +} diff --git a/packages/blog/index.ts b/packages/blog/index.ts new file mode 100644 index 000000000..33a68a444 --- /dev/null +++ b/packages/blog/index.ts @@ -0,0 +1 @@ +export { articles } from './compiled' diff --git a/packages/blog/package.json b/packages/blog/package.json new file mode 100644 index 000000000..c192ad1d0 --- /dev/null +++ b/packages/blog/package.json @@ -0,0 +1,28 @@ +{ + "name": "@modrinth/blog", + "version": "0.0.0", + "private": true, + "main": "./index.ts", + "types": "./index.d.ts", + "scripts": { + "lint": "jiti ./check.ts && eslint . && prettier --check .", + "fix": "jiti ./compile.ts && eslint . --fix && prettier --write ." + }, + "devDependencies": { + "@types/html-minifier-terser": "^7.0.2", + "@types/rss": "^0.0.32", + "@types/xml2js": "^0.4.14", + "eslint": "^8.57.0", + "eslint-config-custom": "workspace:*", + "jiti": "^2.4.2", + "tsconfig": "workspace:*" + }, + "dependencies": { + "@modrinth/utils": "workspace:*", + "fast-glob": "^3.3.3", + "gray-matter": "^4.0.3", + "html-minifier-terser": "^7.2.0", + "rss": "^1.2.2", + "xml2js": "^0.6.2" + } +} diff --git a/packages/blog/public/a-new-chapter-for-modrinth-servers/thumbnail.webp b/packages/blog/public/a-new-chapter-for-modrinth-servers/thumbnail.webp new file mode 100644 index 000000000..a54d8c13c Binary files /dev/null and b/packages/blog/public/a-new-chapter-for-modrinth-servers/thumbnail.webp differ diff --git a/packages/blog/public/becoming-sustainable/abnormally-high-revenue.webp b/packages/blog/public/becoming-sustainable/abnormally-high-revenue.webp new file mode 100644 index 000000000..0fbefa983 Binary files /dev/null and b/packages/blog/public/becoming-sustainable/abnormally-high-revenue.webp differ diff --git a/packages/blog/public/becoming-sustainable/revenue.webp b/packages/blog/public/becoming-sustainable/revenue.webp new file mode 100644 index 000000000..712d5b1a8 Binary files /dev/null and b/packages/blog/public/becoming-sustainable/revenue.webp differ diff --git a/packages/blog/public/becoming-sustainable/thumbnail.webp b/packages/blog/public/becoming-sustainable/thumbnail.webp new file mode 100644 index 000000000..87c03025c Binary files /dev/null and b/packages/blog/public/becoming-sustainable/thumbnail.webp differ diff --git a/packages/blog/public/carbon-ads/thumbnail.webp b/packages/blog/public/carbon-ads/thumbnail.webp new file mode 100644 index 000000000..72937eb67 Binary files /dev/null and b/packages/blog/public/carbon-ads/thumbnail.webp differ diff --git a/packages/blog/public/creator-monetization/thumbnail.webp b/packages/blog/public/creator-monetization/thumbnail.webp new file mode 100644 index 000000000..e74257f46 Binary files /dev/null and b/packages/blog/public/creator-monetization/thumbnail.webp differ diff --git a/packages/blog/public/creator-update/collections.jpg b/packages/blog/public/creator-update/collections.jpg new file mode 100644 index 000000000..1e822763f Binary files /dev/null and b/packages/blog/public/creator-update/collections.jpg differ diff --git a/packages/blog/public/creator-update/oauth.jpg b/packages/blog/public/creator-update/oauth.jpg new file mode 100644 index 000000000..1d8d1a378 Binary files /dev/null and b/packages/blog/public/creator-update/oauth.jpg differ diff --git a/packages/blog/public/creator-update/organizations.jpg b/packages/blog/public/creator-update/organizations.jpg new file mode 100644 index 000000000..42f135c7c Binary files /dev/null and b/packages/blog/public/creator-update/organizations.jpg differ diff --git a/packages/blog/public/creator-update/payout-methods.jpg b/packages/blog/public/creator-update/payout-methods.jpg new file mode 100644 index 000000000..8e3717e73 Binary files /dev/null and b/packages/blog/public/creator-update/payout-methods.jpg differ diff --git a/packages/blog/public/creator-update/project-analytics.jpg b/packages/blog/public/creator-update/project-analytics.jpg new file mode 100644 index 000000000..a566a226f Binary files /dev/null and b/packages/blog/public/creator-update/project-analytics.jpg differ diff --git a/packages/blog/public/creator-update/thumbnail.webp b/packages/blog/public/creator-update/thumbnail.webp new file mode 100644 index 000000000..0096172d1 Binary files /dev/null and b/packages/blog/public/creator-update/thumbnail.webp differ diff --git a/packages/blog/public/creator-update/user-analytics.jpg b/packages/blog/public/creator-update/user-analytics.jpg new file mode 100644 index 000000000..a554c43ed Binary files /dev/null and b/packages/blog/public/creator-update/user-analytics.jpg differ diff --git a/packages/blog/public/creator-update/user-orgs.jpg b/packages/blog/public/creator-update/user-orgs.jpg new file mode 100644 index 000000000..fab723916 Binary files /dev/null and b/packages/blog/public/creator-update/user-orgs.jpg differ diff --git a/packages/blog/public/design-refresh/project-page.webp b/packages/blog/public/design-refresh/project-page.webp new file mode 100644 index 000000000..d422f3b41 Binary files /dev/null and b/packages/blog/public/design-refresh/project-page.webp differ diff --git a/packages/blog/public/design-refresh/thumbnail.webp b/packages/blog/public/design-refresh/thumbnail.webp new file mode 100644 index 000000000..946148fc6 Binary files /dev/null and b/packages/blog/public/design-refresh/thumbnail.webp differ diff --git a/packages/blog/public/download-adjustment/country-download-counts.jpg b/packages/blog/public/download-adjustment/country-download-counts.jpg new file mode 100644 index 000000000..067dd0e55 Binary files /dev/null and b/packages/blog/public/download-adjustment/country-download-counts.jpg differ diff --git a/packages/blog/public/download-adjustment/country-page-views.jpg b/packages/blog/public/download-adjustment/country-page-views.jpg new file mode 100644 index 000000000..2e9c1b50e Binary files /dev/null and b/packages/blog/public/download-adjustment/country-page-views.jpg differ diff --git a/packages/blog/public/download-adjustment/downloads-table.jpg b/packages/blog/public/download-adjustment/downloads-table.jpg new file mode 100644 index 000000000..d8e1fccb4 Binary files /dev/null and b/packages/blog/public/download-adjustment/downloads-table.jpg differ diff --git a/packages/blog/public/download-adjustment/new-sisyphus.jpg b/packages/blog/public/download-adjustment/new-sisyphus.jpg new file mode 100644 index 000000000..a2245e52a Binary files /dev/null and b/packages/blog/public/download-adjustment/new-sisyphus.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/download-icon.jpg b/packages/blog/public/knossos-v2.1.0/download-icon.jpg new file mode 100644 index 000000000..b75585e63 Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/download-icon.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/dropdown-caret.jpg b/packages/blog/public/knossos-v2.1.0/dropdown-caret.jpg new file mode 100644 index 000000000..8fbf864c2 Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/dropdown-caret.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/expand-gallery.jpg b/packages/blog/public/knossos-v2.1.0/expand-gallery.jpg new file mode 100644 index 000000000..8dac16332 Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/expand-gallery.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/following.jpg b/packages/blog/public/knossos-v2.1.0/following.jpg new file mode 100644 index 000000000..ffc419500 Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/following.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/styling.jpg b/packages/blog/public/knossos-v2.1.0/styling.jpg new file mode 100644 index 000000000..14ae57b60 Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/styling.jpg differ diff --git a/packages/blog/public/knossos-v2.1.0/thumbnail.webp b/packages/blog/public/knossos-v2.1.0/thumbnail.webp new file mode 100644 index 000000000..f1b92f17e Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/thumbnail.webp differ diff --git a/packages/blog/public/knossos-v2.1.0/version-filters.jpg b/packages/blog/public/knossos-v2.1.0/version-filters.jpg new file mode 100644 index 000000000..87f772c0b Binary files /dev/null and b/packages/blog/public/knossos-v2.1.0/version-filters.jpg differ diff --git a/packages/blog/public/licensing-guide/thumbnail.webp b/packages/blog/public/licensing-guide/thumbnail.webp new file mode 100644 index 000000000..cec9981e7 Binary files /dev/null and b/packages/blog/public/licensing-guide/thumbnail.webp differ diff --git a/packages/blog/public/modpack-changes/thumbnail.webp b/packages/blog/public/modpack-changes/thumbnail.webp new file mode 100644 index 000000000..110af1f00 Binary files /dev/null and b/packages/blog/public/modpack-changes/thumbnail.webp differ diff --git a/packages/blog/public/modpacks-alpha/thumbnail.webp b/packages/blog/public/modpacks-alpha/thumbnail.webp new file mode 100644 index 000000000..1e7826ca6 Binary files /dev/null and b/packages/blog/public/modpacks-alpha/thumbnail.webp differ diff --git a/packages/blog/public/modrinth-app-beta/app.jpg b/packages/blog/public/modrinth-app-beta/app.jpg new file mode 100644 index 000000000..d32e6c1de Binary files /dev/null and b/packages/blog/public/modrinth-app-beta/app.jpg differ diff --git a/packages/blog/public/modrinth-app-beta/auth.jpg b/packages/blog/public/modrinth-app-beta/auth.jpg new file mode 100644 index 000000000..d3674e521 Binary files /dev/null and b/packages/blog/public/modrinth-app-beta/auth.jpg differ diff --git a/packages/blog/public/modrinth-beta/new-design.jpg b/packages/blog/public/modrinth-beta/new-design.jpg new file mode 100644 index 000000000..98d8d6093 Binary files /dev/null and b/packages/blog/public/modrinth-beta/new-design.jpg differ diff --git a/packages/blog/public/modrinth-beta/thumbnail.webp b/packages/blog/public/modrinth-beta/thumbnail.webp new file mode 100644 index 000000000..566f979ff Binary files /dev/null and b/packages/blog/public/modrinth-beta/thumbnail.webp differ diff --git a/packages/blog/public/modrinth-servers-beta/panel.jpg b/packages/blog/public/modrinth-servers-beta/panel.jpg new file mode 100644 index 000000000..4a2c3a583 Binary files /dev/null and b/packages/blog/public/modrinth-servers-beta/panel.jpg differ diff --git a/packages/blog/public/modrinth-servers-beta/thumbnail.webp b/packages/blog/public/modrinth-servers-beta/thumbnail.webp new file mode 100644 index 000000000..340baa69e Binary files /dev/null and b/packages/blog/public/modrinth-servers-beta/thumbnail.webp differ diff --git a/packages/blog/public/new-site-beta/thumbnail.webp b/packages/blog/public/new-site-beta/thumbnail.webp new file mode 100644 index 000000000..75a547070 Binary files /dev/null and b/packages/blog/public/new-site-beta/thumbnail.webp differ diff --git a/packages/blog/public/plugins-resource-packs/thumbnail.webp b/packages/blog/public/plugins-resource-packs/thumbnail.webp new file mode 100644 index 000000000..89f039335 Binary files /dev/null and b/packages/blog/public/plugins-resource-packs/thumbnail.webp differ diff --git a/packages/blog/public/pride-campaign-2025/thumbnail.webp b/packages/blog/public/pride-campaign-2025/thumbnail.webp new file mode 100644 index 000000000..455d884ef Binary files /dev/null and b/packages/blog/public/pride-campaign-2025/thumbnail.webp differ diff --git a/packages/blog/public/redesign/adorn.jpg b/packages/blog/public/redesign/adorn.jpg new file mode 100644 index 000000000..cb516746a Binary files /dev/null and b/packages/blog/public/redesign/adorn.jpg differ diff --git a/packages/blog/public/redesign/consistency.jpg b/packages/blog/public/redesign/consistency.jpg new file mode 100644 index 000000000..5e5d29f5b Binary files /dev/null and b/packages/blog/public/redesign/consistency.jpg differ diff --git a/packages/blog/public/redesign/iris.jpg b/packages/blog/public/redesign/iris.jpg new file mode 100644 index 000000000..5d5f2c522 Binary files /dev/null and b/packages/blog/public/redesign/iris.jpg differ diff --git a/packages/blog/public/redesign/jellysquid.jpg b/packages/blog/public/redesign/jellysquid.jpg new file mode 100644 index 000000000..7cf593b62 Binary files /dev/null and b/packages/blog/public/redesign/jellysquid.jpg differ diff --git a/packages/blog/public/redesign/notifications.jpg b/packages/blog/public/redesign/notifications.jpg new file mode 100644 index 000000000..12d71a50a Binary files /dev/null and b/packages/blog/public/redesign/notifications.jpg differ diff --git a/packages/blog/public/redesign/profile-settings.jpg b/packages/blog/public/redesign/profile-settings.jpg new file mode 100644 index 000000000..a0e7f3e20 Binary files /dev/null and b/packages/blog/public/redesign/profile-settings.jpg differ diff --git a/packages/blog/public/redesign/thumbnail.webp b/packages/blog/public/redesign/thumbnail.webp new file mode 100644 index 000000000..56125a1a4 Binary files /dev/null and b/packages/blog/public/redesign/thumbnail.webp differ diff --git a/packages/blog/public/redesign/version-creation.jpg b/packages/blog/public/redesign/version-creation.jpg new file mode 100644 index 000000000..c45109ccd Binary files /dev/null and b/packages/blog/public/redesign/version-creation.jpg differ diff --git a/packages/blog/public/skins-now-in-modrinth-app/edit-skin.webp b/packages/blog/public/skins-now-in-modrinth-app/edit-skin.webp new file mode 100644 index 000000000..02cd9c75d Binary files /dev/null and b/packages/blog/public/skins-now-in-modrinth-app/edit-skin.webp differ diff --git a/packages/blog/public/skins-now-in-modrinth-app/skins-page.webp b/packages/blog/public/skins-now-in-modrinth-app/skins-page.webp new file mode 100644 index 000000000..d9a1cac7c Binary files /dev/null and b/packages/blog/public/skins-now-in-modrinth-app/skins-page.webp differ diff --git a/packages/blog/public/skins-now-in-modrinth-app/thumbnail.webp b/packages/blog/public/skins-now-in-modrinth-app/thumbnail.webp new file mode 100644 index 000000000..26ccf49cf Binary files /dev/null and b/packages/blog/public/skins-now-in-modrinth-app/thumbnail.webp differ diff --git a/packages/blog/public/two-years-of-modrinth/bulk-edit.jpg b/packages/blog/public/two-years-of-modrinth/bulk-edit.jpg new file mode 100644 index 000000000..5443d90da Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/bulk-edit.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/gallery-ui.jpg b/packages/blog/public/two-years-of-modrinth/gallery-ui.jpg new file mode 100644 index 000000000..f2bb2493d Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/gallery-ui.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/landing-page.jpg b/packages/blog/public/two-years-of-modrinth/landing-page.jpg new file mode 100644 index 000000000..0dfca6b26 Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/landing-page.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/project-settings.jpg b/packages/blog/public/two-years-of-modrinth/project-settings.jpg new file mode 100644 index 000000000..af3dca3c6 Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/project-settings.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/project-webhook.jpg b/packages/blog/public/two-years-of-modrinth/project-webhook.jpg new file mode 100644 index 000000000..184b93aba Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/project-webhook.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/projects-dashboard.jpg b/packages/blog/public/two-years-of-modrinth/projects-dashboard.jpg new file mode 100644 index 000000000..11981054b Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/projects-dashboard.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/publishing-checklist.jpg b/packages/blog/public/two-years-of-modrinth/publishing-checklist.jpg new file mode 100644 index 000000000..d8de372fc Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/publishing-checklist.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/search-gallery-view.jpg b/packages/blog/public/two-years-of-modrinth/search-gallery-view.jpg new file mode 100644 index 000000000..fe218292d Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/search-gallery-view.jpg differ diff --git a/packages/blog/public/two-years-of-modrinth/thumbnail.webp b/packages/blog/public/two-years-of-modrinth/thumbnail.webp new file mode 100644 index 000000000..af2b32cd1 Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/thumbnail.webp differ diff --git a/packages/blog/public/two-years-of-modrinth/version-page.jpg b/packages/blog/public/two-years-of-modrinth/version-page.jpg new file mode 100644 index 000000000..77841c8a7 Binary files /dev/null and b/packages/blog/public/two-years-of-modrinth/version-page.jpg differ diff --git a/packages/blog/public/windows-borderless-malware-disclosure/thumbnail.webp b/packages/blog/public/windows-borderless-malware-disclosure/thumbnail.webp new file mode 100644 index 000000000..692e56589 Binary files /dev/null and b/packages/blog/public/windows-borderless-malware-disclosure/thumbnail.webp differ diff --git a/packages/blog/tsconfig.json b/packages/blog/tsconfig.json new file mode 100644 index 000000000..92e7710b9 --- /dev/null +++ b/packages/blog/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "tsconfig/base.json", + "include": [".", ".eslintrc.js"], + "exclude": ["dist", "build", "node_modules"], + "compilerOptions": { + "lib": ["esnext", "dom"], + "noImplicitAny": false + } +} diff --git a/packages/blog/utils.ts b/packages/blog/utils.ts new file mode 100644 index 000000000..06d1d587b --- /dev/null +++ b/packages/blog/utils.ts @@ -0,0 +1,40 @@ +import { execSync } from 'child_process' +import * as path from 'path' + +let REPO_ROOT_CACHE: string | null = null +export function getRepoRoot(): string { + if (REPO_ROOT_CACHE) return REPO_ROOT_CACHE + return (REPO_ROOT_CACHE = execSync('git rev-parse --show-toplevel').toString().trim()) +} + +export function repoPath(...segments: string[]): string { + return path.join(getRepoRoot(), ...segments) +} + +export async function copyDir( + src: string, + dest: string, + logFn: (src: string, dest: string) => void = () => {}, +): Promise { + const { promises: fs } = await import('fs') + await fs.mkdir(dest, { recursive: true }) + const entries = await fs.readdir(src, { withFileTypes: true }) + for (const entry of entries) { + const srcPath = path.join(src, entry.name) + const destPath = path.join(dest, entry.name) + if (entry.isDirectory()) { + await copyDir(srcPath, destPath, logFn) + } else if (entry.isFile()) { + await fs.copyFile(srcPath, destPath) + logFn(srcPath, destPath) + } + } +} + +export function toVarName(file: string): string { + return file + .replace(/\.md$/, '') + .replace(/[^a-zA-Z0-9]/g, '_') + .replace(/^_+/, '') + .replace(/_+$/, '') +} diff --git a/packages/daedalus/Cargo.toml b/packages/daedalus/Cargo.toml index a57f4c612..0b2bbdd83 100644 --- a/packages/daedalus/Cargo.toml +++ b/packages/daedalus/Cargo.toml @@ -2,7 +2,7 @@ name = "daedalus" version = "0.2.3" authors = ["Jai A "] -edition = "2021" +edition.workspace = true license = "MIT" description = "Utilities for querying and parsing Minecraft metadata" repository = "https://github.com/modrinth/daedalus/" @@ -14,8 +14,10 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -chrono = { version = "0.4", features = ["serde"] } -bytes = "1" -thiserror = "1.0" +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +chrono = { workspace = true, features = ["serde"] } +thiserror.workspace = true + +[lints] +workspace = true diff --git a/packages/daedalus/package.json b/packages/daedalus/package.json index a5af9cf71..b2ee389f8 100644 --- a/packages/daedalus/package.json +++ b/packages/daedalus/package.json @@ -2,9 +2,8 @@ "name": "@modrinth/daedalus", "scripts": { "build": "cargo build --release", - "lint": "cargo fmt --check && cargo clippy --all-targets --all-features -- -D warnings", - "fix": "cargo fmt && cargo clippy --fix", - "dev": "cargo run", - "test": "cargo test" + "lint": "cargo fmt --check && cargo clippy --all-targets", + "fix": "cargo clippy --all-targets --fix --allow-dirty && cargo fmt", + "test": "cargo nextest run --all-targets --no-fail-fast" } } diff --git a/packages/daedalus/src/minecraft.rs b/packages/daedalus/src/minecraft.rs index e117052ad..24e94a67e 100644 --- a/packages/daedalus/src/minecraft.rs +++ b/packages/daedalus/src/minecraft.rs @@ -402,6 +402,44 @@ pub enum ArgumentType { Jvm, } +#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Hash)] +#[serde(rename_all = "snake_case")] +/// The physical side of the logging configuration +pub enum LoggingSide { + /// Client logging configuration + Client, +} + +#[derive(Serialize, Deserialize, Debug, Clone)] +/// File download information for a logging configuration +pub struct LogConfigDownload { + /// The path that the logging configuration should be saved to + pub id: String, + /// The SHA1 hash of the logging configuration + pub sha1: String, + /// The size of the logging configuration + pub size: u32, + /// The URL where the logging configuration can be downloaded + pub url: String, +} + +#[derive(Serialize, Deserialize, Debug)] +#[serde( + tag = "type", + rename_all = "kebab-case", + rename_all_fields = "camelCase" +)] +/// Information about a version's logging configuration +pub enum LoggingConfiguration { + /// Use a log4j2 XML log config file + Log4j2Xml { + /// The JVM argument for passing the file to the Java process + argument: String, + /// The config file to download + file: LogConfigDownload, + }, +} + #[derive(Serialize, Deserialize, Debug)] #[serde(rename_all = "camelCase")] /// Information about a version @@ -422,6 +460,9 @@ pub struct VersionInfo { pub java_version: Option, /// Libraries that the version depends on pub libraries: Vec, + #[serde(skip_serializing_if = "Option::is_none")] + /// The logging configuration data for the game + pub logging: Option>, /// The classpath to the main class to launch the game pub main_class: String, #[serde(skip_serializing_if = "Option::is_none")] diff --git a/packages/daedalus/src/modded.rs b/packages/daedalus/src/modded.rs index 4016870ff..6c4733dfa 100644 --- a/packages/daedalus/src/modded.rs +++ b/packages/daedalus/src/modded.rs @@ -1,7 +1,7 @@ use crate::minecraft::{ Argument, ArgumentType, Library, VersionInfo, VersionType, }; -use chrono::{DateTime, TimeZone, Utc}; +use chrono::{DateTime, NaiveDateTime, Utc}; use serde::{Deserialize, Deserializer, Serialize}; use std::collections::HashMap; @@ -26,7 +26,6 @@ pub struct SidedDataEntry { pub server: String, } -#[allow(deprecated)] fn deserialize_date<'de, D>(deserializer: D) -> Result, D::Error> where D: Deserializer<'de>, @@ -34,7 +33,10 @@ where let s = String::deserialize(deserializer)?; serde_json::from_str::>(&format!("\"{s}\"")) - .or_else(|_| Utc.datetime_from_str(&s, "%Y-%m-%dT%H:%M:%S%.9f")) + .or_else(|_| { + NaiveDateTime::parse_from_str(&s, "%Y-%m-%dT%H:%M:%S%.9f") + .map(|date| date.and_utc()) + }) .map_err(serde::de::Error::custom) } @@ -164,6 +166,7 @@ pub fn merge_partial_version( x }) .collect::>(), + logging: merge.logging, main_class: if let Some(main_class) = partial.main_class { main_class } else { diff --git a/packages/ui/index.ts b/packages/ui/index.ts index 690218b80..93cb12071 100644 --- a/packages/ui/index.ts +++ b/packages/ui/index.ts @@ -1,3 +1,3 @@ -export * from './src/components/index' -export { commonMessages, commonSettingsMessages } from './src/utils/common-messages' -export * from './src/utils/search' +export * from './src/components' +export * from './src/utils' +export * from './src/composables' diff --git a/packages/ui/package.json b/packages/ui/package.json index cb02ad568..652d9f11c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -11,14 +11,16 @@ }, "devDependencies": { "@formatjs/cli": "^6.2.12", + "@stripe/stripe-js": "^7.3.1", "@vintl/unplugin": "^1.5.1", "@vintl/vintl": "^4.4.1", "eslint": "^8.57.0", "eslint-config-custom": "workspace:*", + "stripe": "^18.1.1", "tsconfig": "workspace:*", + "typescript": "^5.4.5", "vue": "^3.5.13", - "vue-router": "4.3.0", - "typescript": "^5.4.5" + "vue-router": "4.3.0" }, "dependencies": { "@codemirror/commands": "^6.3.2", @@ -28,13 +30,19 @@ "@codemirror/view": "^6.22.1", "@modrinth/assets": "workspace:*", "@modrinth/utils": "workspace:*", + "@tresjs/cientos": "^4.3.0", + "@tresjs/core": "^4.3.4", "@types/markdown-it": "^14.1.1", + "@types/three": "^0.172.0", + "@vintl/how-ago": "^3.0.1", + "@vueuse/core": "^11.1.0", "apexcharts": "^3.44.0", "dayjs": "^1.11.10", "floating-vue": "^5.2.2", "highlight.js": "^11.9.0", "markdown-it": "^13.0.2", "qrcode.vue": "^3.4.1", + "three": "^0.172.0", "vue-multiselect": "3.0.0", "vue-select": "4.0.0-beta.6", "vue-typed-virtual-list": "^1.0.10", diff --git a/packages/ui/src/components/base/Accordion.vue b/packages/ui/src/components/base/Accordion.vue index 333e2564b..57a2debd4 100644 --- a/packages/ui/src/components/base/Accordion.vue +++ b/packages/ui/src/components/base/Accordion.vue @@ -2,14 +2,14 @@
    - {{ dayjs(version.date_published).fromNow() }} + {{ formatRelativeTime(version.date_published) }}
    () const createdDate = computed(() => - props.project.published ? dayjs(props.project.published).fromNow() : 'unknown', + props.project.published ? formatRelativeTime(props.project.published) : 'unknown', ) const submittedDate = computed(() => - props.project.queued ? dayjs(props.project.queued).fromNow() : 'unknown', + props.project.queued ? formatRelativeTime(props.project.queued) : 'unknown', ) const publishedDate = computed(() => - props.project.approved ? dayjs(props.project.approved).fromNow() : 'unknown', + props.project.approved ? formatRelativeTime(props.project.approved) : 'unknown', ) const updatedDate = computed(() => - props.project.updated ? dayjs(props.project.updated).fromNow() : 'unknown', + props.project.updated ? formatRelativeTime(props.project.updated) : 'unknown', ) const licenseIdDisplay = computed(() => { diff --git a/packages/ui/src/components/search/SearchDropdown.vue b/packages/ui/src/components/search/SearchDropdown.vue index 13d25d143..340020c31 100644 --- a/packages/ui/src/components/search/SearchDropdown.vue +++ b/packages/ui/src/components/search/SearchDropdown.vue @@ -51,10 +51,10 @@
    - {{ displayName(option.title) }} + {{ getOptionLabel(option.title) }}
    - {{ displayName(option.subtitle) }} + {{ getOptionLabel(option.subtitle) }}
    @@ -98,7 +98,7 @@ const props = defineProps({ }, displayName: { type: Function, - default: (option) => option, + default: undefined, }, circledIcons: { type: Boolean, @@ -106,6 +106,10 @@ const props = defineProps({ }, }) +function getOptionLabel(option) { + return props.displayName?.(option) ?? option +} + const emit = defineEmits(['input', 'onSelected', 'update:modelValue', 'enter']) const dropdownVisible = ref(false) diff --git a/packages/ui/src/components/servers/ServersPromo.vue b/packages/ui/src/components/servers/ServersPromo.vue new file mode 100644 index 000000000..68187f003 --- /dev/null +++ b/packages/ui/src/components/servers/ServersPromo.vue @@ -0,0 +1,60 @@ + + + diff --git a/packages/ui/src/components/servers/backups/BackupWarning.vue b/packages/ui/src/components/servers/backups/BackupWarning.vue new file mode 100644 index 000000000..1a9671b7b --- /dev/null +++ b/packages/ui/src/components/servers/backups/BackupWarning.vue @@ -0,0 +1,25 @@ + + diff --git a/packages/ui/src/components/settings/ThemeSelector.vue b/packages/ui/src/components/settings/ThemeSelector.vue index 0a15ba206..e5d432762 100644 --- a/packages/ui/src/components/settings/ThemeSelector.vue +++ b/packages/ui/src/components/settings/ThemeSelector.vue @@ -1,27 +1,15 @@ -