diff --git a/.gitattributes b/.gitattributes index 9602cc4..a0969a9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ book/* linguist-documentation +book/book/* linguist-generated=true tools/* linguist-vendored diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 197922b..f90c55f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -31,7 +31,7 @@ jobs: - name: Install latest nightly uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-03-14 + toolchain: nightly-2025-08-05 components: rustfmt, rust-src - name: Install tarpaulin uses: taiki-e/cache-cargo-install-action@v2 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 948438c..f0194d5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: - name: Install latest nightly uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-03-14 + toolchain: nightly-2025-08-05 components: rustfmt, rust-src - name: Setup Node.js 18 uses: actions/setup-node@v4 diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index ae8ebf1..981a4a5 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -31,7 +31,7 @@ jobs: - name: Install rust toolchain uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-03-14 + toolchain: nightly-2025-08-05 - name: Install cargo msrv uses: taiki-e/cache-cargo-install-action@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4806c5b..b76ddd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,9 @@ concurrency: env: CARGO_TERM_COLOR: always WORKSPACE_ROOT_MANIFEST_DIR: "/home/runner/work/tooling/tooling" + AWS_LC_SYS_PREBUILT_NASM: 1 + PLUGIN_REPOSITORY: "tooling" + PLUGINS: "graphql-client graphql-schema-visualization" jobs: create-or-update-nightly-tag: @@ -78,78 +81,92 @@ jobs: # ARM64 Linux (kernel 4.1, glibc 2.17+) - target: aarch64-unknown-linux-gnu os: ubuntu-22.04-arm - build_tool: cargo - include-files: | - target/release/libreactive_graph_tooling_graphql_client.so, - target/release/libreactive_graph_tooling_graphql_schema_visualization.so + prefix: lib + extension: .so + archive_format: tar.gz # ARM64 macOS (11.0+, Big Sur+) - target: aarch64-apple-darwin os: macos-latest - build_tool: cargo + prefix: lib + extension: .dylib + archive_format: tar.gz # 32-bit Linux (kernel 3.2+, glibc 2.17+) 1 - target: i686-unknown-linux-gnu os: ubuntu-22.04 - build_tool: cross - include-files: | - target/release/libreactive_graph_tooling_graphql_client.so, - target/release/libreactive_graph_tooling_graphql_schema_visualization.so + prefix: lib + extension: .so + archive_format: tar.gz # 64-bit macOS (10.12+, Sierra+) - target: x86_64-apple-darwin os: macos-latest - build_tool: cross + prefix: lib + extension: .dylib + archive_format: tar.gz # 64-bit MinGW (Windows 10+, Windows Server 2016+) - target: x86_64-pc-windows-gnu os: ubuntu-22.04 - build_tool: cross + prefix: "" + extension: .dll + archive_format: zip # 64-bit MSVC (Windows 10+, Windows Server 2016+) - target: x86_64-pc-windows-msvc os: windows-latest - build_tool: cargo + prefix: "" + extension: .dll + archive_format: zip # 64-bit Linux (kernel 3.2+, glibc 2.17+) - target: x86_64-unknown-linux-gnu os: ubuntu-22.04 - build_tool: cargo + prefix: lib + extension: .so + archive_format: tar.gz # Universal macOS binary is supported as universal-apple-darwin. - target: universal-apple-darwin os: macos-latest - build_tool: cargo + prefix: lib + extension: .dylib + archive_format: tar.gz # Tier 2 - # ARM64 Linux with musl 1.2.3 - - target: aarch64-unknown-linux-musl - os: ubuntu-24.04-arm - build_tool: cross # Armv7-A Linux, hardfloat (kernel 3.2, glibc 2.17) - target: armv7-unknown-linux-gnueabihf - os: ubuntu-24.04-arm - build_tool: cross - # Armv7-A Linux with musl 1.2.3, hardfloat - - target: armv7-unknown-linux-musleabihf - os: ubuntu-24.04-arm - build_tool: cross - # 64-bit Linux with musl 1.2.3 - - target: x86_64-unknown-linux-musl - os: ubuntu-22.04 - build_tool: cross + os: ubuntu-22.04-arm + prefix: lib + extension: .so + archive_format: tar.gz # PowerPC Linux (kernel 3.2, glibc 2.17) - target: powerpc-unknown-linux-gnu os: ubuntu-22.04 - build_tool: cross + prefix: lib + extension: .so + archive_format: tar.gz # PPC64 Linux (kernel 3.2, glibc 2.17) - target: powerpc64-unknown-linux-gnu os: ubuntu-22.04 - build_tool: cross + prefix: lib + extension: .so + archive_format: tar.gz # PPC64LE Linux (kernel 3.10, glibc 2.17) - target: powerpc64le-unknown-linux-gnu - os: ubuntu-24.04 - build_tool: cross + os: ubuntu-22.04 + prefix: lib + extension: .so + archive_format: tar.gz # RISC-V Linux (kernel 4.20, glibc 2.29) - target: riscv64gc-unknown-linux-gnu os: ubuntu-22.04 - build_tool: cross + prefix: lib + extension: .so + archive_format: tar.gz runs-on: ${{ matrix.os }} steps: - name: VCS Checkout uses: actions/checkout@v4 + - name: Get version number from git tag + id: tag + uses: devops-actions/action-get-tag@v1.0.3 + with: + strip_v: true + default: nightly - name: Install Compiler Tools for Target i686-unknown-linux-gnu uses: awalsh128/cache-apt-pkgs-action@latest with: @@ -168,8 +185,7 @@ jobs: packages: binutils-arm-linux-gnueabihf gcc-arm-linux-gnueabihf version: 1.0 if: | - matrix.target == 'armv7-unknown-linux-gnueabihf' || - matrix.target == 'armv7-unknown-linux-musleabihf' + matrix.target == 'armv7-unknown-linux-gnueabihf' - name: Install Compiler Tools for Target powerpc-unknown-linux-gnu uses: awalsh128/cache-apt-pkgs-action@latest with: @@ -212,6 +228,7 @@ jobs: uses: dtolnay/rust-toolchain@master with: toolchain: stable + target: ${{ matrix.target }} - name: Install bindgen-cli uses: taiki-e/cache-cargo-install-action@v2 with: @@ -220,7 +237,6 @@ jobs: matrix.target == 'i686-unknown-linux-gnu' || matrix.target == 'x86_64-pc-windows-gnu' || matrix.target == 'armv7-unknown-linux-gnueabihf' || - matrix.target == 'armv7-unknown-linux-musleabihf' || matrix.target == 'powerpc-unknown-linux-gnu' || matrix.target == 'powerpc64-unknown-linux-gnu' || matrix.target == 'powerpc64le-unknown-linux-gnu' || @@ -233,56 +249,62 @@ jobs: matrix.target == 'i686-unknown-linux-gnu' || matrix.target == 'x86_64-pc-windows-gnu' || matrix.target == 'armv7-unknown-linux-gnueabihf' || - matrix.target == 'armv7-unknown-linux-musleabihf' || matrix.target == 'powerpc-unknown-linux-gnu' || matrix.target == 'powerpc64-unknown-linux-gnu' || matrix.target == 'powerpc64le-unknown-linux-gnu' || matrix.target == 'riscv64gc-unknown-linux-gnu' - - name: Upload Regular Release Binary - uses: taiki-e/upload-rust-binary-action@v1 + - name: Build Dynamic Link Libraries + run: cargo build --release --target ${{ matrix.target }} + - name: Create Release Archive + id: archive + uses: ksm2/archive-action@v1 with: - bin: | - libreactive_graph_tooling_graphql_client, - libreactive_graph_tooling_graphql_schema_visualization - target: ${{ matrix.target }} - archive: 'reactive-graph-tooling-$tag-$target' - include: LICENSE.md,README.md,CHANGELOG.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,SECURITY.md - tar: unix - zip: windows - leading_dir: true - token: ${{ secrets.GITHUB_TOKEN }} + name: 'reactive-graph-${{env.PLUGIN_REPOSITORY}}_${{steps.tag.outputs.tag}}_${{ matrix.target }}' + format: ${{ matrix.archive_format }} + root-directory: 'target/${{ matrix.target }}/release/' + include: '${{ matrix.prefix }}reactive_graph_${{env.PLUGIN_REPOSITORY}}_*${{ matrix.extension }}' + - name: Upload Regular Release Archive to GitHub Releases + uses: softprops/action-gh-release@v2 + with: + files: ${{ steps.archive.outputs.path }} if: startsWith(github.event.ref, 'refs/tags/v') - - name: Upload Nightly Binary - uses: taiki-e/upload-rust-binary-action@v1 + - name: Upload Nightly Release Archive to GitHub Releases + uses: softprops/action-gh-release@v2 with: - bin: error - target: ${{ matrix.target }} - build-tool: ${{ matrix.build_tool }} - archive: 'reactive-graph-tooling-nightly-$target' - include: | - ${{ matrix.include-files }} - LICENSE.md, - README.md, - CHANGELOG.md, - CODE_OF_CONDUCT.md, - CONTRIBUTING.md, - SECURITY.md, - tar: unix - zip: windows - leading_dir: true - token: ${{ secrets.GITHUB_TOKEN }} - ref: refs/tags/nightly - if: github.ref == 'refs/heads/main' || github.ref == 'refs/tags/nightly' + files: ${{ steps.archive.outputs.path }} + tag_name: nightly + if: github.ref == 'refs/heads/main' debian-package: - name: Publish debian package + name: Debian package + needs: [ create-or-update-nightly-tag, create-release ] + if: always() && (!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')) strategy: + fail-fast: false matrix: include: - target: x86_64-unknown-linux-gnu + # libc 2.35 os: ubuntu-22.04 - target: aarch64-unknown-linux-gnu + # libc 2.35 + os: ubuntu-22.04-arm + - target: i686-unknown-linux-gnu + # libc 2.35 os: ubuntu-22.04 - target: armv7-unknown-linux-gnueabihf + # libc 2.35 + os: ubuntu-22.04-arm + - target: powerpc-unknown-linux-gnu + # libc 2.35 + os: ubuntu-22.04 + - target: powerpc64-unknown-linux-gnu + # libc 2.35 + os: ubuntu-22.04 + - target: powerpc64le-unknown-linux-gnu + # libc 2.39 + os: ubuntu-24.04 + - target: riscv64gc-unknown-linux-gnu + # libc 2.35 os: ubuntu-22.04 runs-on: ${{ matrix.os }} steps: @@ -293,30 +315,74 @@ jobs: uses: devops-actions/action-get-tag@v1.0.3 with: strip_v: true - - name: Install aarch64 packages + default: nightly + - name: Get current date + id: date + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + - name: Install Compiler Tools for Target aarch64 uses: awalsh128/cache-apt-pkgs-action@latest with: packages: binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu version: 1.0 if: matrix.target == 'aarch64-unknown-linux-gnu' - - name: Install armv7 packages + - name: Install Compiler Tools for Target i686-unknown-linux-gnu uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: binutils-arm-none-eabi gcc-arm-linux-gnueabihf + packages: binutils-i686-linux-gnu gcc-i686-linux-gnu + version: 1.0 + if: matrix.target == 'i686-unknown-linux-gnu' + - name: Install Compiler Tools for Target armv7-unknown-linux-gnueabihf + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: binutils-arm-linux-gnueabihf gcc-arm-linux-gnueabihf version: 1.0 if: matrix.target == 'armv7-unknown-linux-gnueabihf' - - name: Install latest nightly - uses: actions-rs/toolchain@v1 + - name: Install Compiler Tools for Target powerpc-unknown-linux-gnu + uses: awalsh128/cache-apt-pkgs-action@latest with: - profile: minimal - toolchain: nightly - override: true + packages: binutils-powerpc-linux-gnu gcc-powerpc-linux-gnu g++-powerpc-linux-gnu + version: 1.0 + if: matrix.target == 'powerpc-unknown-linux-gnu' + - name: Install Compiler Tools for Target powerpc64-unknown-linux-gnu + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: binutils-powerpc64-linux-gnu gcc-powerpc64-linux-gnu g++-powerpc64-linux-gnu + version: 1.0 + if: matrix.target == 'powerpc64-unknown-linux-gnu' + - name: Install Compiler Tools for Target powerpc64le-unknown-linux-gnu + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: binutils-powerpc64le-linux-gnu gcc-powerpc64le-linux-gnu g++-powerpc64le-linux-gnu + version: 1.0 + if: matrix.target == 'powerpc64le-unknown-linux-gnu' + - name: Install Compiler Tools for Target riscv64gc-unknown-linux-gnu + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: binutils-riscv64-linux-gnu gcc-riscv64-linux-gnu + version: 1.0 + if: matrix.target == 'riscv64gc-unknown-linux-gnu' + - name: Set AWS_LC_SYS_CFLAGS on powerpc-unknown-linux-gnu + run: echo 'AWS_LC_SYS_CFLAGS="-Wno-stringop-overflow"' >> "$GITHUB_ENV" + if: matrix.target == 'powerpc-unknown-linux-gnu' + # The flag below is set to avoid the following error with GCC 11.4.0 on the riscv64 platform: + # error: 'strncmp' of strings of length 1 and 9 and bound of 9 evaluates to nonzero [-Werror=string-compare] + - name: Set AWS_LC_SYS_CFLAGS on riscv64gc-unknown-linux-gnu + run: echo 'AWS_LC_SYS_CFLAGS="-Wno-string-compare"' >> "$GITHUB_ENV" + if: matrix.target == 'riscv64gc-unknown-linux-gnu' + - name: Set optimization level 2 for powerpc targets + run: echo 'CARGO_PROFILE_RELEASE_OPT_LEVEL=2' >> "$GITHUB_ENV" + if: | + matrix.target == 'powerpc-unknown-linux-gnu' || + matrix.target == 'powerpc64-unknown-linux-gnu' || + matrix.target == 'powerpc64le-unknown-linux-gnu' + - name: Install rust toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable - name: Install Cargo Deb - uses: actions-rs/install@v0.1 + uses: taiki-e/cache-cargo-install-action@v2 with: - crate: cargo-deb - version: latest - use-tool-cache: true + tool: cargo-deb - name: Install cross-compilation tools uses: taiki-e/setup-cross-toolchain-action@v1 with: @@ -333,19 +399,40 @@ jobs: uses: borales/actions-yarn@v5 with: cmd: --cwd plugins/graphql-schema-visualization/web install - - name: Create Debian Package + - name: Create Regular Debian Package + if: startsWith(github.event.ref, 'refs/tags/v') + run: | + for PLUGIN in ${{env.PLUGINS}}; do + # It's important to change into the plugin directory and building each package + cd ${{env.WORKSPACE_ROOT_MANIFEST_DIR}}/plugins/$PLUGIN + cargo deb -p reactive-graph-${{env.PLUGIN_REPOSITORY}}-$PLUGIN --target=${{ matrix.target }} --deb-revision ${{steps.tag.outputs.tag}} + done + env: + VERGEN_IDEMPOTENT: true + - name: Create Nightly Debian Package + if: github.ref == 'refs/heads/main' run: | - # It's important to change into the plugin directory and building each package - cd ../../../graphql-client - cargo deb -p reactive-graph-tooling-graphql-client --target=${{ matrix.target }} --deb-version ${{steps.tag.outputs.tag}} - cd ../graphql-schema-visualization - cargo deb -p reactive-graph-tooling-graphql-schema-visualization --target=${{ matrix.target }} --deb-version ${{steps.tag.outputs.tag}} + for PLUGIN in ${{env.PLUGINS}}; do + # It's important to change into the plugin directory and building each package + cd ${{env.WORKSPACE_ROOT_MANIFEST_DIR}}/plugins/$PLUGIN + cargo deb -p reactive-graph-${{env.PLUGIN_REPOSITORY}}-$PLUGIN --target=${{ matrix.target }} --deb-revision nightly + done env: VERGEN_IDEMPOTENT: true - - name: Upload debian package to release + - name: Upload Regular Debian Package uses: svenstaro/upload-release-action@v2 + if: startsWith(github.event.ref, 'refs/tags/v') with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: target/${{ matrix.target }}/debian/libreactive-graph-tooling-*_*_*.deb + file: target/${{ matrix.target }}/debian/libreactive-graph-${{env.PLUGIN_REPOSITORY}}-*_*_*.deb file_glob: true tag: ${{ github.ref }} + - name: Upload Nightly Debian Package + uses: svenstaro/upload-release-action@v2 + if: github.ref == 'refs/heads/main' + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: target/${{ matrix.target }}/debian/libreactive-graph-${{env.PLUGIN_REPOSITORY}}-*_*_*.deb + file_glob: true + tag: 'nightly' + overwrite: true diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 11319ce..4bfc9a0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -41,7 +41,7 @@ jobs: - name: Install latest nightly uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-03-14 + toolchain: nightly-2025-08-05 components: rustfmt - name: Run cargo fmt run: cargo fmt --all -- --check @@ -60,7 +60,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - toolchain: [ stable, nightly-2025-03-14 ] + toolchain: [ stable, nightly-2025-08-05 ] target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ] steps: - name: VCS Checkout @@ -96,7 +96,7 @@ jobs: strategy: matrix: os: [ ubuntu-22.04, ubuntu-22.04-arm, macos-latest, windows-latest ] - toolchain: [ stable, nightly-2025-03-14 ] + toolchain: [ stable, nightly-2025-08-05 ] runs-on: ${{ matrix.os }} steps: - name: VCS Checkout @@ -129,7 +129,7 @@ jobs: if: always() && (!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')) strategy: matrix: - toolchain: [ stable, nightly-2025-03-14 ] + toolchain: [ stable, nightly-2025-08-05 ] target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ] runs-on: ubuntu-22.04 steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2486012..2df97f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,11 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Refactored into new mono repo `reactive-graph/tooling` - Moved plugins `graphql-client` and `graphql-schema-visualization` from `reactive-graph/std` -> `reactive-graph/tooling` - Prefix plugins with `tooling` (e.g. `libreactive_graph_tooling_graphql_client`) +- Build: Bump MSRV 1.85 -> 1.87 ### Fixed ### Distribution +- CI: Use ubuntu-22.04 instead of ubuntu-20.04 for building debian packages +- CI: Publish dynamic link libraries as compressed archive +- CI: Publish debian packages + ### Infrastructure - Build System: Refactored plugin deployment @@ -27,3 +32,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CI: Publish binary packages and debian packages - CI: Automatically merge successful dependabot PR's - CI: Added CODEOWNERS +- CI: Update rust nightly toolchain to nightly-2025-08-05 diff --git a/Cargo.lock b/Cargo.lock index 32772db..dc011e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,9 +13,9 @@ dependencies = [ [[package]] name = "adler2" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "adler32" @@ -25,14 +25,14 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[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", "once_cell", "version_check", - "zerocopy 0.7.35", + "zerocopy", ] [[package]] @@ -58,9 +58,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.18" +version = "0.6.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" +checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" dependencies = [ "anstyle", "anstyle-parse", @@ -73,37 +73,37 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" +checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" [[package]] name = "anstyle-parse" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" +checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" +checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" dependencies = [ - "windows-sys", + "windows-sys 0.60.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.7" +version = "3.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" +checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" dependencies = [ "anstyle", - "once_cell", - "windows-sys", + "once_cell_polyfill", + "windows-sys 0.60.2", ] [[package]] @@ -126,20 +126,20 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "autocfg" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[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", @@ -147,14 +147,14 @@ dependencies = [ "miniz_oxide", "object", "rustc-demangle", - "windows-targets", + "windows-targets 0.52.6", ] [[package]] name = "bitflags" -version = "2.9.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" [[package]] name = "block-buffer" @@ -167,9 +167,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.17.0" +version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" [[package]] name = "byteorder" @@ -185,18 +185,18 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cc" -version = "1.2.20" +version = "1.2.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a" +checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2" dependencies = [ "shlex", ] [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" [[package]] name = "change-detection" @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.40" +version = "0.4.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" +checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" dependencies = [ "android-tzdata", "iana-time-zone", @@ -225,9 +225,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.37" +version = "4.5.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071" +checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f" dependencies = [ "clap_builder", "clap_derive", @@ -235,9 +235,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.37" +version = "4.5.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2" +checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65" dependencies = [ "anstream", "anstyle", @@ -247,27 +247,27 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.32" +version = "4.5.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" +checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "clap_lex" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" +checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" [[package]] name = "colorchoice" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "const_format" @@ -325,9 +325,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ "cfg-if", ] @@ -419,7 +419,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -430,7 +430,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ "darling_core", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -487,7 +487,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", "unicode-xid", ] @@ -509,9 +509,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" [[package]] name = "either" @@ -564,14 +564,14 @@ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", "libc", - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi 0.11.1+wasi-snapshot-preview1", ] [[package]] name = "getrandom" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", "libc", @@ -603,9 +603,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.15.2" +version = "0.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" [[package]] name = "heck" @@ -615,9 +615,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "http" @@ -686,17 +686,17 @@ dependencies = [ "libflate", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "indexmap" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" +checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown 0.15.4", ] [[package]] @@ -708,6 +708,17 @@ dependencies = [ "rustversion", ] +[[package]] +name = "io-uring" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" +dependencies = [ + "bitflags", + "cfg-if", + "libc", +] + [[package]] name = "is_terminal_polyfill" version = "1.70.1" @@ -771,9 +782,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.172" +version = "0.2.174" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" +checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" [[package]] name = "libflate" @@ -801,9 +812,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" dependencies = [ "autocfg", "scopeguard", @@ -855,9 +866,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" [[package]] name = "mime" @@ -877,13 +888,24 @@ dependencies = [ [[package]] name = "miniz_oxide" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", ] +[[package]] +name = "mio" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +dependencies = [ + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.59.0", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -918,6 +940,12 @@ version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +[[package]] +name = "once_cell_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" + [[package]] name = "ordered-float" version = "2.10.1" @@ -929,9 +957,9 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" dependencies = [ "lock_api", "parking_lot_core", @@ -939,15 +967,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-targets", + "windows-targets 0.52.6", ] [[package]] @@ -977,7 +1005,7 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy 0.8.25", + "zerocopy", ] [[package]] @@ -1000,9 +1028,9 @@ dependencies = [ [[package]] name = "r-efi" -version = "5.2.0" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] name = "rand" @@ -1057,7 +1085,7 @@ dependencies = [ [[package]] name = "reactive-graph-behaviour-model-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "dashmap", "reactive-graph-graph", @@ -1072,7 +1100,7 @@ dependencies = [ [[package]] name = "reactive-graph-behaviour-service-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "async-trait", "reactive-graph-behaviour-model-api", @@ -1087,7 +1115,7 @@ dependencies = [ [[package]] name = "reactive-graph-command-model" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "clap", "reactive-graph-graph", @@ -1104,7 +1132,7 @@ dependencies = [ [[package]] name = "reactive-graph-config-model" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "num_cpus", "reactive-graph-remotes-model", @@ -1114,7 +1142,7 @@ dependencies = [ [[package]] name = "reactive-graph-graph" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "const_format", "dashmap", @@ -1130,7 +1158,7 @@ dependencies = [ [[package]] name = "reactive-graph-lifecycle" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "async-trait", ] @@ -1138,7 +1166,7 @@ dependencies = [ [[package]] name = "reactive-graph-plugin-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "async-trait", "http", @@ -1163,23 +1191,23 @@ dependencies = [ [[package]] name = "reactive-graph-plugin-derive" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" [[package]] name = "reactive-graph-reactive-derive" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "reactive-graph-reactive-model-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "reactive-graph-graph", "serde_json", @@ -1190,7 +1218,7 @@ dependencies = [ [[package]] name = "reactive-graph-reactive-model-impl" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "dashmap", "reactive-graph-behaviour-model-api", @@ -1205,7 +1233,7 @@ dependencies = [ [[package]] name = "reactive-graph-reactive-service-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "async-trait", "crossbeam", @@ -1229,7 +1257,7 @@ dependencies = [ [[package]] name = "reactive-graph-remotes-model" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "chrono", "serde", @@ -1239,7 +1267,7 @@ dependencies = [ [[package]] name = "reactive-graph-runtime-model" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "reactive-graph-graph", "serde", @@ -1250,7 +1278,7 @@ dependencies = [ [[package]] name = "reactive-graph-serde" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "serde_json", "thiserror 2.0.12", @@ -1291,7 +1319,7 @@ dependencies = [ [[package]] name = "reactive-graph-type-system-api" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "async-trait", "reactive-graph-graph", @@ -1309,19 +1337,19 @@ dependencies = [ [[package]] name = "reactive-graph-type-system-derive" version = "0.10.0" -source = "git+https://github.com/reactive-graph/reactive-graph.git#037067459994acc7de23a54b7a5c775104807fe0" +source = "git+https://github.com/reactive-graph/reactive-graph.git#014aeaf355536b6f8692a2adf9cc8948d4ac4989" dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "redox_syscall" -version = "0.5.11" +version = "0.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3" +checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" dependencies = [ "bitflags", ] @@ -1343,7 +1371,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1373,7 +1401,7 @@ dependencies = [ "proc-macro2", "quote", "rust-embed-utils", - "syn 2.0.101", + "syn 2.0.104", "walkdir", ] @@ -1389,9 +1417,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" [[package]] name = "rustc_version" @@ -1404,9 +1432,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.20" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" [[package]] name = "ryu" @@ -1444,7 +1472,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1486,7 +1514,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1497,14 +1525,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "serde_json" -version = "1.0.140" +version = "1.0.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" +checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7" dependencies = [ "itoa", "memchr", @@ -1542,9 +1570,9 @@ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" [[package]] name = "sha2" -version = "0.10.8" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", "cpufeatures", @@ -1557,11 +1585,17 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "slab" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" + [[package]] name = "smallvec" -version = "1.15.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "springtime-di" @@ -1588,7 +1622,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1610,15 +1644,14 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "strum_macros" -version = "0.27.1" +version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ "heck", "proc-macro2", "quote", - "rustversion", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1634,9 +1667,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.101" +version = "2.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" +checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" dependencies = [ "proc-macro2", "quote", @@ -1669,7 +1702,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1680,7 +1713,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1695,12 +1728,16 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.2" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", + "io-uring", + "libc", + "mio", "pin-project-lite", + "slab", ] [[package]] @@ -1768,20 +1805,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.28" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" +checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "tracing-core" -version = "0.1.33" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" +checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" dependencies = [ "once_cell", ] @@ -1803,7 +1840,7 @@ checksum = "60d8d828da2a3d759d3519cdf29a5bac49c77d039ad36d0782edadbf9cd5415b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -1872,7 +1909,7 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" dependencies = [ - "getrandom 0.3.2", + "getrandom 0.3.3", "js-sys", "serde", "sha1_smol", @@ -1897,9 +1934,9 @@ dependencies = [ [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] name = "wasi" @@ -1932,7 +1969,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", "wasm-bindgen-shared", ] @@ -1954,7 +1991,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -1996,7 +2033,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys", + "windows-sys 0.59.0", ] [[package]] @@ -2007,9 +2044,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows-core" -version = "0.61.0" +version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ "windows-implement", "windows-interface", @@ -2026,7 +2063,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] @@ -2037,29 +2074,29 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] [[package]] name = "windows-link" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" [[package]] name = "windows-result" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" dependencies = [ "windows-link", ] [[package]] name = "windows-strings" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" dependencies = [ "windows-link", ] @@ -2070,7 +2107,16 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets", + "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.3", ] [[package]] @@ -2079,14 +2125,31 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" +dependencies = [ + "windows-link", + "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]] @@ -2095,53 +2158,101 @@ 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.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.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.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.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.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.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.7.10" +version = "0.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec" +checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" dependencies = [ "memchr", ] @@ -2157,40 +2268,20 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" -dependencies = [ - "zerocopy-derive 0.7.35", -] - -[[package]] -name = "zerocopy" -version = "0.8.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" -dependencies = [ - "zerocopy-derive 0.8.25", -] - -[[package]] -name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", + "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.25" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" +checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.104", ] diff --git a/Cargo.toml b/Cargo.toml index f1fdebb..97df1c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT" repository = "https://github.com/reactive-graph/tooling" homepage = "https://tooling.reactive-graph.io/" keywords = ["graph", "reactive", "control-flow", "inexor"] -rust-version = "1.85.0" +rust-version = "1.87.0" [workspace.dependencies] async-trait = "0.1"