diff --git a/.github/workflows/build-chronicle.yaml b/.github/workflows/build-chronicle.yaml new file mode 100644 index 0000000000..ef422dafe4 --- /dev/null +++ b/.github/workflows/build-chronicle.yaml @@ -0,0 +1,65 @@ +name: Compile chronicle + +on: + pull_request: + paths-ignore: + - 'contracts/**' + - 'docker/**' + - 'docs/**' + - 'node/**' + - 'infra/**' + - 'js/**' + - 'scripts/**' + - 'tester/**' + - 'utils/**' + - '**/*.md' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-chronicle: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + profile: + - production + - testnet + steps: + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y musl-tools protobuf-compiler + - name: Checkout sources + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Install rust toolchain + run : rustup show + - name: Setup and cache sccache + uses: visvirial/sccache-action@v1.0.1 + with: + cache-key: sccache-chronicle-${{ matrix.profile }} + - name: Cache cargo registry and index + uses: actions/cache@v4 + with: + path: | + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + key: cargo-cache-chronicle-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-cache-chronicle- + - name: Cache cargo build output + uses: actions/cache@v4 + with: + path: target + key: cargo-build-chronicle-${{ matrix.profile }}-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-build-chronicle-${{ matrix.profile }}- + - name: Build chronicle + run: cargo build --package chronicle --profile ${{ matrix.profile }} + - name: Upload chronicle + uses: actions/upload-artifact@v4 + with: + name: chronicle.${{ matrix.profile }} + if-no-files-found: error + path: target/${{ matrix.profile }}/chronicle diff --git a/.github/workflows/build-docker-tester.yaml b/.github/workflows/build-docker-tester.yaml index a05b2f863c..f193ebd430 100644 --- a/.github/workflows/build-docker-tester.yaml +++ b/.github/workflows/build-docker-tester.yaml @@ -1,8 +1,8 @@ ########################################################## # # Workflow for building the tester image. It's a CLI tool -# used in deployment scripts and apps. The tester CLI -# image includes the tester binary and the compiled +# used in deployment scripts and apps. The tester CLI +# image includes the tester binary and the compiled # contracts. # ########################################################## @@ -73,7 +73,7 @@ jobs: - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 - name: Build contracts - run: forge build --root analog-gmp --optimize --optimizer-runs=200000 --use=0.8.24 --force + run: forge build --root analog-gmp --optimize --optimizer-runs=200000 --evm-version=shanghai --use=0.8.25 --force - name: Build tester run: cargo build --release -p tester - name: Copy contracts diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml new file mode 100644 index 0000000000..bd22e5d895 --- /dev/null +++ b/.github/workflows/build-docs.yaml @@ -0,0 +1,32 @@ +name: Generate docs + +on: + pull_request: + paths-ignore: + - 'docker/**' + - 'infra/**' + - 'js/**' + - 'scripts/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-docs: + runs-on: ubuntu-latest + steps: + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Checkout sources + uses: actions/checkout@v4 + - name: Install rust toolchain + run : rustup show + - name: Build docs + run: cargo doc --no-deps --document-private-items --workspace + - name: Upload tester + uses: actions/upload-artifact@v4 + with: + name: docs + if-no-files-found: error + path: target/doc diff --git a/.github/workflows/build-node.yaml b/.github/workflows/build-node.yaml new file mode 100644 index 0000000000..7a7a573b67 --- /dev/null +++ b/.github/workflows/build-node.yaml @@ -0,0 +1,79 @@ +name: Compile node + +on: + pull_request: + paths-ignore: + - 'chronicle/**' + - 'contracts/**' + - 'docker/**' + - 'docs/**' + - 'infra/**' + - 'js/**' + - 'lib/**' + - 'scripts/**' + - 'tc-subxt/**' + - 'tester/**' + - 'tss/**' + - 'utils/**' + - '**/*.md' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + setup: + runs-on: [ self-hosted-timechain ] + steps: + - name: Install rust toolchain + run : rustup show + - name: Checkout sources + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive + - name: Cache cargo registry and index + uses: actions/cache@v4 + with: + path: | + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + key: cargo-cache-timechain-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-cache-timechain- + + build-node: + runs-on: [ self-hosted-timechain ] + needs: [ setup ] + strategy: + fail-fast: false + matrix: + include: + - profile: production + features: default + - profile: testnet + features: default + - profile: testnet + features: development + steps: + - name: Checkout sources + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive + - name: Cache cargo build output + uses: actions/cache@v4 + with: + path: target + key: cargo-build-timenode-${{ matrix.profile }}-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-build-timenode-${{ matrix.profile }}- + - name: Build timechain node + env: + SKIP_WASM_BUILD: true + run: cargo build --package timechain-node --profile ${{ matrix.profile }} --features ${{ matrix.features }} + - name: Upload timechain node + uses: actions/upload-artifact@v4 + with: + name: timenode.${{ matrix.profile }}.${{ matrix.features }} + if-no-files-found: error + path: target/${{ matrix.profile }}/timechain-node diff --git a/.github/workflows/build-runtime.yaml b/.github/workflows/build-runtime.yaml index 503258aa0d..fa85895a5e 100644 --- a/.github/workflows/build-runtime.yaml +++ b/.github/workflows/build-runtime.yaml @@ -1,55 +1,122 @@ -name: Build runtime artifacts +name: Compile runtimes on: - push: - branches: - - "ci/runtime/**" + pull_request: + paths-ignore: + - 'chronicle/**' + - 'contracts/**' + - 'docker/**' + - 'docs/**' + - 'infra/**' + - 'js/**' + - 'lib/**' + - 'scripts/**' + - 'tc-subxt/**' + - 'tester/**' + - 'tss/**' + - 'utils/**' + - '**/*.md' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: - set-tags: - name: Get & set tags - runs-on: ubuntu-latest - outputs: - commit_hash: ${{ steps.get-sha.outputs.sha }} - commit_hash8: ${{ steps.get-sha.outputs.sha8 }} + setup: + runs-on: [ self-hosted-timechain ] steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Get SHA - id: get-sha - run: | - sha=$(git log -1 --format='%H') - echo "sha=$sha" >> $GITHUB_OUTPUT - echo "sha8=$(git log -1 --format='%H' | cut -c1-8)" >> $GITHUB_OUTPUT - echo "SHA commit:" $sha + - name: Install rust toolchain + run : rustup show + - name: Checkout sources + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive + - name: Cache cargo registry and index + uses: actions/cache@v4 + with: + path: | + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + key: cargo-cache-timechain-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-cache-timechain- build-runtime: - name: Build runtimes - needs: ["set-tags"] - runs-on: ubuntu-latest + runs-on: [ self-hosted-timechain ] + needs: [ setup ] + strategy: + fail-fast: false + matrix: + include: + - package: timechain-runtime + features: default + crate: timechain_runtime + - package: timechain-runtime + features: development + crate: timechain_runtime steps: - - name: Fetch latest code - uses: actions/checkout@v3 - - - name: Build timechain runtime - id: srtool_build - uses: chevdor/srtool-actions@v0.7.0 - with: - image: analoglabs/srtool - tag: 1.75.0 - chain: timechain - runtime_dir: "runtime" + - name: Checkout sources + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive + - name: Cache cargo build output + uses: actions/cache@v4 + with: + path: target + key: cargo-build-${{ matrix.package }}-${{ matrix.features }}-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-build-${{ matrix.package }}-${{ matrix.features }}- + - name: Build timechain runtime + run: cargo build --package ${{ matrix.package }} --profile release --features ${{ matrix.features }} + - name: Upload timechain runtime + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.package }}.${{ matrix.features }}.wasm + if-no-files-found: error + path: target/release/wbuild/${{ matrix.package }}/${{ matrix.crate }}.compact.compressed.wasm + - name: Upload timechain metadata + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.package }}.${{ matrix.features }}.scale + if-no-files-found: error + path: target/release/wbuild/${{ matrix.package }}/${{ matrix.crate }}.metadata.scale - - name: Srtool summary - run: | - echo '${{ steps.srtool_build.outputs.json }}' | jq . > timechain-srtool-digest.json - cat timechain-srtool-digest.json - echo "Runtime location: ${{ steps.srtool_build.outputs.wasm_compressed }}" - - - name: Upload timechain runtime artifacts - uses: actions/upload-artifact@v3 - with: - name: timechain-runtime - path: | - ${{ steps.srtool_build.outputs.wasm_compressed }} - timechain-srtool-digest.json + update-metadata: + runs-on: [ self-hosted-timechain ] + needs: [ build-runtime ] + if: ${{ always() }} + continue-on-error: true + steps: + - name: Checkout sources + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + - name: Download and update Testnet Metadata + id: download-testnet-default-metadata + uses: actions/download-artifact@v4 + continue-on-error: true + with: + name: timechain-runtime.default.scale + - name: Download and Testnet Metadata + if: steps.download-testnet-default-metadata.outcome == 'success' + run: mv timechain_runtime.metadata.scale config/subxt/testnet.default.scale + - name: Download Development Metadata + id: download-testnet-development-metadata + uses: actions/download-artifact@v4 + continue-on-error: true + with: + name: timechain-runtime.development.scale + - name: Update Development Metadata + if: steps.download-testnet-development-metadata.outcome == 'success' + run: mv timechain_runtime.metadata.scale config/subxt/testnet.development.scale + - name: Commit any changes to the metadata + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + if ! git diff --quiet; then + git config user.email "github@analog.one" + git config user.name "Metadata Update Bot" + git commit -am "tc-subxt: Automated metadata update" + git push + fi diff --git a/.github/workflows/build-srtool-runtime.yaml b/.github/workflows/build-srtool-runtime.yaml new file mode 100644 index 0000000000..9e58851b72 --- /dev/null +++ b/.github/workflows/build-srtool-runtime.yaml @@ -0,0 +1,56 @@ +name: Build runtime artifacts + +on: + push: + branches: + - "ci/runtime/**" + +jobs: + set-tags: + name: Get & set tags + runs-on: ubuntu-latest + outputs: + commit_hash: ${{ steps.get-sha.outputs.sha }} + commit_hash8: ${{ steps.get-sha.outputs.sha8 }} + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Get SHA + id: get-sha + run: | + sha=$(git log -1 --format='%H') + echo "sha=$sha" >> $GITHUB_OUTPUT + echo "sha8=$(git log -1 --format='%H' | cut -c1-8)" >> $GITHUB_OUTPUT + echo "SHA commit:" $sha + + build-runtime: + name: Build runtimes + needs: ["set-tags"] + runs-on: ubuntu-latest + steps: + - name: Fetch latest code + uses: actions/checkout@v3 + + - name: Build timechain runtime + id: srtool_build + uses: chevdor/srtool-actions@v0.7.0 + with: + image: analoglabs/srtool + tag: 1.75.0 + chain: timechain + runtime_dir: "runtime" + + - name: Srtool summary + run: | + echo '${{ steps.srtool_build.outputs.json }}' | jq . > timechain-srtool-digest.json + cat timechain-srtool-digest.json + echo "Runtime location: ${{ steps.srtool_build.outputs.wasm_compressed }}" + + - name: Upload timechain runtime artifacts + uses: actions/upload-artifact@v4 + with: + name: timechain-runtime + if-no-files-found: error + path: | + ${{ steps.srtool_build.outputs.wasm_compressed }} + timechain-srtool-digest.json diff --git a/.github/workflows/build-tester.yaml b/.github/workflows/build-tester.yaml new file mode 100644 index 0000000000..490bd1667a --- /dev/null +++ b/.github/workflows/build-tester.yaml @@ -0,0 +1,64 @@ +name: Compile tester + +on: + pull_request: + paths-ignore: + - 'chronicle/**' + - 'docker/**' + - 'docs/**' + - 'infra/**' + - 'js/**' + - 'lib/**' + - 'scripts/**' + - 'utils/**' + - '**/*.md' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-tester: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + profile: + - production + - testnet + steps: + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y musl-tools protobuf-compiler + - name: Checkout sources + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Install rust toolchain + run : rustup show + - name: Setup and cache sccache + uses: visvirial/sccache-action@v1.0.1 + with: + cache-key: sccache-tester-${{ matrix.profile }} + - name: Cache cargo registry and index + uses: actions/cache@v4 + with: + path: | + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + key: cargo-cache-tester-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-cache-tester- + - name: Cache cargo build output + uses: actions/cache@v4 + with: + path: target + key: cargo-build-tester-${{ matrix.profile }}-${{ hashFiles('Cargo.lock') }} + restore-keys: cargo-build-tester-${{ matrix.profile }}- + - name: Build tester + run: cargo build --package tester --profile ${{ matrix.profile }} + - name: Upload tester + uses: actions/upload-artifact@v4 + with: + name: tester.${{ matrix.profile }} + if-no-files-found: error + path: target/${{ matrix.profile }}/tester diff --git a/.github/workflows/metadata.yaml b/.github/workflows/metadata.yaml deleted file mode 100644 index 0cd389be30..0000000000 --- a/.github/workflows/metadata.yaml +++ /dev/null @@ -1,99 +0,0 @@ -########################################################## -# -# Workflow for generating the metadata. It's triggered -# on each pull request commit, ignoring paths that don't -# affect the metadata (mostly the Substrate specifics). -# -# It generates the metadata by running the node and -# invoking subxt metadata command. If the generated file -# is different than the already present one -# (config/subxt/metadata.scale), the Github bot commits -# and pushes to the current PR branch. -# -########################################################## -name: Generate metadata - -on: - pull_request: - paths-ignore: - - 'docker/**' - - 'docs/**' - - 'infra/**' - - 'js/**' - - '**/*.md' - - 'tester/**' - - 'scripts/**' - - 'tc-subxt/**' - - 'chronicle/**' - - 'tss/**' - - 'lib/**' - -jobs: - generate: - runs-on: ubuntu-latest - steps: - - name: Install deps - run: sudo apt-get update && sudo apt-get install -y musl-tools protobuf-compiler - - name: Checkout sources - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.sha }} - submodules: recursive - - name: Install rust toolchain - run : rustup show - - name: Install subxt - uses: actions-rs/cargo@v1 - with: - command: install - args: --version 0.33.0 subxt-cli - - name: Rust cache - uses: Swatinem/rust-cache@v2 - - name: Build timechain-node - uses: actions-rs/cargo@v1 - with: - command: build - args: --release -p timechain-node - - # Runs the node (saves the PID), generates the metadata - # and kills the process afterwards. - - name: Generate metadata - run: | - ./target/release/timechain-node --dev & - NODE_PID=$! - sleep 15 - subxt metadata --url ws://127.0.0.1:9944 -f bytes > config/subxt/metadata.scale-new - kill -9 $NODE_PID - # Calculates the diff and outputs the updated flag. - - name: Get diff - id: diff - run: | - set +e - - diff config/subxt/metadata.scale-new config/subxt/metadata.scale - CODE=$? - - set -e - - if [ $CODE -eq 0 ]; then - echo NO DIFF - echo "updated=false" >> $GITHUB_OUTPUT - else - mv config/subxt/metadata.scale-new config/subxt/metadata.scale - echo "updated=true" >> $GITHUB_OUTPUT - fi - - name: Checkout PR - if: steps.diff.outputs.updated == 'true' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh pr checkout ${{ github.event.pull_request.number }} - # Github bot commits the change and pushes to the PR branch - # NOTE: only if the updated flag from step "Get diff" is true - - name: Commit & Push changes - if: steps.diff.outputs.updated == 'true' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config user.email "github@analog.one" - git config user.name "Github Bot" - git commit -am "Update metadata" - git push diff --git a/.github/workflows/self-hosted.yml b/.github/workflows/self-hosted.yml index 68b480cee7..952bc806cb 100644 --- a/.github/workflows/self-hosted.yml +++ b/.github/workflows/self-hosted.yml @@ -58,11 +58,12 @@ jobs: - run: sudo apt-get install -y protobuf-compiler solc - run: forge fmt --check - - run: forge test -vvv --block-gas-limit=30000000 --optimize --optimizer-runs=200000 --use=0.8.24 --root analog-gmp + - run: forge test -vvv --block-gas-limit=30000000 --optimize --optimizer-runs=200000 --evm-version=shanghai --use=0.8.25 --root analog-gmp - run: cargo +stable fmt --all -- --check - run: cargo +stable test --workspace --locked - run: cargo +stable check --features runtime-benchmarks + - run: cargo +stable check --features try-runtime - uses: actions-rs/clippy-check@v1 with: diff --git a/Cargo.lock b/Cargo.lock index 54da65d2fe..edfd2edcea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,11 +23,11 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" dependencies = [ - "gimli 0.28.1", + "gimli 0.29.0", ] [[package]] @@ -89,7 +89,7 @@ dependencies = [ "cipher 0.2.5", "ctr 0.6.0", "ghash 0.3.1", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -103,7 +103,7 @@ dependencies = [ "cipher 0.4.4", "ctr 0.9.2", "ghash 0.5.1", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -132,7 +132,7 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", "once_cell", "version_check", ] @@ -144,7 +144,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", - "getrandom 0.2.12", + "getrandom 0.2.15", "once_cell", "version_check", "zerocopy", @@ -161,9 +161,29 @@ dependencies = [ [[package]] name = "allocator-api2" -version = "0.2.16" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" + +[[package]] +name = "alloy-primitives" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" +checksum = "a0628ec0ba5b98b3370bb6be17b12f23bfce8ee4ad83823325a20546d9b03b78" +dependencies = [ + "alloy-rlp", + "bytes", + "cfg-if", + "const-hex", + "derive_more 0.99.18", + "hex-literal", + "itoa", + "proptest", + "rand 0.8.5", + "ruint", + "serde", + "tiny-keccak", +] [[package]] name = "alloy-primitives" @@ -175,7 +195,7 @@ dependencies = [ "bytes", "cfg-if", "const-hex", - "derive_more 0.99.17", + "derive_more 0.99.18", "hex-literal", "itoa", "k256", @@ -189,14 +209,31 @@ dependencies = [ [[package]] name = "alloy-rlp" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d58d9f5da7b40e9bfff0b7e7816700be4019db97d4b6359fe7f94a9e22e42ac" +checksum = "b155716bab55763c95ba212806cf43d05bcc70e5f35b02bad20cf5ec7fe11fed" dependencies = [ "arrayvec 0.7.4", "bytes", ] +[[package]] +name = "alloy-sol-macro" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a98ad1696a2e17f010ae8e43e9f2a1e930ed176a8e3ff77acfeff6dfb07b42c" +dependencies = [ + "const-hex", + "dunce", + "heck 0.4.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.68", + "syn-solidity 0.4.2", + "tiny-keccak", +] + [[package]] name = "alloy-sol-macro" version = "0.6.4" @@ -206,23 +243,35 @@ dependencies = [ "const-hex", "dunce", "heck 0.4.1", - "indexmap 2.2.5", + "indexmap 2.2.6", "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.53", - "syn-solidity", + "syn 2.0.68", + "syn-solidity 0.6.4", "tiny-keccak", ] +[[package]] +name = "alloy-sol-types" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98d7107bed88e8f09f0ddcc3335622d87bfb6821f3e0c7473329fb1cfad5e015" +dependencies = [ + "alloy-primitives 0.4.2", + "alloy-sol-macro 0.4.2", + "const-hex", + "serde", +] + [[package]] name = "alloy-sol-types" version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad09ec5853fa700d12d778ad224dcdec636af424d29fad84fb9a2f16a5b0ef09" dependencies = [ - "alloy-primitives", - "alloy-sol-macro", + "alloy-primitives 0.6.4", + "alloy-sol-macro 0.6.4", "const-hex", "serde", ] @@ -268,47 +317,48 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.13" +version = "0.6.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" +checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", + "is_terminal_polyfill", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" +checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" [[package]] name = "anstyle-parse" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.2" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -316,12 +366,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.81" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" -dependencies = [ - "backtrace", -] +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "approx" @@ -332,20 +379,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "aquamarine" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1da02abba9f9063d786eab1509833ebb2fac0f966862ca59439c76b9c566760" -dependencies = [ - "include_dir", - "itertools 0.10.5", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "aquamarine" version = "0.5.0" @@ -357,7 +390,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -715,9 +748,9 @@ checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" [[package]] name = "array-bytes" -version = "6.2.2" +version = "6.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f840fb7195bcfc5e17ea40c26e5ce6d5b9ce5d584466e17703209657e459ae0" +checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293" [[package]] name = "arrayref" @@ -767,14 +800,30 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", + "asn1-rs-derive 0.4.0", + "asn1-rs-impl 0.1.0", + "displaydoc", + "nom 7.1.3", + "num-traits", + "rusticata-macros", + "thiserror", + "time 0.3.36", +] + +[[package]] +name = "asn1-rs" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" +dependencies = [ + "asn1-rs-derive 0.5.0", + "asn1-rs-impl 0.2.0", "displaydoc", "nom 7.1.3", "num-traits", "rusticata-macros", "thiserror", - "time 0.3.34", + "time 0.3.36", ] [[package]] @@ -786,7 +835,19 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "synstructure", + "synstructure 0.12.6", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", + "synstructure 0.13.1", ] [[package]] @@ -800,6 +861,76 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "asn1-rs-impl" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "assert_matches" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" + +[[package]] +name = "asset-test-utils" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-pallet-parachain-system", + "cumulus-pallet-xcmp-queue", + "cumulus-primitives-core", + "frame-support", + "frame-system", + "pallet-assets", + "pallet-balances", + "pallet-collator-selection", + "pallet-session", + "pallet-timestamp", + "pallet-xcm", + "pallet-xcm-bridge-hub-router", + "parachains-common", + "parachains-runtimes-test-utils", + "parity-scale-codec", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "substrate-wasm-builder", +] + +[[package]] +name = "assets-common" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "impl-trait-for-tuples", + "log", + "pallet-asset-conversion", + "pallet-xcm", + "parachains-common", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "substrate-wasm-builder", +] + [[package]] name = "async-channel" version = "1.9.0" @@ -813,15 +944,14 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.2.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener 5.2.0", - "event-listener-strategy 0.5.0", + "event-listener-strategy", "futures-core", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] @@ -830,31 +960,30 @@ version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c2886ab563af5038f79ec016dd7b87947ed138b794e8dd64992962c9cca0411" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.4.0", "futures-io", ] [[package]] name = "async-executor" -version = "1.8.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" +checksum = "c8828ec6e544c02b0d6691d21ed9f9218d0384a82542855073c2a3f58304aaf0" dependencies = [ - "async-lock 3.3.0", "async-task", "concurrent-queue", - "fastrand 2.0.1", + "fastrand 2.1.0", "futures-lite 2.3.0", "slab", ] [[package]] name = "async-fs" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc19683171f287921f2405677dd2ed2549c3b3bda697a563ebc3a121ace2aba1" +checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.4.0", "blocking", "futures-lite 2.3.0", ] @@ -865,10 +994,10 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ - "async-channel 2.2.0", + "async-channel 2.3.1", "async-executor", - "async-io 2.3.2", - "async-lock 3.3.0", + "async-io 2.3.3", + "async-lock 3.4.0", "blocking", "futures-lite 2.3.0", "once_cell", @@ -913,18 +1042,18 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" +checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.4.0", "cfg-if", "concurrent-queue", "futures-io", "futures-lite 2.3.0", "parking", - "polling 3.5.0", - "rustix 0.38.32", + "polling 3.7.2", + "rustix 0.38.34", "slab", "tracing", "windows-sys 0.52.0", @@ -941,13 +1070,13 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", - "pin-project-lite 0.2.13", + "event-listener 5.3.1", + "event-listener-strategy", + "pin-project-lite 0.2.14", ] [[package]] @@ -956,45 +1085,47 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" dependencies = [ - "async-io 2.3.2", + "async-io 2.3.3", "blocking", "futures-lite 2.3.0", ] [[package]] name = "async-process" -version = "2.1.0" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "451e3cf68011bd56771c79db04a9e333095ab6349f7e47592b788e9b98720cc8" +checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a" dependencies = [ - "async-channel 2.2.0", - "async-io 2.3.2", - "async-lock 3.3.0", + "async-channel 2.3.1", + "async-io 2.3.3", + "async-lock 3.4.0", "async-signal", + "async-task", "blocking", "cfg-if", - "event-listener 5.2.0", + "event-listener 5.3.1", "futures-lite 2.3.0", - "rustix 0.38.32", + "rustix 0.38.34", + "tracing", "windows-sys 0.52.0", ] [[package]] name = "async-signal" -version = "0.2.5" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" +checksum = "794f185324c2f00e771cd9f1ae8b5ac68be2ca7abb129a87afd6e86d228bc54d" dependencies = [ - "async-io 2.3.2", - "async-lock 2.8.0", + "async-io 2.3.3", + "async-lock 3.4.0", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.32", + "rustix 0.38.34", "signal-hook-registry", "slab", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -1017,7 +1148,7 @@ dependencies = [ "log", "memchr", "once_cell", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "pin-utils", "slab", "wasm-bindgen-futures", @@ -1031,7 +1162,7 @@ checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" dependencies = [ "async-stream-impl", "futures-core", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] @@ -1042,14 +1173,14 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "async-task" -version = "4.7.0" +version = "4.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-tls" @@ -1072,7 +1203,7 @@ checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -1085,7 +1216,7 @@ dependencies = [ "futures-sink", "futures-util", "memchr", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] @@ -1111,14 +1242,13 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "attohttpc" -version = "0.16.3" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdb8867f378f33f78a811a8eb9bf108ad99430d7aad43315dd9319c827ef6247" +checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" dependencies = [ "http 0.2.12", "log", "url", - "wildmatch", ] [[package]] @@ -1129,14 +1259,14 @@ checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "autocfg" -version = "1.1.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "backoff" @@ -1144,23 +1274,23 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", "instant", "rand 0.8.5", ] [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" dependencies = [ - "addr2line 0.21.0", + "addr2line 0.22.0", "cc", "cfg-if", "libc", "miniz_oxide", - "object 0.32.2", + "object 0.36.0", "rustc-demangle", ] @@ -1187,23 +1317,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "bao-tree" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155e7e0c896695a9049badd7bf2b915d29230e24dc82a7c7ef065eded072404f" -dependencies = [ - "bytes", - "futures", - "iroh-blake3", - "iroh-io", - "positioned-io", - "range-collections", - "self_cell", - "smallvec", - "tokio", -] - [[package]] name = "base-x" version = "0.2.11" @@ -1242,9 +1355,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" -version = "0.22.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" @@ -1268,10 +1381,13 @@ dependencies = [ ] [[package]] -name = "binary-merge" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597bb81c80a54b6a4381b23faba8d7774b144c94cbd1d6fe3f1329bd776554ab" +name = "binary-merkle-tree" +version = "13.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "hash-db", + "log", +] [[package]] name = "bincode" @@ -1294,13 +1410,13 @@ dependencies = [ "lazy_static", "lazycell", "peeking_take_while", - "prettyplease 0.2.16", + "prettyplease 0.2.20", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -1361,9 +1477,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1373,6 +1489,7 @@ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" dependencies = [ "funty", "radium", + "serde", "tap", "wyz", ] @@ -1484,18 +1601,15 @@ dependencies = [ [[package]] name = "blocking" -version = "1.5.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" dependencies = [ - "async-channel 2.2.0", - "async-lock 3.3.0", + "async-channel 2.3.1", "async-task", - "fastrand 2.0.1", "futures-io", "futures-lite 2.3.0", "piper", - "tracing", ] [[package]] @@ -1529,79 +1643,487 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78a6932c88f1d2c29533a3b8a5f5a2f84cc19c3339b431677c3160c5c2e6ca85" [[package]] -name = "bs58" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" - -[[package]] -name = "bs58" -version = "0.5.1" +name = "bounded-vec" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +checksum = "68534a48cbf63a4b1323c433cf21238c9ec23711e0df13b08c33e5c2082663ce" dependencies = [ - "tinyvec", + "thiserror", ] [[package]] -name = "build-helper" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f" +name = "bp-asset-hub-rococo" +version = "0.4.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "semver 0.6.0", + "bp-xcm-bridge-hub-router", + "frame-support", + "parity-scale-codec", + "scale-info", ] [[package]] -name = "bumpalo" -version = "3.15.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" +name = "bp-asset-hub-westend" +version = "0.3.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-xcm-bridge-hub-router", + "frame-support", + "parity-scale-codec", + "scale-info", +] [[package]] -name = "byte-slice-cast" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" +name = "bp-bridge-hub-cumulus" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-messages", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "frame-system", + "polkadot-primitives", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "byte-tools" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" +name = "bp-bridge-hub-kusama" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-bridge-hub-cumulus", + "bp-messages", + "bp-runtime", + "frame-support", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "bytecount" -version = "0.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" +name = "bp-bridge-hub-polkadot" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-bridge-hub-cumulus", + "bp-messages", + "bp-runtime", + "frame-support", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "bytemuck" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" +name = "bp-bridge-hub-rococo" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-bridge-hub-cumulus", + "bp-messages", + "bp-runtime", + "frame-support", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" +name = "bp-bridge-hub-westend" +version = "0.3.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-bridge-hub-cumulus", + "bp-messages", + "bp-runtime", + "frame-support", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "bytes" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +name = "bp-header-chain" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "bp-runtime", + "finality-grandpa", + "frame-support", + "parity-scale-codec", + "scale-info", "serde", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "bzip2" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" +name = "bp-kusama" +version = "0.5.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-messages" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-runtime", + "frame-support", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-parachains" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-polkadot" +version = "0.5.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-polkadot-bulletin" +version = "0.4.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-messages", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-polkadot-core" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-messages", + "bp-runtime", + "frame-support", + "frame-system", + "parity-scale-codec", + "parity-util-mem", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-relayers" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-messages", + "bp-runtime", + "frame-support", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-rococo" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-runtime" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "hash-db", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "trie-db 0.29.1", +] + +[[package]] +name = "bp-test-utils" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-parachains", + "bp-polkadot-core", + "bp-runtime", + "ed25519-dalek 2.1.1", + "finality-grandpa", + "parity-scale-codec", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-westend" +version = "0.3.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-polkadot-core", + "bp-runtime", + "frame-support", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-xcm-bridge-hub" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bp-xcm-bridge-hub-router" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "bridge-hub-common" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "pallet-message-queue", + "parity-scale-codec", + "scale-info", + "snowbridge-core", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "bridge-hub-test-utils" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "asset-test-utils", + "bp-header-chain", + "bp-messages", + "bp-polkadot-core", + "bp-relayers", + "bp-runtime", + "bp-test-utils", + "bridge-runtime-common", + "cumulus-pallet-parachain-system", + "cumulus-pallet-xcmp-queue", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-balances", + "pallet-bridge-grandpa", + "pallet-bridge-messages", + "pallet-bridge-parachains", + "pallet-bridge-relayers", + "pallet-timestamp", + "pallet-utility", + "parachains-common", + "parachains-runtimes-test-utils", + "parity-scale-codec", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + +[[package]] +name = "bridge-runtime-common" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-header-chain", + "bp-messages", + "bp-parachains", + "bp-polkadot-core", + "bp-relayers", + "bp-runtime", + "bp-xcm-bridge-hub", + "bp-xcm-bridge-hub-router", + "frame-support", + "frame-system", + "hash-db", + "log", + "pallet-bridge-grandpa", + "pallet-bridge-messages", + "pallet-bridge-parachains", + "pallet-bridge-relayers", + "pallet-transaction-payment", + "pallet-utility", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "tuplex", +] + +[[package]] +name = "bs58" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "build-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f" +dependencies = [ + "semver 0.6.0", +] + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "byte-slice-cast" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" + +[[package]] +name = "byte-tools" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" + +[[package]] +name = "bytecount" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" + +[[package]] +name = "bytemuck" +version = "1.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +dependencies = [ + "serde", +] + +[[package]] +name = "bzip2" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" dependencies = [ "bzip2-sys", "libc", @@ -1630,18 +2152,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.6" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" +checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" dependencies = [ "serde", ] [[package]] name = "cargo-platform" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" +checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" dependencies = [ "serde", ] @@ -1654,7 +2176,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.22", + "semver 1.0.23", "serde", "serde_json", "thiserror", @@ -1662,14 +2184,21 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.90" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" +checksum = "ac367972e516d45567c7eafc73d24e1c193dcf200a8d94e9db7b3d38b349572d" dependencies = [ "jobserver", "libc", + "once_cell", ] +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + [[package]] name = "cexpr" version = "0.6.0" @@ -1681,9 +2210,9 @@ dependencies = [ [[package]] name = "cfg-expr" -version = "0.15.7" +version = "0.15.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" dependencies = [ "smallvec", ] @@ -1744,13 +2273,13 @@ dependencies = [ name = "chronicle" version = "0.5.0" dependencies = [ - "alloy-primitives", - "alloy-sol-types", + "alloy-primitives 0.6.4", + "alloy-sol-types 0.6.4", "anyhow", "async-trait", "bincode", "clap", - "env_logger", + "env_logger 0.11.3", "futures", "hex", "lazy_static", @@ -1776,9 +2305,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.35" +version = "0.4.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1786,7 +2315,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.4", + "windows-targets 0.52.5", ] [[package]] @@ -1803,7 +2332,20 @@ checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" dependencies = [ "core2", "multibase", - "multihash", + "multihash 0.17.0", + "serde", + "unsigned-varint", +] + +[[package]] +name = "cid" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd94671561e36e4e7de75f753f577edafb0e7c05d6e4547229fdf7938fbcd2c3" +dependencies = [ + "core2", + "multibase", + "multihash 0.18.1", "serde", "unsigned-varint", ] @@ -1830,9 +2372,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", @@ -1841,9 +2383,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.3" +version = "4.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "949626d00e063efc93b6dca932419ceb5432f99769911c0b995f7e884c778813" +checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" dependencies = [ "clap_builder", "clap_derive", @@ -1851,34 +2393,45 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.2" +version = "4.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim 0.11.0", + "strsim 0.11.1", "terminal_size", ] [[package]] name = "clap_derive" -version = "4.5.3" +version = "4.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90239a040c80f5e14809ca132ddc4176ab33d5e17e49691793296e3fcb34d72f" +checksum = "c780290ccf4fb26629baa7a1081e68ced113f1d3ec302fa5948f1c381ebf06c6" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "clap_lex" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" +checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" + +[[package]] +name = "coarsetime" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d" +dependencies = [ + "libc", + "wasix", + "wasm-bindgen", +] [[package]] name = "cobs" @@ -1898,18 +2451,28 @@ dependencies = [ [[package]] name = "colorchoice" -version = "1.0.0" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" + +[[package]] +name = "combine" +version = "4.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] [[package]] name = "comfy-table" -version = "7.1.0" +version = "7.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686" +checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7" dependencies = [ - "strum 0.25.0", - "strum_macros 0.25.3", + "strum 0.26.3", + "strum_macros 0.26.4", "unicode-width", ] @@ -1937,9 +2500,9 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "concurrent-queue" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ "crossbeam-utils", ] @@ -1976,9 +2539,9 @@ checksum = "68d13f542d70e5b339bf46f6f74704ac052cfd526c58cd87996bd1ef4615b9a0" [[package]] name = "const-hex" -version = "1.11.3" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ba00838774b4ab0233e355d26710fbfc8327a05c017f6dc4873f876d1f79f78" +checksum = "94fb8a24a26d37e1ffd45343323dc9fe6654ceea44c12f2fcb3d7ac29e610bc6" dependencies = [ "cfg-if", "cpufeatures", @@ -2008,16 +2571,16 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", "once_cell", "tiny-keccak", ] [[package]] name = "const_fn" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" +checksum = "373e9fafaa20882876db20562275ff58d50e0caa2590077fe7ce7bef90211d0d" [[package]] name = "const_format" @@ -2238,9 +2801,9 @@ dependencies = [ [[package]] name = "crc" -version = "3.0.1" +version = "3.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" dependencies = [ "crc-catalog", ] @@ -2253,9 +2816,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc32fast" -version = "1.4.0" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ "cfg-if", ] @@ -2296,9 +2859,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crunchy" @@ -2314,7 +2877,7 @@ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2346,7 +2909,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ "generic-array 0.14.7", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -2356,7 +2919,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6" dependencies = [ "generic-array 0.14.7", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -2366,7 +2929,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e" dependencies = [ "generic-array 0.14.7", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -2378,10 +2941,10 @@ dependencies = [ "aead 0.5.2", "chacha20", "crypto_secretbox", - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "salsa20", "serdect", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2397,7 +2960,7 @@ dependencies = [ "generic-array 0.14.7", "poly1305", "salsa20", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2420,15 +2983,308 @@ dependencies = [ ] [[package]] -name = "curve25519-dalek" -version = "2.1.3" +name = "cumulus-pallet-aura-ext" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-pallet-parachain-system", + "frame-support", + "frame-system", + "pallet-aura", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-aura", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-pallet-dmp-queue" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "cumulus-pallet-parachain-system" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bytes", + "cumulus-pallet-parachain-system-proc-macro", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-primitives-proof-size-hostfunction", + "environmental", + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-message-queue", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-runtime-common", + "polkadot-runtime-parachains", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-version", + "staging-xcm", + "staging-xcm-builder", + "trie-db 0.29.1", +] + +[[package]] +name = "cumulus-pallet-parachain-system-proc-macro" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "cumulus-pallet-session-benchmarking" +version = "9.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-session", + "parity-scale-codec", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-pallet-solo-to-para" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-pallet-parachain-system", + "frame-support", + "frame-system", + "pallet-sudo", + "parity-scale-codec", + "polkadot-primitives", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-pallet-xcm" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "cumulus-pallet-xcmp-queue" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bounded-collections 0.2.0", + "bp-xcm-bridge-hub-router", + "cumulus-primitives-core", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-message-queue", + "parity-scale-codec", + "polkadot-runtime-common", + "polkadot-runtime-parachains", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + +[[package]] +name = "cumulus-ping" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-pallet-xcm", + "cumulus-primitives-core", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "cumulus-primitives-aura" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives", + "polkadot-primitives", + "sp-api", + "sp-consensus-aura", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-primitives-core" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", + "scale-info", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "cumulus-primitives-parachain-inherent" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "cumulus-primitives-core", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-primitives-proof-size-hostfunction" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-primitives-storage-weight-reclaim" +version = "1.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "cumulus-primitives-proof-size-hostfunction", + "docify", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "cumulus-primitives-timestamp" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "futures", + "parity-scale-codec", + "sp-inherents", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-timestamp", +] + +[[package]] +name = "cumulus-primitives-utility" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "log", + "pallet-asset-conversion", + "parity-scale-codec", + "polkadot-runtime-common", + "polkadot-runtime-parachains", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + +[[package]] +name = "cumulus-test-relay-sproof-builder" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "parity-scale-codec", + "polkadot-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "curve25519-dalek" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216" dependencies = [ "byteorder", "digest 0.8.1", "rand_core 0.5.1", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2441,24 +3297,23 @@ dependencies = [ "byteorder", "digest 0.9.0", "rand_core 0.5.1", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] [[package]] name = "curve25519-dalek" -version = "4.1.2" +version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ "cfg-if", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", "fiat-crypto", - "platforms", "rustc_version 0.4.0", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2470,7 +3325,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -2488,9 +3343,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.119" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "635179be18797d7e10edb9cd06c859580237750c7351f39ed9b298bfc17544ad" +checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" dependencies = [ "cc", "cxxbridge-flags", @@ -2500,9 +3355,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.119" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9324397d262f63ef77eb795d900c0d682a34a43ac0932bec049ed73055d52f63" +checksum = "d8b2766fbd92be34e9ed143898fce6c572dc009de39506ed6903e5a05b68914e" dependencies = [ "cc", "codespan-reporting", @@ -2510,34 +3365,24 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "cxxbridge-flags" -version = "1.0.119" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a87ff7342ffaa54b7c61618e0ce2bbcf827eba6d55b923b83d82551acbbecfe5" +checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" [[package]] name = "cxxbridge-macro" -version = "1.0.119" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70b5b86cf65fa0626d85720619d80b288013477a91a0389fa8bc716bf4903ad1" +checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", -] - -[[package]] -name = "darling" -version = "0.13.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" -dependencies = [ - "darling_core 0.13.4", - "darling_macro 0.13.4", + "syn 2.0.68", ] [[package]] @@ -2552,26 +3397,12 @@ dependencies = [ [[package]] name = "darling" -version = "0.20.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" -dependencies = [ - "darling_core 0.20.8", - "darling_macro 0.20.8", -] - -[[package]] -name = "darling_core" -version = "0.13.4" +version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" +checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "darling_core 0.20.9", + "darling_macro 0.20.9", ] [[package]] @@ -2590,27 +3421,16 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.20.8" +version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" +checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", - "strsim 0.10.0", - "syn 2.0.53", -] - -[[package]] -name = "darling_macro" -version = "0.13.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" -dependencies = [ - "darling_core 0.13.4", - "quote", - "syn 1.0.109", + "strsim 0.11.1", + "syn 2.0.68", ] [[package]] @@ -2626,13 +3446,13 @@ dependencies = [ [[package]] name = "darling_macro" -version = "0.20.8" +version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" +checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" dependencies = [ - "darling_core 0.20.8", + "darling_core 0.20.9", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -2645,20 +3465,20 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.9", + "parking_lot_core 0.9.10", ] [[package]] name = "data-encoding" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "data-encoding-macro" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20c01c06f5f429efdf2bae21eb67c28b3df3cf85b7dd2d8ef09c0838dac5d33e" +checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -2666,9 +3486,9 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0047d07f2c89b17dd631c80450d69841a6b5d7fb17278cbc43d7e4cfcf2576f3" +checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" dependencies = [ "data-encoding", "syn 1.0.109", @@ -2694,28 +3514,11 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f400d0750c0c069e8493f2256cb4da6f604b6d2eeb69a0ca8863acde352f8400" -[[package]] -name = "default-net" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ba429d84a27fa854c66fd2e29eb1cdf6d38bbfd4495bd9f522f12a7f21e05bf" -dependencies = [ - "dlopen2", - "libc", - "memalloc", - "netlink-packet-core 0.7.0", - "netlink-packet-route 0.17.1", - "netlink-sys", - "once_cell", - "system-configuration", - "windows 0.48.0", -] - [[package]] name = "der" -version = "0.7.8" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" dependencies = [ "const-oid", "der_derive", @@ -2729,7 +3532,21 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", + "displaydoc", + "nom 7.1.3", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "der-parser" +version = "9.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" +dependencies = [ + "asn1-rs 0.6.1", "displaydoc", "nom 7.1.3", "num-bigint", @@ -2745,7 +3562,7 @@ checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -2755,6 +3572,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" dependencies = [ "powerfmt", + "serde", ] [[package]] @@ -2790,6 +3608,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "derive-syn-parse" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "derive-where" version = "1.2.7" @@ -2798,20 +3627,20 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "derive_more" -version = "0.99.17" +version = "0.99.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version 0.4.0", - "syn 1.0.109", + "syn 2.0.68", ] [[package]] @@ -2831,7 +3660,7 @@ checksum = "2bba3e9872d7c58ce7ef0fcf1844fcc3e23ef2a58377b50df35dd98e42a5726e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", "unicode-xid", ] @@ -2868,7 +3697,7 @@ dependencies = [ "block-buffer 0.10.4", "const-oid", "crypto-common", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -2940,13 +3769,13 @@ checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" [[package]] name = "displaydoc" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -2978,28 +3807,28 @@ dependencies = [ [[package]] name = "docify" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cc4fd38aaa9fb98ac70794c82a00360d1e165a87fbf96a8a91f9dfc602aaee2" +checksum = "43a2f138ad521dc4a2ced1a4576148a6a610b4c5923933b062a263130a6802ce" dependencies = [ "docify_macros", ] [[package]] name = "docify_macros" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63fa215f3a0d40fb2a221b3aa90d8e1fbb8379785a990cb60d62ac71ebdc6460" +checksum = "1a081e51fb188742f5a7a1164ad752121abcb22874b21e2c3b0dd040c515fdad" dependencies = [ "common-path", - "derive-syn-parse", + "derive-syn-parse 0.2.0", "once_cell", "proc-macro2", "quote", "regex", - "syn 2.0.53", + "syn 2.0.68", "termcolor", - "toml 0.8.12", + "toml 0.8.14", "walkdir", ] @@ -3020,9 +3849,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" [[package]] name = "downcast-rs" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" @@ -3130,12 +3959,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" dependencies = [ - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "ed25519 2.2.3", "rand_core 0.6.4", "serde", "sha2 0.10.8", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -3159,7 +3988,7 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" dependencies = [ - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "ed25519 2.2.3", "hashbrown 0.14.5", "hex", @@ -3170,9 +3999,9 @@ dependencies = [ [[package]] name = "either" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "elliptic-curve" @@ -3191,7 +4020,7 @@ dependencies = [ "rand_core 0.6.4", "sec1", "serdect", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -3203,9 +4032,9 @@ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" [[package]] name = "ena" -version = "0.14.2" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" +checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" dependencies = [ "log", ] @@ -3218,19 +4047,13 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" dependencies = [ "cfg-if", ] -[[package]] -name = "endian-type" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" - [[package]] name = "enum-as-inner" version = "0.5.1" @@ -3252,34 +4075,55 @@ dependencies = [ "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "enumflags2" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" +checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" dependencies = [ "enumflags2_derive", ] [[package]] name = "enumflags2_derive" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" +checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] -name = "env_logger" -version = "0.10.2" +name = "enumn" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "env_filter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "env_logger" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" dependencies = [ "humantime", "is-terminal", @@ -3288,6 +4132,19 @@ dependencies = [ "termcolor", ] +[[package]] +name = "env_logger" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" +dependencies = [ + "anstream", + "anstyle", + "env_filter", + "humantime", + "log", +] + [[package]] name = "environmental" version = "1.1.4" @@ -3311,11 +4168,12 @@ dependencies = [ [[package]] name = "erased-serde" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3" +checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d" dependencies = [ "serde", + "typeid", ] [[package]] @@ -3326,9 +4184,9 @@ checksum = "76a5aa24577083f8190ad401e376b55887c7cd9083ae95d83ceec5d28ea78125" [[package]] name = "errno" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" dependencies = [ "libc", "windows-sys 0.52.0", @@ -3351,6 +4209,16 @@ dependencies = [ "uint", ] +[[package]] +name = "ethabi-decode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09d398648d65820a727d6a81e58b962f874473396a047e4c30bafe3240953417" +dependencies = [ + "ethereum-types", + "tiny-keccak", +] + [[package]] name = "ethbloom" version = "0.13.0" @@ -3402,7 +4270,7 @@ dependencies = [ "rlp", "serde", "serde_json", - "strum 0.26.2", + "strum 0.26.3", "tempfile", "thiserror", "tiny-keccak", @@ -3428,7 +4296,7 @@ dependencies = [ "path-slash", "rayon", "regex", - "semver 1.0.22", + "semver 1.0.23", "serde", "serde_json", "solang-parser", @@ -3455,38 +4323,28 @@ checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" dependencies = [ "concurrent-queue", "parking", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] name = "event-listener" -version = "5.2.0" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", - "pin-project-lite 0.2.13", -] - -[[package]] -name = "event-listener-strategy" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" -dependencies = [ - "event-listener 4.0.3", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] name = "event-listener-strategy" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.2.0", - "pin-project-lite 0.2.13", + "event-listener 5.3.1", + "pin-project-lite 0.2.14", ] [[package]] @@ -3500,16 +4358,17 @@ dependencies = [ [[package]] name = "expander" -version = "2.1.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00e83c02035136f1592a47964ea60c05a50e4ed8b5892cfac197063850898d4d" +checksum = "e2c470c71d91ecbd179935b24170459e926382eaaa86b590b78814e180d8a8e2" dependencies = [ "blake2 0.10.6", + "file-guard", "fs-err", - "prettier-please", + "prettyplease 0.2.20", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -3541,9 +4400,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "fastrlp" @@ -3556,6 +4415,30 @@ dependencies = [ "bytes", ] +[[package]] +name = "fatality" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec6f82451ff7f0568c6181287189126d492b5654e30a788add08027b6363d019" +dependencies = [ + "fatality-proc-macro", + "thiserror", +] + +[[package]] +name = "fatality-proc-macro" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" +dependencies = [ + "expander", + "indexmap 2.2.6", + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "fdlimit" version = "0.3.0" @@ -3589,7 +4472,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" dependencies = [ "rand_core 0.6.4", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -3607,9 +4490,19 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.7" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + +[[package]] +name = "file-guard" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" +checksum = "21ef72acf95ec3d7dbf61275be556299490a245f017cf084bd23b4f68cf9407c" +dependencies = [ + "libc", + "winapi", +] [[package]] name = "file-per-thread-logger" @@ -3617,7 +4510,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" dependencies = [ - "env_logger", + "env_logger 0.10.2", "log", ] @@ -3645,7 +4538,7 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "scale-info", ] @@ -3679,9 +4572,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.28" +version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" dependencies = [ "crc32fast", "libz-sys", @@ -3724,6 +4617,21 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + [[package]] name = "fork-tree" version = "12.0.0" @@ -3736,7 +4644,7 @@ dependencies = [ [[package]] name = "fork-tree" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", ] @@ -3750,11 +4658,21 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "forwarded-header-value" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" +dependencies = [ + "nonempty", + "thiserror", +] + [[package]] name = "fraction" -version = "0.15.1" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b486ab61634f05b11b591c38c71fb25139cb55e22be4fb6ecf649cc3736c074a" +checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7" dependencies = [ "lazy_static", "num", @@ -3769,7 +4687,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-support", "frame-support-procedural", @@ -3781,23 +4699,23 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" version = "32.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "Inflector", - "array-bytes 6.2.2", + "array-bytes 6.2.3", "chrono", "clap", "comfy-table", @@ -3806,7 +4724,7 @@ dependencies = [ "frame-system", "gethostname", "handlebars", - "itertools 0.10.5", + "itertools 0.11.0", "lazy_static", "linked-hash-map", "log", @@ -3814,6 +4732,7 @@ dependencies = [ "rand 0.8.5", "rand_pcg", "sc-block-builder", + "sc-chain-spec", "sc-cli", "sc-client-api", "sc-client-db", @@ -3824,66 +4743,82 @@ dependencies = [ "serde_json", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-genesis-builder", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "thousands", ] +[[package]] +name = "frame-benchmarking-pallet-pov" +version = "18.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + [[package]] name = "frame-election-provider-solution-type" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "frame-election-provider-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-election-provider-solution-type", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-npos-elections", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "aquamarine 0.3.3", + "aquamarine", "frame-support", "frame-system", "frame-try-runtime", "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -3910,34 +4845,27 @@ dependencies = [ ] [[package]] -name = "frame-remote-externalities" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "frame-metadata-hash-extension" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "futures", - "indicatif", - "jsonrpsee 0.22.5", + "array-bytes 6.2.3", + "docify", + "frame-support", + "frame-system", "log", "parity-scale-codec", - "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "spinners", - "substrate-rpc-client", - "tokio", - "tokio-retry", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "aquamarine 0.5.0", - "array-bytes 6.2.2", + "aquamarine", + "array-bytes 6.2.3", "bitflags 1.3.2", "docify", "environmental", @@ -3954,20 +4882,20 @@ dependencies = [ "serde_json", "smallvec", "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-genesis-builder", "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-metadata-ir", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-staking", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "static_assertions", "tt-call", ] @@ -3975,48 +4903,48 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "Inflector", "cfg-expr", - "derive-syn-parse", + "derive-syn-parse 0.2.0", "expander", "frame-support-procedural-tools", - "itertools 0.10.5", + "itertools 0.11.0", "macro_magic", "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.0.0", - "syn 2.0.53", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "syn 2.0.68", ] [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "cfg-if", "docify", @@ -4025,33 +4953,33 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "sp-api", @@ -4060,13 +4988,13 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-support", "parity-scale-codec", "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -4147,6 +5075,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "fs4" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29f9df8a11882c4e3335eb2d18a0137c505d9ca927470b0cac9c6f0ae07d28f7" +dependencies = [ + "rustix 0.38.34", + "windows-sys 0.48.0", +] + [[package]] name = "funty" version = "2.0.0" @@ -4168,6 +5106,17 @@ dependencies = [ "futures-util", ] +[[package]] +name = "futures-buffered" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02dcae03ee5afa5ea17b1aebc793806b8ddfc6dc500e0b8e8e1eb30b9dad22c0" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite 0.2.14", +] + [[package]] name = "futures-channel" version = "0.3.30" @@ -4178,6 +5127,21 @@ dependencies = [ "futures-sink", ] +[[package]] +name = "futures-concurrency" +version = "7.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b14ac911e85d57c5ea6eef76d7b4d4a3177ecd15f4bea2e61927e9e3823e19f" +dependencies = [ + "bitvec", + "futures-buffered", + "futures-core", + "futures-lite 1.13.0", + "pin-project", + "slab", + "smallvec", +] + [[package]] name = "futures-core" version = "0.3.30" @@ -4213,7 +5177,7 @@ dependencies = [ "futures-io", "memchr", "parking", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "waker-fn", ] @@ -4223,11 +5187,11 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.0.1", + "fastrand 2.1.0", "futures-core", "futures-io", "parking", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", ] [[package]] @@ -4238,7 +5202,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -4283,7 +5247,7 @@ dependencies = [ "futures-sink", "futures-task", "memchr", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "pin-utils", "slab", ] @@ -4300,7 +5264,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "chrono", "frame-election-provider-support", @@ -4363,9 +5327,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "js-sys", @@ -4425,6 +5389,12 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" + [[package]] name = "glob" version = "0.3.1" @@ -4455,7 +5425,7 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "portable-atomic", "quanta", "rand 0.8.5", @@ -4471,14 +5441,14 @@ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ "ff", "rand_core 0.6.4", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] name = "h2" -version = "0.3.25" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" dependencies = [ "bytes", "fnv", @@ -4486,7 +5456,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.5", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4601,6 +5571,12 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" + [[package]] name = "hex" version = "0.4.3" @@ -4612,9 +5588,9 @@ dependencies = [ [[package]] name = "hex-conservative" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ed443af458ccb6d81c1e7e661545f94d3176752fb1df2f543b902a1e0f51e2" +checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" [[package]] name = "hex-literal" @@ -4622,6 +5598,51 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +[[package]] +name = "hickory-proto" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner 0.6.0", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.4.0", + "ipnet", + "once_cell", + "rand 0.8.5", + "thiserror", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot 0.12.3", + "rand 0.8.5", + "resolv-conf", + "smallvec", + "thiserror", + "tokio", + "tracing", +] + [[package]] name = "hkdf" version = "0.10.0" @@ -4763,7 +5784,30 @@ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", "http 0.2.12", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", +] + +[[package]] +name = "http-body" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +dependencies = [ + "bytes", + "http 1.1.0", +] + +[[package]] +name = "http-body-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +dependencies = [ + "bytes", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "pin-project-lite 0.2.14", ] [[package]] @@ -4804,7 +5848,7 @@ dependencies = [ "cookie", "futures-lite 1.13.0", "infer", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "rand 0.7.3", "serde", "serde_json", @@ -4815,9 +5859,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" [[package]] name = "httpdate" @@ -4833,9 +5877,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.28" +version = "0.14.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" dependencies = [ "bytes", "futures-channel", @@ -4843,18 +5887,38 @@ dependencies = [ "futures-util", "h2", "http 0.2.12", - "http-body", + "http-body 0.4.6", "httparse", "httpdate", "itoa", - "pin-project-lite 0.2.13", - "socket2 0.4.10", + "pin-project-lite 0.2.14", + "socket2 0.5.7", "tokio", "tower-service", "tracing", "want", ] +[[package]] +name = "hyper" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "httparse", + "httpdate", + "itoa", + "pin-project-lite 0.2.14", + "smallvec", + "tokio", + "want", +] + [[package]] name = "hyper-rustls" version = "0.24.2" @@ -4863,30 +5927,68 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper", + "hyper 0.14.29", "log", - "rustls 0.21.10", + "rustls 0.21.12", "rustls-native-certs 0.6.3", "tokio", "tokio-rustls 0.24.1", ] [[package]] -name = "iana-time-zone" -version = "0.1.60" +name = "hyper-rustls" +version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "windows-core 0.51.1", -] - -[[package]] -name = "iana-time-zone-haiku" + "futures-util", + "http 1.1.0", + "hyper 1.3.1", + "hyper-util", + "rustls 0.23.10", + "rustls-pki-types", + "tokio", + "tokio-rustls 0.26.0", + "tower-service", + "webpki-roots 0.26.3", +] + +[[package]] +name = "hyper-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "hyper 1.3.1", + "pin-project-lite 0.2.14", + "socket2 0.5.7", + "tokio", + "tower", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core 0.52.0", +] + +[[package]] +name = "iana-time-zone-haiku" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" @@ -4947,7 +6049,7 @@ version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e" dependencies = [ - "async-io 2.3.2", + "async-io 2.3.3", "core-foundation", "fnv", "futures", @@ -4955,22 +6057,23 @@ dependencies = [ "ipnet", "log", "rtnetlink 0.10.1", - "system-configuration", + "system-configuration 0.5.1", "tokio", "windows 0.51.1", ] [[package]] -name = "igd" -version = "0.12.1" +name = "igd-next" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556b5a75cd4adb7c4ea21c64af1c48cefb2ce7d43dc4352c720a1fe47c21f355" +checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4" dependencies = [ + "async-trait", "attohttpc", "bytes", "futures", "http 0.2.12", - "hyper", + "hyper 0.14.29", "log", "rand 0.8.5", "tokio", @@ -5029,18 +6132,18 @@ dependencies = [ [[package]] name = "include_dir" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" +checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" dependencies = [ "include_dir_macros", ] [[package]] name = "include_dir_macros" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" +checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" dependencies = [ "proc-macro2", "quote", @@ -5059,9 +6162,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.5" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", "hashbrown 0.14.5", @@ -5073,19 +6176,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" -[[package]] -name = "indicatif" -version = "0.17.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" -dependencies = [ - "console", - "instant", - "number_prefix", - "portable-atomic", - "unicode-width", -] - [[package]] name = "infer" version = "0.2.3" @@ -5101,15 +6191,6 @@ dependencies = [ "generic-array 0.14.7", ] -[[package]] -name = "inplace-vec-builder" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf64c2edc8226891a71f127587a2861b132d2b942310843814d5001d99a1d307" -dependencies = [ - "smallvec", -] - [[package]] name = "instant" version = "0.1.13" @@ -5119,6 +6200,12 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "integer-encoding" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" + [[package]] name = "integer-sqrt" version = "0.1.5" @@ -5134,7 +6221,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi", + "hermit-abi 0.3.9", "libc", "windows-sys 0.48.0", ] @@ -5151,10 +6238,10 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.6", + "socket2 0.5.7", "widestring", "windows-sys 0.48.0", - "winreg", + "winreg 0.50.0", ] [[package]] @@ -5165,26 +6252,36 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "iroh-base" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e6c2c1f49c416d9a7370de52ea73ddf64edd9c19015ef2afe69765698a8600" +version = "0.18.0" +source = "git+https://github.com/dvc94ch/iroh#1e83a837b3048932cc0ce31bde4a97a4a33b83cb" dependencies = [ + "aead 0.5.2", "anyhow", - "bao-tree", + "crypto_box", "data-encoding", + "derive_more 1.0.0-beta.6", + "ed25519-dalek 2.1.1", + "getrandom 0.2.15", "hex", - "multibase", + "iroh-blake3", + "once_cell", "postcard", + "rand 0.8.5", + "rand_core 0.6.4", "serde", "serde-error", + "ssh-key", "thiserror", + "ttl_cache", + "url", + "zeroize", ] [[package]] name = "iroh-blake3" -version = "1.4.4" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eb52cd11b3de4407f29579ebcd10fd746b0bd8ab758a2afac69baf88e96bede" +checksum = "efbba31f40a650f58fa28dd585a8ca76d8ae3ba63aacab4c8269004a0c803930" dependencies = [ "arrayref", "arrayvec 0.7.4", @@ -5193,103 +6290,147 @@ dependencies = [ "constant_time_eq 0.3.0", ] -[[package]] -name = "iroh-io" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19ace4f69567bfeb726672bab901d3e81be0c01119d860b2a10b7efb1553b880" -dependencies = [ - "bytes", - "futures", - "pin-project", - "smallvec", - "tokio", -] - [[package]] name = "iroh-metrics" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50e0ba8090deb98386000a5c3e93d4912e260edf26a30d0ef64831752a69709c" +version = "0.18.0" +source = "git+https://github.com/dvc94ch/iroh#1e83a837b3048932cc0ce31bde4a97a4a33b83cb" dependencies = [ + "anyhow", "erased_set", - "hyper", + "http-body-util", + "hyper 1.3.1", + "hyper-util", "once_cell", "prometheus-client 0.22.2", + "reqwest 0.12.5", + "serde", "struct_iterable", + "time 0.3.36", + "tokio", "tracing", ] [[package]] name = "iroh-net" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a50d291a5f5df5b7ebcdebcb183cde2f56f9d28892218493a321dcc7f30f3b" +version = "0.18.0" +source = "git+https://github.com/dvc94ch/iroh#1e83a837b3048932cc0ce31bde4a97a4a33b83cb" dependencies = [ "aead 0.5.2", "anyhow", "backoff", + "base64 0.22.1", "bytes", - "crypto_box", - "curve25519-dalek 4.1.2", - "data-encoding", - "default-net", "der", "derive_more 1.0.0-beta.6", "duct", - "ed25519-dalek 2.1.1", "flume", - "futures", + "futures-buffered", + "futures-concurrency", + "futures-lite 2.3.0", + "futures-sink", + "futures-util", "governor", "hex", + "hickory-proto", + "hickory-resolver", "hostname", - "http 0.2.12", - "hyper", - "igd", + "http 1.1.0", + "http-body-util", + "hyper 1.3.1", + "hyper-util", + "igd-next", "iroh-base", "iroh-metrics", + "iroh-quinn", + "iroh-quinn-proto", + "iroh-quinn-udp", "libc", + "netdev", "netlink-packet-core 0.7.0", "netlink-packet-route 0.17.1", "netlink-sys", "num_enum", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", + "pin-project", + "pkarr", "postcard", - "quinn", - "quinn-proto 0.10.6", - "quinn-udp", "rand 0.8.5", "rand_core 0.6.4", - "rcgen 0.11.3", - "reqwest", + "rcgen 0.12.1", + "reqwest 0.12.5", "ring 0.17.8", "rtnetlink 0.13.1", - "rustls 0.21.10", + "rustls 0.21.12", "rustls-webpki 0.101.7", "serde", - "serde_bytes", - "serdect", "smallvec", - "socket2 0.5.6", - "ssh-key", + "socket2 0.5.7", + "strum 0.26.3", "stun-rs", "surge-ping", "thiserror", - "time 0.3.34", + "time 0.3.36", "tokio", "tokio-rustls 0.24.1", "tokio-rustls-acme", "tokio-util", "tracing", - "trust-dns-resolver 0.23.2", - "ttl_cache", "url", + "watchable", "webpki-roots 0.25.4", "windows 0.51.1", "wmi", "x509-parser 0.15.1", - "zeroize", + "z32", +] + +[[package]] +name = "iroh-quinn" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "906875956feb75d3d41d708ddaffeb11fdb10cd05f23efbcb17600037e411779" +dependencies = [ + "bytes", + "iroh-quinn-proto", + "iroh-quinn-udp", + "pin-project-lite 0.2.14", + "rustc-hash", + "rustls 0.21.12", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "iroh-quinn-proto" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6bf92478805e67f2320459285496e1137edf5171411001a0d4d85f9bbafb792" +dependencies = [ + "bytes", + "rand 0.8.5", + "ring 0.17.8", + "rustc-hash", + "rustls 0.21.12", + "rustls-native-certs 0.6.3", + "slab", + "thiserror", + "tinyvec", + "tracing", +] + +[[package]] +name = "iroh-quinn-udp" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc7915b3a31f08ee0bc02f73f4d61a5d5be146a1081ef7f70622a11627fd314" +dependencies = [ + "bytes", + "libc", + "socket2 0.5.7", + "tracing", + "windows-sys 0.48.0", ] [[package]] @@ -5298,11 +6439,26 @@ version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" dependencies = [ - "hermit-abi", + "hermit-abi 0.3.9", "libc", "windows-sys 0.52.0", ] +[[package]] +name = "is_executable" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8" +dependencies = [ + "winapi", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" + [[package]] name = "itertools" version = "0.10.5" @@ -5332,15 +6488,35 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.10" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "jni" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" +dependencies = [ + "cesu8", + "combine", + "jni-sys", + "log", + "thiserror", + "walkdir", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.28" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" +checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" dependencies = [ "libc", ] @@ -5378,11 +6554,22 @@ dependencies = [ "jsonrpsee-proc-macros", "jsonrpsee-server", "jsonrpsee-types 0.22.5", - "jsonrpsee-ws-client", + "jsonrpsee-ws-client 0.22.5", "tokio", "tracing", ] +[[package]] +name = "jsonrpsee" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b089779ad7f80768693755a031cc14a7766aba707cbe886674e3f79e9b7e47" +dependencies = [ + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", + "jsonrpsee-ws-client 0.23.2", +] + [[package]] name = "jsonrpsee-client-transport" version = "0.21.0" @@ -5395,7 +6582,7 @@ dependencies = [ "pin-project", "rustls-native-certs 0.7.0", "rustls-pki-types", - "soketto", + "soketto 0.7.1", "thiserror", "tokio", "tokio-rustls 0.25.0", @@ -5416,14 +6603,37 @@ dependencies = [ "pin-project", "rustls-native-certs 0.7.0", "rustls-pki-types", - "soketto", + "soketto 0.7.1", "thiserror", "tokio", "tokio-rustls 0.25.0", "tokio-util", "tracing", "url", - "webpki-roots 0.26.1", + "webpki-roots 0.26.3", +] + +[[package]] +name = "jsonrpsee-client-transport" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08163edd8bcc466c33d79e10f695cdc98c00d1e6ddfb95cec41b6b0279dd5432" +dependencies = [ + "base64 0.22.1", + "futures-util", + "http 1.1.0", + "jsonrpsee-core 0.23.2", + "pin-project", + "rustls 0.23.10", + "rustls-pki-types", + "rustls-platform-verifier", + "soketto 0.8.0", + "thiserror", + "tokio", + "tokio-rustls 0.26.0", + "tokio-util", + "tracing", + "url", ] [[package]] @@ -5433,12 +6643,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "776d009e2f591b78c038e0d053a796f94575d66ca4e77dd84bfc5e81419e436c" dependencies = [ "anyhow", - "async-lock 3.3.0", + "async-lock 3.4.0", "async-trait", "beef", "futures-timer", "futures-util", - "hyper", + "hyper 0.14.29", "jsonrpsee-types 0.21.0", "pin-project", "rustc-hash", @@ -5461,9 +6671,9 @@ dependencies = [ "beef", "futures-timer", "futures-util", - "hyper", + "hyper 0.14.29", "jsonrpsee-types 0.22.5", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "rand 0.8.5", "rustc-hash", @@ -5475,6 +6685,28 @@ dependencies = [ "tracing", ] +[[package]] +name = "jsonrpsee-core" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79712302e737d23ca0daa178e752c9334846b08321d439fd89af9a384f8c830b" +dependencies = [ + "anyhow", + "async-trait", + "beef", + "futures-timer", + "futures-util", + "jsonrpsee-types 0.23.2", + "pin-project", + "rustc-hash", + "serde", + "serde_json", + "thiserror", + "tokio", + "tokio-stream", + "tracing", +] + [[package]] name = "jsonrpsee-http-client" version = "0.21.0" @@ -5482,8 +6714,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78b7de9f3219d95985eb77fd03194d7c1b56c19bce1abfcc9d07462574b15572" dependencies = [ "async-trait", - "hyper", - "hyper-rustls", + "hyper 0.14.29", + "hyper-rustls 0.24.2", "jsonrpsee-core 0.21.0", "jsonrpsee-types 0.21.0", "serde", @@ -5502,8 +6734,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" dependencies = [ "async-trait", - "hyper", - "hyper-rustls", + "hyper 0.14.29", + "hyper-rustls 0.24.2", "jsonrpsee-core 0.22.5", "jsonrpsee-types 0.22.5", "serde", @@ -5525,7 +6757,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -5536,14 +6768,14 @@ checksum = "12d8b6a9674422a8572e0b0abb12feeb3f2aeda86528c80d0350c2bd0923ab41" dependencies = [ "futures-util", "http 0.2.12", - "hyper", + "hyper 0.14.29", "jsonrpsee-core 0.22.5", "jsonrpsee-types 0.22.5", "pin-project", "route-recognizer", "serde", "serde_json", - "soketto", + "soketto 0.7.1", "thiserror", "tokio", "tokio-stream", @@ -5578,6 +6810,19 @@ dependencies = [ "thiserror", ] +[[package]] +name = "jsonrpsee-types" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c465fbe385238e861fdc4d1c85e04ada6c1fd246161d26385c1b311724d2af" +dependencies = [ + "beef", + "http 1.1.0", + "serde", + "serde_json", + "thiserror", +] + [[package]] name = "jsonrpsee-ws-client" version = "0.22.5" @@ -5591,6 +6836,19 @@ dependencies = [ "url", ] +[[package]] +name = "jsonrpsee-ws-client" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c28759775f5cb2f1ea9667672d3fe2b0e701d1f4b7b67954e60afe7fd058b5e" +dependencies = [ + "http 1.1.0", + "jsonrpsee-client-transport 0.23.2", + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", + "url", +] + [[package]] name = "k256" version = "0.13.3" @@ -5617,9 +6875,9 @@ dependencies = [ [[package]] name = "keccak-asm" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb8515fff80ed850aea4a1595f2e519c003e2a00a82fe168ebf5269196caf444" +checksum = "47a3633291834c4fbebf8673acbc1b04ec9d151418ff9b8e26dcd79129928758" dependencies = [ "digest 0.10.7", "sha3-asm", @@ -5656,7 +6914,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2" dependencies = [ "kvdb", - "parking_lot 0.12.1", + "parking_lot 0.12.3", ] [[package]] @@ -5667,7 +6925,7 @@ checksum = "b644c70b92285f66bfc2032922a79000ea30af7bc2ab31902992a5dcb9b434f6" dependencies = [ "kvdb", "num_cpus", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "regex", "rocksdb", "smallvec", @@ -5686,7 +6944,7 @@ dependencies = [ "lalrpop-util", "petgraph", "regex", - "regex-syntax 0.8.2", + "regex-syntax 0.8.4", "string_cache", "term", "tiny-keccak", @@ -5700,16 +6958,16 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" dependencies = [ - "regex-automata 0.4.6", + "regex-automata 0.4.7", ] [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.5.2", + "spin 0.9.8", ] [[package]] @@ -5733,18 +6991,18 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.153" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libloading" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" +checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" dependencies = [ "cfg-if", - "windows-targets 0.52.4", + "windows-targets 0.52.5", ] [[package]] @@ -5762,7 +7020,7 @@ dependencies = [ "bytes", "futures", "futures-timer", - "getrandom 0.2.12", + "getrandom 0.2.15", "instant", "libp2p-allow-block-list", "libp2p-connection-limits", @@ -5824,10 +7082,10 @@ dependencies = [ "libp2p-identity", "log", "multiaddr", - "multihash", + "multihash 0.17.0", "multistream-select", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "quick-protobuf", "rand 0.8.5", @@ -5847,7 +7105,7 @@ dependencies = [ "futures", "libp2p-core", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "smallvec", "trust-dns-resolver 0.22.0", ] @@ -5884,7 +7142,7 @@ dependencies = [ "ed25519-dalek 2.1.1", "log", "multiaddr", - "multihash", + "multihash 0.17.0", "quick-protobuf", "rand 0.8.5", "sha2 0.10.8", @@ -6009,7 +7267,7 @@ dependencies = [ "libp2p-identity", "libp2p-tls", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "quinn-proto 0.9.6", "rand 0.8.5", "rustls 0.20.9", @@ -6125,10 +7383,10 @@ dependencies = [ "futures-rustls", "libp2p-core", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "quicksink", "rw-stream-sink", - "soketto", + "soketto 0.7.1", "url", "webpki-roots 0.22.6", ] @@ -6148,13 +7406,12 @@ dependencies = [ [[package]] name = "libredox" -version = "0.0.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "libc", - "redox_syscall 0.4.1", ] [[package]] @@ -6199,7 +7456,7 @@ checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ "crunchy", "digest 0.9.0", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -6222,9 +7479,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.15" +version = "1.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" +checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" dependencies = [ "cc", "pkg-config", @@ -6278,9 +7535,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "lioness" @@ -6295,16 +7552,71 @@ dependencies = [ ] [[package]] -name = "litrs" -version = "0.4.1" +name = "litep2p" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" +checksum = "7f02542ae3a94b4c4ffa37dc56388c923e286afa3bf65452e3984b50b2a2f316" +dependencies = [ + "async-trait", + "bs58 0.4.0", + "bytes", + "cid 0.10.1", + "ed25519-dalek 1.0.1", + "futures", + "futures-timer", + "hex-literal", + "indexmap 2.2.6", + "libc", + "mockall 0.12.1", + "multiaddr", + "multihash 0.17.0", + "network-interface", + "nohash-hasher", + "parking_lot 0.12.3", + "pin-project", + "prost 0.11.9", + "prost-build 0.11.9", + "quinn 0.9.4", + "rand 0.8.5", + "rcgen 0.10.0", + "ring 0.16.20", + "rustls 0.20.9", + "serde", + "sha2 0.10.8", + "simple-dns 0.5.7", + "smallvec", + "snow", + "socket2 0.5.7", + "static_assertions", + "str0m", + "thiserror", + "tokio", + "tokio-stream", + "tokio-tungstenite 0.20.1", + "tokio-util", + "tracing", + "trust-dns-resolver 0.23.2", + "uint", + "unsigned-varint", + "url", + "webpki 0.22.4", + "x25519-dalek 2.0.1", + "x509-parser 0.15.1", + "yasna", + "zeroize", +] + +[[package]] +name = "litrs" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" [[package]] name = "lock_api" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" dependencies = [ "autocfg", "scopeguard", @@ -6329,6 +7641,15 @@ dependencies = [ "log", ] +[[package]] +name = "lru" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909" +dependencies = [ + "hashbrown 0.12.3", +] + [[package]] name = "lru" version = "0.10.1" @@ -6358,9 +7679,9 @@ dependencies = [ [[package]] name = "lz4" -version = "1.24.0" +version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1" +checksum = "d6eab492fe7f8651add23237ea56dbf11b3c4ff762ab83d40a47f11433421f91" dependencies = [ "libc", "lz4-sys", @@ -6368,9 +7689,9 @@ dependencies = [ [[package]] name = "lz4-sys" -version = "1.9.4" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" +checksum = "e9764018d143cc854c9f17f0b907de70f14393b1f502da6375dce70f00514eb3" dependencies = [ "cc", "libc", @@ -6394,7 +7715,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -6404,11 +7725,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d" dependencies = [ "const-random", - "derive-syn-parse", + "derive-syn-parse 0.1.5", "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -6419,7 +7740,7 @@ checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -6430,35 +7751,9 @@ checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.53", -] - -[[package]] -name = "mainline" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907bd8136f5eb985f3c0faa70051d4809c7e0cfbcc5700bec2ceb5df0de118ca" -dependencies = [ - "bytes", - "crc", - "ed25519-dalek 2.1.1", - "flume", - "lru 0.12.3", - "rand 0.8.5", - "serde", - "serde_bencode", - "serde_bytes", - "sha1_smol", - "thiserror", - "tracing", + "syn 2.0.68", ] -[[package]] -name = "maplit" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" - [[package]] name = "match_cfg" version = "0.1.0" @@ -6523,9 +7818,9 @@ checksum = "df39d232f5c40b0891c10216992c2f250c054105cb1e56f0fc9032db6203ecc1" [[package]] name = "memchr" -version = "2.7.1" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "memfd" @@ -6533,7 +7828,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.32", + "rustix 0.38.34", ] [[package]] @@ -6572,6 +7867,20 @@ dependencies = [ "hash-db", ] +[[package]] +name = "merkleized-metadata" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f313fcff1d2a4bcaa2deeaa00bf7530d77d5f7bd0467a117dde2e29a75a7a17a" +dependencies = [ + "array-bytes 6.2.3", + "blake3", + "frame-metadata 16.0.0", + "parity-scale-codec", + "scale-decode 0.13.1", + "scale-info", +] + [[package]] name = "merlin" version = "2.0.1" @@ -6596,6 +7905,17 @@ dependencies = [ "zeroize", ] +[[package]] +name = "mick-jaeger" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532" +dependencies = [ + "futures", + "rand 0.8.5", + "thrift", +] + [[package]] name = "mime" version = "0.3.17" @@ -6620,9 +7940,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" dependencies = [ "adler", ] @@ -6649,20 +7969,54 @@ dependencies = [ "bitflags 1.3.2", "blake2 0.10.6", "c2-chacha", - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "either", "hashlink", "lioness", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr", - "subtle 2.5.0", + "subtle 2.6.1", "thiserror", "zeroize", ] +[[package]] +name = "mmr-gadget" +version = "29.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "futures", + "log", + "parity-scale-codec", + "sc-client-api", + "sc-offchain", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-consensus-beefy", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "mmr-rpc" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "jsonrpsee 0.22.5", + "parity-scale-codec", + "serde", + "sp-api", + "sp-blockchain", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + [[package]] name = "mockall" version = "0.11.4" @@ -6673,8 +8027,23 @@ dependencies = [ "downcast", "fragile", "lazy_static", - "mockall_derive", - "predicates", + "mockall_derive 0.11.4", + "predicates 2.1.5", + "predicates-tree", +] + +[[package]] +name = "mockall" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43766c2b5203b10de348ffe19f7e54564b64f3d6018ff7648d1e2d6d3a0f0a48" +dependencies = [ + "cfg-if", + "downcast", + "fragile", + "lazy_static", + "mockall_derive 0.12.1", + "predicates 3.1.0", "predicates-tree", ] @@ -6690,6 +8059,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "mockall_derive" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af7cbce79ec385a1d4f54baa90a76401eb15d9cab93685f62e7e9f942aa00ae2" +dependencies = [ + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "multiaddr" version = "0.17.1" @@ -6701,7 +8082,7 @@ dependencies = [ "data-encoding", "log", "multibase", - "multihash", + "multihash 0.17.0", "percent-encoding", "serde", "static_assertions", @@ -6731,12 +8112,59 @@ dependencies = [ "blake3", "core2", "digest 0.10.7", - "multihash-derive", + "multihash-derive 0.8.1", + "sha2 0.10.8", + "sha3", + "unsigned-varint", +] + +[[package]] +name = "multihash" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfd8a792c1694c6da4f68db0a9d707c72bd260994da179e6030a5dcee00bb815" +dependencies = [ + "blake2b_simd", + "blake2s_simd", + "blake3", + "core2", + "digest 0.10.7", + "multihash-derive 0.8.1", "sha2 0.10.8", "sha3", "unsigned-varint", ] +[[package]] +name = "multihash" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" +dependencies = [ + "core2", + "unsigned-varint", +] + +[[package]] +name = "multihash-codetable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6d815ecb3c8238d00647f8630ede7060a642c9f704761cd6082cb4028af6935" +dependencies = [ + "blake2b_simd", + "blake2s_simd", + "blake3", + "core2", + "digest 0.10.7", + "multihash-derive 0.9.0", + "ripemd", + "serde", + "sha1 0.10.6", + "sha2 0.10.8", + "sha3", + "strobe-rs", +] + [[package]] name = "multihash-derive" version = "0.8.1" @@ -6748,7 +8176,32 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "synstructure", + "synstructure 0.12.6", +] + +[[package]] +name = "multihash-derive" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "890e72cb7396cb99ed98c1246a97b243cc16394470d94e0bc8b0c2c11d84290e" +dependencies = [ + "core2", + "multihash 0.19.1", + "multihash-derive-impl", +] + +[[package]] +name = "multihash-derive-impl" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3958713ce794e12f7c6326fac9aa274c68d74c4881dd37b3e2662b8a2046bb19" +dependencies = [ + "proc-macro-crate 2.0.0", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.68", + "synstructure 0.13.1", ] [[package]] @@ -6757,6 +8210,12 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" +[[package]] +name = "multimap" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" + [[package]] name = "multistream-select" version = "0.12.1" @@ -6773,9 +8232,9 @@ dependencies = [ [[package]] name = "nalgebra" -version = "0.32.4" +version = "0.32.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4541eb06dce09c0241ebbaab7102f0a01a0c8994afed2e5d0d66775016e25ac2" +checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4" dependencies = [ "approx", "matrixmultiply", @@ -6789,13 +8248,13 @@ dependencies = [ [[package]] name = "nalgebra-macros" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998" +checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.68", ] [[package]] @@ -6813,7 +8272,24 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", +] + +[[package]] +name = "netdev" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e12d9f49b8d4b9d7f97525ce65f6527079e549e8b2f010f15b921764e73d4baa" +dependencies = [ + "dlopen2", + "libc", + "memalloc", + "netlink-packet-core 0.7.0", + "netlink-packet-route 0.17.1", + "netlink-sys", + "once_cell", + "system-configuration 0.6.0", + "windows 0.54.0", ] [[package]] @@ -6911,9 +8387,9 @@ dependencies = [ [[package]] name = "netlink-sys" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" +checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" dependencies = [ "bytes", "futures", @@ -6923,19 +8399,22 @@ dependencies = [ ] [[package]] -name = "new_debug_unreachable" -version = "1.0.6" +name = "network-interface" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" +checksum = "a4a43439bf756eed340bdf8feba761e2d50c7d47175d87545cd5cbe4a137c4d1" +dependencies = [ + "cc", + "libc", + "thiserror", + "winapi", +] [[package]] -name = "nibble_vec" -version = "0.1.0" +name = "new_debug_unreachable" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" -dependencies = [ - "smallvec", -] +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" [[package]] name = "nix" @@ -7004,6 +8483,12 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nonempty" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" + [[package]] name = "nonzero_ext" version = "0.3.0" @@ -7037,9 +8522,9 @@ dependencies = [ [[package]] name = "num" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ "num-bigint", "num-complex", @@ -7051,11 +8536,10 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" +checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" dependencies = [ - "autocfg", "num-integer", "num-traits", ] @@ -7079,9 +8563,9 @@ dependencies = [ [[package]] name = "num-complex" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ "num-traits", ] @@ -7113,9 +8597,9 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.44" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ "autocfg", "num-integer", @@ -7124,11 +8608,10 @@ dependencies = [ [[package]] name = "num-rational" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "autocfg", "num-bigint", "num-integer", "num-traits", @@ -7136,9 +8619,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", "libm", @@ -7150,7 +8633,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi", + "hermit-abi 0.3.9", "libc", ] @@ -7172,7 +8655,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -7184,12 +8667,6 @@ dependencies = [ "libc", ] -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - [[package]] name = "object" version = "0.30.4" @@ -7212,12 +8689,30 @@ dependencies = [ ] [[package]] -name = "oid-registry" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" +name = "object" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434" +dependencies = [ + "memchr", +] + +[[package]] +name = "oid-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", +] + +[[package]] +name = "oid-registry" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +dependencies = [ + "asn1-rs 0.6.1", ] [[package]] @@ -7263,23 +8758,113 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "openssl" +version = "0.10.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +dependencies = [ + "bitflags 2.6.0", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "openssl-probe" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.3.1+3.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" +dependencies = [ + "cc", +] + +[[package]] +name = "openssl-sys" +version = "0.9.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +dependencies = [ + "cc", + "libc", + "openssl-src", + "pkg-config", + "vcpkg", +] + [[package]] name = "option-ext" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" +[[package]] +name = "orchestra" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92829eef0328a3d1cd22a02c0e51deb92a5362df3e7d21a4e9bdc38934694e66" +dependencies = [ + "async-trait", + "dyn-clonable", + "futures", + "futures-timer", + "orchestra-proc-macro", + "pin-project", + "prioritized-metered-channel", + "thiserror", + "tracing", +] + +[[package]] +name = "orchestra-proc-macro" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1344346d5af32c95bbddea91b18a88cc83eac394192d20ef2fc4c40a74332355" +dependencies = [ + "expander", + "indexmap 2.2.6", + "itertools 0.11.0", + "petgraph", + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ordered-float" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" +dependencies = [ + "num-traits", +] + [[package]] name = "os_pipe" -version = "1.1.5" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57119c3b893986491ec9aa85056780d3a0f3cf4da7cc09dd3650dbd6c6738fb9" +checksum = "29d73ba8daf8fac13b0501d1abeddcfe21ba7401ada61a819144b6c2a4f32209" dependencies = [ "libc", "windows-sys 0.52.0", @@ -7330,305 +8915,257 @@ dependencies = [ ] [[package]] -name = "pallet-authorship" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" -dependencies = [ - "frame-support", - "frame-system", - "impl-trait-for-tuples", - "parity-scale-codec", - "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", -] - -[[package]] -name = "pallet-babe" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-alliance" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "array-bytes 6.2.3", "frame-benchmarking", "frame-support", "frame-system", "log", - "pallet-authorship", - "pallet-session", - "pallet-timestamp", + "pallet-collective", + "pallet-identity", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-session", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-bags-list" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-asset-conversion" +version = "10.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "aquamarine 0.5.0", - "docify", "frame-benchmarking", - "frame-election-provider-support", "frame-support", "frame-system", "log", - "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-api", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-balances" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-asset-conversion-ops" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "docify", "frame-benchmarking", "frame-support", "frame-system", "log", + "pallet-asset-conversion", "parity-scale-codec", "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-collective" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-asset-conversion-tx-payment" +version = "10.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", - "log", + "pallet-asset-conversion", + "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-election-provider-multi-phase" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-asset-rate" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-benchmarking", - "frame-election-provider-support", "frame-support", "frame-system", - "log", - "pallet-election-provider-support-benchmarking", "parity-scale-codec", - "rand 0.8.5", "scale-info", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-npos-elections", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "strum 0.24.1", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-election-provider-support-benchmarking" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-asset-tx-payment" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-benchmarking", - "frame-election-provider-support", + "frame-support", "frame-system", + "pallet-transaction-payment", "parity-scale-codec", - "sp-npos-elections", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-elections" -version = "0.0.1" +name = "pallet-assets" +version = "29.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "env_logger", "frame-benchmarking", "frame-support", "frame-system", - "lazy_static", "log", - "pallet-balances", - "pallet-shards", "parity-scale-codec", "scale-info", - "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "time-primitives", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-grandpa" +name = "pallet-atomic-swap" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", - "log", - "pallet-authorship", - "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-session", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-im-online" +name = "pallet-aura" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", "log", - "pallet-authorship", + "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-aura", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-members" -version = "0.0.1" +name = "pallet-authority-discovery" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "env_logger", - "frame-benchmarking", "frame-support", "frame-system", - "lazy_static", - "log", - "pallet-balances", + "pallet-session", "parity-scale-codec", "scale-info", - "simple-mermaid", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "time-primitives", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-authority-discovery", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-networks" -version = "0.0.1" +name = "pallet-authorship" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", - "pallet-balances", + "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "time-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-offences" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-babe" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "frame-benchmarking", "frame-support", "frame-system", "log", - "pallet-balances", + "pallet-authorship", + "pallet-session", + "pallet-timestamp", "parity-scale-codec", "scale-info", - "serde", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-babe", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-session" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-bags-list" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "aquamarine", + "docify", + "frame-benchmarking", + "frame-election-provider-support", "frame-support", "frame-system", - "impl-trait-for-tuples", "log", - "pallet-timestamp", + "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-session", - "sp-staking", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-shards" -version = "4.0.0-dev" +name = "pallet-balances" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "docify", "frame-benchmarking", "frame-support", "frame-system", "log", - "pallet-balances", "parity-scale-codec", "scale-info", - "schnorr-evm", - "simple-mermaid", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "time-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-staking" +name = "pallet-beefy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", "frame-support", "frame-system", "log", @@ -7637,700 +9174,3169 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-consensus-beefy", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-staking-reward-fn" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-beefy-mmr" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "array-bytes 6.2.3", + "binary-merkle-tree", + "frame-support", + "frame-system", "log", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "pallet-beefy", + "pallet-mmr", + "pallet-session", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api", + "sp-consensus-beefy", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-sudo" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-bounties" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "docify", "frame-benchmarking", "frame-support", "frame-system", + "log", + "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-tasks" -version = "0.0.1" +name = "pallet-bridge-grandpa" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "bp-header-chain", + "bp-runtime", + "bp-test-utils", + "finality-grandpa", "frame-benchmarking", "frame-support", "frame-system", "log", - "pallet-balances", - "pallet-elections", - "pallet-members", - "pallet-shards", "parity-scale-codec", "scale-info", - "schnorr-evm", - "simple-mermaid", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "time-primitives", + "sp-consensus-grandpa", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-timegraph" -version = "0.0.1" +name = "pallet-bridge-messages" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "bp-messages", + "bp-runtime", "frame-benchmarking", "frame-support", "frame-system", - "pallet-balances", + "log", + "num-traits", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-timestamp" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-bridge-parachains" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "docify", + "bp-header-chain", + "bp-parachains", + "bp-polkadot-core", + "bp-runtime", "frame-benchmarking", "frame-support", "frame-system", "log", + "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-timestamp", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-transaction-payment" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-bridge-relayers" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "bp-messages", + "bp-relayers", + "bp-runtime", + "frame-benchmarking", "frame-support", "frame-system", + "log", + "pallet-bridge-messages", "parity-scale-codec", "scale-info", - "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-transaction-payment-rpc" -version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-broker" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "jsonrpsee 0.22.5", - "pallet-transaction-payment-rpc-runtime-api", + "bitvec", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", "parity-scale-codec", + "scale-info", "sp-api", - "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-transaction-payment-rpc-runtime-api" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-child-bounties" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "pallet-transaction-payment", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-bounties", + "pallet-treasury", "parity-scale-codec", - "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-treasury" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "pallet-collator-selection" +version = "9.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "docify", "frame-benchmarking", "frame-support", "frame-system", - "impl-trait-for-tuples", + "log", + "pallet-authorship", "pallet-balances", + "pallet-session", "parity-scale-codec", + "rand 0.8.5", "scale-info", - "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pallet-utility" +name = "pallet-collective" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", -] - -[[package]] -name = "papergrid" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ad43c07024ef767f9160710b3a6773976194758c7919b17e63b863db0bdf7fb" -dependencies = [ - "bytecount", - "fnv", - "unicode-width", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "parity-bip39" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" +name = "pallet-collective-content" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "bitcoin_hashes 0.13.0", - "rand 0.8.5", - "rand_core 0.6.4", - "serde", - "unicode-normalization", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "parity-db" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "592a28a24b09c9dc20ac8afaa6839abc417c720afe42c12e1e4a9d6aa2508d2e" +name = "pallet-contracts" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "blake2 0.10.6", - "crc32fast", - "fs2", - "hex", - "libc", + "bitflags 1.3.2", + "environmental", + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", "log", - "lz4", - "memmap2 0.5.10", - "parking_lot 0.12.1", + "pallet-balances", + "pallet-contracts-proc-macro", + "pallet-contracts-uapi", + "parity-scale-codec", + "paste", "rand 0.8.5", - "siphasher 0.3.11", - "snap", - "winapi", + "rand_pcg", + "scale-info", + "serde", + "smallvec", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "wasm-instrument", + "wasmi", ] [[package]] -name = "parity-scale-codec" -version = "3.6.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +name = "pallet-contracts-mock-network" +version = "3.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "arrayvec 0.7.4", - "bitvec", - "byte-slice-cast", - "bytes", - "impl-trait-for-tuples", - "parity-scale-codec-derive", - "serde", + "frame-support", + "frame-system", + "pallet-assets", + "pallet-balances", + "pallet-contracts", + "pallet-contracts-proc-macro", + "pallet-contracts-uapi", + "pallet-insecure-randomness-collective-flip", + "pallet-message-queue", + "pallet-proxy", + "pallet-timestamp", + "pallet-utility", + "pallet-xcm", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-parachains", + "scale-info", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "xcm-simulator", ] [[package]] -name = "parity-scale-codec-derive" -version = "3.6.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +name = "pallet-contracts-proc-macro" +version = "18.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.68", ] [[package]] -name = "parity-send-wrapper" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" - -[[package]] -name = "parity-wasm" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" - -[[package]] -name = "parking" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" - -[[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +name = "pallet-contracts-uapi" +version = "5.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.6", + "bitflags 1.3.2", + "parity-scale-codec", + "paste", + "polkavm-derive", + "scale-info", ] [[package]] -name = "parking_lot" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +name = "pallet-conviction-voting" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "lock_api", - "parking_lot_core 0.9.9", + "assert_matches", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "parking_lot_core" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +name = "pallet-core-fellowship" +version = "12.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "cfg-if", - "instant", - "libc", - "redox_syscall 0.2.16", - "smallvec", - "winapi", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-ranked-collective", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "parking_lot_core" -version = "0.9.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +name = "pallet-delegated-staking" +version = "1.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.4.1", - "smallvec", - "windows-targets 0.48.5", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "partial_sort" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156" +name = "pallet-democracy" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "password-hash" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" +name = "pallet-dev-mode" +version = "10.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle 2.5.0", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "password-hash" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" +name = "pallet-election-provider-multi-phase" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle 2.5.0", + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "log", + "pallet-election-provider-support-benchmarking", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-npos-elections", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "strum 0.26.3", ] [[package]] -name = "paste" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" +name = "pallet-election-provider-support-benchmarking" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-system", + "parity-scale-codec", + "sp-npos-elections", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "path-slash" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" - -[[package]] -name = "pbkdf2" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" +name = "pallet-elections" +version = "0.0.1" dependencies = [ - "crypto-mac 0.11.0", + "env_logger 0.11.3", + "frame-benchmarking", + "frame-support", + "frame-system", + "lazy_static", + "log", + "pallet-balances", + "pallet-shards", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "time-primitives", ] [[package]] -name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +name = "pallet-elections-phragmen" +version = "29.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", - "password-hash 0.4.2", - "sha2 0.10.8", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-npos-elections", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pbkdf2" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" +name = "pallet-fast-unstake" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "digest 0.10.7", - "password-hash 0.5.0", + "docify", + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" - -[[package]] -name = "peernet" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d422e763d66596a5fbf9c71e96207524ac0b087515aaee0a29a9afb2b0c3444" +name = "pallet-glutton" +version = "14.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "anyhow", - "async-trait", - "bincode", - "futures", - "getrandom 0.2.12", - "iroh-net", - "pkarr", - "quinn", - "serde", - "simple-mdns", - "tokio", - "tracing", + "blake2 0.10.6", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pem" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +name = "pallet-grandpa" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64 0.13.1", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-authorship", + "pallet-session", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pem" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b13fe415cdf3c8e44518e18a7c95a13431d9bdf6d15367d82b23c377fdd441a" +name = "pallet-identity" +version = "29.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64 0.21.7", - "serde", + "enumflags2", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pem" -version = "3.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" +name = "pallet-im-online" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64 0.21.7", - "serde", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-authorship", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pem-rfc7468" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +name = "pallet-indices" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "base64ct", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "percent-encoding" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" - -[[package]] -name = "pest" -version = "2.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8" +name = "pallet-insecure-randomness-collective-flip" +version = "16.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "memchr", - "thiserror", - "ucd-trie", + "frame-support", + "frame-system", + "parity-scale-codec", + "safe-mix", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pest_derive" -version = "2.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026" +name = "pallet-lottery" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "pest", - "pest_generator", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pest_generator" -version = "2.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80" +name = "pallet-members" +version = "0.0.1" dependencies = [ - "pest", - "pest_meta", - "proc-macro2", - "quote", - "syn 2.0.53", + "env_logger 0.11.3", + "frame-benchmarking", + "frame-support", + "frame-system", + "lazy_static", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "time-primitives", ] [[package]] -name = "pest_meta" -version = "2.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293" +name = "pallet-membership" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "once_cell", - "pest", - "sha2 0.10.8", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "petgraph" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" +name = "pallet-message-queue" +version = "31.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "fixedbitset", - "indexmap 2.2.5", + "environmental", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "phf" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +name = "pallet-migrations" +version = "1.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "phf_macros", - "phf_shared 0.11.2", + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "phf_generator" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +name = "pallet-mixnet" +version = "0.4.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "phf_shared 0.11.2", - "rand 0.8.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mixnet", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "phf_macros" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +name = "pallet-mmr" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "phf_generator", - "phf_shared 0.11.2", - "proc-macro2", - "quote", - "syn 2.0.53", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "phf_shared" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +name = "pallet-multisig" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "siphasher 0.3.11", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "phf_shared" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +name = "pallet-networks" +version = "0.0.1" dependencies = [ - "siphasher 0.3.11", + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "time-primitives", ] [[package]] -name = "pin-project" -version = "1.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +name = "pallet-nft-fractionalization" +version = "10.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "pin-project-internal", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-assets", + "pallet-nfts", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pin-project-internal" -version = "1.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +name = "pallet-nfts" +version = "22.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.53", + "enumflags2", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pin-project-lite" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" +name = "pallet-nfts-runtime-api" +version = "14.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "pallet-nfts", + "parity-scale-codec", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "pin-project-lite" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" +name = "pallet-nis" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +name = "pallet-node-authorization" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "piper" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +name = "pallet-nomination-pools" +version = "25.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "atomic-waker", - "fastrand 2.0.1", - "futures-io", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pkarr" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d4025a211a70a716314d4ea6464aed150f696deb81651bebf62f874cee5aac7" +name = "pallet-nomination-pools-benchmarking" +version = "26.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "bytes", - "ed25519-dalek 2.1.1", - "mainline", - "rand 0.8.5", - "reqwest", - "self_cell", - "simple-dns 0.6.2", - "thiserror", - "url", - "z32", + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "pallet-bags-list", + "pallet-delegated-staking", + "pallet-nomination-pools", + "pallet-staking", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pkcs1" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +name = "pallet-nomination-pools-runtime-api" +version = "23.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "der", - "pkcs8", - "spki", + "pallet-nomination-pools", + "parity-scale-codec", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pkcs8" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +name = "pallet-offences" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "der", - "spki", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "serde", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pkg-config" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" +name = "pallet-offences-benchmarking" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "log", + "pallet-babe", + "pallet-balances", + "pallet-grandpa", + "pallet-im-online", + "pallet-offences", + "pallet-session", + "pallet-staking", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "platforms" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" +name = "pallet-paged-list" +version = "0.6.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-metadata-ir", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] [[package]] -name = "pnet_base" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe4cf6fb3ab38b68d01ab2aea03ed3d1132b4868fa4e06285f29f16da01c5f4c" +name = "pallet-parameters" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "no-std-net", + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pnet_macros" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "688b17499eee04a0408aca0aa5cba5fc86401d7216de8a63fdf7a4c227871804" +name = "pallet-preimage" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.53", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] -name = "pnet_macros_support" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eea925b72f4bd37f8eab0f221bbe4c78b63498350c983ffa9dd4bcde7e030f56" +name = "pallet-proxy" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "pnet_base", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-ranked-collective" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-recovery" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-referenda" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "assert_matches", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-remark" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-root-offences" +version = "25.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "pallet-session", + "pallet-staking", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", +] + +[[package]] +name = "pallet-root-testing" +version = "4.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-safe-mode" +version = "9.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-proxy", + "pallet-utility", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-salary" +version = "13.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-ranked-collective", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-scheduler" +version = "29.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-scored-pool" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-session" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-session-benchmarking" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-session", + "pallet-staking", + "parity-scale-codec", + "rand 0.8.5", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-shards" +version = "4.0.0-dev" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "schnorr-evm", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "time-primitives", +] + +[[package]] +name = "pallet-skip-feeless-payment" +version = "3.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-society" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "rand_chacha 0.3.1", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-staking" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "log", + "pallet-authorship", + "pallet-session", + "parity-scale-codec", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-staking-reward-curve" +version = "11.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "pallet-staking-reward-fn" +version = "19.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "log", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-staking-runtime-api" +version = "14.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "sp-api", + "sp-staking", +] + +[[package]] +name = "pallet-state-trie-migration" +version = "29.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-statement" +version = "10.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-statement-store", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-sudo" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-tasks" +version = "0.0.1" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "pallet-elections", + "pallet-members", + "pallet-shards", + "parity-scale-codec", + "scale-info", + "schnorr-evm", + "simple-mermaid", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "time-primitives", +] + +[[package]] +name = "pallet-timegraph" +version = "0.0.1" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-timestamp" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-timestamp", +] + +[[package]] +name = "pallet-tips" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-treasury", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-transaction-payment" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-transaction-payment-rpc" +version = "30.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "jsonrpsee 0.22.5", + "pallet-transaction-payment-rpc-runtime-api", + "parity-scale-codec", + "sp-api", + "sp-blockchain", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-rpc", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-transaction-payment-rpc-runtime-api" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "pallet-transaction-payment", + "parity-scale-codec", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-transaction-storage" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "array-bytes 6.2.3", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "serde", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-transaction-storage-proof", +] + +[[package]] +name = "pallet-treasury" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-tx-pause" +version = "9.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-proxy", + "pallet-utility", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-uniques" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-utility" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-vesting" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-whitelist" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "pallet-xcm" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bounded-collections 0.2.0", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "xcm-fee-payment-runtime-api", +] + +[[package]] +name = "pallet-xcm-benchmarks" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + +[[package]] +name = "pallet-xcm-bridge-hub" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-messages", + "bp-runtime", + "bp-xcm-bridge-hub", + "bridge-runtime-common", + "frame-support", + "frame-system", + "log", + "pallet-bridge-messages", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + +[[package]] +name = "pallet-xcm-bridge-hub-router" +version = "0.5.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bp-xcm-bridge-hub-router", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", +] + +[[package]] +name = "papergrid" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ad43c07024ef767f9160710b3a6773976194758c7919b17e63b863db0bdf7fb" +dependencies = [ + "bytecount", + "fnv", + "unicode-width", +] + +[[package]] +name = "parachains-common" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "cumulus-primitives-utility", + "frame-support", + "frame-system", + "log", + "pallet-asset-tx-payment", + "pallet-assets", + "pallet-authorship", + "pallet-balances", + "pallet-collator-selection", + "pallet-message-queue", + "pallet-xcm", + "parity-scale-codec", + "polkadot-primitives", + "scale-info", + "sp-consensus-aura", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-executor", + "substrate-wasm-builder", +] + +[[package]] +name = "parachains-runtimes-test-utils" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-pallet-parachain-system", + "cumulus-pallet-xcmp-queue", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-test-relay-sproof-builder", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-collator-selection", + "pallet-session", + "pallet-timestamp", + "pallet-xcm", + "parity-scale-codec", + "polkadot-parachain-primitives", + "sp-consensus-aura", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-executor", + "substrate-wasm-builder", +] + +[[package]] +name = "parity-bip39" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" +dependencies = [ + "bitcoin_hashes 0.13.0", + "rand 0.8.5", + "rand_core 0.6.4", + "serde", + "unicode-normalization", +] + +[[package]] +name = "parity-bytes" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16b56e3a2420138bdb970f84dfb9c774aea80fa0e7371549eedec0d80c209c67" + +[[package]] +name = "parity-db" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "592a28a24b09c9dc20ac8afaa6839abc417c720afe42c12e1e4a9d6aa2508d2e" +dependencies = [ + "blake2 0.10.6", + "crc32fast", + "fs2", + "hex", + "libc", + "log", + "lz4", + "memmap2 0.5.10", + "parking_lot 0.12.3", + "rand 0.8.5", + "siphasher 0.3.11", + "snap", + "winapi", +] + +[[package]] +name = "parity-scale-codec" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +dependencies = [ + "arrayvec 0.7.4", + "bitvec", + "byte-slice-cast", + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec-derive", + "serde", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +dependencies = [ + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "parity-send-wrapper" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" + +[[package]] +name = "parity-util-mem" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d32c34f4f5ca7f9196001c0aba5a1f9a5a12382c8944b8b0f90233282d1e8f8" +dependencies = [ + "cfg-if", + "ethereum-types", + "hashbrown 0.12.3", + "impl-trait-for-tuples", + "lru 0.8.1", + "parity-util-mem-derive", + "parking_lot 0.12.3", + "primitive-types", + "smallvec", + "winapi", +] + +[[package]] +name = "parity-util-mem-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2" +dependencies = [ + "proc-macro2", + "syn 1.0.109", + "synstructure 0.12.6", +] + +[[package]] +name = "parity-wasm" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" + +[[package]] +name = "parking" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" + +[[package]] +name = "parking_lot" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core 0.8.6", +] + +[[package]] +name = "parking_lot" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +dependencies = [ + "lock_api", + "parking_lot_core 0.9.10", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +dependencies = [ + "cfg-if", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec", + "winapi", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.5.2", + "smallvec", + "windows-targets 0.52.5", +] + +[[package]] +name = "partial_sort" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156" + +[[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 2.6.1", +] + +[[package]] +name = "password-hash" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" +dependencies = [ + "base64ct", + "rand_core 0.6.4", + "subtle 2.6.1", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "path-slash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" + +[[package]] +name = "pbkdf2" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" +dependencies = [ + "crypto-mac 0.11.0", +] + +[[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", +] + +[[package]] +name = "pbkdf2" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" +dependencies = [ + "digest 0.10.7", + "password-hash 0.5.0", +] + +[[package]] +name = "peeking_take_while" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" + +[[package]] +name = "peernet" +version = "0.2.0" +source = "git+https://github.com/dvc94ch/peernet?rev=f8ae1372178f5f23e714738701df2ce4c583e51e#f8ae1372178f5f23e714738701df2ce4c583e51e" +dependencies = [ + "anyhow", + "async-trait", + "bincode", + "futures", + "getrandom 0.2.15", + "iroh-net", + "serde", + "tokio", + "tracing", +] + +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "pem" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" +dependencies = [ + "base64 0.22.1", + "serde", +] + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "pest" +version = "2.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" +dependencies = [ + "memchr", + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pest_derive" +version = "2.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" +dependencies = [ + "pest", + "pest_generator", +] + +[[package]] +name = "pest_generator" +version = "2.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" +dependencies = [ + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "pest_meta" +version = "2.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" +dependencies = [ + "once_cell", + "pest", + "sha2 0.10.8", +] + +[[package]] +name = "petgraph" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +dependencies = [ + "fixedbitset", + "indexmap 2.2.6", +] + +[[package]] +name = "phf" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +dependencies = [ + "phf_macros", + "phf_shared 0.11.2", +] + +[[package]] +name = "phf_generator" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +dependencies = [ + "phf_shared 0.11.2", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +dependencies = [ + "phf_generator", + "phf_shared 0.11.2", + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "pin-project" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "pin-project-lite" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" +dependencies = [ + "atomic-waker", + "fastrand 2.1.0", + "futures-io", +] + +[[package]] +name = "pkarr" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456eec4b759219dfb7bc6b8c4f942603b0720392c96a07bf61007f892ebe3355" +dependencies = [ + "bytes", + "document-features", + "ed25519-dalek 2.1.1", + "flume", + "futures", + "js-sys", + "lru 0.12.3", + "self_cell", + "simple-dns 0.6.2", + "thiserror", + "tracing", + "ureq", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "z32", +] + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" + +[[package]] +name = "pnet_base" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe4cf6fb3ab38b68d01ab2aea03ed3d1132b4868fa4e06285f29f16da01c5f4c" +dependencies = [ + "no-std-net", +] + +[[package]] +name = "pnet_macros" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "688b17499eee04a0408aca0aa5cba5fc86401d7216de8a63fdf7a4c227871804" +dependencies = [ + "proc-macro2", + "quote", + "regex", + "syn 2.0.68", +] + +[[package]] +name = "pnet_macros_support" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eea925b72f4bd37f8eab0f221bbe4c78b63498350c983ffa9dd4bcde7e030f56" +dependencies = [ + "pnet_base", +] + +[[package]] +name = "pnet_packet" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9a005825396b7fe7a38a8e288dbc342d5034dac80c15212436424fef8ea90ba" +dependencies = [ + "glob", + "pnet_base", + "pnet_macros", + "pnet_macros_support", +] + +[[package]] +name = "polkadot-ckb-merkle-mountain-range" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4b44320e5f7ce2c18227537a3032ae5b2c476a7e8eddba45333e1011fc31b92" +dependencies = [ + "cfg-if", + "itertools 0.10.5", +] + +[[package]] +name = "polkadot-cli" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cfg-if", + "frame-benchmarking-cli", + "futures", + "log", + "polkadot-node-metrics", + "polkadot-node-primitives", + "polkadot-service", + "sc-executor", + "sc-service", + "sc-storage-monitor", + "sc-sysinfo", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-maybe-compressed-blob", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "substrate-build-script-utils", + "thiserror", +] + +[[package]] +name = "polkadot-core-primitives" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "polkadot-erasure-coding" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "polkadot-node-primitives", + "polkadot-primitives", + "reed-solomon-novelpoly", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", +] + +[[package]] +name = "polkadot-node-core-parachains-inherent" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "polkadot-node-subsystem", + "polkadot-overseer", + "polkadot-primitives", + "sp-blockchain", + "sp-inherents", + "thiserror", + "tracing-gum", +] + +[[package]] +name = "polkadot-node-jaeger" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "lazy_static", + "log", + "mick-jaeger", + "parity-scale-codec", + "parking_lot 0.12.3", + "polkadot-node-primitives", + "polkadot-primitives", + "sc-network", + "sc-network-types", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", + "tokio", +] + +[[package]] +name = "polkadot-node-metrics" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bs58 0.5.1", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "polkadot-primitives", + "prioritized-metered-channel", + "sc-cli", + "sc-service", + "sc-tracing", + "substrate-prometheus-endpoint", + "tracing-gum", +] + +[[package]] +name = "polkadot-node-network-protocol" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-channel 1.9.0", + "async-trait", + "bitvec", + "derive_more 0.99.18", + "fatality", + "futures", + "hex", + "parity-scale-codec", + "polkadot-node-jaeger", + "polkadot-node-primitives", + "polkadot-primitives", + "rand 0.8.5", + "sc-authority-discovery", + "sc-network", + "sc-network-types", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "strum 0.26.3", + "thiserror", + "tracing-gum", +] + +[[package]] +name = "polkadot-node-primitives" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bitvec", + "bounded-vec", + "futures", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-primitives", + "schnorrkel 0.11.4", + "serde", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-babe", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-maybe-compressed-blob", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", + "zstd 0.12.4", +] + +[[package]] +name = "polkadot-node-subsystem" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "polkadot-node-jaeger", + "polkadot-node-subsystem-types", + "polkadot-overseer", +] + +[[package]] +name = "polkadot-node-subsystem-types" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "bitvec", + "derive_more 0.99.18", + "fatality", + "futures", + "orchestra", + "polkadot-node-jaeger", + "polkadot-node-network-protocol", + "polkadot-node-primitives", + "polkadot-primitives", + "polkadot-statement-table", + "sc-client-api", + "sc-network", + "sc-network-types", + "sc-transaction-pool-api", + "smallvec", + "sp-api", + "sp-authority-discovery", + "sp-blockchain", + "sp-consensus-babe", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "substrate-prometheus-endpoint", + "thiserror", +] + +[[package]] +name = "polkadot-node-subsystem-util" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "derive_more 0.99.18", + "fatality", + "futures", + "futures-channel", + "itertools 0.11.0", + "kvdb", + "parity-db", + "parity-scale-codec", + "parking_lot 0.12.3", + "pin-project", + "polkadot-erasure-coding", + "polkadot-node-jaeger", + "polkadot-node-metrics", + "polkadot-node-network-protocol", + "polkadot-node-primitives", + "polkadot-node-subsystem", + "polkadot-node-subsystem-types", + "polkadot-overseer", + "polkadot-primitives", + "prioritized-metered-channel", + "rand 0.8.5", + "sc-client-api", + "schnellru", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", + "tracing-gum", +] + +[[package]] +name = "polkadot-overseer" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "orchestra", + "parking_lot 0.12.3", + "polkadot-node-metrics", + "polkadot-node-network-protocol", + "polkadot-node-primitives", + "polkadot-node-subsystem-types", + "polkadot-primitives", + "sc-client-api", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "tikv-jemalloc-ctl", + "tracing-gum", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "6.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bounded-collections 0.2.0", + "derive_more 0.99.18", + "parity-scale-codec", + "polkadot-core-primitives", + "scale-info", + "serde", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "polkadot-primitives" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bitvec", + "hex-literal", + "log", + "parity-scale-codec", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-authority-discovery", + "sp-consensus-slots", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "polkadot-rpc" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "jsonrpsee 0.22.5", + "mmr-rpc", + "pallet-transaction-payment-rpc", + "polkadot-primitives", + "sc-chain-spec", + "sc-client-api", + "sc-consensus-babe", + "sc-consensus-babe-rpc", + "sc-consensus-beefy", + "sc-consensus-beefy-rpc", + "sc-consensus-epochs", + "sc-consensus-grandpa", + "sc-consensus-grandpa-rpc", + "sc-rpc", + "sc-rpc-spec-v2", + "sc-sync-state-rpc", + "sc-transaction-pool-api", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-consensus-beefy", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "substrate-frame-rpc-system", + "substrate-state-trie-migration-rpc", +] + +[[package]] +name = "polkadot-runtime-common" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bitvec", + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "libsecp256k1", + "log", + "pallet-asset-rate", + "pallet-authorship", + "pallet-babe", + "pallet-balances", + "pallet-broker", + "pallet-election-provider-multi-phase", + "pallet-fast-unstake", + "pallet-identity", + "pallet-session", + "pallet-staking", + "pallet-staking-reward-fn", + "pallet-timestamp", + "pallet-transaction-payment", + "pallet-treasury", + "pallet-vesting", + "parity-scale-codec", + "polkadot-primitives", + "polkadot-runtime-parachains", + "rustc-hex", + "scale-info", + "serde", + "serde_derive", + "slot-range-helper", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-npos-elections", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-metrics" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bs58 0.5.1", + "frame-benchmarking", + "parity-scale-codec", + "polkadot-primitives", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "polkadot-runtime-parachains" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bitflags 1.3.2", + "bitvec", + "derive_more 0.99.18", + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-authority-discovery", + "pallet-authorship", + "pallet-babe", + "pallet-balances", + "pallet-broker", + "pallet-message-queue", + "pallet-session", + "pallet-staking", + "pallet-timestamp", + "pallet-vesting", + "parity-scale-codec", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-metrics", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rustc-hex", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-executor", + "static_assertions", +] + +[[package]] +name = "polkadot-sdk" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "asset-test-utils", + "assets-common", + "binary-merkle-tree", + "bp-asset-hub-rococo", + "bp-asset-hub-westend", + "bp-bridge-hub-cumulus", + "bp-bridge-hub-kusama", + "bp-bridge-hub-polkadot", + "bp-bridge-hub-rococo", + "bp-bridge-hub-westend", + "bp-header-chain", + "bp-kusama", + "bp-messages", + "bp-parachains", + "bp-polkadot", + "bp-polkadot-bulletin", + "bp-polkadot-core", + "bp-relayers", + "bp-rococo", + "bp-runtime", + "bp-test-utils", + "bp-westend", + "bp-xcm-bridge-hub", + "bp-xcm-bridge-hub-router", + "bridge-hub-common", + "bridge-hub-test-utils", + "bridge-runtime-common", + "cumulus-pallet-aura-ext", + "cumulus-pallet-dmp-queue", + "cumulus-pallet-parachain-system", + "cumulus-pallet-parachain-system-proc-macro", + "cumulus-pallet-session-benchmarking", + "cumulus-pallet-solo-to-para", + "cumulus-pallet-xcm", + "cumulus-pallet-xcmp-queue", + "cumulus-ping", + "cumulus-primitives-aura", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-primitives-proof-size-hostfunction", + "cumulus-primitives-storage-weight-reclaim", + "cumulus-primitives-timestamp", + "cumulus-primitives-utility", + "cumulus-test-relay-sproof-builder", + "frame-benchmarking", + "frame-benchmarking-cli", + "frame-benchmarking-pallet-pov", + "frame-election-provider-support", + "frame-executive", + "frame-metadata-hash-extension", + "frame-support", + "frame-support-procedural", + "frame-system", + "frame-system-benchmarking", + "frame-system-rpc-runtime-api", + "frame-try-runtime", + "pallet-alliance", + "pallet-asset-conversion", + "pallet-asset-conversion-ops", + "pallet-asset-conversion-tx-payment", + "pallet-asset-rate", + "pallet-asset-tx-payment", + "pallet-assets", + "pallet-atomic-swap", + "pallet-aura", + "pallet-authority-discovery", + "pallet-authorship", + "pallet-babe", + "pallet-bags-list", + "pallet-balances", + "pallet-beefy", + "pallet-beefy-mmr", + "pallet-bounties", + "pallet-bridge-grandpa", + "pallet-bridge-messages", + "pallet-bridge-parachains", + "pallet-bridge-relayers", + "pallet-broker", + "pallet-child-bounties", + "pallet-collator-selection", + "pallet-collective", + "pallet-collective-content", + "pallet-contracts", + "pallet-contracts-mock-network", + "pallet-conviction-voting", + "pallet-core-fellowship", + "pallet-delegated-staking", + "pallet-democracy", + "pallet-dev-mode", + "pallet-election-provider-multi-phase", + "pallet-election-provider-support-benchmarking", + "pallet-elections-phragmen", + "pallet-fast-unstake", + "pallet-glutton", + "pallet-grandpa", + "pallet-identity", + "pallet-im-online", + "pallet-indices", + "pallet-insecure-randomness-collective-flip", + "pallet-lottery", + "pallet-membership", + "pallet-message-queue", + "pallet-migrations", + "pallet-mixnet", + "pallet-mmr", + "pallet-multisig", + "pallet-nft-fractionalization", + "pallet-nfts", + "pallet-nfts-runtime-api", + "pallet-nis", + "pallet-node-authorization", + "pallet-nomination-pools", + "pallet-nomination-pools-benchmarking", + "pallet-nomination-pools-runtime-api", + "pallet-offences", + "pallet-offences-benchmarking", + "pallet-paged-list", + "pallet-parameters", + "pallet-preimage", + "pallet-proxy", + "pallet-ranked-collective", + "pallet-recovery", + "pallet-referenda", + "pallet-remark", + "pallet-root-offences", + "pallet-root-testing", + "pallet-safe-mode", + "pallet-salary", + "pallet-scheduler", + "pallet-scored-pool", + "pallet-session", + "pallet-session-benchmarking", + "pallet-skip-feeless-payment", + "pallet-society", + "pallet-staking", + "pallet-staking-reward-fn", + "pallet-staking-runtime-api", + "pallet-state-trie-migration", + "pallet-statement", + "pallet-sudo", + "pallet-timestamp", + "pallet-tips", + "pallet-transaction-payment", + "pallet-transaction-payment-rpc", + "pallet-transaction-payment-rpc-runtime-api", + "pallet-transaction-storage", + "pallet-treasury", + "pallet-tx-pause", + "pallet-uniques", + "pallet-utility", + "pallet-vesting", + "pallet-whitelist", + "pallet-xcm", + "pallet-xcm-benchmarks", + "pallet-xcm-bridge-hub", + "pallet-xcm-bridge-hub-router", + "parachains-common", + "parachains-runtimes-test-utils", + "polkadot-cli", + "polkadot-core-primitives", + "polkadot-node-metrics", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-common", + "polkadot-runtime-metrics", + "polkadot-runtime-parachains", + "polkadot-sdk-frame", + "polkadot-service", + "rococo-runtime-constants", + "sc-authority-discovery", + "sc-basic-authorship", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-client-db", + "sc-consensus", + "sc-consensus-babe", + "sc-consensus-babe-rpc", + "sc-consensus-grandpa", + "sc-consensus-grandpa-rpc", + "sc-consensus-slots", + "sc-executor", + "sc-network", + "sc-network-sync", + "sc-offchain", + "sc-rpc", + "sc-rpc-api", + "sc-rpc-spec-v2", + "sc-service", + "sc-storage-monitor", + "sc-sync-state-rpc", + "sc-sysinfo", + "sc-telemetry", + "sc-transaction-pool", + "sc-transaction-pool-api", + "slot-range-helper", + "snowbridge-beacon-primitives", + "snowbridge-core", + "snowbridge-ethereum", + "snowbridge-outbound-queue-merkle-tree", + "snowbridge-outbound-queue-runtime-api", + "snowbridge-pallet-ethereum-client", + "snowbridge-pallet-ethereum-client-fixtures", + "snowbridge-pallet-inbound-queue", + "snowbridge-pallet-inbound-queue-fixtures", + "snowbridge-pallet-outbound-queue", + "snowbridge-pallet-system", + "snowbridge-router-primitives", + "snowbridge-runtime-common", + "snowbridge-runtime-test-common", + "snowbridge-system-runtime-api", + "sp-api", + "sp-api-proc-macro", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-authority-discovery", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-aura", + "sp-consensus-babe", + "sp-consensus-beefy", + "sp-consensus-grandpa", + "sp-consensus-pow", + "sp-consensus-slots", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core-hashing 15.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-ec-utils 0.10.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-genesis-builder", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-metadata-ir", + "sp-mixnet", + "sp-mmr-primitives", + "sp-npos-elections", + "sp-offchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-statement-store", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-timestamp", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-transaction-pool", + "sp-transaction-storage-proof", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-version", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-node-inspect", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "substrate-bip39 0.4.7", + "substrate-build-script-utils", + "substrate-frame-rpc-system", + "substrate-state-trie-migration-rpc", + "testnet-parachains-constants", + "westend-runtime-constants", + "xcm-fee-payment-runtime-api", +] + +[[package]] +name = "polkadot-sdk-frame" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-executive", + "frame-support", + "frame-system", + "frame-system-benchmarking", + "frame-system-rpc-runtime-api", + "frame-try-runtime", + "log", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-block-builder", + "sp-consensus-aura", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-offchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-transaction-pool", + "sp-version", +] + +[[package]] +name = "polkadot-service" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "async-trait", + "frame-benchmarking", + "frame-benchmarking-cli", + "frame-support", + "frame-system", + "frame-system-rpc-runtime-api", + "futures", + "hex-literal", + "is_executable", + "kvdb", + "log", + "mmr-gadget", + "pallet-babe", + "pallet-staking", + "pallet-transaction-payment", + "pallet-transaction-payment-rpc-runtime-api", + "parity-scale-codec", + "parking_lot 0.12.3", + "polkadot-core-primitives", + "polkadot-node-core-parachains-inherent", + "polkadot-node-network-protocol", + "polkadot-node-primitives", + "polkadot-node-subsystem", + "polkadot-node-subsystem-types", + "polkadot-node-subsystem-util", + "polkadot-overseer", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-rpc", + "polkadot-runtime-parachains", + "rococo-runtime", + "sc-authority-discovery", + "sc-basic-authorship", + "sc-block-builder", + "sc-chain-spec", + "sc-client-api", + "sc-client-db", + "sc-consensus", + "sc-consensus-babe", + "sc-consensus-beefy", + "sc-consensus-grandpa", + "sc-consensus-slots", + "sc-executor", + "sc-keystore", + "sc-network", + "sc-network-common", + "sc-network-sync", + "sc-offchain", + "sc-service", + "sc-sync-state-rpc", + "sc-sysinfo", + "sc-telemetry", + "sc-transaction-pool", + "sc-transaction-pool-api", + "schnellru", + "serde", + "serde_json", + "sp-api", + "sp-authority-discovery", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-consensus-beefy", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-offchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-timestamp", + "sp-transaction-pool", + "sp-version", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "substrate-prometheus-endpoint", + "thiserror", + "tracing-gum", + "westend-runtime", + "xcm-fee-payment-runtime-api", ] [[package]] -name = "pnet_packet" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9a005825396b7fe7a38a8e288dbc342d5034dac80c15212436424fef8ea90ba" +name = "polkadot-statement-table" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "glob", - "pnet_base", - "pnet_macros", - "pnet_macros_support", + "parity-scale-codec", + "polkadot-primitives", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "tracing-gum", ] [[package]] @@ -8382,7 +12388,7 @@ dependencies = [ "polkavm-common", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -8392,7 +12398,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" dependencies = [ "polkavm-derive-impl", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -8428,20 +12434,21 @@ dependencies = [ "concurrent-queue", "libc", "log", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "windows-sys 0.48.0", ] [[package]] name = "polling" -version = "3.5.0" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" +checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" dependencies = [ "cfg-if", "concurrent-queue", - "pin-project-lite 0.2.13", - "rustix 0.38.32", + "hermit-abi 0.4.0", + "pin-project-lite 0.2.14", + "rustix 0.38.34", "tracing", "windows-sys 0.52.0", ] @@ -8486,16 +12493,6 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" -[[package]] -name = "positioned-io" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccabfeeb89c73adf4081f0dca7f8e28dbda90981a222ceea37f619e93ea6afe9" -dependencies = [ - "libc", - "winapi", -] - [[package]] name = "postcard" version = "1.0.8" @@ -8546,9 +12543,9 @@ dependencies = [ [[package]] name = "precis-profiles" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "688124d96df311c37d794fb574bb5f75cdc86d8c5e514d3816d770a3dd0e1568" +checksum = "bde4bd6624c60cb0abe2bea1dbdbb9085f629a853861e64df4abb099f8076ad4" dependencies = [ "lazy_static", "precis-core", @@ -8587,6 +12584,16 @@ dependencies = [ "regex", ] +[[package]] +name = "predicates" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" +dependencies = [ + "anstyle", + "predicates-core", +] + [[package]] name = "predicates-core" version = "1.0.6" @@ -8603,21 +12610,11 @@ dependencies = [ "termtree", ] -[[package]] -name = "prettier-please" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22020dfcf177fcc7bf5deaf7440af371400c67c0de14c399938d8ed4fb4645d3" -dependencies = [ - "proc-macro2", - "syn 2.0.53", -] - [[package]] name = "prettyplease" -version = "0.1.11" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28f53e8b192565862cf99343194579a022eb9c7dd3a8d03134734803c7b3125" +checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" dependencies = [ "proc-macro2", "syn 1.0.109", @@ -8625,12 +12622,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.16" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" +checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" dependencies = [ "proc-macro2", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -8657,6 +12654,22 @@ dependencies = [ "uint", ] +[[package]] +name = "prioritized-metered-channel" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a172e6cc603231f2cf004232eabcecccc0da53ba576ab286ef7baa0cfc7927ad" +dependencies = [ + "coarsetime", + "crossbeam-queue", + "derive_more 0.99.18", + "futures", + "futures-timer", + "nanorand", + "thiserror", + "tracing", +] + [[package]] name = "proc-macro-crate" version = "1.1.3" @@ -8667,6 +12680,15 @@ dependencies = [ "toml 0.5.11", ] +[[package]] +name = "proc-macro-crate" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" +dependencies = [ + "toml_edit 0.20.7", +] + [[package]] name = "proc-macro-crate" version = "3.1.0" @@ -8714,29 +12736,29 @@ checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "proc-macro2" -version = "1.0.85" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" dependencies = [ "unicode-ident", ] [[package]] name = "prometheus" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" +checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" dependencies = [ "cfg-if", "fnv", "lazy_static", "memchr", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "thiserror", ] @@ -8748,7 +12770,7 @@ checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" dependencies = [ "dtoa", "itoa", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "prometheus-client-derive-encode", ] @@ -8760,7 +12782,7 @@ checksum = "c1ca959da22a332509f2a73ae9e5f23f9dcfc31fd3a54d71f159495bd5909baa" dependencies = [ "dtoa", "itoa", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "prometheus-client-derive-encode", ] @@ -8772,7 +12794,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -8790,19 +12812,19 @@ dependencies = [ [[package]] name = "proptest" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" dependencies = [ "bit-set", "bit-vec", - "bitflags 2.5.0", + "bitflags 2.6.0", "lazy_static", "num-traits", "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", - "regex-syntax 0.8.2", + "regex-syntax 0.8.4", "rusty-fork", "tempfile", "unarray", @@ -8820,12 +12842,12 @@ dependencies = [ [[package]] name = "prost" -version = "0.12.3" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" +checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" dependencies = [ "bytes", - "prost-derive 0.12.3", + "prost-derive 0.12.6", ] [[package]] @@ -8839,17 +12861,38 @@ dependencies = [ "itertools 0.10.5", "lazy_static", "log", - "multimap", + "multimap 0.8.3", "petgraph", - "prettyplease 0.1.11", + "prettyplease 0.1.25", "prost 0.11.9", - "prost-types", + "prost-types 0.11.9", "regex", "syn 1.0.109", "tempfile", "which", ] +[[package]] +name = "prost-build" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" +dependencies = [ + "bytes", + "heck 0.5.0", + "itertools 0.12.1", + "log", + "multimap 0.10.0", + "once_cell", + "petgraph", + "prettyplease 0.2.20", + "prost 0.12.6", + "prost-types 0.12.6", + "regex", + "syn 2.0.68", + "tempfile", +] + [[package]] name = "prost-derive" version = "0.11.9" @@ -8865,15 +12908,15 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.12.3" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" +checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -8885,6 +12928,15 @@ dependencies = [ "prost 0.11.9", ] +[[package]] +name = "prost-types" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" +dependencies = [ + "prost 0.12.6", +] + [[package]] name = "psm" version = "0.1.21" @@ -8896,9 +12948,9 @@ dependencies = [ [[package]] name = "quanta" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ca0b7bac0b97248c40bb77288fc52029cf1459c0461ea1b05ee32ccf011de2c" +checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" dependencies = [ "crossbeam-utils", "libc", @@ -8950,16 +13002,34 @@ dependencies = [ [[package]] name = "quinn" -version = "0.10.2" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e8b432585672228923edbbf64b8b12c14e1112f62e88737655b4a083dbcd78e" +dependencies = [ + "bytes", + "pin-project-lite 0.2.14", + "quinn-proto 0.9.6", + "quinn-udp 0.3.2", + "rustc-hash", + "rustls 0.20.9", + "thiserror", + "tokio", + "tracing", + "webpki 0.22.4", +] + +[[package]] +name = "quinn" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cc2c5017e4b43d5995dcea317bc46c1e09404c0a9664d2908f7f02dfe943d75" +checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" dependencies = [ "bytes", - "pin-project-lite 0.2.13", - "quinn-proto 0.10.6", - "quinn-udp", + "pin-project-lite 0.2.14", + "quinn-proto 0.11.3", + "quinn-udp 0.5.2", "rustc-hash", - "rustls 0.21.10", + "rustls 0.23.10", "thiserror", "tokio", "tracing", @@ -8985,16 +13055,15 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.10.6" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "141bf7dfde2fbc246bfd3fe12f2455aa24b0fbd9af535d8c86c7bd1381ff2b1a" +checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe" dependencies = [ "bytes", "rand 0.8.5", - "ring 0.16.20", + "ring 0.17.8", "rustc-hash", - "rustls 0.21.10", - "rustls-native-certs 0.6.3", + "rustls 0.23.10", "slab", "thiserror", "tinyvec", @@ -9003,15 +13072,28 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.4.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "055b4e778e8feb9f93c4e439f71dc2156ef13360b432b799e179a8c4cdf0b1d7" +checksum = "641538578b21f5e5c8ea733b736895576d0fe329bb883b937db6f4d163dbaaf4" dependencies = [ - "bytes", "libc", - "socket2 0.5.6", + "quinn-proto 0.9.6", + "socket2 0.4.10", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.42.0", +] + +[[package]] +name = "quinn-udp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46" +dependencies = [ + "libc", + "once_cell", + "socket2 0.5.7", + "tracing", + "windows-sys 0.52.0", ] [[package]] @@ -9039,16 +13121,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" -[[package]] -name = "radix_trie" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" -dependencies = [ - "endian-type", - "nibble_vec", -] - [[package]] name = "rand" version = "0.7.3" @@ -9108,7 +13180,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", ] [[package]] @@ -9148,25 +13220,13 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "range-collections" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca9edd21e2db51000ac63eccddabba622f826e631a60be7bade9bd6a76b69537" -dependencies = [ - "binary-merge", - "inplace-vec-builder", - "ref-cast", - "smallvec", -] - [[package]] name = "raw-cpuid" -version = "11.0.1" +version = "11.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" +checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] @@ -9177,9 +13237,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", @@ -9203,32 +13263,32 @@ checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" dependencies = [ "pem 1.1.1", "ring 0.16.20", - "time 0.3.34", + "time 0.3.36", "yasna", ] [[package]] name = "rcgen" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" +checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1" dependencies = [ - "pem 3.0.3", - "ring 0.16.20", - "time 0.3.34", + "pem 3.0.4", + "ring 0.17.8", + "time 0.3.36", "yasna", ] [[package]] name = "reconnecting-jsonrpsee-ws-client" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a89cc4a6f1e641017e300c050f0c4c46a198627fb39ec03e7a028d20256b5e54" +checksum = "06fa4f17e09edfc3131636082faaec633c7baa269396b4004040bc6c52f49f65" dependencies = [ "cfg_aliases 0.2.1", "finito", "futures", - "jsonrpsee 0.22.5", + "jsonrpsee 0.23.2", "serde_json", "thiserror", "tokio", @@ -9253,35 +13313,56 @@ dependencies = [ "bitflags 1.3.2", ] +[[package]] +name = "redox_syscall" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" +dependencies = [ + "bitflags 2.6.0", +] + [[package]] name = "redox_users" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" +checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.15", "libredox", "thiserror", ] +[[package]] +name = "reed-solomon-novelpoly" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87413ebb313323d431e85d0afc5a68222aaed972843537cbfe5f061cf1b4bcab" +dependencies = [ + "derive_more 0.99.18", + "fs-err", + "static_init", + "thiserror", +] + [[package]] name = "ref-cast" -version = "1.0.22" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4846d4c50d1721b1a3bef8af76924eef20d5e723647333798c1b519b3a9473f" +checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.22" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc" +checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -9311,14 +13392,14 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.4" +version = "1.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.6", - "regex-syntax 0.8.2", + "regex-automata 0.4.7", + "regex-syntax 0.8.4", ] [[package]] @@ -9332,20 +13413,20 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.2", + "regex-syntax 0.8.4", ] [[package]] name = "regex-lite" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" +checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "regex-syntax" @@ -9355,9 +13436,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "reqwest" @@ -9372,23 +13453,23 @@ dependencies = [ "futures-util", "h2", "http 0.2.12", - "http-body", - "hyper", - "hyper-rustls", + "http-body 0.4.6", + "hyper 0.14.29", + "hyper-rustls 0.24.2", "ipnet", "js-sys", "log", "mime", "once_cell", "percent-encoding", - "pin-project-lite 0.2.13", - "rustls 0.21.10", + "pin-project-lite 0.2.14", + "rustls 0.21.12", "rustls-pemfile 1.0.4", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", - "system-configuration", + "sync_wrapper 0.1.2", + "system-configuration 0.5.1", "tokio", "tokio-rustls 0.24.1", "tower-service", @@ -9397,7 +13478,49 @@ dependencies = [ "wasm-bindgen-futures", "web-sys", "webpki-roots 0.25.4", - "winreg", + "winreg 0.50.0", +] + +[[package]] +name = "reqwest" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "http-body-util", + "hyper 1.3.1", + "hyper-rustls 0.27.2", + "hyper-util", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite 0.2.14", + "quinn 0.11.2", + "rustls 0.23.10", + "rustls-pemfile 2.1.2", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper 1.0.1", + "tokio", + "tokio-rustls 0.26.0", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots 0.26.3", + "winreg 0.52.0", ] [[package]] @@ -9417,7 +13540,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ "hmac 0.12.1", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -9459,7 +13582,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.12", + "getrandom 0.2.15", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -9498,13 +13621,130 @@ dependencies = [ ] [[package]] -name = "rocksdb" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +name = "rocksdb" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +dependencies = [ + "libc", + "librocksdb-sys", +] + +[[package]] +name = "rococo-runtime" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "binary-merkle-tree", + "bitvec", + "frame-benchmarking", + "frame-executive", + "frame-metadata-hash-extension", + "frame-support", + "frame-system", + "frame-system-benchmarking", + "frame-system-rpc-runtime-api", + "frame-try-runtime", + "hex-literal", + "log", + "pallet-asset-rate", + "pallet-authority-discovery", + "pallet-authorship", + "pallet-babe", + "pallet-balances", + "pallet-beefy", + "pallet-beefy-mmr", + "pallet-bounties", + "pallet-child-bounties", + "pallet-collective", + "pallet-conviction-voting", + "pallet-democracy", + "pallet-elections-phragmen", + "pallet-grandpa", + "pallet-identity", + "pallet-indices", + "pallet-membership", + "pallet-message-queue", + "pallet-mmr", + "pallet-multisig", + "pallet-nis", + "pallet-offences", + "pallet-parameters", + "pallet-preimage", + "pallet-proxy", + "pallet-ranked-collective", + "pallet-recovery", + "pallet-referenda", + "pallet-root-testing", + "pallet-scheduler", + "pallet-session", + "pallet-society", + "pallet-staking", + "pallet-state-trie-migration", + "pallet-sudo", + "pallet-timestamp", + "pallet-tips", + "pallet-transaction-payment", + "pallet-transaction-payment-rpc-runtime-api", + "pallet-treasury", + "pallet-utility", + "pallet-vesting", + "pallet-whitelist", + "pallet-xcm", + "pallet-xcm-benchmarks", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-common", + "polkadot-runtime-parachains", + "rococo-runtime-constants", + "scale-info", + "serde", + "serde_derive", + "serde_json", + "smallvec", + "sp-api", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-authority-discovery", + "sp-block-builder", + "sp-consensus-babe", + "sp-consensus-beefy", + "sp-consensus-grandpa", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-genesis-builder", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-offchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-transaction-pool", + "sp-version", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "static_assertions", + "substrate-wasm-builder", + "xcm-fee-payment-runtime-api", +] + +[[package]] +name = "rococo-runtime-constants" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "libc", - "librocksdb-sys", + "frame-support", + "polkadot-primitives", + "polkadot-runtime-common", + "smallvec", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", ] [[package]] @@ -9514,12 +13754,12 @@ source = "git+https://github.com/analog-labs/chain-connectors#bca13f762bfd861752 dependencies = [ "anyhow", "async-trait", - "derive_more 0.99.17", + "derive_more 0.99.18", "dirs-next", "fraction", "futures", "futures-util", - "getrandom 0.2.12", + "getrandom 0.2.15", "hex", "js-sys", "log", @@ -9689,7 +13929,7 @@ dependencies = [ "subxt 0.34.0", "tokio", "tokio-retry", - "tokio-tungstenite", + "tokio-tungstenite 0.21.0", "tracing", "url", "vergen", @@ -9852,7 +14092,7 @@ dependencies = [ "sha2 0.10.8", "signature 2.2.0", "spki", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -9901,9 +14141,9 @@ dependencies = [ [[package]] name = "ruint" -version = "1.12.1" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f308135fef9fc398342da5472ce7c484529df23743fb7c734e0f3d472971e62" +checksum = "2c3cc4c2511671f327125da14133d0c5c5d137f006a1017a16f557bc85b16286" dependencies = [ "alloy-rlp", "ark-ff 0.3.0", @@ -9925,16 +14165,16 @@ dependencies = [ [[package]] name = "ruint-macro" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f86854cf50259291520509879a5c294c3c9a4c334e9ff65071c51e42ef1e2343" +checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" [[package]] name = "runtime-common" version = "1.0.0" dependencies = [ - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -9951,9 +14191,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" @@ -9991,7 +14231,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ - "semver 1.0.22", + "semver 1.0.23", ] [[package]] @@ -10033,14 +14273,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.32" +version = "0.38.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys 0.4.13", + "linux-raw-sys 0.4.14", "windows-sys 0.52.0", ] @@ -10071,9 +14311,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.10" +version = "0.21.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", "ring 0.17.8", @@ -10083,15 +14323,30 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.2" +version = "0.22.4" +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.4", + "subtle 2.6.1", + "zeroize", +] + +[[package]] +name = "rustls" +version = "0.23.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" +checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402" dependencies = [ "log", + "once_cell", "ring 0.17.8", "rustls-pki-types", - "rustls-webpki 0.102.2", - "subtle 2.5.0", + "rustls-webpki 0.102.4", + "subtle 2.6.1", "zeroize", ] @@ -10114,7 +14369,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "rustls-pki-types", "schannel", "security-framework", @@ -10131,19 +14386,46 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab" +checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.3.1" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" + +[[package]] +name = "rustls-platform-verifier" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e3beb939bcd33c269f4bf946cc829fcd336370267c4a927ac0399c84a3151a1" +dependencies = [ + "core-foundation", + "core-foundation-sys", + "jni", + "log", + "once_cell", + "rustls 0.23.10", + "rustls-native-certs 0.7.0", + "rustls-platform-verifier-android", + "rustls-webpki 0.102.4", + "security-framework", + "security-framework-sys", + "webpki-roots 0.26.3", + "winapi", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8" +checksum = "84e217e7fdc8466b5b35d30f8c0a30febd29173df4a3a0c2115d306b9c4117ad" [[package]] name = "rustls-webpki" @@ -10157,9 +14439,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.102.2" +version = "0.102.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" +checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" dependencies = [ "ring 0.17.8", "rustls-pki-types", @@ -10168,9 +14450,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.14" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" [[package]] name = "rusty-fork" @@ -10191,7 +14473,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58c4eb8a81997cf040a091d1f7e1938aeab6749d3a0dfa73af43cdc32393483d" dependencies = [ "byteorder", - "derive_more 0.99.17", + "derive_more 0.99.18", "twox-hash", ] @@ -10208,15 +14490,24 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.17" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "safe-mix" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" +checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c" +dependencies = [ + "rustc_version 0.2.3", +] [[package]] name = "safe_arch" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354" +checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" dependencies = [ "bytemuck", ] @@ -10242,18 +14533,49 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "log", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", +] + +[[package]] +name = "sc-authority-discovery" +version = "0.34.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "async-trait", + "futures", + "futures-timer", + "ip_network", + "libp2p", + "linked_hash_set", "log", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "multihash 0.17.0", + "multihash-codetable", + "parity-scale-codec", + "prost 0.12.6", + "prost-build 0.12.6", + "rand 0.8.5", + "sc-client-api", + "sc-network", + "sc-network-types", + "sp-api", + "sp-authority-discovery", + "sp-blockchain", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-basic-authorship" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "futures", "futures-timer", @@ -10266,33 +14588,33 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-chain-spec" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +version = "28.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "docify", "log", "memmap2 0.9.4", @@ -10305,36 +14627,37 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-genesis-builder", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sc-cli" version = "0.36.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "chrono", "clap", "fdlimit", "futures", - "itertools 0.10.5", + "itertools 0.11.0", "libp2p-identity", "log", "names", @@ -10355,11 +14678,11 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keyring 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-panic-handler 13.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", "thiserror", "tokio", @@ -10368,34 +14691,34 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-executor", "sc-transaction-pool-api", "sc-utils", "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-statement-store", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "hash-db", "kvdb", @@ -10405,40 +14728,40 @@ dependencies = [ "log", "parity-db", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-database", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "futures", "futures-timer", - "libp2p-identity", "log", - "mockall", - "parking_lot 0.12.1", + "mockall 0.11.4", + "parking_lot 0.12.3", "sc-client-api", + "sc-network-types", "sc-utils", "serde", "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "thiserror", ] @@ -10446,17 +14769,17 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", - "fork-tree 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "fork-tree 12.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "futures", "log", "num-bigint", "num-rational", "num-traits", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-consensus", "sc-consensus-epochs", @@ -10464,50 +14787,128 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool-api", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "substrate-prometheus-endpoint", + "thiserror", +] + +[[package]] +name = "sc-consensus-babe-rpc" +version = "0.34.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "futures", + "jsonrpsee 0.22.5", + "sc-consensus-babe", + "sc-consensus-epochs", + "sc-rpc-api", + "serde", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", +] + +[[package]] +name = "sc-consensus-beefy" +version = "13.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "array-bytes 6.2.3", + "async-channel 1.9.0", + "async-trait", + "fnv", + "futures", + "log", + "parity-scale-codec", + "parking_lot 0.12.3", + "sc-client-api", + "sc-consensus", + "sc-network", + "sc-network-gossip", + "sc-network-sync", + "sc-network-types", + "sc-utils", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-blockchain", + "sp-consensus", + "sp-consensus-beefy", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "thiserror", + "tokio", + "wasm-timer", +] + +[[package]] +name = "sc-consensus-beefy-rpc" +version = "13.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "futures", + "jsonrpsee 0.22.5", + "log", + "parity-scale-codec", + "parking_lot 0.12.3", + "sc-consensus-beefy", + "sc-rpc", + "serde", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-consensus-beefy", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", ] [[package]] name = "sc-consensus-epochs" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "fork-tree 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "fork-tree 12.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "parity-scale-codec", "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-consensus-grandpa" version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "ahash 0.8.11", - "array-bytes 6.2.2", + "array-bytes 6.2.3", "async-trait", "dyn-clone", "finality-grandpa", - "fork-tree 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "fork-tree 12.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "futures", "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "sc-block-builder", "sc-chain-spec", @@ -10517,28 +14918,49 @@ dependencies = [ "sc-network-common", "sc-network-gossip", "sc-network-sync", + "sc-network-types", "sc-telemetry", "sc-transaction-pool-api", "sc-utils", "serde_json", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "thiserror", ] +[[package]] +name = "sc-consensus-grandpa-rpc" +version = "0.19.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "finality-grandpa", + "futures", + "jsonrpsee 0.22.5", + "log", + "parity-scale-codec", + "sc-client-api", + "sc-consensus-grandpa", + "sc-rpc", + "serde", + "sp-blockchain", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", +] + [[package]] name = "sc-consensus-slots" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "futures", @@ -10548,48 +14970,48 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-blockchain", "sp-consensus", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-executor-common", "sc-executor-polkavm", "sc-executor-wasmtime", "schnellru", "sp-api", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-panic-handler 13.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "tracing", ] [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "polkavm", "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "wasm-instrument", ] @@ -10597,36 +15019,36 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "log", "polkavm", "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "anyhow", "cfg-if", "libc", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rustix 0.36.17", "sc-allocator", "sc-executor-common", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "wasmtime", ] [[package]] name = "sc-informant" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "ansi_term", "futures", @@ -10637,62 +15059,63 @@ dependencies = [ "sc-network-common", "sc-network-sync", "sp-blockchain", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-keystore" version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", - "parking_lot 0.12.1", + "array-bytes 6.2.3", + "parking_lot 0.12.3", "serde_json", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 4.2.0", + "array-bytes 6.2.3", "arrayvec 0.7.4", "blake2 0.10.6", "bytes", "futures", "futures-timer", - "libp2p-identity", "log", "mixnet", "multiaddr", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-network", + "sc-network-types", "sc-transaction-pool-api", "sp-api", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-mixnet", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "async-channel 1.9.0", "async-trait", "asynchronous-codec", "bytes", + "cid 0.9.0", "either", "fnv", "futures", @@ -10700,73 +15123,61 @@ dependencies = [ "ip_network", "libp2p", "linked_hash_set", + "litep2p", "log", - "mockall", + "mockall 0.11.4", + "once_cell", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "partial_sort", "pin-project", + "prost 0.12.6", + "prost-build 0.12.6", "rand 0.8.5", "sc-client-api", "sc-network-common", + "sc-network-types", "sc-utils", + "schnellru", "serde", "serde_json", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "thiserror", "tokio", "tokio-stream", "unsigned-varint", + "void", "wasm-timer", "zeroize", ] -[[package]] -name = "sc-network-bitswap" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" -dependencies = [ - "async-channel 1.9.0", - "cid", - "futures", - "libp2p-identity", - "log", - "prost 0.12.3", - "prost-build", - "sc-client-api", - "sc-network", - "sp-blockchain", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "thiserror", - "unsigned-varint", -] - [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "bitflags 1.3.2", "futures", "libp2p-identity", "parity-scale-codec", - "prost-build", + "prost-build 0.12.6", "sc-consensus", + "sc-network-types", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-network-gossip" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "ahash 0.8.11", "futures", @@ -10776,8 +15187,9 @@ dependencies = [ "sc-network", "sc-network-common", "sc-network-sync", + "sc-network-types", "schnellru", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "tracing", ] @@ -10785,54 +15197,55 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "async-channel 1.9.0", "futures", - "libp2p-identity", "log", "parity-scale-codec", - "prost 0.12.3", - "prost-build", + "prost 0.12.6", + "prost-build 0.12.6", "sc-client-api", "sc-network", + "sc-network-types", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sc-network-sync" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "async-channel 1.9.0", "async-trait", - "fork-tree 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "fork-tree 12.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "futures", "futures-timer", "libp2p", "log", - "mockall", + "mockall 0.11.4", "parity-scale-codec", - "prost 0.12.3", - "prost-build", + "prost 0.12.6", + "prost-build 0.12.6", "sc-client-api", "sc-consensus", "sc-network", "sc-network-common", + "sc-network-types", "sc-utils", "schnellru", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", "thiserror", "tokio", @@ -10842,9 +15255,9 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "futures", "libp2p", "log", @@ -10852,42 +15265,60 @@ dependencies = [ "sc-network", "sc-network-common", "sc-network-sync", + "sc-network-types", "sc-utils", "sp-consensus", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "substrate-prometheus-endpoint", ] +[[package]] +name = "sc-network-types" +version = "0.10.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bs58 0.5.1", + "ed25519-dalek 2.1.1", + "libp2p-identity", + "litep2p", + "multiaddr", + "multihash 0.17.0", + "rand 0.8.5", + "thiserror", + "zeroize", +] + [[package]] name = "sc-offchain" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "bytes", "fnv", "futures", "futures-timer", - "hyper", - "hyper-rustls", + "hyper 0.14.29", + "hyper-rustls 0.24.2", "libp2p", "log", "num_cpus", "once_cell", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "sc-client-api", "sc-network", "sc-network-common", + "sc-network-types", "sc-transaction-pool-api", "sc-utils", "sp-api", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "threadpool", "tracing", ] @@ -10895,7 +15326,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10904,13 +15335,13 @@ dependencies = [ [[package]] name = "sc-rpc" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "futures", "jsonrpsee 0.22.5", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -10922,11 +15353,11 @@ dependencies = [ "serde_json", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-offchain", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-session", "sp-statement-store", "sp-version", @@ -10936,7 +15367,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "jsonrpsee 0.22.5", "parity-scale-codec", @@ -10946,9 +15377,9 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", "thiserror", ] @@ -10956,12 +15387,14 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "forwarded-header-value", "futures", "governor", "http 0.2.12", - "hyper", + "hyper 0.14.29", + "ip_network", "jsonrpsee 0.22.5", "log", "serde_json", @@ -10974,28 +15407,29 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "futures", "futures-util", "hex", "jsonrpsee 0.22.5", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "sc-chain-spec", "sc-client-api", "sc-rpc", "sc-transaction-pool-api", "sc-utils", + "schnellru", "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", "thiserror", "tokio", @@ -11005,7 +15439,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "directories", @@ -11015,7 +15449,7 @@ dependencies = [ "jsonrpsee 0.22.5", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "rand 0.8.5", "sc-chain-spec", @@ -11026,11 +15460,11 @@ dependencies = [ "sc-informant", "sc-keystore", "sc-network", - "sc-network-bitswap", "sc-network-common", "sc-network-light", "sc-network-sync", "sc-network-transactions", + "sc-network-types", "sc-rpc", "sc-rpc-server", "sc-rpc-spec-v2", @@ -11046,16 +15480,16 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-session", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", "static_init", "substrate-prometheus-endpoint", @@ -11069,20 +15503,52 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.30.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "log", + "parity-scale-codec", + "parking_lot 0.12.3", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "sc-storage-monitor" +version = "0.16.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "clap", + "fs4", "log", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", + "tokio", +] + +[[package]] +name = "sc-sync-state-rpc" +version = "0.34.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "jsonrpsee 0.22.5", "parity-scale-codec", - "parking_lot 0.12.1", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sc-chain-spec", + "sc-client-api", + "sc-consensus-babe", + "sc-consensus-epochs", + "sc-consensus-grandpa", + "serde", + "serde_json", + "sp-blockchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", ] [[package]] name = "sc-sysinfo" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "derive_more 0.99.17", + "derive_more 0.99.18", "futures", "libc", "log", @@ -11092,24 +15558,25 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "chrono", "futures", "libp2p", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "rand 0.8.5", + "sc-network", "sc-utils", "serde", "serde_json", @@ -11120,7 +15587,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "ansi_term", "chrono", @@ -11129,7 +15596,7 @@ dependencies = [ "libc", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "regex", "rustc-hash", "sc-client-api", @@ -11137,31 +15604,31 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "tracing", - "tracing-log 0.1.4", - "tracing-subscriber 0.2.25", + "tracing-log 0.2.0", + "tracing-subscriber 0.3.18", ] [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sc-transaction-pool" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "futures", @@ -11169,17 +15636,17 @@ dependencies = [ "linked-hash-map", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-transaction-pool-api", "sc-utils", "serde", "sp-api", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-transaction-pool", "substrate-prometheus-endpoint", "thiserror", @@ -11188,7 +15655,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "futures", @@ -11196,24 +15663,24 @@ dependencies = [ "parity-scale-codec", "serde", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-channel 1.9.0", "futures", "futures-timer", "lazy_static", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "prometheus", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -11245,7 +15712,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7caaf753f8ed1ab4752c6afb20174f03598c664724e0e32628e161c21000ff76" dependencies = [ - "derive_more 0.99.17", + "derive_more 0.99.18", "parity-scale-codec", "primitive-types", "scale-bits 0.4.0", @@ -11256,15 +15723,15 @@ dependencies = [ [[package]] name = "scale-decode" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b12ebca36cec2a3f983c46295b282b35e5f8496346fb859a8776dad5389e5389" +checksum = "e98f3262c250d90e700bb802eb704e1f841e03331c2eb815e46516c4edbf5b27" dependencies = [ - "derive_more 0.99.17", + "derive_more 0.99.18", "parity-scale-codec", "primitive-types", "scale-bits 0.6.0", - "scale-decode-derive 0.13.0", + "scale-decode-derive 0.13.1", "scale-type-resolver", "smallvec", ] @@ -11284,9 +15751,9 @@ dependencies = [ [[package]] name = "scale-decode-derive" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06a387a62a2be6ec532eb4f9e1fc800f26d462c06b335d9c3ee54559a355b9fb" +checksum = "9bb22f574168103cdd3133b19281639ca65ad985e24612728f727339dcaf4021" dependencies = [ "darling 0.14.4", "proc-macro2", @@ -11300,7 +15767,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d70cb4b29360105483fac1ed567ff95d65224a14dd275b6303ed0a654c78de5" dependencies = [ - "derive_more 0.99.17", + "derive_more 0.99.18", "parity-scale-codec", "primitive-types", "scale-bits 0.4.0", @@ -11315,7 +15782,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ba0b9c48dc0eb20c60b083c29447c0c4617cb7c4a4c9fef72aa5c5bc539e15e" dependencies = [ - "derive_more 0.99.17", + "derive_more 0.99.18", "parity-scale-codec", "primitive-types", "scale-bits 0.6.0", @@ -11358,7 +15825,7 @@ checksum = "eca070c12893629e2cc820a9761bedf6ce1dcddc9852984d1dc734b8bd9bd024" dependencies = [ "bitvec", "cfg-if", - "derive_more 0.99.17", + "derive_more 0.99.18", "parity-scale-codec", "scale-info-derive", "serde", @@ -11395,7 +15862,7 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.53", + "syn 2.0.68", "thiserror", ] @@ -11408,7 +15875,7 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.53", + "syn 2.0.68", "thiserror", ] @@ -11420,7 +15887,7 @@ checksum = "58223c7691bf0bd46b43c9aea6f0472d1067f378d574180232358d7c6e0a8089" dependencies = [ "base58", "blake2 0.10.6", - "derive_more 0.99.17", + "derive_more 0.99.18", "either", "frame-metadata 15.1.0", "parity-scale-codec", @@ -11440,12 +15907,12 @@ checksum = "f2cf9738c263c665144177201126bdad39d3d62512152f178f35002228026976" dependencies = [ "base58", "blake2 0.10.6", - "derive_more 0.99.17", + "derive_more 0.99.18", "either", "frame-metadata 15.1.0", "parity-scale-codec", "scale-bits 0.6.0", - "scale-decode 0.13.0", + "scale-decode 0.13.1", "scale-encode 0.7.1", "scale-info", "scale-type-resolver", @@ -11464,9 +15931,9 @@ dependencies = [ [[package]] name = "schnellru" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" +checksum = "c9a8ef13a93c54d20580de1e5c413e624e53121d42fc7e2c11d10ef7f8b02367" dependencies = [ "ahash 0.8.11", "cfg-if", @@ -11502,7 +15969,7 @@ dependencies = [ "rand 0.7.3", "rand_core 0.5.1", "sha2 0.8.2", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -11532,13 +15999,13 @@ dependencies = [ "aead 0.5.2", "arrayref", "arrayvec 0.7.4", - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "getrandom_or_panic", "merlin 3.0.0", "rand_core 0.6.4", "serde_bytes", "sha2 0.10.8", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -11574,6 +16041,21 @@ dependencies = [ "untrusted 0.9.0", ] +[[package]] +name = "sctp-proto" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6220f78bb44c15f326b0596113305f6101097a18755d53727a575c97e09fb24" +dependencies = [ + "bytes", + "crc", + "fxhash", + "log", + "rand 0.8.5", + "slab", + "thiserror", +] + [[package]] name = "sec1" version = "0.7.3" @@ -11585,7 +16067,7 @@ dependencies = [ "generic-array 0.14.7", "pkcs8", "serdect", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -11636,22 +16118,23 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.9.2" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.6.0", "core-foundation", "core-foundation-sys", "libc", + "num-bigint", "security-framework-sys", ] [[package]] name = "security-framework-sys" -version = "2.9.1" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" dependencies = [ "core-foundation-sys", "libc", @@ -11659,9 +16142,9 @@ dependencies = [ [[package]] name = "self_cell" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba" +checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a" [[package]] name = "semver" @@ -11692,9 +16175,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.22" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" dependencies = [ "serde", ] @@ -11730,29 +16213,28 @@ dependencies = [ ] [[package]] -name = "serde-error" -version = "0.1.2" +name = "serde-big-array" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e988182713aeed6a619a88bca186f6d6407483485ffe44c869ee264f8eabd13f" +checksum = "cd31f59f6fe2b0c055371bb2f16d7f0aa7d8881676c04a55b1596d1a17cd10a4" dependencies = [ "serde", ] [[package]] -name = "serde_bencode" -version = "0.2.4" +name = "serde-error" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a70dfc7b7438b99896e7f8992363ab8e2c4ba26aa5ec675d32d1c3c2c33d413e" +checksum = "e988182713aeed6a619a88bca186f6d6407483485ffe44c869ee264f8eabd13f" dependencies = [ "serde", - "serde_bytes", ] [[package]] name = "serde_bytes" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" +checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" dependencies = [ "serde", ] @@ -11765,7 +16247,7 @@ checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -11779,9 +16261,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.118" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "d947f6b3163d8857ea16c4fa0dd4840d52f3041039a85decd46867eb1abef2e4" dependencies = [ "itoa", "ryu", @@ -11801,9 +16283,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" dependencies = [ "serde", ] @@ -11820,29 +16302,6 @@ dependencies = [ "serde", ] -[[package]] -name = "serde_with" -version = "1.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" -dependencies = [ - "hex", - "serde", - "serde_with_macros", -] - -[[package]] -name = "serde_with_macros" -version = "1.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" -dependencies = [ - "darling 0.13.4", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "serdect" version = "0.2.0" @@ -11866,6 +16325,18 @@ dependencies = [ "opaque-debug 0.3.1", ] +[[package]] +name = "sha-1" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest 0.10.7", + "sha1-asm", +] + [[package]] name = "sha1" version = "0.6.1" @@ -11886,6 +16357,15 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha1-asm" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "286acebaf8b67c1130aedffad26f594eff0c1292389158135327d2e23aed582b" +dependencies = [ + "cc", +] + [[package]] name = "sha1_smol" version = "1.0.0" @@ -11940,9 +16420,9 @@ dependencies = [ [[package]] name = "sha3-asm" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bac61da6b35ad76b195eb4771210f947734321a8d81d7738e1580d953bc7a15e" +checksum = "a9b57fd861253bff08bb1919e995f90ba8f4889de2726091c8876f3a4e823b40" dependencies = [ "cc", "cfg-if", @@ -11975,9 +16455,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" dependencies = [ "libc", ] @@ -12017,7 +16497,7 @@ version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cae9a3fcdadafb6d97f4c0e007e4247b114ee0f119f650c3cbf3a8b3a1479694" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] @@ -12026,21 +16506,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01607fe2e61894468c6dc0b26103abb073fb08b79a3d9e4b6d76a1a341549958" dependencies = [ - "bitflags 2.5.0", -] - -[[package]] -name = "simple-mdns" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "253138b1b321977599543914b4658e1fdf7b966a58e2f69944da85f184ca78a8" -dependencies = [ - "lazy_static", - "log", - "radix_trie", - "simple-dns 0.5.7", - "socket2 0.5.6", - "tokio", + "bitflags 2.6.0", ] [[package]] @@ -12076,6 +16542,18 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" +[[package]] +name = "slot-range-helper" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "enumn", + "parity-scale-codec", + "paste", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + [[package]] name = "smallvec" version = "1.13.2" @@ -12088,11 +16566,11 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e635339259e51ef85ac7aa29a1cd991b957047507288697a690e80ab97d07cad" dependencies = [ - "async-channel 2.2.0", + "async-channel 2.3.1", "async-executor", "async-fs", - "async-io 2.3.2", - "async-lock 3.3.0", + "async-io 2.3.3", + "async-lock 3.4.0", "async-net", "async-process", "blocking", @@ -12106,7 +16584,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d1eaa97d77be4d026a1e7ffad1bb3b78448763b357ea6f8188d3e6f736a9b9" dependencies = [ "arrayvec 0.7.4", - "async-lock 3.3.0", + "async-lock 3.4.0", "atomic-take", "base64 0.21.7", "bip39", @@ -12114,7 +16592,7 @@ dependencies = [ "bs58 0.5.1", "chacha20", "crossbeam-queue", - "derive_more 0.99.17", + "derive_more 0.99.18", "ed25519-zebra 4.0.3", "either", "event-listener 4.0.3", @@ -12147,7 +16625,7 @@ dependencies = [ "siphasher 1.0.1", "slab", "smallvec", - "soketto", + "soketto 0.7.1", "twox-hash", "wasmi", "x25519-dalek 2.0.1", @@ -12155,62 +16633,373 @@ dependencies = [ ] [[package]] -name = "smoldot-light" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5496f2d116b7019a526b1039ec2247dd172b8670633b1a64a614c9ea12c9d8c7" +name = "smoldot-light" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5496f2d116b7019a526b1039ec2247dd172b8670633b1a64a614c9ea12c9d8c7" +dependencies = [ + "async-channel 2.3.1", + "async-lock 3.4.0", + "base64 0.21.7", + "blake2-rfc", + "derive_more 0.99.18", + "either", + "event-listener 4.0.3", + "fnv", + "futures-channel", + "futures-lite 2.3.0", + "futures-util", + "hashbrown 0.14.5", + "hex", + "itertools 0.12.1", + "log", + "lru 0.12.3", + "no-std-net", + "parking_lot 0.12.3", + "pin-project", + "rand 0.8.5", + "rand_chacha 0.3.1", + "serde", + "serde_json", + "siphasher 1.0.1", + "slab", + "smol", + "smoldot", + "zeroize", +] + +[[package]] +name = "snap" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" + +[[package]] +name = "snow" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85" +dependencies = [ + "aes-gcm 0.10.3", + "blake2 0.10.6", + "chacha20poly1305", + "curve25519-dalek 4.1.3", + "rand_core 0.6.4", + "ring 0.17.8", + "rustc_version 0.4.0", + "sha2 0.10.8", + "subtle 2.6.1", +] + +[[package]] +name = "snowbridge-amcl" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460a9ed63cdf03c1b9847e8a12a5f5ba19c4efd5869e4a737e05be25d7c427e5" +dependencies = [ + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "snowbridge-beacon-primitives" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "byte-slice-cast", + "frame-support", + "hex", + "parity-scale-codec", + "rlp", + "scale-info", + "serde", + "snowbridge-ethereum", + "snowbridge-milagro-bls", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "ssz_rs", + "ssz_rs_derive", +] + +[[package]] +name = "snowbridge-core" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "ethabi-decode", + "frame-support", + "frame-system", + "hex-literal", + "parity-scale-codec", + "polkadot-parachain-primitives", + "scale-info", + "serde", + "snowbridge-beacon-primitives", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", +] + +[[package]] +name = "snowbridge-ethereum" +version = "0.3.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "ethabi-decode", + "ethbloom", + "ethereum-types", + "hex-literal", + "parity-bytes", + "parity-scale-codec", + "rlp", + "scale-info", + "serde", + "serde-big-array", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-milagro-bls" +version = "1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "026aa8638f690a53e3f7676024b9e913b1cab0111d1b7b92669d40a188f9d7e6" +dependencies = [ + "hex", + "lazy_static", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "snowbridge-amcl", + "zeroize", +] + +[[package]] +name = "snowbridge-outbound-queue-merkle-tree" +version = "0.3.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-outbound-queue-runtime-api" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "parity-scale-codec", + "snowbridge-core", + "snowbridge-outbound-queue-merkle-tree", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-pallet-ethereum-client" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "hex-literal", + "log", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "serde", + "snowbridge-beacon-primitives", + "snowbridge-core", + "snowbridge-ethereum", + "snowbridge-pallet-ethereum-client-fixtures", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "static_assertions", +] + +[[package]] +name = "snowbridge-pallet-ethereum-client-fixtures" +version = "0.9.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "hex-literal", + "snowbridge-beacon-primitives", + "snowbridge-core", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-pallet-inbound-queue" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "alloy-primitives 0.4.2", + "alloy-sol-types 0.4.2", + "frame-benchmarking", + "frame-support", + "frame-system", + "hex-literal", + "log", + "pallet-balances", + "parity-scale-codec", + "scale-info", + "serde", + "snowbridge-beacon-primitives", + "snowbridge-core", + "snowbridge-pallet-inbound-queue-fixtures", + "snowbridge-router-primitives", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-executor", +] + +[[package]] +name = "snowbridge-pallet-inbound-queue-fixtures" +version = "0.10.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "hex-literal", + "snowbridge-beacon-primitives", + "snowbridge-core", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-pallet-outbound-queue" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "bridge-hub-common", + "ethabi-decode", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "snowbridge-core", + "snowbridge-outbound-queue-merkle-tree", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "snowbridge-pallet-system" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "snowbridge-core", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-executor", +] + +[[package]] +name = "snowbridge-router-primitives" +version = "0.9.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "async-channel 2.2.0", - "async-lock 3.3.0", - "base64 0.21.7", - "blake2-rfc", - "derive_more 0.99.17", - "either", - "event-listener 4.0.3", - "fnv", - "futures-channel", - "futures-lite 2.3.0", - "futures-util", - "hashbrown 0.14.5", - "hex", - "itertools 0.12.1", + "frame-support", + "hex-literal", "log", - "lru 0.12.3", - "no-std-net", - "parking_lot 0.12.1", - "pin-project", - "rand 0.8.5", - "rand_chacha 0.3.1", - "serde", - "serde_json", - "siphasher 1.0.1", - "slab", - "smol", - "smoldot", - "zeroize", + "parity-scale-codec", + "scale-info", + "snowbridge-core", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-executor", ] [[package]] -name = "snap" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" +name = "snowbridge-runtime-common" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "log", + "parity-scale-codec", + "snowbridge-core", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] [[package]] -name = "snow" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85" +name = "snowbridge-runtime-test-common" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "aes-gcm 0.10.3", - "blake2 0.10.6", - "chacha20poly1305", - "curve25519-dalek 4.1.2", - "rand_core 0.6.4", - "ring 0.17.8", - "rustc_version 0.4.0", - "sha2 0.10.8", - "subtle 2.5.0", + "cumulus-pallet-parachain-system", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-collator-selection", + "pallet-message-queue", + "pallet-session", + "pallet-timestamp", + "pallet-utility", + "pallet-xcm", + "parachains-runtimes-test-utils", + "parity-scale-codec", + "snowbridge-core", + "snowbridge-pallet-ethereum-client", + "snowbridge-pallet-ethereum-client-fixtures", + "snowbridge-pallet-outbound-queue", + "snowbridge-pallet-system", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keyring 31.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-executor", +] + +[[package]] +name = "snowbridge-system-runtime-api" +version = "0.2.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "snowbridge-core", + "sp-api", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", ] [[package]] @@ -12225,9 +17014,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", "windows-sys 0.52.0", @@ -12247,7 +17036,22 @@ dependencies = [ "httparse", "log", "rand 0.8.5", - "sha-1", + "sha-1 0.9.8", +] + +[[package]] +name = "soketto" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures", + "httparse", + "log", + "rand 0.8.5", + "sha1 0.10.6", ] [[package]] @@ -12267,21 +17071,21 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "hash-db", "log", "parity-scale-codec", "scale-info", "sp-api-proc-macro", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-metadata-ir", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version", "thiserror", ] @@ -12289,7 +17093,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "Inflector", "blake2 0.10.6", @@ -12297,7 +17101,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -12317,14 +17121,14 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -12345,14 +17149,15 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "docify", "integer-sqrt", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "static_assertions", ] @@ -12362,7 +17167,7 @@ version = "0.4.2" source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" dependencies = [ "ark-bls12-381-ext", - "sp-crypto-ec-utils", + "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk)", ] [[package]] @@ -12371,93 +17176,122 @@ version = "0.4.2" source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" dependencies = [ "ark-ed-on-bls12-381-bandersnatch-ext", - "sp-crypto-ec-utils", + "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk)", +] + +[[package]] +name = "sp-authority-discovery" +version = "26.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "sp-api", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "futures", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "schnellru", "sp-api", "sp-consensus", "sp-database", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "futures", "log", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-consensus-slots", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-timestamp", ] [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-consensus-slots", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-timestamp", ] +[[package]] +name = "sp-consensus-beefy" +version = "13.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "lazy_static", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "strum 0.26.3", +] + [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "finality-grandpa", "log", @@ -12465,22 +17299,31 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "sp-consensus-pow" +version = "0.32.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "sp-api", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", "sp-timestamp", ] @@ -12506,7 +17349,7 @@ dependencies = [ "log", "merlin 2.0.1", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "primitive-types", "rand 0.8.5", @@ -12535,7 +17378,7 @@ version = "28.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f230cb12575455070da0fc174815958423a0b9a641d5e304a9457113c7cb4007" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "bip39", "bitflags 1.3.2", "blake2 0.10.6", @@ -12552,7 +17395,7 @@ dependencies = [ "log", "merlin 3.0.0", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "primitive-types", "rand 0.8.5", @@ -12561,7 +17404,7 @@ dependencies = [ "secp256k1 0.28.2", "secrecy", "serde", - "sp-core-hashing 15.0.0", + "sp-core-hashing 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-externalities 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-runtime-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -12578,28 +17421,28 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "array-bytes 6.2.2", + "array-bytes 6.2.3", "bandersnatch_vrfs", "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections 0.2.0", "bs58 0.5.1", "dyn-clonable", - "ed25519-zebra 3.1.0", + "ed25519-zebra 4.0.3", "futures", "hash-db", "hash256-std-hasher", "impl-serde", - "itertools 0.10.5", + "itertools 0.11.0", "k256", "libsecp256k1", "log", "merlin 3.0.0", "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "primitive-types", "rand 0.8.5", @@ -12608,12 +17451,12 @@ dependencies = [ "secp256k1 0.28.2", "secrecy", "serde", - "sp-crypto-hashing 0.0.0", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "ss58-registry", "substrate-bip39 0.4.7", "thiserror", @@ -12651,10 +17494,38 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "sp-core-hashing" +version = "15.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "sp-crypto-ec-utils" +version = "0.10.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "ark-bls12-377", + "ark-bls12-377-ext", + "ark-bls12-381", + "ark-bls12-381-ext", + "ark-bw6-761", + "ark-bw6-761-ext", + "ark-ec", + "ark-ed-on-bls12-377", + "ark-ed-on-bls12-377-ext", + "ark-ed-on-bls12-381-bandersnatch", + "ark-ed-on-bls12-381-bandersnatch-ext", + "ark-scale", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -12673,8 +17544,9 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" -version = "0.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc9927a7f81334ed5b8a98a4a978c81324d12bd9713ec76b5c68fd410174c5eb" dependencies = [ "blake2b_simd", "byteorder", @@ -12687,8 +17559,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc9927a7f81334ed5b8a98a4a978c81324d12bd9713ec76b5c68fd410174c5eb" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "blake2b_simd", "byteorder", @@ -12700,21 +17571,21 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" -version = "0.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "quote", - "sp-crypto-hashing 0.0.0", - "syn 2.0.53", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "syn 2.0.68", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "kvdb", - "parking_lot 0.12.1", + "parking_lot 0.12.3", ] [[package]] @@ -12725,7 +17596,7 @@ checksum = "c7f531814d2f16995144c74428830ccf7d94ff4a7749632b83ad8199b181140c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -12736,27 +17607,27 @@ checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -12786,18 +17657,17 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "environmental", "parity-scale-codec", @@ -12806,26 +17676,26 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +version = "0.8.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "parity-scale-codec", + "scale-info", "serde_json", "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] @@ -12857,7 +17727,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "bytes", "ed25519-dalek 2.1.1", @@ -12867,15 +17737,15 @@ dependencies = [ "polkavm-derive", "rustversion", "secp256k1 0.28.2", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "tracing", "tracing-core", ] @@ -12894,11 +17764,11 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "strum 0.24.1", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "strum 0.26.3", ] [[package]] @@ -12908,7 +17778,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96806a28a62ed9ddecd0b28857b1344d029390f7c5c42a2ff9199cbf5638635c" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sp-core 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-externalities 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", @@ -12917,18 +17787,18 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "parking_lot 0.12.3", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "thiserror", "zstd 0.12.4", @@ -12937,48 +17807,62 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", "scale-info", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", ] [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "sp-mmr-primitives" +version = "26.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "log", "parity-scale-codec", + "polkadot-ckb-merkle-mountain-range", "scale-info", + "serde", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "thiserror", ] [[package]] name = "sp-npos-elections" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "sp-api", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -12995,7 +17879,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "backtrace", "lazy_static", @@ -13005,11 +17889,11 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "rustc-hash", "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -13040,25 +17924,26 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "docify", "either", "hash256-std-hasher", "impl-trait-for-tuples", "log", + "num-traits", "parity-scale-codec", "paste", "rand 0.8.5", "scale-info", "serde", "simple-mermaid", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -13102,26 +17987,26 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive", "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-wasm-interface 20.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "static_assertions", ] [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13147,7 +18032,7 @@ dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -13161,62 +18046,60 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "Inflector", "expander", "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "Inflector", "expander", "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-keystore 0.34.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", ] [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "serde", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -13228,7 +18111,7 @@ dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "smallvec", "sp-core 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -13238,37 +18121,36 @@ dependencies = [ "sp-trie 29.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", "tracing", - "trie-db", + "trie-db 0.28.0", ] [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "smallvec", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-panic-handler 13.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-panic-handler 13.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "tracing", - "trie-db", + "trie-db 0.29.1", ] [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "aes-gcm 0.10.3", - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "ed25519-dalek 2.1.1", "hkdf 0.12.4", "parity-scale-codec", @@ -13276,13 +18158,12 @@ dependencies = [ "scale-info", "sha2 0.10.8", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-crypto-hashing 0.0.0", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime-interface 24.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "x25519-dalek 2.0.1", ] @@ -13302,12 +18183,12 @@ checksum = "12f8ee986414b0a9ad741776762f4083cd3a5128449b982a3919c4df36874834" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" [[package]] name = "sp-storage" @@ -13340,20 +18221,19 @@ dependencies = [ [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13365,13 +18245,12 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", ] @@ -13404,48 +18283,46 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", "tracing", "tracing-core", - "tracing-subscriber 0.2.25", + "tracing-subscriber 0.3.18", ] [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ "parity-scale-codec", "tracing", "tracing-core", - "tracing-subscriber 0.2.25", + "tracing-subscriber 0.3.18", ] [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "sp-api", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-inherents", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-trie 29.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -13460,7 +18337,7 @@ dependencies = [ "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "scale-info", "schnellru", @@ -13469,14 +18346,14 @@ dependencies = [ "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", "tracing", - "trie-db", + "trie-db 0.28.0", "trie-root", ] [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "ahash 0.8.11", "hash-db", @@ -13484,23 +18361,22 @@ dependencies = [ "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "scale-info", "schnellru", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-externalities 0.25.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "thiserror", "tracing", - "trie-db", + "trie-db 0.29.1", "trie-root", ] [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13508,8 +18384,8 @@ dependencies = [ "scale-info", "serde", "sp-crypto-hashing-proc-macro", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-version-proc-macro", "thiserror", ] @@ -13517,12 +18393,12 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -13556,26 +18432,23 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "anyhow", "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", "wasmtime", ] [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4842faf65d3628586d304fbcb6cb19b17b4a629c" +source = "git+https://github.com/paritytech/polkadot-sdk#dee18249742c4abbf81fcca62b40a868a394c3d4" dependencies = [ - "anyhow", "impl-trait-for-tuples", "log", "parity-scale-codec", - "wasmtime", ] [[package]] @@ -13597,16 +18470,15 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "bounded-collections 0.2.0", "parity-scale-codec", "scale-info", "serde", "smallvec", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-debug-derive 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -13624,17 +18496,6 @@ dependencies = [ "lock_api", ] -[[package]] -name = "spinners" -version = "4.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0ef947f358b9c238923f764c72a4a9d42f2d637c46e059dbd319d6e7cfb4f82" -dependencies = [ - "lazy_static", - "maplit", - "strum 0.24.1", -] - [[package]] name = "spinning_top" version = "0.3.0" @@ -13656,8 +18517,8 @@ dependencies = [ [[package]] name = "ss58-registry" -version = "1.48.0" -source = "git+https://github.com/Analog-Labs/ss58-registry.git#00ee0ef1f4da732f366348337ad7171d3f089b9d" +version = "1.49.0" +source = "git+https://github.com/Analog-Labs/ss58-registry.git#8067ef285927fc37dafb5a63eb72bc79c466f190" dependencies = [ "Inflector", "num-format", @@ -13691,9 +18552,9 @@ dependencies = [ [[package]] name = "ssh-key" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b71299a724c8d84956caaf8fc3b3ea57c3587fe2d0b800cd0dc1f3599905d7e" +checksum = "ca9b366a80cf18bb6406f4cf4d10aebfb46140a8c0c33f666a144c5c76ecbafc" dependencies = [ "ed25519-dalek 2.1.1", "p256", @@ -13706,16 +18567,132 @@ dependencies = [ "signature 2.2.0", "ssh-cipher", "ssh-encoding", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] -[[package]] -name = "stable_deref_trait" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" - +[[package]] +name = "ssz_rs" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "057291e5631f280978fa9c8009390663ca4613359fc1318e36a8c24c392f6d1f" +dependencies = [ + "bitvec", + "num-bigint", + "sha2 0.9.9", + "ssz_rs_derive", +] + +[[package]] +name = "ssz_rs_derive" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f07d54c4d01a1713eb363b55ba51595da15f6f1211435b71466460da022aa140" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "staging-node-inspect" +version = "0.12.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "clap", + "parity-scale-codec", + "sc-cli", + "sc-client-api", + "sc-service", + "sp-blockchain", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-statement-store", + "thiserror", +] + +[[package]] +name = "staging-parachain-info" +version = "0.7.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", +] + +[[package]] +name = "staging-xcm" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "array-bytes 6.2.3", + "bounded-collections 0.2.0", + "derivative", + "environmental", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "xcm-procedural", +] + +[[package]] +name = "staging-xcm-builder" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-transaction-payment", + "parity-scale-codec", + "polkadot-parachain-primitives", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-executor", +] + +[[package]] +name = "staging-xcm-executor" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "environmental", + "frame-benchmarking", + "frame-support", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + [[package]] name = "standback" version = "0.2.17" @@ -13808,6 +18785,26 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" +[[package]] +name = "str0m" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6706347e49b13373f7ddfafad47df7583ed52083d6fc8a594eb2c80497ef959d" +dependencies = [ + "combine", + "crc", + "fastrand 2.1.0", + "hmac 0.12.1", + "once_cell", + "openssl", + "openssl-sys", + "sctp-proto", + "serde", + "sha-1 0.10.1", + "thiserror", + "tracing", +] + [[package]] name = "string_cache" version = "0.8.7" @@ -13816,11 +18813,24 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ "new_debug_unreachable", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "phf_shared 0.10.0", "precomputed-hash", ] +[[package]] +name = "strobe-rs" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabb238a1cccccfa4c4fb703670c0d157e1256c1ba695abf1b93bd2bb14bab2d" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "keccak", + "subtle 2.6.1", + "zeroize", +] + [[package]] name = "strsim" version = "0.10.0" @@ -13829,9 +18839,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "strsim" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "struct_iterable" @@ -13853,7 +18863,7 @@ dependencies = [ "proc-macro2", "quote", "struct_iterable_internal", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -13873,17 +18883,11 @@ dependencies = [ [[package]] name = "strum" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" - -[[package]] -name = "strum" -version = "0.26.2" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" +checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ - "strum_macros 0.26.2", + "strum_macros 0.26.4", ] [[package]] @@ -13901,28 +18905,15 @@ dependencies = [ [[package]] name = "strum_macros" -version = "0.25.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" -dependencies = [ - "heck 0.4.1", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.53", -] - -[[package]] -name = "strum_macros" -version = "0.26.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", "rustversion", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -13931,7 +18922,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0adebf9fb8fba5c39ee34092b0383f247e4d1255b98fcffec94b4b797b85b677" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "bounded-integer", "byteorder", "crc", @@ -13965,7 +18956,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "hmac 0.12.1", "pbkdf2 0.12.2", @@ -13977,12 +18968,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" [[package]] name = "substrate-frame-rpc-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -13994,16 +18985,16 @@ dependencies = [ "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "hyper", + "hyper 0.14.29", "log", "prometheus", "thiserror", @@ -14011,33 +19002,46 @@ dependencies = [ ] [[package]] -name = "substrate-rpc-client" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +name = "substrate-state-trie-migration-rpc" +version = "27.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ - "async-trait", "jsonrpsee 0.22.5", - "log", + "parity-scale-codec", + "sc-client-api", "sc-rpc-api", "serde", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-state-machine 0.35.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-trie 29.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "trie-db 0.29.1", ] [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" dependencies = [ + "array-bytes 6.2.3", "build-helper", "cargo_metadata", "console", "filetime", + "frame-metadata 16.0.0", + "merkleized-metadata", + "parity-scale-codec", "parity-wasm", "polkavm-linker", + "sc-executor", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", "sp-maybe-compressed-blob", - "strum 0.24.1", + "sp-tracing 16.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-version", + "strum 0.26.3", "tempfile", - "toml 0.8.12", + "toml 0.8.14", "walkdir", "wasm-opt", ] @@ -14050,9 +19054,9 @@ checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subtle-ng" @@ -14087,7 +19091,7 @@ dependencies = [ "serde", "serde_json", "sp-core 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sp-core-hashing 15.0.0", + "sp-core-hashing 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sp-runtime 31.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-lightclient 0.34.0", "subxt-macro 0.34.0", @@ -14117,13 +19121,13 @@ dependencies = [ "primitive-types", "reconnecting-jsonrpsee-ws-client", "scale-bits 0.6.0", - "scale-decode 0.13.0", + "scale-decode 0.13.1", "scale-encode 0.7.1", "scale-info", "scale-value 0.16.0", "serde", "serde_json", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", "subxt-lightclient 0.37.0", "subxt-macro 0.37.0", @@ -14150,7 +19154,7 @@ dependencies = [ "scale-info", "scale-typegen 0.1.1", "subxt-metadata 0.34.0", - "syn 2.0.53", + "syn 2.0.68", "thiserror", "tokio", ] @@ -14171,7 +19175,7 @@ dependencies = [ "scale-info", "scale-typegen 0.8.0", "subxt-metadata 0.37.0", - "syn 2.0.53", + "syn 2.0.68", "thiserror", "tokio", ] @@ -14192,13 +19196,13 @@ dependencies = [ "parity-scale-codec", "primitive-types", "scale-bits 0.6.0", - "scale-decode 0.13.0", + "scale-decode 0.13.1", "scale-encode 0.7.1", "scale-info", "scale-value 0.16.0", "serde", "serde_json", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata 0.37.0", "tracing", ] @@ -14243,13 +19247,13 @@ version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "365251668613323064803427af8c7c7bc366cd8b28e33639640757669dafebd5" dependencies = [ - "darling 0.20.8", + "darling 0.20.9", "parity-scale-codec", "proc-macro-error", "quote", "scale-typegen 0.1.1", "subxt-codegen 0.34.0", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -14258,13 +19262,13 @@ version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c195f803d70687e409aba9be6c87115b5da8952cd83c4d13f2e043239818fcd" dependencies = [ - "darling 0.20.8", + "darling 0.20.9", "parity-scale-codec", "proc-macro-error", "quote", "scale-typegen 0.8.0", "subxt-codegen 0.37.0", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -14276,7 +19280,7 @@ dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", "scale-info", - "sp-core-hashing 15.0.0", + "sp-core-hashing 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -14290,7 +19294,7 @@ dependencies = [ "hashbrown 0.14.5", "parity-scale-codec", "scale-info", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -14310,7 +19314,7 @@ dependencies = [ "secp256k1 0.28.2", "secrecy", "sha2 0.10.8", - "sp-crypto-hashing 0.1.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", "zeroize", ] @@ -14325,13 +19329,13 @@ dependencies = [ "async-trait", "cfg-if", "futures-util", - "getrandom 0.2.12", + "getrandom 0.2.15", "http-client", "http-types", "log", "mime_guess", "once_cell", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "rustls 0.18.1", "serde", "serde_json", @@ -14344,10 +19348,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efbf95ce4c7c5b311d2ce3f088af2b93edef0f09727fa50fbe03c7a979afce77" dependencies = [ "hex", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pnet_packet", "rand 0.8.5", - "socket2 0.5.6", + "socket2 0.5.7", "thiserror", "tokio", "tracing", @@ -14355,15 +19359,15 @@ dependencies = [ [[package]] name = "sval" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82a2386bea23a121e4e72450306b1dd01078b6399af11b93897bf84640a28a59" +checksum = "53eb957fbc79a55306d5d25d87daf3627bc3800681491cda0709eef36c748bfe" [[package]] name = "sval_buffer" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b16c047898a0e19002005512243bc9ef1c1037aad7d03d6c594e234efec80795" +checksum = "96e860aef60e9cbf37888d4953a13445abf523c534640d1f6174d310917c410d" dependencies = [ "sval", "sval_ref", @@ -14371,18 +19375,18 @@ dependencies = [ [[package]] name = "sval_dynamic" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a74fb116e2ecdcb280b0108aa2ee4434df50606c3208c47ac95432730eaac20c" +checksum = "ea3f2b07929a1127d204ed7cb3905049381708245727680e9139dac317ed556f" dependencies = [ "sval", ] [[package]] name = "sval_fmt" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10837b4f0feccef271b2b1c03784e08f6d0bb6d23272ec9e8c777bfadbb8f1b8" +checksum = "c4e188677497de274a1367c4bda15bd2296de4070d91729aac8f0a09c1abf64d" dependencies = [ "itoa", "ryu", @@ -14391,9 +19395,9 @@ dependencies = [ [[package]] name = "sval_json" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891f5ecdf34ce61a8ab2d10f9cfdc303347b0afec4dad6702757419d2d8312a9" +checksum = "32f456c07dae652744781f2245d5e3b78e6a9ebad70790ac11eb15dbdbce5282" dependencies = [ "itoa", "ryu", @@ -14402,9 +19406,9 @@ dependencies = [ [[package]] name = "sval_nested" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63fcffb4b79c531f38e3090788b64f3f4d54a180aacf02d69c42fa4e4bf284c3" +checksum = "886feb24709f0476baaebbf9ac10671a50163caa7e439d7a7beb7f6d81d0a6fb" dependencies = [ "sval", "sval_buffer", @@ -14413,18 +19417,18 @@ dependencies = [ [[package]] name = "sval_ref" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af725f9c2aa7cec4ca9c47da2cc90920c4c82d3fa537094c66c77a5459f5809d" +checksum = "be2e7fc517d778f44f8cb64140afa36010999565528d48985f55e64d45f369ce" dependencies = [ "sval", ] [[package]] name = "sval_serde" -version = "2.11.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d7589c649a03d21df40b9a926787d2c64937fa1dccec8d87c6cd82989a2e0a4" +checksum = "79bf66549a997ff35cd2114a27ac4b0c2843280f2cfa84b240d169ecaa0add46" dependencies = [ "serde", "sval", @@ -14441,8 +19445,8 @@ dependencies = [ "fs2", "hex", "once_cell", - "reqwest", - "semver 1.0.22", + "reqwest 0.11.27", + "semver 1.0.23", "serde", "serde_json", "sha2 0.10.8", @@ -14464,15 +19468,27 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.53" +version = "2.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032" +checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] +[[package]] +name = "syn-solidity" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b837ef12ab88835251726eb12237655e61ec8dc8a280085d1961cdc3dfd047" +dependencies = [ + "paste", + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "syn-solidity" version = "0.6.4" @@ -14482,7 +19498,7 @@ dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -14491,6 +19507,12 @@ version = "0.1.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" + [[package]] name = "synstructure" version = "0.12.6" @@ -14503,11 +19525,22 @@ dependencies = [ "unicode-xid", ] +[[package]] +name = "synstructure" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "sysinfo" -version = "0.30.10" +version = "0.30.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d7c217777061d5a2d652aea771fb9ba98b6dade657204b08c4b9604d11555b" +checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae" dependencies = [ "cfg-if", "core-foundation-sys", @@ -14526,7 +19559,18 @@ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", "core-foundation", - "system-configuration-sys", + "system-configuration-sys 0.5.0", +] + +[[package]] +name = "system-configuration" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "658bc6ee10a9b4fcf576e9b0819d95ec16f4d2c02d39fd83ac1c8789785c4a42" +dependencies = [ + "bitflags 2.6.0", + "core-foundation", + "system-configuration-sys 0.6.0", ] [[package]] @@ -14539,6 +19583,16 @@ dependencies = [ "libc", ] +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "tabled" version = "0.15.0" @@ -14582,8 +19636,12 @@ dependencies = [ "anyhow", "async-stream", "async-trait", + "clap", "futures", "hex", + "parity-scale-codec", + "scale-decode 0.13.1", + "scale-info", "subxt 0.37.0", "subxt-signer", "time-primitives", @@ -14598,8 +19656,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", - "fastrand 2.0.1", - "rustix 0.38.32", + "fastrand 2.1.0", + "rustix 0.38.34", "windows-sys 0.52.0", ] @@ -14629,7 +19687,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix 0.38.32", + "rustix 0.38.34", "windows-sys 0.48.0", ] @@ -14643,12 +19701,12 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" name = "tester" version = "0.1.0" dependencies = [ - "alloy-primitives", - "alloy-sol-types", + "alloy-primitives 0.6.4", + "alloy-sol-types 0.6.4", "anyhow", "clap", "ethers-solc", - "getrandom 0.2.12", + "getrandom 0.2.15", "hex", "rosetta-client", "rosetta-config-ethereum", @@ -14664,6 +19722,21 @@ dependencies = [ "tracing-subscriber 0.3.18", ] +[[package]] +name = "testnet-parachains-constants" +version = "1.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "cumulus-primitives-core", + "frame-support", + "polkadot-core-primitives", + "rococo-runtime-constants", + "smallvec", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "westend-runtime-constants", +] + [[package]] name = "thiserror" version = "1.0.61" @@ -14681,7 +19754,7 @@ checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -14709,6 +19782,30 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "thrift" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b82ca8f46f95b3ce96081fe3dd89160fdea970c254bb72925255d1b62aae692e" +dependencies = [ + "byteorder", + "integer-encoding", + "log", + "ordered-float", + "threadpool", +] + +[[package]] +name = "tikv-jemalloc-ctl" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c" +dependencies = [ + "libc", + "paste", + "tikv-jemalloc-sys", +] + [[package]] name = "tikv-jemalloc-sys" version = "0.5.4+5.3.0-patched" @@ -14736,9 +19833,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.34" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", @@ -14748,7 +19845,7 @@ dependencies = [ "powerfmt", "serde", "time-core", - "time-macros 0.2.17", + "time-macros 0.2.18", ] [[package]] @@ -14769,9 +19866,9 @@ dependencies = [ [[package]] name = "time-macros" -version = "0.2.17" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" dependencies = [ "num-conv", "time-core", @@ -14794,8 +19891,8 @@ dependencies = [ name = "time-primitives" version = "0.1.0" dependencies = [ - "alloy-primitives", - "alloy-sol-types", + "alloy-primitives 0.6.4", + "alloy-sol-types 0.6.4", "anyhow", "async-trait", "frame-support", @@ -14804,15 +19901,16 @@ dependencies = [ "hex", "log", "parity-scale-codec", + "scale-decode 0.13.1", "scale-info", "serde", "sha3", "sp-api", - "sp-application-crypto 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", ] [[package]] @@ -14826,7 +19924,7 @@ dependencies = [ [[package]] name = "timechain-node" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -14835,115 +19933,36 @@ dependencies = [ "chronicle", "clap", "convert_case 0.6.0", - "frame-benchmarking", - "frame-benchmarking-cli", - "frame-system", "futures", "hex-literal", "jsonrpsee 0.22.5", - "pallet-im-online", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc", - "sc-basic-authorship", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", - "sc-consensus-grandpa", - "sc-executor", - "sc-keystore", - "sc-network", - "sc-offchain", - "sc-rpc-api", - "sc-service", - "sc-telemetry", - "sc-transaction-pool", - "sc-transaction-pool-api", + "log", + "polkadot-sdk", "serde", "serde_json", - "serde_with", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-consensus-grandpa", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-inherents", - "sp-keyring 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-statement-store", - "sp-timestamp", - "substrate-build-script-utils", - "substrate-frame-rpc-system", "tc-subxt", "time-primitives", "timechain-runtime", "tokio", "tracing", - "try-runtime-cli", ] [[package]] name = "timechain-runtime" -version = "0.0.1" +version = "0.6.0" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", "log", - "pallet-authorship", - "pallet-babe", - "pallet-bags-list", - "pallet-balances", - "pallet-collective", - "pallet-election-provider-multi-phase", "pallet-elections", - "pallet-grandpa", - "pallet-im-online", "pallet-members", "pallet-networks", - "pallet-offences", - "pallet-session", "pallet-shards", - "pallet-staking", - "pallet-staking-reward-fn", - "pallet-sudo", "pallet-tasks", "pallet-timegraph", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", - "pallet-utility", "parity-scale-codec", - "parity-scale-codec-derive", + "polkadot-sdk", "runtime-common", "scale-info", "separator", - "sp-api", - "sp-arithmetic 23.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-block-builder", - "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-genesis-builder", - "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-npos-elections", - "sp-offchain", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-session", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-transaction-pool", - "sp-version", "static_assertions", "substrate-wasm-builder", "time-primitives", @@ -14986,15 +20005,15 @@ dependencies = [ "ascii", "chunked_transfer", "log", - "time 0.3.34", + "time 0.3.36", "url", ] [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82" dependencies = [ "tinyvec_macros", ] @@ -15016,10 +20035,10 @@ dependencies = [ "libc", "mio", "num_cpus", - "parking_lot 0.12.1", - "pin-project-lite 0.2.13", + "parking_lot 0.12.3", + "pin-project-lite 0.2.14", "signal-hook-registry", - "socket2 0.5.6", + "socket2 0.5.7", "tokio-macros", "windows-sys 0.48.0", ] @@ -15032,7 +20051,7 @@ checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -15052,7 +20071,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls 0.21.10", + "rustls 0.21.12", "tokio", ] @@ -15062,27 +20081,40 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls 0.22.2", + "rustls 0.22.4", + "rustls-pki-types", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +dependencies = [ + "rustls 0.23.10", "rustls-pki-types", "tokio", ] [[package]] name = "tokio-rustls-acme" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfb6f50b5523d014ba161512c37457acb16fd8218c883c7152e0a67ab763f2d4" +checksum = "2ebc06d846f8367f24c3a8882328707d1a5e507ef4f40943723ddbe2c17b9f24" dependencies = [ "async-trait", "base64 0.21.7", "chrono", "futures", "log", - "pem 2.0.1", - "rcgen 0.11.3", - "reqwest", - "ring 0.16.20", - "rustls 0.21.10", + "num-bigint", + "pem 3.0.4", + "proc-macro2", + "rcgen 0.12.1", + "reqwest 0.11.27", + "ring 0.17.8", + "rustls 0.21.12", "serde", "serde_json", "thiserror", @@ -15090,7 +20122,7 @@ dependencies = [ "tokio-rustls 0.24.1", "url", "webpki-roots 0.25.4", - "x509-parser 0.15.1", + "x509-parser 0.16.0", ] [[package]] @@ -15100,11 +20132,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" dependencies = [ "futures-core", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "tokio", "tokio-util", ] +[[package]] +name = "tokio-tungstenite" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" +dependencies = [ + "futures-util", + "log", + "rustls 0.21.12", + "rustls-native-certs 0.6.3", + "tokio", + "tokio-rustls 0.24.1", + "tungstenite 0.20.1", +] + [[package]] name = "tokio-tungstenite" version = "0.21.0" @@ -15113,12 +20160,12 @@ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" dependencies = [ "futures-util", "log", - "rustls 0.22.2", + "rustls 0.22.4", "rustls-pki-types", "tokio", "tokio-rustls 0.25.0", - "tungstenite", - "webpki-roots 0.26.1", + "tungstenite 0.21.0", + "webpki-roots 0.26.3", ] [[package]] @@ -15131,7 +20178,7 @@ dependencies = [ "futures-core", "futures-io", "futures-sink", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "tokio", ] @@ -15146,47 +20193,58 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.12" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" +checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.9", + "toml_edit 0.22.14", ] [[package]] name = "toml_datetime" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" dependencies = [ "serde", ] +[[package]] +name = "toml_edit" +version = "0.20.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" +dependencies = [ + "indexmap 2.2.6", + "toml_datetime", + "winnow 0.5.40", +] + [[package]] name = "toml_edit" version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "toml_datetime", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.22.9" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ - "indexmap 2.2.5", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.5", + "winnow 0.6.13", ] [[package]] @@ -15198,7 +20256,8 @@ dependencies = [ "futures-core", "futures-util", "pin-project", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", + "tokio", "tower-layer", "tower-service", "tracing", @@ -15210,14 +20269,14 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "bytes", "futures-core", "futures-util", "http 0.2.12", - "http-body", + "http-body 0.4.6", "http-range-header", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "tower-layer", "tower-service", ] @@ -15241,7 +20300,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ "log", - "pin-project-lite 0.2.13", + "pin-project-lite 0.2.14", "tracing-attributes", "tracing-core", ] @@ -15254,7 +20313,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -15277,6 +20336,29 @@ dependencies = [ "tracing", ] +[[package]] +name = "tracing-gum" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "coarsetime", + "polkadot-primitives", + "tracing", + "tracing-gum-proc-macro", +] + +[[package]] +name = "tracing-gum-proc-macro" +version = "5.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "expander", + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 2.0.68", +] + [[package]] name = "tracing-log" version = "0.1.4" @@ -15329,7 +20411,6 @@ dependencies = [ "chrono", "lazy_static", "matchers 0.0.1", - "parking_lot 0.11.2", "regex", "serde", "serde_json", @@ -15351,6 +20432,7 @@ dependencies = [ "matchers 0.1.0", "nu-ansi-term", "once_cell", + "parking_lot 0.12.3", "regex", "sharded-slab", "smallvec", @@ -15373,6 +20455,18 @@ dependencies = [ "smallvec", ] +[[package]] +name = "trie-db" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c992b4f40c234a074d48a757efeabb1a6be88af84c0c23f7ca158950cb0ae7f" +dependencies = [ + "hash-db", + "log", + "rustc-hex", + "smallvec", +] + [[package]] name = "trie-root" version = "0.18.0" @@ -15444,7 +20538,7 @@ dependencies = [ "ipconfig", "lazy_static", "lru-cache", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "resolv-conf", "smallvec", "thiserror", @@ -15464,7 +20558,7 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "resolv-conf", "smallvec", @@ -15480,47 +20574,12 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" -[[package]] -name = "try-runtime-cli" -version = "0.38.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0#3c3d6fceb82372a3019b37117aa453d564b212de" -dependencies = [ - "async-trait", - "clap", - "frame-remote-externalities", - "hex", - "log", - "parity-scale-codec", - "sc-cli", - "sc-executor", - "serde", - "serde_json", - "sp-api", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-core 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-inherents", - "sp-io 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-keystore 0.34.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-rpc", - "sp-runtime 31.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-state-machine 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "sp-timestamp", - "sp-transaction-storage-proof", - "sp-version", - "sp-weights 27.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-v1.9.0)", - "substrate-rpc-client", - "zstd 0.12.4", -] - [[package]] name = "tss" version = "0.0.1" dependencies = [ "anyhow", - "env_logger", + "env_logger 0.11.3", "frost-evm", "rand_core 0.6.4", "serde", @@ -15542,6 +20601,26 @@ dependencies = [ "linked-hash-map", ] +[[package]] +name = "tungstenite" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http 0.2.12", + "httparse", + "log", + "rand 0.8.5", + "rustls 0.21.12", + "sha1 0.10.6", + "thiserror", + "url", + "utf-8", +] + [[package]] name = "tungstenite" version = "0.21.0" @@ -15555,7 +20634,7 @@ dependencies = [ "httparse", "log", "rand 0.8.5", - "rustls 0.22.2", + "rustls 0.22.4", "rustls-pki-types", "sha1 0.10.6", "thiserror", @@ -15563,6 +20642,12 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tuplex" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "676ac81d5454c4dcf37955d34fa8626ede3490f744b86ca14a7b90168d2a08aa" + [[package]] name = "twox-hash" version = "1.6.3" @@ -15575,6 +20660,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "typeid" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "059d83cc991e7a42fc37bd50941885db0888e34209f8cfd9aab07ddec03bc9cf" + [[package]] name = "typenum" version = "1.17.0" @@ -15652,9 +20743,9 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" [[package]] name = "unicode-xid" @@ -15669,7 +20760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402" dependencies = [ "generic-array 0.14.7", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -15679,7 +20770,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ "crypto-common", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -15692,6 +20783,7 @@ dependencies = [ "bytes", "futures-io", "futures-util", + "tokio-util", ] [[package]] @@ -15706,11 +20798,27 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" +[[package]] +name = "ureq" +version = "2.9.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" +dependencies = [ + "base64 0.22.1", + "log", + "once_cell", + "rustls 0.22.4", + "rustls-pki-types", + "rustls-webpki 0.102.4", + "url", + "webpki-roots 0.26.3", +] + [[package]] name = "url" -version = "2.5.0" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" dependencies = [ "form_urlencoded", "idna 0.5.0", @@ -15726,9 +20834,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "utf8parse" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "valuable" @@ -15738,9 +20846,9 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "value-bag" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74797339c3b98616c009c7c3eb53a0ce41e85c8ec66bd3db96ed132d20cfdee8" +checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" dependencies = [ "value-bag-serde1", "value-bag-sval2", @@ -15748,20 +20856,20 @@ dependencies = [ [[package]] name = "value-bag-serde1" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc35703541cbccb5278ef7b589d79439fc808ff0b5867195a3230f9a47421d39" +checksum = "ccacf50c5cb077a9abb723c5bcb5e0754c1a433f1e1de89edc328e2760b6328b" dependencies = [ - "erased-serde 0.4.4", + "erased-serde 0.4.5", "serde", "serde_fmt", ] [[package]] name = "value-bag-sval2" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "285b43c29d0b4c0e65aad24561baee67a1b69dc9be9375d4a85138cbf556f7f8" +checksum = "1785bae486022dfb9703915d42287dcb284c1ee37bd1080eeba78cc04721285b" dependencies = [ "sval", "sval_buffer", @@ -15787,7 +20895,7 @@ dependencies = [ "anyhow", "cfg-if", "rustversion", - "time 0.3.34", + "time 0.3.36", ] [[package]] @@ -15804,7 +20912,7 @@ checksum = "b3fd98999db9227cf28e59d83e1f120f42bc233d4b152e8fab9bc87d5bb1e0f8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -15815,9 +20923,9 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "w3f-bls" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7335e4c132c28cc43caef6adb339789e599e39adbe78da0c4d547fad48cbc331" +checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" dependencies = [ "ark-bls12-377", "ark-bls12-381", @@ -15848,9 +20956,9 @@ dependencies = [ [[package]] name = "waker-fn" -version = "1.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" +checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" [[package]] name = "walkdir" @@ -15883,6 +20991,15 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +[[package]] +name = "wasix" +version = "0.12.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" +dependencies = [ + "wasi 0.11.0+wasi-snapshot-preview1", +] + [[package]] name = "wasm-bindgen" version = "0.2.92" @@ -15906,7 +21023,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", "wasm-bindgen-shared", ] @@ -15940,7 +21057,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -15962,9 +21079,9 @@ dependencies = [ [[package]] name = "wasm-opt" -version = "0.116.0" +version = "0.116.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52" +checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c" dependencies = [ "anyhow", "libc", @@ -16058,9 +21175,9 @@ dependencies = [ [[package]] name = "wasmparser-nostd" -version = "0.100.1" +version = "0.100.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" +checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa" dependencies = [ "indexmap-nostd", ] @@ -16260,6 +21377,18 @@ dependencies = [ "wasmparser", ] +[[package]] +name = "watchable" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45b42a2f611916b5965120a9cde2b60f2db4454826dd9ad5e6f47c24a5b3b259" +dependencies = [ + "event-listener 4.0.3", + "futures-util", + "parking_lot 0.12.3", + "thiserror", +] + [[package]] name = "web-sys" version = "0.3.69" @@ -16316,13 +21445,137 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.1" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd" dependencies = [ "rustls-pki-types", ] +[[package]] +name = "westend-runtime" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "binary-merkle-tree", + "bitvec", + "frame-benchmarking", + "frame-election-provider-support", + "frame-executive", + "frame-metadata-hash-extension", + "frame-support", + "frame-system", + "frame-system-benchmarking", + "frame-system-rpc-runtime-api", + "frame-try-runtime", + "hex-literal", + "log", + "pallet-asset-rate", + "pallet-authority-discovery", + "pallet-authorship", + "pallet-babe", + "pallet-bags-list", + "pallet-balances", + "pallet-beefy", + "pallet-beefy-mmr", + "pallet-collective", + "pallet-conviction-voting", + "pallet-delegated-staking", + "pallet-democracy", + "pallet-election-provider-multi-phase", + "pallet-election-provider-support-benchmarking", + "pallet-elections-phragmen", + "pallet-fast-unstake", + "pallet-grandpa", + "pallet-identity", + "pallet-indices", + "pallet-membership", + "pallet-message-queue", + "pallet-mmr", + "pallet-multisig", + "pallet-nomination-pools", + "pallet-nomination-pools-benchmarking", + "pallet-nomination-pools-runtime-api", + "pallet-offences", + "pallet-offences-benchmarking", + "pallet-preimage", + "pallet-proxy", + "pallet-recovery", + "pallet-referenda", + "pallet-root-testing", + "pallet-scheduler", + "pallet-session", + "pallet-session-benchmarking", + "pallet-society", + "pallet-staking", + "pallet-staking-reward-curve", + "pallet-staking-runtime-api", + "pallet-state-trie-migration", + "pallet-sudo", + "pallet-timestamp", + "pallet-transaction-payment", + "pallet-transaction-payment-rpc-runtime-api", + "pallet-treasury", + "pallet-utility", + "pallet-vesting", + "pallet-whitelist", + "pallet-xcm", + "pallet-xcm-benchmarks", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-common", + "polkadot-runtime-parachains", + "rustc-hex", + "scale-info", + "serde", + "serde_derive", + "smallvec", + "sp-api", + "sp-application-crypto 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-arithmetic 23.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-authority-discovery", + "sp-block-builder", + "sp-consensus-babe", + "sp-consensus-beefy", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-genesis-builder", + "sp-inherents", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-mmr-primitives", + "sp-npos-elections", + "sp-offchain", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-session", + "sp-staking", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-storage 19.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-transaction-pool", + "sp-version", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "substrate-wasm-builder", + "westend-runtime-constants", + "xcm-fee-payment-runtime-api", +] + +[[package]] +name = "westend-runtime-constants" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "polkadot-primitives", + "polkadot-runtime-common", + "smallvec", + "sp-core 28.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", +] + [[package]] name = "which" version = "4.4.2" @@ -16332,14 +21585,14 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.32", + "rustix 0.38.34", ] [[package]] name = "wide" -version = "0.7.15" +version = "0.7.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89beec544f246e679fc25490e3f8e08003bc4bf612068f325120dad4cea02c1c" +checksum = "8a040b111774ab63a19ef46bbc149398ab372b4ccdcfd719e9814dbd7dfd76c8" dependencies = [ "bytemuck", "safe_arch", @@ -16347,15 +21600,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" - -[[package]] -name = "wildmatch" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" [[package]] name = "winapi" @@ -16375,11 +21622,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" dependencies = [ - "winapi", + "windows-sys 0.52.0", ] [[package]] @@ -16388,15 +21635,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -[[package]] -name = "windows" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" -dependencies = [ - "windows-targets 0.48.5", -] - [[package]] name = "windows" version = "0.51.1" @@ -16416,7 +21654,17 @@ dependencies = [ "windows-core 0.52.0", "windows-implement", "windows-interface", - "windows-targets 0.52.4", + "windows-targets 0.52.5", +] + +[[package]] +name = "windows" +version = "0.54.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" +dependencies = [ + "windows-core 0.54.0", + "windows-targets 0.52.5", ] [[package]] @@ -16434,7 +21682,17 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-targets 0.52.4", + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-core" +version = "0.54.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" +dependencies = [ + "windows-result", + "windows-targets 0.52.5", ] [[package]] @@ -16445,7 +21703,7 @@ checksum = "12168c33176773b86799be25e2a2ba07c7aab9968b37541f1094dbd7a60c8946" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -16456,7 +21714,31 @@ checksum = "9d8dc32e0095a7eeccebd0e3f09e9509365ecb3fc6ac4d6f5f14a3f6392942d1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", +] + +[[package]] +name = "windows-result" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" +dependencies = [ + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-sys" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", ] [[package]] @@ -16483,7 +21765,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.4", + "windows-targets 0.52.5", ] [[package]] @@ -16518,17 +21800,18 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" dependencies = [ - "windows_aarch64_gnullvm 0.52.4", - "windows_aarch64_msvc 0.52.4", - "windows_i686_gnu 0.52.4", - "windows_i686_msvc 0.52.4", - "windows_x86_64_gnu 0.52.4", - "windows_x86_64_gnullvm 0.52.4", - "windows_x86_64_msvc 0.52.4", + "windows_aarch64_gnullvm 0.52.5", + "windows_aarch64_msvc 0.52.5", + "windows_i686_gnu 0.52.5", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.5", + "windows_x86_64_gnu 0.52.5", + "windows_x86_64_gnullvm 0.52.5", + "windows_x86_64_msvc 0.52.5", ] [[package]] @@ -16545,9 +21828,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" [[package]] name = "windows_aarch64_msvc" @@ -16563,9 +21846,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" [[package]] name = "windows_i686_gnu" @@ -16581,9 +21864,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.4" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" [[package]] name = "windows_i686_msvc" @@ -16599,9 +21888,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" [[package]] name = "windows_x86_64_gnu" @@ -16617,9 +21906,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" [[package]] name = "windows_x86_64_gnullvm" @@ -16635,9 +21924,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" [[package]] name = "windows_x86_64_msvc" @@ -16653,9 +21942,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.4" +version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "winnow" @@ -16668,9 +21957,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.6.5" +version = "0.6.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" dependencies = [ "memchr", ] @@ -16685,6 +21974,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "winreg" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "wmi" version = "0.13.3" @@ -16725,7 +22024,7 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" dependencies = [ - "curve25519-dalek 4.1.2", + "curve25519-dalek 4.1.3", "rand_core 0.6.4", "serde", "zeroize", @@ -16737,16 +22036,16 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", "base64 0.13.1", "data-encoding", - "der-parser", + "der-parser 8.2.0", "lazy_static", "nom 7.1.3", - "oid-registry", + "oid-registry 0.6.1", "rusticata-macros", "thiserror", - "time 0.3.34", + "time 0.3.36", ] [[package]] @@ -16755,22 +22054,87 @@ version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", + "data-encoding", + "der-parser 8.2.0", + "lazy_static", + "nom 7.1.3", + "oid-registry 0.6.1", + "rusticata-macros", + "thiserror", + "time 0.3.36", +] + +[[package]] +name = "x509-parser" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" +dependencies = [ + "asn1-rs 0.6.1", "data-encoding", - "der-parser", + "der-parser 9.0.0", "lazy_static", "nom 7.1.3", - "oid-registry", + "oid-registry 0.7.0", "rusticata-macros", "thiserror", - "time 0.3.34", + "time 0.3.36", +] + +[[package]] +name = "xcm-fee-payment-runtime-api" +version = "0.1.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-weights 27.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", +] + +[[package]] +name = "xcm-procedural" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.68", +] + +[[package]] +name = "xcm-simulator" +version = "7.0.0" +source = "git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched#d15675852c7a4e3ec0b9fc1a6b8b5dd1a6d19a7b" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "paste", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-parachains", + "scale-info", + "sp-io 30.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-runtime 31.0.1 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "sp-std 14.0.0 (git+https://github.com/analog-labs/polkadot-sdk?tag=v1.13.0-patched)", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", ] [[package]] name = "xml-rs" -version = "0.8.19" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" +checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" [[package]] name = "xmltree" @@ -16790,7 +22154,7 @@ dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rand 0.8.5", "static_assertions", ] @@ -16813,7 +22177,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time 0.3.34", + "time 0.3.36", ] [[package]] @@ -16824,29 +22188,29 @@ checksum = "edb37266251c28b03d08162174a91c3a092e3bd4f476f8205ee1c507b78b7bdc" [[package]] name = "zerocopy" -version = "0.7.32" +version = "0.7.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.32" +version = "0.7.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] name = "zeroize" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" dependencies = [ "zeroize_derive", ] @@ -16859,7 +22223,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.53", + "syn 2.0.68", ] [[package]] @@ -16878,7 +22242,7 @@ dependencies = [ "hmac 0.12.1", "pbkdf2 0.11.0", "sha1 0.10.6", - "time 0.3.34", + "time 0.3.36", "zstd 0.11.2+zstd.1.5.2", ] @@ -16922,9 +22286,9 @@ dependencies = [ [[package]] name = "zstd-sys" -version = "2.0.9+zstd.1.5.5" +version = "2.0.11+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" +checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.toml b/Cargo.toml index 5218edaa91..3aacabe1b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,12 @@ +[workspace.package] +authors = [ "Analog Devs " ] +edition = "2021" +homepage = "https://analog.one/" +license = "GPL-3.0-only" +repository = "https://github.com/Analog-Labs/timechain" + [workspace] +resolver = "2" members = [ "chronicle", "docs", @@ -17,12 +25,32 @@ members = [ "tss", "utils/generate-bags", ] -resolver = "2" +default-members = [ + "chronicle", + "node", +] -# Specifying a workspace dependency is similar to package dependencies except: -# - Dependencies from this table cannot be declared as optional -# - features declared in this table are additive with the features from [dependencies] [workspace.dependencies] +anyhow = { version = "1.0.86", default-features = false } +async-channel = "1.9.0" +async-stream = "0.3.5" +async-trait = "0.1.80" +clap = { version = "4.4.18", features = [ "derive" ] } +env_logger = "0.11.3" +futures = "0.3.30" +hex = "0.4.3" +log = { version = "0.4.21", default-features = false } +serde = { version = "1.0.203", default-features = false, features = [ "derive" ] } +serde_json = { version = "1.0.117", default-features = false } +tokio = "1.38.0" +tracing = "0.1.40" + +scale-codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = [ "derive" ] } +scale-decode = { version = "0.13.1", default-features = false, features = [ "derive" ] } +scale-info = { version = "2.11.3", default-features = false, features = [ "derive" ] } + +polkadot-sdk = { git = "https://github.com/Analog-Labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + rosetta-client = { git = "https://github.com/analog-labs/chain-connectors" } rosetta-core = { git = "https://github.com/analog-labs/chain-connectors" } rosetta-config-ethereum = { git = "https://github.com/analog-labs/chain-connectors" } @@ -32,9 +60,83 @@ simple-mermaid = "0.1" [profile.release] debug = true -[profile.release-codecov] +[profile.release] +# Runtime requires unwinding. +panic = "unwind" +opt-level = 3 + +# allow highly optimized production build +[profile.production] +inherits = "release" +lto = true +codegen-units = 1 + +# Enable debug features on testnet +[profile.testnet] inherits = "release" -strip = false +debug = true +debug-assertions = true +overflow-checks = true + +# make sure dev builds with backtrace do not slow us down +[profile.dev.package.backtrace] +inherits = "release" + +# The list of dependencies below (which can be both direct and indirect dependencies) are crates +# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of +# their debug info might be missing) or to require to be frequently recompiled. We compile these +# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable. +# The majority of these crates are cryptographic libraries. +# +# If you see an error mentioning "profile package spec ... did not match any packages", it +# probably concerns this list. +# +# This list is ordered alphabetically. +[profile.dev.package] +blake2 = { opt-level = 3 } +blake2b_simd = { opt-level = 3 } +chacha20poly1305 = { opt-level = 3 } +cranelift-codegen = { opt-level = 3 } +cranelift-wasm = { opt-level = 3 } +crc32fast = { opt-level = 3 } +crossbeam-deque = { opt-level = 3 } +crypto-mac = { opt-level = 3 } +curve25519-dalek = { opt-level = 3 } +ed25519-dalek = { opt-level = 3 } +flate2 = { opt-level = 3 } +futures-channel = { opt-level = 3 } +hash-db = { opt-level = 3 } +hashbrown = { opt-level = 3 } +hmac = { opt-level = 3 } +httparse = { opt-level = 3 } +integer-sqrt = { opt-level = 3 } +keccak = { opt-level = 3 } +libm = { opt-level = 3 } +librocksdb-sys = { opt-level = 3 } +libsecp256k1 = { opt-level = 3 } +libz-sys = { opt-level = 3 } +mio = { opt-level = 3 } +nalgebra = { opt-level = 3 } +num-bigint = { opt-level = 3 } +parking_lot = { opt-level = 3 } +parking_lot_core = { opt-level = 3 } +percent-encoding = { opt-level = 3 } +polkavm-linker = { opt-level = 3 } +primitive-types = { opt-level = 3 } +ring = { opt-level = 3 } +rustls = { opt-level = 3 } +sha2 = { opt-level = 3 } +sha3 = { opt-level = 3 } +smallvec = { opt-level = 3 } +snow = { opt-level = 3 } +substrate-bip39 = { opt-level = 3 } +twox-hash = { opt-level = 3 } +uint = { opt-level = 3 } +wasmi = { opt-level = 3 } +x25519-dalek = { opt-level = 3 } +yamux = { opt-level = 3 } +zeroize = { opt-level = 3 } [patch.crates-io] +# Testnet assginment was not accepted upstream ss58-registry = { git = 'https://github.com/Analog-Labs/ss58-registry.git' } diff --git a/README.md b/README.md index 70ee879893..2766bbc48e 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,15 @@ First, complete the [Dev Docs Installation](https://docs.substrate.io/v3/getting ### Build and Run -Use the following command to build the node and run it after build successfully: +Init git submodules: +```sh +git submodule update --init --recursive +``` +Use the following command to build the node and run it after build successfully: ```sh cargo build --release -./target/release/timechain-node +./target/release/timechain-node ``` ## Run Using Docker @@ -97,7 +101,7 @@ Use the "Prettify JSON" option to improve readability in Grafana or the raw logc ```shell ./target/release/timechnode --base-path /tmp/bootnode01 --chain ./timechain-staging.json --port 30333 --ws-port 9945 --rpc-port 9933 --telemetry-url "wss://telemetry.polkadot.io/submit/ 0" --validator --rpc-methods Unsafe --name BootNode01 ``` - + * [Insert session keys](https://substrate.dev/docs/en/tutorials/start-a-private-network/customchain#add-keys-to-keystore) * Start your initial validators, diff --git a/chronicle/Cargo.toml b/chronicle/Cargo.toml index 87734cea03..b7bf392521 100644 --- a/chronicle/Cargo.toml +++ b/chronicle/Cargo.toml @@ -1,36 +1,51 @@ [package] name = "chronicle" version = "0.5.0" -edition = "2021" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] +anyhow.workspace = true +async-trait.workspace = true +clap.workspace = true +futures.workspace = true +hex.workspace = true + +serde.workspace = true +serde_json.workspace = true +tokio.workspace = true +tracing.workspace = true + +rosetta-client.workspace = true +rosetta-core.workspace = true +rosetta-config-ethereum.workspace = true + alloy-primitives = { version = "0.6.4" } alloy-sol-types = { version = "0.6.4" } -anyhow = "1.0.75" -async-trait = "0.1.73" bincode = "1.3.3" -clap = { version = "4.4.18", features = ["derive"] } -futures = "0.3.28" -hex = "0.4" -peernet = "0.1.5" +#peernet = "0.2.0" +peernet = { git = "https://github.com/dvc94ch/peernet", rev = "f8ae1372178f5f23e714738701df2ce4c583e51e" } prometheus_exporter = { version = "0.8.5", default-features = false, features = ["logging"] } -rosetta-client.workspace = true -rosetta-core.workspace = true -rosetta-config-ethereum.workspace = true schnorr-evm = { version = "0.1.0" } -serde = "1.0.188" -serde_json = "1.0.105" sha3 = { version = "0.10" } -tc-subxt = { path = "../tc-subxt" } -time-primitives = { path = "../primitives" } -tokio = "1.32.0" -tracing = "0.1.37" tracing-panic = "0.1.1" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } + +tc-subxt = { path = "../tc-subxt" } +time-primitives = { path = "../primitives" } tss = { path = "../tss" } [dev-dependencies] -env_logger = "0.10.0" +env_logger.workspace = true log-panics = "2.1.0" lazy_static = "1.4.0" surf = { version = "2.3.2", default-features = false, features = [ "h1-client-rustls" ] } + +[features] +default = [] +testnet = [ "tc-subxt/testnet" ] +development = [ "tc-subxt/development" ] diff --git a/chronicle/src/lib.rs b/chronicle/src/lib.rs index c0d7c9b3a0..e5c3b559fe 100644 --- a/chronicle/src/lib.rs +++ b/chronicle/src/lib.rs @@ -6,6 +6,7 @@ use futures::channel::mpsc; use futures::stream::BoxStream; use std::path::PathBuf; use std::sync::Arc; +use tc_subxt::MetadataVariant; use time_primitives::{NetworkId, Runtime, TssSigningRequest}; use tracing::{event, span, Level}; @@ -27,6 +28,7 @@ pub struct ChronicleConfig { pub network_id: NetworkId, pub network_keyfile: Option, pub network_port: Option, + pub timechain_metadata: MetadataVariant, pub timechain_url: String, pub timechain_keyfile: PathBuf, pub target_url: String, diff --git a/chronicle/src/main.rs b/chronicle/src/main.rs index 19edf48f40..29e88e9333 100644 --- a/chronicle/src/main.rs +++ b/chronicle/src/main.rs @@ -2,7 +2,7 @@ use anyhow::Result; use chronicle::ChronicleConfig; use clap::Parser; use std::{path::PathBuf, time::Duration}; -use tc_subxt::{SubxtClient, SubxtTxSubmitter}; +use tc_subxt::{MetadataVariant, SubxtClient, SubxtTxSubmitter}; use time_primitives::NetworkId; #[derive(Debug, Parser)] @@ -22,6 +22,9 @@ pub struct ChronicleArgs { /// key file for connector wallet #[clap(long)] pub target_keyfile: PathBuf, + /// Metadata version to use to connect to timechain node. + #[clap(long)] + pub timechain_metadata: Option, /// Url for timechain node to connect to. #[clap(long)] pub timechain_url: String, @@ -45,6 +48,7 @@ impl ChronicleArgs { network_id: self.network_id, network_keyfile: self.network_keyfile, network_port: self.network_port, + timechain_metadata: self.timechain_metadata.unwrap_or_default(), timechain_url: self.timechain_url, timechain_keyfile: self.timechain_keyfile, target_url: self.target_url, @@ -90,8 +94,12 @@ async fn main() -> Result<()> { } }; - let subxt = - SubxtClient::with_keyfile(&config.timechain_url, &config.timechain_keyfile, tx_submitter) - .await?; + let subxt = SubxtClient::with_keyfile( + &config.timechain_url, + config.timechain_metadata, + &config.timechain_keyfile, + tx_submitter, + ) + .await?; chronicle::run_chronicle(config, network, network_requests, subxt).await } diff --git a/chronicle/src/network/protocol.rs b/chronicle/src/network/protocol.rs index e0c1d9ba88..86fb9aa7c7 100644 --- a/chronicle/src/network/protocol.rs +++ b/chronicle/src/network/protocol.rs @@ -58,13 +58,13 @@ impl TssEndpoint { if let Some(port) = config.bind_port { builder.port(port); } - builder.enable_dht(); builder.handler(handler); + builder.relay_map(None); let endpoint = builder.build().await?; let peer_id = endpoint.peer_id(); loop { tracing::info!("waiting for peer id to be registered"); - let Ok(addr) = endpoint.discovery().resolve(&peer_id).await else { + let Ok(addr) = endpoint.resolve(peer_id).await else { tokio::time::sleep(Duration::from_secs(1)).await; continue; }; diff --git a/config/subxt/metadata.scale b/config/subxt/metadata.scale deleted file mode 100644 index 85d2e9555b..0000000000 Binary files a/config/subxt/metadata.scale and /dev/null differ diff --git a/config/subxt/testnet.default.scale b/config/subxt/testnet.default.scale new file mode 100644 index 0000000000..4bbe03bdf7 Binary files /dev/null and b/config/subxt/testnet.default.scale differ diff --git a/config/subxt/testnet.development.scale b/config/subxt/testnet.development.scale new file mode 100644 index 0000000000..cadc91bcdf Binary files /dev/null and b/config/subxt/testnet.development.scale differ diff --git a/config/subxt/timechain.default.scale b/config/subxt/timechain.default.scale new file mode 100644 index 0000000000..53ab3a967c Binary files /dev/null and b/config/subxt/timechain.default.scale differ diff --git a/config/subxt/timechain.development.scale b/config/subxt/timechain.development.scale new file mode 100644 index 0000000000..53ab3a967c Binary files /dev/null and b/config/subxt/timechain.development.scale differ diff --git a/docker-compose.yml b/docker-compose.yml index 84a02d63ab..fb25cbd854 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: validator: - image: 'analoglabs/timechain-node' + image: 'analoglabs/timenode-development' command: - '--chain=dev' - '--base-path=/data' @@ -63,10 +63,11 @@ services: - astar3 chronicle-eth-template: - image: 'analoglabs/chronicle' + image: 'analoglabs/chronicle-development' command: - '--network-id=3' - '--target-url=ws://ethereum:8545' + - '--timechain-metadata=development' - '--timechain-url=ws://validator:9944' - '--target-keyfile=/etc/target_keyfile' - '--timechain-keyfile=/etc/timechain_keyfile' @@ -81,7 +82,8 @@ services: - never chronicle-eth1: - extends: chronicle-eth-template + extends: + service: chronicle-eth-template volumes: - './config/wallets/keyfile1:/etc/target_keyfile:ro' - './config/wallets/eth-1:/etc/timechain_keyfile:ro' @@ -93,7 +95,8 @@ services: - ethereum chronicle-eth2: - extends: chronicle-eth-template + extends: + service: chronicle-eth-template volumes: - './config/wallets/keyfile2:/etc/target_keyfile:ro' - './config/wallets/eth-2:/etc/timechain_keyfile:ro' @@ -104,7 +107,8 @@ services: - ethereum chronicle-eth3: - extends: chronicle-eth-template + extends: + service: chronicle-eth-template volumes: - './config/wallets/keyfile3:/etc/target_keyfile:ro' - './config/wallets/eth-3:/etc/timechain_keyfile:ro' @@ -115,10 +119,11 @@ services: - ethereum chronicle-astar-template: - image: 'analoglabs/chronicle' + image: 'analoglabs/chronicle-development' command: - '--network-id=6' - '--target-url=ws://astar:9944' + - '--timechain-metadata=development' - '--timechain-url=ws://validator:9944' - '--target-keyfile=/etc/target_keyfile' - '--timechain-keyfile=/etc/timechain_keyfile' @@ -132,7 +137,8 @@ services: - never chronicle-astar1: - extends: chronicle-astar-template + extends: + service: chronicle-astar-template volumes: - './config/wallets/keyfile1:/etc/target_keyfile:ro' - './config/wallets/astar-1:/etc/timechain_keyfile:ro' @@ -144,7 +150,8 @@ services: - astar chronicle-astar2: - extends: chronicle-astar-template + extends: + service: chronicle-astar-template volumes: - './config/wallets/keyfile2:/etc/target_keyfile:ro' - './config/wallets/astar-2:/etc/timechain_keyfile:ro' @@ -155,7 +162,8 @@ services: - astar chronicle-astar3: - extends: chronicle-astar-template + extends: + service: chronicle-astar-template volumes: - './config/wallets/keyfile3:/etc/target_keyfile:ro' - './config/wallets/astar-3:/etc/timechain_keyfile:ro' @@ -166,7 +174,7 @@ services: - astar tester: - image: 'analoglabs/timechain-tester' + image: 'analoglabs/tester-development' profiles: - never environment: diff --git a/node/Cargo.toml b/node/Cargo.toml index beef053663..7de9e240c5 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,12 +1,20 @@ [package] name = "timechain-node" -authors = [ "Analog Devs " ] build = "build.rs" -description = "A blochain node using the proof of time consensus." -edition = "2021" -homepage = "https://analog.one/" -repository = "https://github.com/analog-labs/testnet" -version = "0.5.0" +description = "A blockchain node using the proof of time consensus." +version = "0.6.0" +default-run = "timechain-node" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true + +[package.metadata.wasm-pack.profile.release] +# `wasm-opt` has some problems on linux, see +# https://github.com/rustwasm/wasm-pack/issues/781 etc. +wasm-opt = false [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] @@ -15,80 +23,112 @@ targets = [ "x86_64-unknown-linux-gnu" ] name = "timechain-node" [dependencies] -async-channel = "1.9.0" -async-trait = "0.1.73" -clap = { version = "4.4.4", features = [ "derive" ] } -futures = "0.3.28" +anyhow.workspace = true +async-channel.workspace = true +async-trait.workspace = true +clap.workspace = true +futures.workspace = true +log.workspace = true +serde.workspace = true +serde_json.workspace = true +tokio.workspace = true +tracing.workspace = true + +bincode = "1.3.3" +convert_case = "0.6" hex-literal = "0.4.1" -serde = "1.0" -serde_json = "1.0" -serde_with = { version = "1.0", features = [ "hex" ] } - -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -pallet-im-online = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-network = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-statement-store = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } - -# node 's RPCs deps + +polkadot-sdk = { workspace = true, features = [ + "frame-benchmarking", + "frame-benchmarking-cli", + "frame-metadata-hash-extension", + "frame-system", + "frame-system-rpc-runtime-api", + + "pallet-im-online", + "pallet-transaction-payment", + "pallet-transaction-payment-rpc", + + "sc-authority-discovery", + "sc-basic-authorship", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-consensus-babe", + "sc-consensus-babe-rpc", + "sc-consensus-grandpa", + "sc-consensus-grandpa-rpc", + "sc-consensus-slots", + "sc-executor", + "sc-network", + "sc-network-sync", + "sc-offchain", + "sc-rpc", + "sc-rpc-api", + "sc-rpc-spec-v2", + "sc-service", + "sc-storage-monitor", + "sc-sync-state-rpc", + "sc-sysinfo", + "sc-telemetry", + "sc-transaction-pool", + "sc-transaction-pool-api", + + "sp-api", + "sp-authority-discovery", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-consensus-grandpa", + "sp-core", + "sp-io", + "sp-inherents", + "sp-keyring", + "sp-keystore", + "sp-runtime", + "sp-timestamp", + "sp-transaction-storage-proof", + + "staging-node-inspect", + "substrate-frame-rpc-system", + "substrate-state-trie-migration-rpc", +] } + +# node's rpc dependencies jsonrpsee = { version = "0.22.1", features = [ "server" ] } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } - -# These dependencies are used for runtime benchmarking -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -# Local Dependencies + +# node's local dependencies chronicle = { path = "../chronicle", optional = true } time-primitives = { path = "../primitives" } -timechain-runtime = { path = "../runtime", version = "0.0.1" } +timechain-runtime = { path = "../runtime" } tc-subxt = { path = "../tc-subxt", optional = true } -# CLI-specific dependencies -try-runtime-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", optional = true } -anyhow = "1.0.79" -bincode = "1.3.3" -convert_case = "0.6" -tokio = "1.35.1" -tracing = "0.1.40" +# additional command line interfaces +#try-runtime-core = { git = "https://github.com/paritytech/try-runtime-cli", tag = "v0.7.0", optional = true } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } +polkadot-sdk = { workspace = true, features = [ "substrate-build-script-utils" ] } [features] -default = [] +default = [ "std" ] +std = [ + "polkadot-sdk/std" +] # Dependencies that are only required if runtime benchmarking should be build. -runtime-benchmarks = ["frame-benchmarking-cli/runtime-benchmarks", "frame-benchmarking/runtime-benchmarks", "timechain-runtime/runtime-benchmarks"] -# Enable features that allow the runtime to be tried and debugged. Name might be subject to change -# in the near future. -try-runtime = ["timechain-runtime/try-runtime", "try-runtime-cli"] +runtime-benchmarks = [ + "polkadot-sdk/runtime-benchmarks", + "timechain-runtime/runtime-benchmarks" +] +# Enable features that allow the runtime to be tried and debugged. +try-runtime = [ + "polkadot-sdk/try-runtime", + "timechain-runtime/try-runtime", + #"try-runtime-core", +] +development = [ + "timechain-runtime/development" +] # runs chronicle with node chronicle = ["dep:chronicle", "dep:tc-subxt"] diff --git a/node/build.rs b/node/build.rs index e3bfe3116b..8ee8f23d85 100644 --- a/node/build.rs +++ b/node/build.rs @@ -1,4 +1,4 @@ -use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed}; +use polkadot_sdk::substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed}; fn main() { generate_cargo_keys(); diff --git a/node/src/benchmarking.rs b/node/src/benchmarking.rs index e7f5242f59..d3b744a56d 100644 --- a/node/src/benchmarking.rs +++ b/node/src/benchmarking.rs @@ -1,39 +1,30 @@ -// This file is part of Substrate. - -// Copyright (C) 2022 Parity Technologies (UK) Ltd. -// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 - -// 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 . - //! Setup code for [`super::command`] which would otherwise bloat that module. //! //! Should only be used for benchmarking as it may break in other contexts. use crate::service::FullClient; -use futures::TryFutureExt; -use runtime::{AccountId, Balance, BalancesCall, SystemCall}; +use polkadot_sdk::*; + +use frame_system_rpc_runtime_api::AccountNonceApi; + use sc_cli::Result; -use sc_client_api::BlockBackend; -use sp_core::{Encode, Pair}; use sp_inherents::{InherentData, InherentDataProvider}; use sp_keyring::Sr25519Keyring; -use sp_runtime::{OpaqueExtrinsic, SaturatedConversion}; +use sp_runtime::OpaqueExtrinsic; + +use sc_client_api::BlockBackend; +use sp_api::ProvideRuntimeApi; +use sp_core::crypto::Pair; +use sp_runtime::codec::Encode; +use sp_runtime::{generic, SaturatedConversion}; + +use time_primitives::{AccountId, Balance}; +use timechain_runtime::{BalancesCall, SystemCall}; + use std::{sync::Arc, time::Duration}; -use timechain_runtime as runtime; -/// Generates extrinsics for the `benchmark overhead` command. +/// Generates `System::Remark` extrinsics for the benchmarks. /// /// Note: Should only be used for benchmarking. pub struct RemarkBuilder { @@ -58,11 +49,11 @@ impl frame_benchmarking_cli::ExtrinsicBuilder for RemarkBuilder { fn build(&self, nonce: u32) -> std::result::Result { let acc = Sr25519Keyring::Bob.pair(); - let extrinsic: OpaqueExtrinsic = create_benchmark_extrinsic( + let extrinsic: OpaqueExtrinsic = create_extrinsic( self.client.as_ref(), acc, - SystemCall::remark { remark: vec![] }.into(), - nonce, + SystemCall::remark { remark: vec![] }, + Some(nonce), ) .into(); @@ -97,15 +88,14 @@ impl frame_benchmarking_cli::ExtrinsicBuilder for TransferKeepAliveBuilder { fn build(&self, nonce: u32) -> std::result::Result { let acc = Sr25519Keyring::Bob.pair(); - let extrinsic: OpaqueExtrinsic = create_benchmark_extrinsic( + let extrinsic: OpaqueExtrinsic = create_extrinsic( self.client.as_ref(), acc, BalancesCall::transfer_keep_alive { dest: self.dest.clone().into(), value: self.value, - } - .into(), - nonce, + }, + Some(nonce), ) .into(); @@ -113,73 +103,89 @@ impl frame_benchmarking_cli::ExtrinsicBuilder for TransferKeepAliveBuilder { } } +/// Fetch the nonce of the given `account` from the chain state. +/// +/// Note: Should only be used for tests. +pub fn fetch_nonce(client: &FullClient, account: sp_core::sr25519::Pair) -> u32 { + let best_hash = client.chain_info().best_hash; + client + .runtime_api() + .account_nonce(best_hash, account.public().into()) + .expect("Fetching account nonce works; qed") +} + /// Create a transaction using the given `call`. /// -/// Note: Should only be used for benchmarking. -pub fn create_benchmark_extrinsic( +/// The transaction will be signed by `sender`. If `nonce` is `None` it will be fetched from the +/// state of the best block. +/// +/// Note: Should only be used for tests. +pub fn create_extrinsic( client: &FullClient, sender: sp_core::sr25519::Pair, - call: runtime::RuntimeCall, - nonce: u32, -) -> runtime::UncheckedExtrinsic { + function: impl Into, + nonce: Option, +) -> timechain_runtime::UncheckedExtrinsic { + let function = function.into(); let genesis_hash = client.block_hash(0).ok().flatten().expect("Genesis block exists; qed"); let best_hash = client.chain_info().best_hash; let best_block = client.chain_info().best_number; + let nonce = nonce.unwrap_or_else(|| fetch_nonce(client, sender.clone())); - let period = runtime::BlockHashCount::get() + let period = timechain_runtime::BlockHashCount::get() .checked_next_power_of_two() .map(|c| c / 2) .unwrap_or(2) as u64; - let extra: runtime::SignedExtra = ( - frame_system::CheckNonZeroSender::::new(), - frame_system::CheckSpecVersion::::new(), - frame_system::CheckTxVersion::::new(), - frame_system::CheckGenesis::::new(), - frame_system::CheckEra::::from(sp_runtime::generic::Era::mortal( + let tip = 0; + let extra: timechain_runtime::SignedExtra = ( + frame_system::CheckNonZeroSender::::new(), + frame_system::CheckSpecVersion::::new(), + frame_system::CheckTxVersion::::new(), + frame_system::CheckGenesis::::new(), + frame_system::CheckEra::::from(generic::Era::mortal( period, best_block.saturated_into(), )), - frame_system::CheckNonce::::from(nonce), - frame_system::CheckWeight::::new(), - pallet_transaction_payment::ChargeTransactionPayment::::from(0), + frame_system::CheckNonce::::from(nonce), + frame_system::CheckWeight::::new(), + pallet_transaction_payment::ChargeTransactionPayment::::from( + tip, + ), + frame_metadata_hash_extension::CheckMetadataHash::new(false), ); - let raw_payload = runtime::SignedPayload::from_raw( - call.clone(), + let raw_payload = timechain_runtime::SignedPayload::from_raw( + function.clone(), extra.clone(), ( (), - runtime::VERSION.spec_version, - runtime::VERSION.transaction_version, + timechain_runtime::VERSION.spec_version, + timechain_runtime::VERSION.transaction_version, genesis_hash, best_hash, (), (), (), + None, ), ); let signature = raw_payload.using_encoded(|e| sender.sign(e)); - runtime::UncheckedExtrinsic::new_signed( - call, + timechain_runtime::UncheckedExtrinsic::new_signed( + function, sp_runtime::AccountId32::from(sender.public()).into(), - runtime::Signature::Sr25519(signature), + timechain_runtime::Signature::Sr25519(signature), extra, ) } /// Generates inherent data for the `benchmark overhead` command. -/// -/// Note: Should only be used for benchmarking. pub fn inherent_benchmark_data() -> Result { let mut inherent_data = InherentData::new(); let d = Duration::from_millis(0); let timestamp = sp_timestamp::InherentDataProvider::new(d.into()); - futures::executor::block_on( - timestamp - .provide_inherent_data(&mut inherent_data) - .map_err(|e| format!("creating inherent data: {e:?}")), - )?; + futures::executor::block_on(timestamp.provide_inherent_data(&mut inherent_data)) + .map_err(|e| format!("creating inherent data: {:?}", e))?; Ok(inherent_data) } diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 0f034d2518..f9947ef5b8 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -1,16 +1,24 @@ use convert_case::{Case, Casing}; use hex_literal::hex; +use serde::{Deserialize, Serialize}; + +use polkadot_sdk::*; + use pallet_im_online::sr25519::AuthorityId as ImOnlineId; +use sc_chain_spec::ChainSpecExtension; use sc_service::{config::TelemetryEndpoints, ChainType}; + +use sp_authority_discovery::AuthorityId as DiscoveryId; use sp_consensus_babe::AuthorityId as BabeId; use sp_consensus_grandpa::AuthorityId as GrandpaId; use sp_core::{crypto::UncheckedInto, hex2array}; use sp_keyring::{AccountKeyring, Ed25519Keyring}; use sp_runtime::Perbill; + use timechain_runtime::{ - binaries, fast_binaries, AccountId, Balance, RuntimeGenesisConfig as GenesisConfig, - StakerStatus, ANLOG, TOKEN_DECIMALS, + AccountId, Balance, Block, StakerStatus, ANLOG, TOKEN_DECIMALS, WASM_BINARY, }; + const SS_58_FORMAT: u32 = 12850; /// Total supply of token is 90_570_710. @@ -57,8 +65,23 @@ const FIVE: [u8; 32] = const SIX: [u8; 32] = hex2array!("1880104772db7b947f3f8ccdcab3650d7179c44551d22dd0cca5dc852a140563"); +/// Node `ChainSpec` extensions. +/// +/// Additional parameters for some Substrate core modules, +/// customizable from the chain spec. +#[derive(Default, Clone, Serialize, Deserialize, ChainSpecExtension)] +#[serde(rename_all = "camelCase")] +pub struct Extensions { + /// Block numbers with known hashes. + pub fork_blocks: sc_client_api::ForkBlocks, + /// Known bad block hashes. + pub bad_blocks: sc_client_api::BadBlocks, + /// The light sync state extension used by the sync-state rpc. + pub light_sync_state: sc_sync_state_rpc::LightSyncStateExtension, +} + /// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type. -pub type ChainSpec = sc_service::GenericChainSpec; +pub type ChainSpec = sc_service::GenericChainSpec; /// Helper to parse genesis keys json #[derive(serde::Deserialize)] @@ -66,7 +89,7 @@ pub struct GenesisKeysConfig { /// Keys used to bootstrap validator session keys. /// Will match and register session keys to stashes and self-stake them. /// Balance to be staked is controlled by PER_VALIDATOR_UNLOCKED - bootstraps: Vec<(BabeId, GrandpaId, ImOnlineId)>, + bootstraps: Vec<(BabeId, GrandpaId, ImOnlineId, DiscoveryId)>, /// Stashes to be used for chronicles, balances controlled by PER_CHRONICLE_STASH chronicles: Vec, /// Optional controller account that will control all nominates stakes @@ -96,6 +119,7 @@ impl Default for GenesisKeysConfig { Alice.to_raw_public().unchecked_into(), Ed25519Keyring::Alice.to_raw_public().unchecked_into(), Alice.to_raw_public().unchecked_into(), + Alice.to_raw_public().unchecked_into(), )], chronicles: vec![ One.into(), @@ -157,9 +181,9 @@ impl GenesisKeysConfig { shard_threshold: u16, ) -> Result { let wasm_binary = match chain_type { - ChainType::Live => binaries::WASM_BINARY, - ChainType::Development => fast_binaries::WASM_BINARY, - ChainType::Local => fast_binaries::WASM_BINARY, + ChainType::Live => WASM_BINARY, + ChainType::Development => WASM_BINARY, + ChainType::Local => WASM_BINARY, _ => None, } .ok_or_else(|| "Analog wasm runtime not available".to_string())?; @@ -171,7 +195,7 @@ impl GenesisKeysConfig { let token_symbol = match chain_type { ChainType::Live => "ANLOG", ChainType::Development => "DANLOG", - ChainType::Local => "LANLOG", + ChainType::Local => "DANLOG", _ => return Err("Unsupported chain type".to_string()), }; @@ -284,10 +308,11 @@ impl GenesisKeysConfig { ( self.controller.clone().unwrap_or(self.stakes[i].clone()), self.stakes[i].clone(), - timechain_runtime::opaque::SessionKeys { + timechain_runtime::SessionKeys { babe: x.0.clone(), grandpa: x.1.clone(), im_online: x.2.clone(), + authority_discovery: x.3.clone(), }, ) }) @@ -341,9 +366,10 @@ impl GenesisKeysConfig { }); // Put it all together ... - let mut builder = ChainSpec::builder(wasm_binary, None) + let mut builder = ChainSpec::builder(wasm_binary, Default::default()) .with_name(&name) .with_id(id) + .with_protocol_id(id) .with_chain_type(chain_type) .with_properties(properties) .with_genesis_config_patch(genesis_patch); diff --git a/node/src/chains/staging.keys.json b/node/src/chains/staging.keys.json index 052ed37415..4189c98b5c 100644 --- a/node/src/chains/staging.keys.json +++ b/node/src/chains/staging.keys.json @@ -3,34 +3,27 @@ [ "anAHaZkjPoug2r3jsaua4dgVSKpp7hbw6vNRf1QDnAMpxxFBX", "anAyv3h5WA5ZpdML2sUESepg9hHbyzUvQpPds6G71vc538gjk", - "anA6xCRs3UwDt5ri9aTtgSwK7uTYnaxF9cj21xZ5VTNtBTiUb" + "anA6xCRs3UwDt5ri9aTtgSwK7uTYnaxF9cj21xZ5VTNtBTiUb", + "an9HcZPeNsaDVDbwWTmhfTHVsVo1h9SjzhUc2R6rgCtQ5n9Tc" ], [ "an9SBhr6eG7mgeCZ2hCUi84RUh1vjLiR6KCeXCwj2zvP8jFQp", "an8uwe7XZQ9aFYeB2sW5cJwYk3fiuEvz8fY3kzG4YJ2weUz1X", - "anA7JDLFWbHbsRgZ3Q42ySV3GqT7t8iY6SmzmtdizGvxDvzTR" + "anA7JDLFWbHbsRgZ3Q42ySV3GqT7t8iY6SmzmtdizGvxDvzTR", + "anAxq48n32vHYMowxuRfdeak2SSMRrkfimmyraRs45YgVQ3rE" ], [ "anB3wMnjF8W23k75KiXkYKiUL9qd6oARkv2NdLFBVeRHFEEnP", "an7ckbFPjiRYSP7XxsUS3oYoQfFscHeie4fZxS1bbD1uZSdYo", - "an5wuo6HvwJn5s533yHmKFz3Xum19dLbusshnWdd7pc1EHHG4" + "an5wuo6HvwJn5s533yHmKFz3Xum19dLbusshnWdd7pc1EHHG4", + "an6d9Bgr4Ggwg9A7rzzLGiX64nJFxQP5zAQp9SzpQaihS44xr" ], [ "an7he4fvJKFzUwjQ45HkUpZnVffC3AvzJtrqzkihaMzaH2RpM", "anB5ErzLFM4n6aqAKXnbAPhZomdCLzCt9pEd5BzHZhUtsrikE", - "an6w8aeLFnpAznRMdqJaPLsBAJjFLWbgHJFq45bQ2ZairTJvR" - ], - - [ - "an9nChdceNpx8ZBr4ASoDRYwFEis4WGpZ2rYPjz5MUiXvhfRz", - "an6NX4DZwXZU1rXvuMCNzJh4gTvjqdDmKkFHgrgXY2DX6H6d1", - "an6Gmr6BaR69W8DMLo7u482vrFpcPiDK4K2wtxkyHYGoMKV9C" - ], - [ - "an6wiDUGAQkPjadwBeYZu4h5HiZUnpumVWXpZ7bzL5sobTb4k", - "an9cqTxv6xSfPw3zmCQRVUxJXt5zJ9hqHMe2pngtXEmwHoE3C", - "an72972oyaS49v2QDshQJhToP7TJBBYCpRN2oiq5Fdvw9KRR4" + "an6w8aeLFnpAznRMdqJaPLsBAJjFLWbgHJFq45bQ2ZairTJvR", + "an6yrih9yJrAUf2xasYXgZX5ABt2xhPVKP8A9zA1XYGetnAG5" ] ], "chronicles": [ @@ -132,9 +125,13 @@ ], "endowments": [ ["an5xJhYKVepTVKH3JqeRc126R4iAzV8As9DuXLW9EQkyzhgFf", 100000], - ["an8MGkKQtjYr2KKPcP1EoNsUwQ6uwEJikZrTXHJ2f1gy8TV1N", 1000000] + ["an8MGkKQtjYr2KKPcP1EoNsUwQ6uwEJikZrTXHJ2f1gy8TV1N", 1000000], + ["an9kSckzNGEy9eA9tAs9dPNfYEXf8LJCFBrVDchZVTfjcpxE7", 50000], + ["anAW8EGrNU6bA6uMGnoXvr86YTFkB5hxtRitW2WePUv4p2986", 50000] + ], + "nominators": [ + "anAkNQdVkbM5XgzFxtS6auRRBCv74R2gFhXoYSHi7pQAW74vG" ], - "nominators": [], "stakes": [ "anAjuQVafzzr1PkHkJNq2WAu9LFE2iQwAtgEXc2VXbAyDBW85", "an8UApHkBognKNqg4EcXGQM6PV5UQZmwoF5DVgD85J4obHA3E", diff --git a/node/src/chains/testnet.raw.json b/node/src/chains/testnet.raw.json index 9a8f09c884..048a4dd749 100644 --- a/node/src/chains/testnet.raw.json +++ b/node/src/chains/testnet.raw.json @@ -12,6 +12,7 @@ 1 ] ], + "protocolId": "anlogcc1", "properties": { "ss58Format": 12850, "tokenDecimals": 12, diff --git a/node/src/chronicle/mod.rs b/node/src/chronicle/mod.rs index 2bef60da4e..de8c032560 100644 --- a/node/src/chronicle/mod.rs +++ b/node/src/chronicle/mod.rs @@ -7,7 +7,7 @@ use sp_api::ProvideRuntimeApi; use sp_runtime::traits::Block; use std::sync::Arc; use time_primitives::{ - BlockHash, BlockTimeApi, MembersApi, NetworksApi, ShardsApi, SubmitTransactionApi, TasksApi, + BlockHash, MembersApi, NetworksApi, ShardsApi, SubmitTransactionApi, TasksApi, }; mod network; @@ -28,12 +28,7 @@ where B: Block, C: BlockchainEvents + HeaderBackend + 'static, R: ProvideRuntimeApi + Send + Sync + 'static, - R::Api: MembersApi - + NetworksApi - + ShardsApi - + TasksApi - + BlockTimeApi - + SubmitTransactionApi, + R::Api: MembersApi + NetworksApi + ShardsApi + TasksApi + SubmitTransactionApi, N: NetworkRequest + NetworkSigner + Send + Sync + 'static, { let (network, net_request) = if let Some((network, incoming)) = params.network { diff --git a/node/src/chronicle/runtime.rs b/node/src/chronicle/runtime.rs index 33fa85343a..69072efac7 100644 --- a/node/src/chronicle/runtime.rs +++ b/node/src/chronicle/runtime.rs @@ -13,10 +13,10 @@ use tc_subxt::{ OnlineClient, PolkadotConfig, StreamOfResults, SubxtClient, TxProgress, TxSubmitter, }; use time_primitives::{ - AccountId, BlockHash, BlockNumber, BlockTimeApi, Commitment, MemberStatus, MembersApi, - NetworkId, NetworksApi, PeerId, ProofOfKnowledge, PublicKey, Runtime, ShardId, ShardStatus, - ShardsApi, SubmitTransactionApi, TaskDescriptor, TaskError, TaskExecution, TaskId, TaskResult, - TasksApi, TssSignature, + AccountId, BlockHash, BlockNumber, Commitment, MemberStatus, MembersApi, NetworkId, + NetworksApi, PeerId, ProofOfKnowledge, PublicKey, Runtime, ShardId, ShardStatus, ShardsApi, + SubmitTransactionApi, TaskDescriptor, TaskError, TaskExecution, TaskId, TaskResult, TasksApi, + TssSignature, }; pub struct Substrate { @@ -31,12 +31,7 @@ where B: Block, C: HeaderBackend + BlockchainEvents + 'static, R: ProvideRuntimeApi + Send + Sync + 'static, - R::Api: BlockTimeApi - + NetworksApi - + MembersApi - + ShardsApi - + TasksApi - + SubmitTransactionApi, + R::Api: NetworksApi + MembersApi + ShardsApi + TasksApi + SubmitTransactionApi, { fn best_block(&self) -> B::Hash { self.client.info().best_hash @@ -73,12 +68,7 @@ where B: Block, C: HeaderBackend + BlockchainEvents + 'static, R: ProvideRuntimeApi + Send + Sync + 'static, - R::Api: BlockTimeApi - + NetworksApi - + MembersApi - + ShardsApi - + TasksApi - + SubmitTransactionApi, + R::Api: NetworksApi + MembersApi + ShardsApi + TasksApi + SubmitTransactionApi, { fn public_key(&self) -> &PublicKey { self.subxt_client.public_key() @@ -88,10 +78,6 @@ where self.subxt_client.account_id() } - async fn get_block_time_in_ms(&self) -> Result { - Ok(self.runtime_api().get_block_time_in_msec(self.best_block())?) - } - fn finality_notification_stream( &self, ) -> Pin + Send + 'static>> { diff --git a/node/src/cli.rs b/node/src/cli.rs index c2fc5bb761..f80b61eed0 100644 --- a/node/src/cli.rs +++ b/node/src/cli.rs @@ -1,26 +1,37 @@ -use std::path::PathBuf; - -use time_primitives::NetworkId; +use polkadot_sdk::*; +/// An overarching CLI command definition. #[derive(Debug, clap::Parser)] -#[group(skip)] pub struct Cli { - #[clap(subcommand)] + /// Possible subcommand with parameters. + #[command(subcommand)] pub subcommand: Option, + #[allow(missing_docs)] #[clap(flatten)] - pub run: RunCmd, -} + pub run: sc_cli::RunCmd, -#[derive(Debug, clap::Parser)] -#[group(skip)] -pub struct RunCmd { + /// Disable automatic hardware benchmarks. + /// + /// By default these benchmarks are automatically ran at startup and measure + /// the CPU speed, the memory bandwidth and the disk speed. + /// + /// The results are then printed out in the logs, and also sent as part of + /// telemetry, if telemetry is enabled. + #[arg(long)] + pub no_hardware_benchmarks: bool, + + #[allow(missing_docs)] #[clap(flatten)] - pub base: sc_cli::RunCmd, + pub storage_monitor: sc_storage_monitor::StorageMonitorParams, + + #[cfg(feature = "chronicle")] + #[allow(missing_docs)] #[clap(flatten)] pub chronicle: Option, } +#[cfg(feature = "chronicle")] #[derive(Debug, clap::Parser)] /// workaround for #[group(requires_all = ["network_id", "target_url", "target_keyfile", "timechain_keyfile"], multiple = true)] @@ -28,10 +39,10 @@ pub struct ChronicleArgs { /// The network to be used from Analog Connector. #[arg(required = false)] #[clap(long)] - pub network_id: NetworkId, + pub network_id: time_primitives::NetworkId, /// The secret to use for p2p networking. #[clap(long)] - pub network_keyfile: Option, + pub network_keyfile: Option, /// The port to bind to for p2p networking. #[clap(long)] pub bind_port: Option, @@ -45,19 +56,42 @@ pub struct ChronicleArgs { /// key file for connector wallet #[arg(required = false)] #[clap(long)] - pub target_keyfile: PathBuf, + pub target_keyfile: std::path::PathBuf, /// keyfile having an account with funds for timechain. #[arg(required = false)] #[clap(long)] - pub timechain_keyfile: PathBuf, + pub timechain_keyfile: std::path::PathBuf, } +/// Possible subcommands of the main binary. +#[allow(clippy::large_enum_variant)] #[derive(Debug, clap::Subcommand)] pub enum Subcommand { + /// The custom inspect subcommand for decoding blocks and extrinsics. + #[command( + name = "inspect", + about = "Decode given block or extrinsic using current native runtime." + )] + Inspect(staging_node_inspect::cli::InspectCmd), + + /// Sub-commands concerned with benchmarking. + /// The pallet benchmarking moved to the `pallet` sub-command. + #[command(subcommand)] + Benchmark(frame_benchmarking_cli::BenchmarkCmd), + /// Key management cli utilities - #[clap(subcommand)] + #[command(subcommand)] Key(sc_cli::KeySubcommand), + /// Verify a signature for a message, provided on STDIN, with a given (public or secret) key. + Verify(sc_cli::VerifyCmd), + + /// Generate a seed that provides a vanity address. + Vanity(sc_cli::VanityCmd), + + /// Sign a message, with a given (secret) key. + Sign(sc_cli::SignCmd), + /// Build a chain specification. BuildSpec(sc_cli::BuildSpecCmd), @@ -79,10 +113,6 @@ pub enum Subcommand { /// Revert the chain to a previous state. Revert(sc_cli::RevertCmd), - /// Sub-commands concerned with benchmarking. - #[clap(subcommand)] - Benchmark(Box), - /// Db meta columns information. ChainInfo(sc_cli::ChainInfoCmd), } diff --git a/node/src/command.rs b/node/src/command.rs index 4ae3284f0d..78494c9918 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -3,12 +3,20 @@ use crate::{ chain_spec, cli::{Cli, Subcommand}, service, + service::{new_partial, FullClient}, }; + +use polkadot_sdk::*; + use frame_benchmarking_cli::{BenchmarkCmd, ExtrinsicFactory, SUBSTRATE_REFERENCE_HARDWARE}; use sc_cli::SubstrateCli; use sc_service::PartialComponents; use sp_keyring::Sr25519Keyring; -use timechain_runtime::{Block, EXISTENTIAL_DEPOSIT}; +use sp_runtime::traits::HashingFor; + +use timechain_runtime::{Block, RuntimeApi, EXISTENTIAL_DEPOSIT}; + +use std::sync::Arc; impl SubstrateCli for Cli { fn impl_name() -> String { @@ -35,7 +43,7 @@ impl SubstrateCli for Cli { 2017 } - fn load_spec(&self, id: &str) -> Result, String> { + fn load_spec(&self, id: &str) -> std::result::Result, String> { Ok(match id { // Choose latest live network by default "" | "testnet" => Box::new(chain_spec::ChainSpec::from_json_bytes( @@ -64,77 +72,29 @@ impl SubstrateCli for Cli { } } -/// Parse and run command line arguments +/// Parse command line arguments into service configuration. pub fn run() -> sc_cli::Result<()> { let cli = Cli::from_args(); + match &cli.subcommand { - Some(Subcommand::Key(cmd)) => cmd.run(&cli), - Some(Subcommand::BuildSpec(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.sync_run(|config| cmd.run(config.chain_spec, config.network)) - }, - Some(Subcommand::CheckBlock(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.async_run(|config| { - let PartialComponents { - client, - task_manager, - import_queue, - .. - } = service::new_partial(&config)?; - Ok((cmd.run(client, import_queue), task_manager)) - }) - }, - Some(Subcommand::ExportBlocks(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.async_run(|config| { - let PartialComponents { client, task_manager, .. } = service::new_partial(&config)?; - Ok((cmd.run(client, config.database), task_manager)) - }) - }, - Some(Subcommand::ExportState(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.async_run(|config| { - let PartialComponents { client, task_manager, .. } = service::new_partial(&config)?; - Ok((cmd.run(client, config.chain_spec), task_manager)) - }) - }, - Some(Subcommand::ImportBlocks(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.async_run(|config| { - let PartialComponents { - client, - task_manager, - import_queue, - .. - } = service::new_partial(&config)?; - Ok((cmd.run(client, import_queue), task_manager)) + None => { + let runner = cli.create_runner(&cli.run)?; + runner.run_node_until_exit(|config| async move { + service::new_full(config, cli).map_err(sc_cli::Error::Service) }) }, - Some(Subcommand::PurgeChain(cmd)) => { - let runner = cli.create_runner(cmd)?; - runner.sync_run(|config| cmd.run(config.database)) - }, - Some(Subcommand::Revert(cmd)) => { + Some(Subcommand::Inspect(cmd)) => { let runner = cli.create_runner(cmd)?; - runner.async_run(|config| { - let PartialComponents { - client, task_manager, backend, .. - } = service::new_partial(&config)?; - let aux_revert = Box::new(|client, _, blocks| { - sc_consensus_grandpa::revert(client, blocks)?; - Ok(()) - }); - Ok((cmd.run(client, backend, Some(aux_revert)), task_manager)) - }) + + runner.sync_run(|config| cmd.run::(config)) }, Some(Subcommand::Benchmark(cmd)) => { - let runner = cli.create_runner(cmd.as_ref())?; + let runner = cli.create_runner(cmd)?; runner.sync_run(|config| { // This switch needs to be in the client, since the client decides // which sub-commands it wants to support. - match cmd.as_ref() { + match cmd { BenchmarkCmd::Pallet(cmd) => { if !cfg!(feature = "runtime-benchmarks") { return Err( @@ -144,12 +104,11 @@ pub fn run() -> sc_cli::Result<()> { ); } - cmd.run::, sp_statement_store::runtime_api::HostFunctions>(config) + cmd.run_with_spec::, ()>(Some(config.chain_spec)) }, BenchmarkCmd::Block(cmd) => { // ensure that we keep the task manager alive - let partial = service::new_partial(&config)?; - + let partial = new_partial(&config)?; cmd.run(partial.client) }, #[cfg(not(feature = "runtime-benchmarks"))] @@ -160,7 +119,7 @@ pub fn run() -> sc_cli::Result<()> { #[cfg(feature = "runtime-benchmarks")] BenchmarkCmd::Storage(cmd) => { // ensure that we keep the task manager alive - let partial = service::new_partial(&config)?; + let partial = new_partial(&config)?; let db = partial.backend.expose_db(); let storage = partial.backend.expose_storage(); @@ -168,7 +127,7 @@ pub fn run() -> sc_cli::Result<()> { }, BenchmarkCmd::Overhead(cmd) => { // ensure that we keep the task manager alive - let partial = service::new_partial(&config)?; + let partial = new_partial(&config)?; let ext_builder = RemarkBuilder::new(partial.client.clone()); cmd.run( @@ -189,6 +148,7 @@ pub fn run() -> sc_cli::Result<()> { partial.client.clone(), Sr25519Keyring::Alice.to_account_id(), EXISTENTIAL_DEPOSIT, + //ExistentialDeposit::get(), )), ]); @@ -205,15 +165,73 @@ pub fn run() -> sc_cli::Result<()> { } }) }, - Some(Subcommand::ChainInfo(cmd)) => { + Some(Subcommand::Key(cmd)) => cmd.run(&cli), + Some(Subcommand::Sign(cmd)) => cmd.run(), + Some(Subcommand::Verify(cmd)) => cmd.run(), + Some(Subcommand::Vanity(cmd)) => cmd.run(), + Some(Subcommand::BuildSpec(cmd)) => { let runner = cli.create_runner(cmd)?; - runner.sync_run(|config| cmd.run::(&config)) + runner.sync_run(|config| cmd.run(config.chain_spec, config.network)) }, - None => { - let runner = cli.create_runner(&cli.run.base)?; - runner.run_node_until_exit(|config| async move { - service::new_full(config, cli.run.chronicle).map_err(sc_cli::Error::Service) + Some(Subcommand::CheckBlock(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.async_run(|config| { + let PartialComponents { + client, + task_manager, + import_queue, + .. + } = new_partial(&config)?; + Ok((cmd.run(client, import_queue), task_manager)) + }) + }, + Some(Subcommand::ExportBlocks(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.async_run(|config| { + let PartialComponents { client, task_manager, .. } = new_partial(&config)?; + Ok((cmd.run(client, config.database), task_manager)) + }) + }, + Some(Subcommand::ExportState(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.async_run(|config| { + let PartialComponents { client, task_manager, .. } = new_partial(&config)?; + Ok((cmd.run(client, config.chain_spec), task_manager)) }) }, + Some(Subcommand::ImportBlocks(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.async_run(|config| { + let PartialComponents { + client, + task_manager, + import_queue, + .. + } = new_partial(&config)?; + Ok((cmd.run(client, import_queue), task_manager)) + }) + }, + Some(Subcommand::PurgeChain(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.sync_run(|config| cmd.run(config.database)) + }, + Some(Subcommand::Revert(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.async_run(|config| { + let PartialComponents { + client, task_manager, backend, .. + } = new_partial(&config)?; + let aux_revert = Box::new(|client: Arc, backend, blocks| { + sc_consensus_babe::revert(client.clone(), backend, blocks)?; + sc_consensus_grandpa::revert(client, blocks)?; + Ok(()) + }); + Ok((cmd.run(client, backend, Some(aux_revert)), task_manager)) + }) + }, + Some(Subcommand::ChainInfo(cmd)) => { + let runner = cli.create_runner(cmd)?; + runner.sync_run(|config| cmd.run::(&config)) + }, } } diff --git a/node/src/main.rs b/node/src/main.rs index 2cc494e510..685a14d74c 100644 --- a/node/src/main.rs +++ b/node/src/main.rs @@ -1,5 +1,4 @@ -//! Substrate Node Template CLI library. -#![warn(missing_docs)] +//! Substrate Node CLI mod chain_spec; #[cfg(feature = "chronicle")] @@ -11,6 +10,8 @@ mod cli; mod command; mod rpc; +use polkadot_sdk::*; + fn main() -> sc_cli::Result<()> { command::run() } diff --git a/node/src/rpc.rs b/node/src/rpc.rs index eb27f04a3d..eb7d5d2133 100644 --- a/node/src/rpc.rs +++ b/node/src/rpc.rs @@ -1,58 +1,157 @@ //! A collection of node-specific RPC methods. +//! //! Substrate provides the `sc-rpc` crate, which defines the core RPC layer //! used by Substrate nodes. This file extends those RPC definitions with //! capabilities that are specific to this project's runtime configuration. #![warn(missing_docs)] -#![allow(clippy::type_complexity)] use jsonrpsee::RpcModule; +use std::sync::Arc; + +use polkadot_sdk::*; + +use sc_client_api::AuxStore; +use sc_consensus_babe::BabeWorkerHandle; +use sc_consensus_grandpa::{ + FinalityProofProvider, GrandpaJustificationStream, SharedAuthoritySet, SharedVoterState, +}; +pub use sc_rpc::SubscriptionTaskExecutor; +pub use sc_rpc_api::DenyUnsafe; use sc_transaction_pool_api::TransactionPool; + use sp_api::ProvideRuntimeApi; use sp_block_builder::BlockBuilder; use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; -use std::sync::Arc; -use timechain_runtime::{opaque::Block, AccountId, Balance, Index}; +use sp_consensus::SelectChain; +use sp_consensus_babe::BabeApi; +use sp_keystore::KeystorePtr; -pub use sc_rpc_api::DenyUnsafe; +use time_primitives::{AccountId, Balance, BlockNumber}; +use timechain_runtime::{opaque::Block, Hash, Nonce}; + +/// Extra dependencies for BABE. +pub struct BabeDeps { + /// A handle to the BABE worker for issuing requests. + pub babe_worker_handle: BabeWorkerHandle, + /// The keystore that manages the keys of the node. + pub keystore: KeystorePtr, +} + +/// Extra dependencies for GRANDPA +pub struct GrandpaDeps { + /// Voting round info. + pub shared_voter_state: SharedVoterState, + /// Authority set info. + pub shared_authority_set: SharedAuthoritySet, + /// Receives notifications about justification events from Grandpa. + pub justification_stream: GrandpaJustificationStream, + /// Executor to drive the subscription manager in the Grandpa RPC handler. + pub subscription_executor: SubscriptionTaskExecutor, + /// Finality proof provider. + pub finality_provider: Arc>, +} /// Full client dependencies. -pub struct FullDeps { +pub struct FullDeps { /// The client instance to use. pub client: Arc, /// Transaction pool instance. pub pool: Arc

, + /// The SelectChain Strategy + pub select_chain: SC, + /// A copy of the chain spec. + pub chain_spec: Box, /// Whether to deny unsafe calls pub deny_unsafe: DenyUnsafe, + /// BABE specific dependencies. + pub babe: BabeDeps, + /// GRANDPA specific dependencies. + pub grandpa: GrandpaDeps, + /// The backend used by the node. + pub backend: Arc, } -/// Instantiate all full RPC extensions. -pub fn create_full( - deps: FullDeps, +/// Instantiate all Full RPC extensions. +pub fn create_full( + FullDeps { + client, + pool, + select_chain, + chain_spec, + deny_unsafe, + babe, + grandpa, + backend, + }: FullDeps, ) -> Result, Box> where - C: sc_client_api::BlockBackend - + ProvideRuntimeApi + C: ProvideRuntimeApi + + sc_client_api::BlockBackend + HeaderBackend + + AuxStore + HeaderMetadata - + Send + Sync + + Send + 'static, - C::Api: substrate_frame_rpc_system::AccountNonceApi, + C::Api: substrate_frame_rpc_system::AccountNonceApi, C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi, - C::Api: time_primitives::TasksApi, - C::Api: time_primitives::ShardsApi, + C::Api: BabeApi, C::Api: BlockBuilder, P: TransactionPool + 'static, + SC: SelectChain + 'static, + B: sc_client_api::Backend + Send + Sync + 'static, + B::State: sc_client_api::backend::StateBackend>, { use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer}; + use sc_consensus_babe_rpc::{Babe, BabeApiServer}; + use sc_consensus_grandpa_rpc::{Grandpa, GrandpaApiServer}; + use sc_rpc::dev::{Dev, DevApiServer}; + use sc_rpc_spec_v2::chain_spec::{ChainSpec, ChainSpecApiServer}; + use sc_sync_state_rpc::{SyncState, SyncStateApiServer}; use substrate_frame_rpc_system::{System, SystemApiServer}; + use substrate_state_trie_migration_rpc::{StateMigration, StateMigrationApiServer}; + + let mut io = RpcModule::new(()); + + let BabeDeps { keystore, babe_worker_handle } = babe; + let GrandpaDeps { + shared_voter_state, + shared_authority_set, + justification_stream, + subscription_executor, + finality_provider, + } = grandpa; + + let chain_name = chain_spec.name().to_string(); + let genesis_hash = client.block_hash(0).ok().flatten().expect("Genesis block exists; qed"); + let properties = chain_spec.properties(); + io.merge(ChainSpec::new(chain_name, genesis_hash, properties).into_rpc())?; + + io.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?; + io.merge(TransactionPayment::new(client.clone()).into_rpc())?; + io.merge( + Babe::new(client.clone(), babe_worker_handle.clone(), keystore, select_chain, deny_unsafe) + .into_rpc(), + )?; + io.merge( + Grandpa::new( + subscription_executor, + shared_authority_set.clone(), + shared_voter_state, + justification_stream, + finality_provider, + ) + .into_rpc(), + )?; - let mut module = RpcModule::new(()); - let FullDeps { client, pool, deny_unsafe } = deps; + io.merge( + SyncState::new(chain_spec, client.clone(), shared_authority_set, babe_worker_handle)? + .into_rpc(), + )?; - module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?; - module.merge(TransactionPayment::new(client.clone()).into_rpc())?; + io.merge(StateMigration::new(client.clone(), backend, deny_unsafe).into_rpc())?; + io.merge(Dev::new(client, deny_unsafe).into_rpc())?; - Ok(module) + Ok(io) } diff --git a/node/src/service.rs b/node/src/service.rs index 14936b7730..81a1b10b1e 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -1,48 +1,56 @@ -//! Service and ServiceFactory implementation. Specialized wrapper over substrate service. +//! Service implementation. Specialized wrapper over substrate service. + +#![allow(clippy::type_complexity)] + +use crate::{cli, rpc}; -use crate::cli::ChronicleArgs; use futures::prelude::*; +use std::{path::Path, sync::Arc}; + +use polkadot_sdk::*; + +use frame_benchmarking_cli::SUBSTRATE_REFERENCE_HARDWARE; use sc_client_api::{Backend, BlockBackend}; -use sc_consensus_grandpa::SharedVoterState; -pub use sc_executor::NativeElseWasmExecutor; -use sc_service::{error::Error as ServiceError, Configuration, TaskManager}; +use sc_consensus_babe::{self, SlotProportion}; +use sc_network::{ + event::Event, service::traits::NetworkService, NetworkBackend, NetworkEventStream, +}; +use sc_network_sync::{strategy::warp::WarpSyncParams, SyncingService}; +use sc_service::{config::Configuration, error::Error as ServiceError, RpcHandlers, TaskManager}; use sc_telemetry::{Telemetry, TelemetryWorker}; use sc_transaction_pool_api::OffchainTransactionPoolFactory; -use std::{sync::Arc, time::Duration}; -use timechain_runtime::{self, opaque::Block, RuntimeApi}; +use sp_runtime::traits::Block as BlockT; -// Our native executor instance. -pub struct ExecutorDispatch; +use timechain_runtime::{self, opaque::Block, RuntimeApi}; -impl sc_executor::NativeExecutionDispatch for ExecutorDispatch { - /// Only enable the benchmarking host functions when we actually want to benchmark. - #[cfg(feature = "runtime-benchmarks")] - type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions; - /// Otherwise we only use the default Substrate host functions. - #[cfg(not(feature = "runtime-benchmarks"))] - type ExtendHostFunctions = (); +/// Host functions required for runtime and node. +#[cfg(not(feature = "runtime-benchmarks"))] +pub type HostFunctions = sp_io::SubstrateHostFunctions; - fn dispatch(method: &str, data: &[u8]) -> Option> { - timechain_runtime::api::dispatch(method, data) - } +/// Host functions required for runtime and node. +#[cfg(feature = "runtime-benchmarks")] +pub type HostFunctions = + (sp_io::SubstrateHostFunctions, frame_benchmarking::benchmarking::HostFunctions); - fn native_version() -> sc_executor::NativeVersion { - timechain_runtime::native_version() - } -} +/// A specialized `WasmExecutor` intended to use across substrate node. It provides all required +/// HostFunctions. +pub type RuntimeExecutor = sc_executor::WasmExecutor; -pub(crate) type FullClient = - sc_service::TFullClient>; +/// The full client type definition. +pub type FullClient = sc_service::TFullClient; type FullBackend = sc_service::TFullBackend; type FullSelectChain = sc_consensus::LongestChain; type FullGrandpaBlockImport = sc_consensus_grandpa::GrandpaBlockImport; -/// The minimum periof of blocks on which justifications will be +/// The transaction pool type definition. +pub type TransactionPool = sc_transaction_pool::FullPool; + +/// The minimum period of blocks on which justifications will be /// imported and generated. const GRANDPA_JUSTIFICATION_PERIOD: u32 = 512; -#[allow(clippy::type_complexity)] +/// Creates a new partial node. pub fn new_partial( config: &Configuration, ) -> Result< @@ -53,9 +61,16 @@ pub fn new_partial( sc_consensus::DefaultImportQueue, sc_transaction_pool::FullPool, ( - sc_consensus_babe::BabeBlockImport, - sc_consensus_grandpa::LinkHalf, - sc_consensus_babe::BabeLink, + impl Fn( + rpc::DenyUnsafe, + sc_rpc::SubscriptionTaskExecutor, + ) -> Result, sc_service::Error>, + ( + sc_consensus_babe::BabeBlockImport, + sc_consensus_grandpa::LinkHalf, + sc_consensus_babe::BabeLink, + ), + sc_consensus_grandpa::SharedVoterState, Option, ), >, @@ -72,7 +87,7 @@ pub fn new_partial( }) .transpose()?; - let executor = sc_service::new_native_or_wasm_executor(config); + let executor = sc_service::new_wasm_executor(config); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( @@ -100,19 +115,20 @@ pub fn new_partial( let (grandpa_block_import, grandpa_link) = sc_consensus_grandpa::block_import( client.clone(), GRANDPA_JUSTIFICATION_PERIOD, - &client, + &(client.clone() as Arc<_>), select_chain.clone(), telemetry.as_ref().map(|x| x.handle()), )?; + let justification_import = grandpa_block_import.clone(); - let babe_config = sc_consensus_babe::configuration(&*client)?; - let (block_import, babe_link) = - sc_consensus_babe::block_import(babe_config, grandpa_block_import.clone(), client.clone())?; + let (block_import, babe_link) = sc_consensus_babe::block_import( + sc_consensus_babe::configuration(&*client)?, + grandpa_block_import, + client.clone(), + )?; let slot_duration = babe_link.config().slot_duration(); - let justification_import = grandpa_block_import; - - let (import_queue, babe_task_handle) = + let (import_queue, babe_worker_handle) = sc_consensus_babe::import_queue(sc_consensus_babe::ImportQueueParams { link: babe_link.clone(), block_import: block_import.clone(), @@ -135,25 +151,111 @@ pub fn new_partial( telemetry: telemetry.as_ref().map(|x| x.handle()), offchain_tx_pool_factory: OffchainTransactionPoolFactory::new(transaction_pool.clone()), })?; - std::mem::forget(babe_task_handle); + + let import_setup = (block_import, grandpa_link, babe_link); + + let (rpc_extensions_builder, rpc_setup) = { + let (_, grandpa_link, _) = &import_setup; + + let justification_stream = grandpa_link.justification_stream(); + let shared_authority_set = grandpa_link.shared_authority_set().clone(); + let shared_voter_state = sc_consensus_grandpa::SharedVoterState::empty(); + let shared_voter_state2 = shared_voter_state.clone(); + + let finality_proof_provider = sc_consensus_grandpa::FinalityProofProvider::new_for_service( + backend.clone(), + Some(shared_authority_set.clone()), + ); + + let client = client.clone(); + let pool = transaction_pool.clone(); + let select_chain = select_chain.clone(); + let keystore = keystore_container.keystore(); + let chain_spec = config.chain_spec.cloned_box(); + + let rpc_backend = backend.clone(); + let rpc_extensions_builder = + move |deny_unsafe, subscription_executor: rpc::SubscriptionTaskExecutor| { + let deps = rpc::FullDeps { + client: client.clone(), + pool: pool.clone(), + select_chain: select_chain.clone(), + chain_spec: chain_spec.cloned_box(), + deny_unsafe, + babe: rpc::BabeDeps { + keystore: keystore.clone(), + babe_worker_handle: babe_worker_handle.clone(), + }, + grandpa: rpc::GrandpaDeps { + shared_voter_state: shared_voter_state.clone(), + shared_authority_set: shared_authority_set.clone(), + justification_stream: justification_stream.clone(), + subscription_executor: subscription_executor.clone(), + finality_provider: finality_proof_provider.clone(), + }, + backend: rpc_backend.clone(), + }; + + rpc::create_full(deps).map_err(Into::into) + }; + + (rpc_extensions_builder, shared_voter_state2) + }; Ok(sc_service::PartialComponents { client, backend, task_manager, - import_queue, keystore_container, select_chain, + import_queue, transaction_pool, - other: (block_import, grandpa_link, babe_link, telemetry), + other: (rpc_extensions_builder, import_setup, rpc_setup, telemetry), }) } -/// Builds a new service for a full client. -pub fn new_full( +/// Result of [`new_full_base`]. +pub struct NewFullBase { + /// The task manager of the node. + pub task_manager: TaskManager, + /// The client instance of the node. + pub client: Arc, + /// The networking service of the node. + pub network: Arc, + /// The syncing service of the node. + pub sync: Arc>, + /// The transaction pool of the node. + pub transaction_pool: Arc, + /// The rpc handlers of the node. + pub rpc_handlers: RpcHandlers, +} + +/// Creates a full service from the configuration. +pub fn new_full_base::Hash>>( config: Configuration, - #[allow(unused)] args: Option, -) -> Result { + disable_hardware_benchmarks: bool, + #[cfg(feature = "chronicle")] chronicle_args: Option, + with_startup_data: impl FnOnce( + &sc_consensus_babe::BabeBlockImport, + &sc_consensus_babe::BabeLink, + ), +) -> Result { + let role = config.role.clone(); + let force_authoring = config.force_authoring; + let backoff_authoring_blocks = + Some(sc_consensus_slots::BackoffAuthoringOnFinalizedHeadLagging::default()); + let name = config.network.node_name.clone(); + let enable_grandpa = !config.disable_grandpa; + let prometheus_registry = config.prometheus_registry().cloned(); + let enable_offchain_worker = config.offchain_worker.enabled; + + let hwbench = (!disable_hardware_benchmarks) + .then_some(config.database.path().map(|database_path| { + let _ = std::fs::create_dir_all(database_path); + sc_sysinfo::gather_hwbench(Some(database_path)) + })) + .flatten(); + let sc_service::PartialComponents { client, backend, @@ -162,18 +264,30 @@ pub fn new_full( keystore_container, select_chain, transaction_pool, - other: (block_import, grandpa_link, babe_link, mut telemetry), + other: (rpc_builder, import_setup, rpc_setup, mut telemetry), } = new_partial(&config)?; - let mut net_config = sc_network::config::FullNetworkConfiguration::new(&config.network); - - let grandpa_protocol_name = sc_consensus_grandpa::protocol_standard_name( - &client.block_hash(0).ok().flatten().expect("Genesis block exists; qed"), - &config.chain_spec, + let metrics = N::register_notification_metrics( + config.prometheus_config.as_ref().map(|cfg| &cfg.registry), ); + let shared_voter_state = rpc_setup; + let auth_disc_publish_non_global_ips = config.network.allow_non_globals_in_dht; + let auth_disc_public_addresses = config.network.public_addresses.clone(); + + let mut net_config = + sc_network::config::FullNetworkConfiguration::<_, _, N>::new(&config.network); + let genesis_hash = client.block_hash(0).ok().flatten().expect("Genesis block exists; qed"); + let peer_store_handle = net_config.peer_store_handle(); + + let grandpa_protocol_name = + sc_consensus_grandpa::protocol_standard_name(&genesis_hash, &config.chain_spec); let (grandpa_protocol_config, grandpa_notification_service) = - sc_consensus_grandpa::grandpa_peers_set_config(grandpa_protocol_name.clone()); + sc_consensus_grandpa::grandpa_peers_set_config::<_, N>( + grandpa_protocol_name.clone(), + metrics.clone(), + Arc::clone(&peer_store_handle), + ); net_config.add_notification_protocol(grandpa_protocol_config); // registering time p2p protocol @@ -184,82 +298,67 @@ pub fn new_full( let warp_sync = Arc::new(sc_consensus_grandpa::warp_proof::NetworkProvider::new( backend.clone(), - grandpa_link.shared_authority_set().clone(), + import_setup.1.shared_authority_set().clone(), Vec::default(), )); let (network, system_rpc_tx, tx_handler_controller, network_starter, sync_service) = sc_service::build_network(sc_service::BuildNetworkParams { config: &config, + net_config, client: client.clone(), transaction_pool: transaction_pool.clone(), spawn_handle: task_manager.spawn_handle(), import_queue, block_announce_validator_builder: None, - warp_sync_params: Some(sc_service::WarpSyncParams::WithProvider(warp_sync)), - net_config, + warp_sync_params: Some(WarpSyncParams::WithProvider(warp_sync)), block_relay: None, + metrics, })?; - if config.offchain_worker.enabled { - task_manager.spawn_handle().spawn( - "offchain-workers-runner", - "offchain-worker", - sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { - runtime_api_provider: client.clone(), - is_validator: config.role.is_authority(), - keystore: Some(keystore_container.keystore()), - offchain_db: backend.offchain_storage(), - transaction_pool: Some(OffchainTransactionPoolFactory::new( - transaction_pool.clone(), - )), - network_provider: network.clone(), - enable_http_requests: false, - custom_extensions: |_| vec![], - }) - .run(client.clone(), task_manager.spawn_handle()) - .boxed(), - ); - } - - let role = config.role.clone(); - let force_authoring = config.force_authoring; - let backoff_authoring_blocks: Option<()> = None; - let name = config.network.node_name.clone(); - let enable_grandpa = !config.disable_grandpa; - let prometheus_registry = config.prometheus_registry().cloned(); - let keystore = keystore_container.keystore(); - - let rpc_extensions_builder = { - let client = client.clone(); - let pool = transaction_pool.clone(); - - Box::new(move |deny_unsafe, _| { - let deps = crate::rpc::FullDeps { - client: client.clone(), - pool: pool.clone(), - deny_unsafe, - }; - crate::rpc::create_full(deps).map_err(Into::into) - }) - }; - - let _rpc_handlers = sc_service::spawn_tasks(sc_service::SpawnTasksParams { - network: network.clone(), + let rpc_handlers = sc_service::spawn_tasks(sc_service::SpawnTasksParams { + config, + backend: backend.clone(), client: client.clone(), - keystore, - task_manager: &mut task_manager, + keystore: keystore_container.keystore(), + network: network.clone(), + rpc_builder: Box::new(rpc_builder), transaction_pool: transaction_pool.clone(), - rpc_builder: rpc_extensions_builder, - backend: backend.clone(), + task_manager: &mut task_manager, system_rpc_tx, tx_handler_controller, - config, - telemetry: telemetry.as_mut(), sync_service: sync_service.clone(), + telemetry: telemetry.as_mut(), })?; - if role.is_authority() { - let proposer_factory = sc_basic_authorship::ProposerFactory::new( + + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + match SUBSTRATE_REFERENCE_HARDWARE.check_hardware(&hwbench) { + Err(err) if role.is_authority() => { + log::warn!( + "⚠️ The hardware does not meet the minimal requirements {} for role 'Authority'.", + err + ); + }, + _ => {}, + } + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + + let (block_import, grandpa_link, babe_link) = import_setup; + + (with_startup_data)(&block_import, &babe_link); + + if let sc_service::config::Role::Authority { .. } = &role { + let proposer = sc_basic_authorship::ProposerFactory::new( task_manager.spawn_handle(), client.clone(), transaction_pool.clone(), @@ -272,11 +371,11 @@ pub fn new_full( keystore: keystore_container.keystore(), client: client.clone(), select_chain, + env: proposer, block_import, - env: proposer_factory, sync_oracle: sync_service.clone(), justification_sync_link: sync_service.clone(), - create_inherent_data_providers: move |_parent, ()| async move { + create_inherent_data_providers: move |_, ()| async move { let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); let slot = @@ -290,51 +389,84 @@ pub fn new_full( force_authoring, backoff_authoring_blocks, babe_link, - block_proposal_slot_portion: sc_consensus_babe::SlotProportion::new(2f32 / 3f32), + block_proposal_slot_portion: SlotProportion::new(0.5), max_block_proposal_slot_portion: None, telemetry: telemetry.as_ref().map(|x| x.handle()), }; let babe = sc_consensus_babe::start_babe(babe_config)?; + task_manager.spawn_essential_handle().spawn_blocking( + "babe-proposer", + Some("block-authoring"), + babe, + ); + } + + // Spawn authority discovery module. + if role.is_authority() { + let authority_discovery_role = + sc_authority_discovery::Role::PublishAndDiscover(keystore_container.keystore()); + let dht_event_stream = + network.event_stream("authority-discovery").filter_map(|e| async move { + match e { + Event::Dht(e) => Some(e), + _ => None, + } + }); + let (authority_discovery_worker, _service) = + sc_authority_discovery::new_worker_and_service_with_config( + sc_authority_discovery::WorkerConfig { + publish_non_global_ips: auth_disc_publish_non_global_ips, + public_addresses: auth_disc_public_addresses, + ..Default::default() + }, + client.clone(), + Arc::new(network.clone()), + Box::pin(dht_event_stream), + authority_discovery_role, + prometheus_registry.clone(), + ); - task_manager - .spawn_essential_handle() - .spawn_blocking("aura", Some("block-authoring"), babe); + task_manager.spawn_handle().spawn( + "authority-discovery-worker", + Some("networking"), + authority_discovery_worker.run(), + ); } - if enable_grandpa { - // if the node isn't actively participating in consensus then it doesn't - // need a keystore, regardless of which protocol we use below. - let keystore = if role.is_authority() { Some(keystore_container.keystore()) } else { None }; - - let grandpa_config = sc_consensus_grandpa::Config { - // FIXME #1578 make this available through chainspec - gossip_duration: Duration::from_millis(333), - justification_generation_period: GRANDPA_JUSTIFICATION_PERIOD, - name: Some(name), - observer_enabled: false, - keystore: keystore.clone(), - local_role: role, - telemetry: telemetry.as_ref().map(|x| x.handle()), - protocol_name: grandpa_protocol_name, - }; + // if the node isn't actively participating in consensus then it doesn't + // need a keystore, regardless of which protocol we use below. + let keystore = if role.is_authority() { Some(keystore_container.keystore()) } else { None }; + let grandpa_config = sc_consensus_grandpa::Config { + // FIXME #1578 make this available through chainspec + gossip_duration: std::time::Duration::from_millis(333), + justification_generation_period: GRANDPA_JUSTIFICATION_PERIOD, + name: Some(name), + observer_enabled: false, + keystore, + local_role: role.clone(), + telemetry: telemetry.as_ref().map(|x| x.handle()), + protocol_name: grandpa_protocol_name, + }; + + if enable_grandpa { // start the full GRANDPA voter // NOTE: non-authorities could run the GRANDPA observer protocol, but at // this point the full voter should provide better guarantees of block // and vote data availability than the observer. The observer has not // been tested extensively yet and having most nodes in a network run it // could lead to finality stalls. - let grandpa_config = sc_consensus_grandpa::GrandpaParams { + let grandpa_params = sc_consensus_grandpa::GrandpaParams { config: grandpa_config, link: grandpa_link, network: network.clone(), - voting_rule: sc_consensus_grandpa::VotingRulesBuilder::default().build(), - prometheus_registry, - shared_voter_state: SharedVoterState::empty(), - telemetry: telemetry.as_ref().map(|x| x.handle()), - sync: sync_service, + sync: Arc::new(sync_service.clone()), notification_service: grandpa_notification_service, + telemetry: telemetry.as_ref().map(|x| x.handle()), + voting_rule: sc_consensus_grandpa::VotingRulesBuilder::default().build(), + prometheus_registry: prometheus_registry.clone(), + shared_voter_state, offchain_tx_pool_factory: OffchainTransactionPoolFactory::new(transaction_pool.clone()), }; @@ -343,38 +475,105 @@ pub fn new_full( task_manager.spawn_essential_handle().spawn_blocking( "grandpa-voter", None, - sc_consensus_grandpa::run_grandpa_voter(grandpa_config)?, + sc_consensus_grandpa::run_grandpa_voter(grandpa_params)?, ); + } - #[cfg(feature = "chronicle")] - { - if let Some(args) = args { - let config = chronicle::ChronicleConfig { - network_id: args.network_id, - network_port: args.bind_port, - network_keyfile: args.network_keyfile, - timechain_url: "ws://127.0.0.1:9944".into(), - timechain_keyfile: args.timechain_keyfile, - target_url: args.target_url, - target_keyfile: args.target_keyfile, - }; - let network = if args.enable_iroh { None } else { Some((network, protocol_rx)) }; - let params = crate::chronicle::ChronicleParams { - client: client.clone(), - runtime: client.clone(), - tx_pool: OffchainTransactionPoolFactory::new(transaction_pool.clone()), - network, - config, - }; - task_manager.spawn_essential_handle().spawn_blocking( - "chronicle", - None, - async move { crate::chronicle::run_node_with_chronicle(params).await.unwrap() }, - ); - } + #[cfg(feature = "chronicle")] + { + if let Some(args) = chronicle_args { + let config = chronicle::ChronicleConfig { + network_id: args.network_id, + network_port: args.bind_port, + network_keyfile: args.network_keyfile, + timechain_url: "ws://127.0.0.1:9944".into(), + timechain_keyfile: args.timechain_keyfile, + target_url: args.target_url, + target_keyfile: args.target_keyfile, + }; + let network = if args.enable_iroh { None } else { Some((network, protocol_rx)) }; + let params = crate::chronicle::ChronicleParams { + client: client.clone(), + runtime: client.clone(), + tx_pool: OffchainTransactionPoolFactory::new(transaction_pool.clone()), + network, + config, + }; + task_manager + .spawn_essential_handle() + .spawn_blocking("chronicle", None, async move { + crate::chronicle::run_node_with_chronicle(params).await.unwrap() + }); } } + if enable_offchain_worker { + task_manager.spawn_handle().spawn( + "offchain-workers-runner", + "offchain-work", + sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { + runtime_api_provider: client.clone(), + keystore: Some(keystore_container.keystore()), + offchain_db: backend.offchain_storage(), + transaction_pool: Some(OffchainTransactionPoolFactory::new( + transaction_pool.clone(), + )), + network_provider: Arc::new(network.clone()), + is_validator: role.is_authority(), + enable_http_requests: true, + custom_extensions: |_| vec![], + }) + .run(client.clone(), task_manager.spawn_handle()) + .boxed(), + ); + } + network_starter.start_network(); + Ok(NewFullBase { + task_manager, + client, + network, + sync: sync_service, + transaction_pool, + rpc_handlers, + }) +} + +/// Builds a new service for a full client. +pub fn new_full(config: Configuration, cli: cli::Cli) -> Result { + let database_path = config.database.path().map(Path::to_path_buf); + + let task_manager = match config.network.network_backend { + sc_network::config::NetworkBackendType::Libp2p => { + new_full_base::>( + config, + cli.no_hardware_benchmarks, + #[cfg(feature = "chronicle")] + cli.chronicle, + |_, _| (), + ) + .map(|NewFullBase { task_manager, .. }| task_manager)? + }, + sc_network::config::NetworkBackendType::Litep2p => { + new_full_base::( + config, + cli.no_hardware_benchmarks, + #[cfg(feature = "chronicle")] + cli.chronicle, + |_, _| (), + ) + .map(|NewFullBase { task_manager, .. }| task_manager)? + }, + }; + + if let Some(database_path) = database_path { + sc_storage_monitor::StorageMonitorService::try_spawn( + cli.storage_monitor, + database_path, + &task_manager.spawn_essential_handle(), + ) + .map_err(|e| ServiceError::Application(e.into()))?; + } + Ok(task_manager) } diff --git a/pallets/elections/Cargo.toml b/pallets/elections/Cargo.toml index 7467a66dd6..0e7f50396d 100644 --- a/pallets/elections/Cargo.toml +++ b/pallets/elections/Cargo.toml @@ -1,42 +1,67 @@ [package] name = "pallet-elections" -authors = [ "Analog Devs " ] +version = "0.0.1" description = "A pallet for selecting members for shards." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "0.0.1" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ - "derive", -] } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -log = { version = "0.4.20", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } -serde = { version = "1.0.188", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +log.workspace = true +scale-codec.workspace = true +scale-info.workspace = true +serde.workspace = true + +#polkadot-sdk = { workspace = true, features = [ "frame-support", "frame-system", "sp-runtime", "sp-std" ] } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-std = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } + time-primitives = { path = "../../primitives", default-features = false } [dev-dependencies] -env_logger = "0.10.0" +env_logger.workspace = true lazy_static = "1.4.0" -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -pallet-shards = { path = "../shards" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } + +#polkadot-sdk = { workspace = true, features = [ "pallet-balances", "sp-core", "sp-io" ] } + +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + +pallet-shards = { path = "../shards", default-features = false } [features] default = [ "std" ] -std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "scale-info/std", "serde/std", "sp-core/std", "sp-runtime/std", "sp-std/std", "time-primitives/std" ] -runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "sp-core" ] -try-runtime = [ "frame-support/try-runtime" ] +std = [ + "log/std", + "scale-codec/std", + "scale-info/std", + "serde/std", + #"polkadot-sdk/std", + "frame-support/std", + "frame-system/std", + "sp-runtime/std", + "sp-std/std", + "frame-benchmarking?/std", + "time-primitives/std" +] +runtime-benchmarks = [ + #"polkadot-sdk/runtime-benchmarks", + "frame-benchmarking/runtime-benchmarks", +] +try-runtime = [ + #"polkadot-sdk/try-runtime" + "frame-support/try-runtime" +] diff --git a/pallets/elections/src/benchmarking.rs b/pallets/elections/src/benchmarking.rs index 3aef83444b..a082f1e939 100644 --- a/pallets/elections/src/benchmarking.rs +++ b/pallets/elections/src/benchmarking.rs @@ -1,5 +1,8 @@ use super::*; use crate::Pallet; + +//use polkadot_sdk::*; + use frame_benchmarking::benchmarks; use frame_system::RawOrigin; diff --git a/pallets/elections/src/lib.rs b/pallets/elections/src/lib.rs index 685553bd37..f208f9e156 100644 --- a/pallets/elections/src/lib.rs +++ b/pallets/elections/src/lib.rs @@ -1,6 +1,8 @@ #![cfg_attr(not(feature = "std"), no_std)] pub use pallet::*; +//use polkadot_sdk::{frame_support, frame_system, sp_std}; + #[cfg(feature = "runtime-benchmarks")] mod benchmarking; #[cfg(test)] diff --git a/pallets/elections/src/mock.rs b/pallets/elections/src/mock.rs index b3f18ff50f..fc9d865b9d 100644 --- a/pallets/elections/src/mock.rs +++ b/pallets/elections/src/mock.rs @@ -1,4 +1,7 @@ use crate::{self as pallet_elections}; + +//use polkadot_sdk::*; + use frame_support::derive_impl; use sp_core::{ConstU128, ConstU64}; use sp_runtime::{ diff --git a/pallets/elections/src/tests.rs b/pallets/elections/src/tests.rs index 88e73a817a..3996d735fb 100644 --- a/pallets/elections/src/tests.rs +++ b/pallets/elections/src/tests.rs @@ -1,4 +1,7 @@ use crate::{mock::*, Error, Event, ShardSize, ShardThreshold, Unassigned}; + +//use polkadot_sdk::*; + use frame_support::{assert_noop, assert_ok}; use frame_system::RawOrigin; use time_primitives::{ElectionsInterface, MemberEvents, NetworkId}; diff --git a/pallets/members/Cargo.toml b/pallets/members/Cargo.toml index 7b54c59a47..aa2a5ede55 100644 --- a/pallets/members/Cargo.toml +++ b/pallets/members/Cargo.toml @@ -1,41 +1,42 @@ [package] name = "pallet-members" -authors = [ "Analog Devs " ] +version = "0.0.1" description = "A pallet for storing members for shards." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "0.0.1" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ - "derive", -] } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -log = { version = "0.4.20", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +log.workspace = true +scale-codec.workspace = true +scale-info.workspace = true + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-std = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + time-primitives = { path = "../../primitives", default-features = false } simple-mermaid.workspace = true [dev-dependencies] -env_logger = "0.10.0" +env_logger.workspace = true lazy_static = "1.4.0" -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-keystore = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] -std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "pallet-balances/std", "scale-info/std", "sp-core/std", "sp-runtime/std", "sp-std/std", "time-primitives/std" ] +std = [ "scale-codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "pallet-balances/std", "scale-info/std", "sp-core/std", "sp-runtime/std", "sp-std/std", "time-primitives/std" ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "sp-core" ] try-runtime = [ "frame-support/try-runtime" ] diff --git a/pallets/networks/Cargo.toml b/pallets/networks/Cargo.toml index 39ad0f3438..f86550f970 100644 --- a/pallets/networks/Cargo.toml +++ b/pallets/networks/Cargo.toml @@ -1,41 +1,54 @@ [package] name = "pallet-networks" -authors = [ "Analog Devs " ] +version = "0.0.1" description = "A pallet for tokenomics of timegraph." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "0.0.1" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ - "derive", -] } - -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true} +scale-codec.workspace = true +scale-info.workspace = true + +#polkadot-sdk = { workspace = true, features = [ "frame-support", "frame-system", "sp-runtime" ] } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } + time-primitives = { path = "../../primitives", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +#polkadot-sdk = { workspace = true, features = [ "pallet-balances", "sp-core", "sp-io" ] } + +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false} +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] std = [ - "codec/std", - "frame-benchmarking?/std", + "scale-codec/std", + "scale-info/std", + #"polkadot-sdk/std", "frame-support/std", "frame-system/std", - "scale-info/std", "sp-runtime/std", - "time-primitives/std" + "frame-benchmarking?/std", + "time-primitives/std", +] +runtime-benchmarks = [ + #"polkadot-sdk/runtime-benchmarks", + "frame-benchmarking/runtime-benchmarks", + "pallet-balances/runtime-benchmarks", +] +try-runtime = [ + #"polkadot-sdk/try-runtime" + "frame-support/try-runtime" ] -runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "sp-core" ] -try-runtime = [ "frame-support/try-runtime" ] diff --git a/pallets/shards/Cargo.toml b/pallets/shards/Cargo.toml index c7309e9f22..cf7b88fb25 100644 --- a/pallets/shards/Cargo.toml +++ b/pallets/shards/Cargo.toml @@ -1,51 +1,65 @@ [package] name = "pallet-shards" -authors = [ "Analog Devs " ] +version = "4.0.0-dev" description = "A pallet for managing shards." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "4.0.0-dev" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ - "derive", -] } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -log = { version = "0.4.20", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } +log.workspace = true +scale-codec.workspace = true +scale-info.workspace = true + +#polkadot-sdk = { workspace = true, features = [ "frame-support", "frame-system", "sp-runtime", "sp-std" ] } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-std = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } + schnorr-evm = { version = "0.1.2", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } + time-primitives = { path = "../../primitives", default-features = false } simple-mermaid.workspace = true [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +#polkadot-sdk = { workspace = true, features = [ "pallet-balances", "sp-core", "sp-io" ] } + +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] std = [ - "codec/std", - "frame-benchmarking?/std", + "log/std", + "scale-codec/std", + "scale-info/std", + #"polkadot-sdk/std", "frame-support/std", "frame-system/std", - "scale-info/std", - "schnorr-evm/std", - "sp-core/std", "sp-runtime/std", "sp-std/std", + "frame-benchmarking?/std", + "schnorr-evm/std", "time-primitives/std", ] -runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "sp-core" ] -try-runtime = [ "frame-support/try-runtime" ] +runtime-benchmarks = [ + #"polkadot-sdk/runtime-benchmarks", + "frame-benchmarking/runtime-benchmarks", +] +try-runtime = [ + #"polkadot-sdk/try-runtime", + "frame-support/try-runtime", +] diff --git a/pallets/tasks/Cargo.toml b/pallets/tasks/Cargo.toml index 36c75225c1..a966927ed9 100644 --- a/pallets/tasks/Cargo.toml +++ b/pallets/tasks/Cargo.toml @@ -1,55 +1,79 @@ [package] name = "pallet-tasks" -authors = [ "Analog Devs " ] +version = "0.0.1" description = "A pallet for storing task(s) schedule info." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "0.0.1" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ "max-encoded-len" ] } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +log.workspace = true +scale-codec = { workspace = true, features = [ "max-encoded-len" ] } +scale-info.workspace = true + +#polkadot-sdk = { workspace = true, features = [ "frame-support", "frame-system", "pallet_balances", "sp-core", "sp-runtime", "sp-std" ] } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-std = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } + +schnorr-evm = { version = "0.1.0", default-features = false } + pallet-elections = { path = "../elections", default-features = false } pallet-members = { path = "../members", default-features = false } pallet-shards = { path = "../shards", default-features = false } -log = { version = "0.4.20", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } -schnorr-evm = { version = "0.1.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } time-primitives = { path = "../../primitives", default-features = false } simple-mermaid.workspace = true [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +#polkadot-sdk = { workspace = true, features = [ "sp-io" ] } + +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] std = [ - "codec/std", - "frame-benchmarking?/std", + "log/std", + "scale-codec/std", + "scale-info/std", + #"polkadot-sdk/std", "frame-support/std", "frame-system/std", "pallet-balances/std", - "pallet-elections/std", - "pallet-members/std", - "pallet-shards/std", - "scale-info/std", - "schnorr-evm/std", "sp-core/std", "sp-runtime/std", "sp-std/std", + "frame-benchmarking?/std", + + "schnorr-evm/std", + "pallet-elections/std", + "pallet-members/std", + "pallet-shards/std", "time-primitives/std", ] - -runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks" ] -try-runtime = [ "frame-support/try-runtime" ] +runtime-benchmarks = [ + #"polkadot-sdk/runtime-benchmarks", + "frame-benchmarking/runtime-benchmarks", + "pallet-balances/runtime-benchmarks", + "pallet-elections/runtime-benchmarks", + "pallet-members/runtime-benchmarks", + "pallet-shards/runtime-benchmarks", +] +try-runtime = [ + #"polkadot-sdk/try-runtime", + "frame-support/try-runtime", + "pallet-balances/try-runtime", + "pallet-elections/try-runtime", + "pallet-members/try-runtime", + "pallet-shards/try-runtime", +] diff --git a/pallets/tasks/src/lib.rs b/pallets/tasks/src/lib.rs index 4a622f43b0..580130e306 100644 --- a/pallets/tasks/src/lib.rs +++ b/pallets/tasks/src/lib.rs @@ -2,8 +2,8 @@ //! # Timechain Task Pallet //! //! This chart shows all the extrinsics and events of the task pallet. It categorizes the extrinsics into two types: those that can be called by root or council, and those that can be called by any user. The root or council extrinsics are related to administrative tasks, while user extrinsics are related to task operations and submissions. -//! -//! +//! +//! #![doc = simple_mermaid::mermaid!("../docs/tasks_extrinsics.mmd")] //! //! ## **Task Pallet Lifecycle and Operations** @@ -11,19 +11,18 @@ // #![doc = simple_mermaid::mermaid!("../docs/tasks_tb.mmd")] //! //! This flowchart outlines the lifecycle of a task in the task pallet. It starts with task creation and checks if the shard is online. If successful, the task is assigned to a shard and progresses through various phases (sign, write, read). Upon completion, rewards are paid out. Tasks can also be reset, and error handling includes retrying or canceling tasks. -//! +//! #![doc = simple_mermaid::mermaid!("../docs/tasks_lr.mmd")] //! //! ## **Unregister Gateways** //! This flowchart illustrates the process for unregistering gateways in the task pallet. It ensures that only a root user can perform this action. The process involves clearing a specified number of gateways, all registered shards, and filtering tasks to determine their status and handle them appropriately. Errors during the process are logged and returned. -//! +//! #![doc = simple_mermaid::mermaid!("../docs/unregister_gateways.mmd")] //! ## **Reset Tasks** //! This flowchart shows the process for resetting tasks in the task pallet. It ensures that only a root user can initiate the reset. The reset process includes iterating over unassigned tasks and tasks associated with specific shards, resetting their phase state, and adding them back to unassigned tasks if necessary. The iteration stops once the maximum number of tasks to be reset is reached. -//! +//! #![doc = simple_mermaid::mermaid!("../docs/reset_tasks.mmd")] - #[cfg(feature = "runtime-benchmarks")] mod benchmarking; pub use pallet::*; @@ -424,7 +423,6 @@ pub mod pallet { #[pallet::call] impl Pallet { - /// Allows users to create tasks on the blockchain. /// /// # Flow @@ -444,7 +442,6 @@ pub mod pallet { Ok(()) } - /// Allows users to submit results for a task. /// /// # Flow @@ -542,7 +539,6 @@ pub mod pallet { Ok(()) } - /// Handles the submission and validation of a signature for a specific task. /// # Flow /// 1. Validate the transaction origin is signed. @@ -552,7 +548,7 @@ pub mod pallet { /// 5. Compute the hash for the task. /// 6. Validate the provided signature against the computed hash. /// 7. Advance the task phase to `Write`. - /// 8. Store the validated signature for the task in the pallet's storage. + /// 8. Store the validated signature for the task in the pallet's storage. #[pallet::call_index(3)] #[pallet::weight(::WeightInfo::submit_signature())] pub fn submit_signature( @@ -796,7 +792,7 @@ pub mod pallet { } /// Unregisters a specified number of gateways. - /// + /// /// # Flow /// 1. Ensure the origin of the transaction is a root user. /// 2. Clear the specified number of gateways from the `Gateway` storage. @@ -831,7 +827,7 @@ pub mod pallet { } /// Sets the batch size and offset for a specific network. - /// + /// /// # Flow /// 1. Ensure the origin of the transaction is a root user. /// 2. Insert the new batch size for the specified network into the [`NetworkBatchSize`] storage. @@ -880,8 +876,6 @@ pub mod pallet { }*/ impl Pallet { - - /// Retrieves the TSS (Threshold Signature Scheme) signature for a given task. /// Look up the `TssSignature` associated with the provided `task` ID in the storage. pub fn get_task_signature(task: TaskId) -> Option { @@ -1019,7 +1013,7 @@ pub mod pallet { } } /// Unregisters a shard and processes related tasks. - /// + /// /// # Flow /// Check if the shard with shard_id is registered. /// If the shard is registered: @@ -1183,7 +1177,7 @@ pub mod pallet { } /// To update the phase of a task in a decentralized application, ensuring accurate tracking and execution based on its current state. - /// + /// /// # Flow /// 1. Retrieve the current block number. /// 2. Update the task's phase state to reflect the new phase. @@ -1357,7 +1351,7 @@ pub mod pallet { } /// Applies the depreciation rate to calculate the remaining reward. - /// + /// /// # Flow /// 1. Calculate the remaining reward by applying the depreciation rate to the initial reward amount. /// 2. Return the remaining reward. @@ -1383,7 +1377,7 @@ pub mod pallet { } /// Records the write reward for a task signer. - /// + /// /// # Flow /// 1. Record the reward amount for the task signer in the appropriate storage. /// 2. Return `Ok(())` if the operation succeeds. @@ -1409,7 +1403,7 @@ pub mod pallet { } /// Distributes rewards to shard members and signers upon task completion. - /// + /// /// # Flow /// 1. Calculate the total reward for the task. /// 2. Distribute the rewards to the shard members and signers based on predefined rules. diff --git a/pallets/timegraph/Cargo.toml b/pallets/timegraph/Cargo.toml index 9df3c63db9..9b82cb2634 100644 --- a/pallets/timegraph/Cargo.toml +++ b/pallets/timegraph/Cargo.toml @@ -1,35 +1,50 @@ [package] name = "pallet-timegraph" -authors = [ "Analog Devs " ] +version = "0.0.1" description = "A pallet for tokenomics of timegraph." -edition = "2021" -homepage = "https://analog.one" -license = "Unlicense" publish = false -repository = "https://github.com/Analog-Labs/testnet" -version = "0.0.1" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true + [dependencies] -codec = { package = "parity-scale-codec", version = "3.6", default-features = false, features = [ "max-encoded-len" ] } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false} -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false} -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } +scale-codec = { workspace = true, features = [ "max-encoded-len" ] } +scale-info.workspace = true + +#polkadot-sdk = { workspace = true, features = [ "frame-support", "frame-system" ] } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false} +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false} + +frame-benchmarking = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false, optional = true } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } +#polkadot-sdk = { workspace = true, features = [ "pallet-balances", "sp-core", "sp-io", "sp-runtime" ] } + +pallet-balances = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] std = [ - "codec/std", - "frame-benchmarking?/std", + "scale-codec/std", + "scale-info/std", + #"polkadot-sdk/std", "frame-support/std", "frame-system/std", - "scale-info/std", + "frame-benchmarking?/std", +] +runtime-benchmarks = [ + #"polkadot-sdk/runtime-benchmarks", + "frame-benchmarking/runtime-benchmarks", + "pallet-balances/runtime-benchmarks", +] +try-runtime = [ + #"polkadot-sdk/try-runtime" + "frame-support/try-runtime" ] - -runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "pallet-balances/runtime-benchmarks" ] -try-runtime = [ "frame-support/try-runtime" ] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index e3b1a035c9..0f0c15db16 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,31 +1,40 @@ [package] name = "time-primitives" -edition = "2021" version = "0.1.0" +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true + [dependencies] +anyhow.workspace = true +async-trait.workspace = true +futures = { workspace = true, optional = true } +log.workspace = true +serde = { workspace = true, features = [ "alloc" ] } +scale-codec.workspace = true +scale-decode.workspace = true +scale-info.workspace = true + alloy-primitives = { version = "0.6.4", default-features = false } alloy-sol-types = { version = "0.6.4", default-features = false } -anyhow = { version = "1.0", default-features = false } -async-trait = "0.1.73" -codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -futures = { version = "0.3.28", optional = true } -log = "0.4.20" -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } -serde = { version = "1.0", default-features = false, features = [ "derive", "alloc" ] } sha3 = { version = "0.10", default-features = false } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } + +frame-support = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +frame-system = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-api = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-application-crypto = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-io = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-runtime = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-std = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = ["std"] -std = ["codec/std", "frame-support/std", "frame-system/std", "futures", "scale-info/std", "sp-api/std", "sp-application-crypto/std", "sp-core/std", "sp-runtime/std", "sp-std/std"] +std = ["scale-codec/std", "frame-support/std", "frame-system/std", "futures", "scale-info/std", "sp-api/std", "sp-application-crypto/std", "sp-core/std", "sp-runtime/std", "sp-std/std"] [dev-dependencies] -hex = "0.4.3" +hex.workspace = true + diff --git a/primitives/src/shard.rs b/primitives/src/shard.rs index 0d50756867..160f9ed4a5 100644 --- a/primitives/src/shard.rs +++ b/primitives/src/shard.rs @@ -1,14 +1,17 @@ #[cfg(feature = "std")] use crate::BlockNumber; -use crate::{TaskId, TaskPhase}; -use codec::{Decode, Encode}; #[cfg(feature = "std")] use futures::channel::oneshot; -use scale_info::prelude::string::String; -use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; + +use crate::{TaskId, TaskPhase}; +use scale_codec::{Decode, Encode}; +use scale_info::prelude::string::String; +use scale_info::TypeInfo; + use sp_std::vec::Vec; + pub type TssPublicKey = [u8; 33]; pub type TssSignature = [u8; 64]; pub type TssHash = [u8; 32]; diff --git a/primitives/src/task.rs b/primitives/src/task.rs index a3d1891f0a..d9bf308c0d 100644 --- a/primitives/src/task.rs +++ b/primitives/src/task.rs @@ -1,5 +1,6 @@ use crate::{AccountId, Balance, IGateway, NetworkId, ShardId, TssSignature}; -use codec::{Decode, Encode}; +use scale_codec::{Decode, Encode}; +use scale_decode::DecodeAsType; use scale_info::{prelude::string::String, TypeInfo}; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; @@ -64,7 +65,7 @@ impl Function { } } -#[derive(Debug, Clone, Decode, Encode, TypeInfo, PartialEq)] +#[derive(Debug, Clone, Decode, DecodeAsType, Encode, TypeInfo, PartialEq)] pub struct TaskResult { pub shard_id: ShardId, pub payload: Payload, @@ -72,7 +73,7 @@ pub struct TaskResult { } #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, Decode, Encode, TypeInfo, PartialEq)] +#[derive(Debug, Clone, Decode, DecodeAsType, Encode, TypeInfo, PartialEq)] pub enum Payload { Hashed([u8; 32]), Error(String), @@ -90,7 +91,7 @@ impl Payload { } #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Debug, Clone, Default, Decode, Encode, TypeInfo, PartialEq)] +#[derive(Debug, Clone, Default, Decode, DecodeAsType, Encode, TypeInfo, PartialEq)] pub struct Msg { pub source_network: NetworkId, pub source: [u8; 32], diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index a2c2ee5d70..3dc2542d3b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,82 +1,80 @@ [package] name = "timechain-runtime" -authors = [ "Analog Devs " ] description = "A blockchain using the proof of time consensus protocol" -edition = "2021" -homepage = "https://analog.one/" -repository = "https://github.com/Analog-Labs/testnet/" -version = "0.0.1" +version = "0.6.0" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [package.metadata.docs.rs] targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = [ "derive" ] } -parity-scale-codec-derive = "3.6.12" -log = { version = "0.4.20", default-features = false } -scale-info = { version = "2.9.0", default-features = false, features = [ "derive" ] } +log.workspace = true + +scale-codec = { workspace = true, features = [ "max-encoded-len" ] } +scale-info.workspace = true + static_assertions = "1.1.0" -frame-election-provider-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-session = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, features = [ "historical" ] } -pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false} -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -sp-npos-elections = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-staking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - - -# Used for the node template's RPCs -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } - -# Used for runtime benchmarking -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false, optional = true } +polkadot-sdk = { workspace = true, features = [ + "frame-election-provider-support", + "frame-executive", + "frame-metadata-hash-extension", + "frame-support", + "frame-system", + + "pallet-authorship", + "pallet-authority-discovery", + "pallet-babe", + "pallet-bags-list", + "pallet-balances", + "pallet-collective", + "pallet-election-provider-multi-phase", + "pallet-grandpa", + "pallet-im-online", + "pallet-offences", + "pallet-session", + "pallet-staking", + "pallet-staking-reward-fn", + "pallet-sudo", + "pallet-timestamp", + "pallet-transaction-payment", + "pallet-treasury", + "pallet-utility", + + "sp-api", + "sp-arithmetic", + "sp-authority-discovery", + "sp-block-builder", + "sp-consensus-babe", + "sp-core", + "sp-genesis-builder", + "sp-inherents", + "sp-io", + "sp-npos-elections", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", + "sp-staking", + + "frame-system-rpc-runtime-api", + "pallet-transaction-payment-rpc-runtime-api", +]} # Local Dependencies -pallet-members = { path = "../pallets/members", version = "0.0.1", default-features = false } -pallet-shards = { path = "../pallets/shards", version = "4.0.0-dev", default-features = false } pallet-elections = { path = "../pallets/elections", default-features = false } -pallet-networks = { path = "../pallets/networks", version = "0.0.1", default-features = false } -pallet-tasks = { path = "../pallets/tasks", version = "0.0.1", default-features = false } -pallet-timegraph = { path = "../pallets/timegraph", version = "0.0.1", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +pallet-members = { path = "../pallets/members", default-features = false } +pallet-networks = { path = "../pallets/networks", default-features = false } +pallet-shards = { path = "../pallets/shards", default-features = false } +pallet-tasks = { path = "../pallets/tasks", default-features = false } +pallet-timegraph = { path = "../pallets/timegraph", default-features = false } runtime-common = { path = "./common", default-features = false } time-primitives = { path = "../primitives", default-features = false } @@ -84,100 +82,48 @@ time-primitives = { path = "../primitives", default-features = false } separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } +#polkadot-sdk = { workspace = true, features = [ "substrate-wasm-builder" ] } +substrate-wasm-builder = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", features = [ "metadata-hash" ]} [features] default = [ "std" ] std = [ - "codec/std", - "frame-benchmarking?/std", - "frame-election-provider-support/std", - "frame-executive/std", - "frame-support/std", - "frame-system-benchmarking?/std", - "frame-system-rpc-runtime-api/std", - "frame-system/std", - "frame-try-runtime/std", - "frame-try-runtime?/std", - "pallet-authorship/std", - "pallet-babe/std", - "pallet-bags-list/std", - "pallet-balances/std", - "pallet-collective/std", - "pallet-election-provider-multi-phase/std", - "pallet-grandpa/std", - "pallet-im-online/std", + "log/std", + "scale-codec/std", + "polkadot-sdk/std", + "pallet-elections/std", "pallet-members/std", "pallet-networks/std", - "pallet-offences/std", - "pallet-session/std", "pallet-shards/std", - "pallet-staking/std", - "pallet-staking-reward-fn/std", - "pallet-sudo/std", "pallet-tasks/std", "pallet-timegraph/std", - "pallet-timestamp/std", - "pallet-transaction-payment-rpc-runtime-api/std", - "pallet-transaction-payment/std", - "pallet-treasury/std", - "pallet-utility/std", - "scale-info/std", - "sp-api/std", - "sp-arithmetic/std", - "sp-block-builder/std", - "sp-consensus-babe/std", - "sp-core/std", - "sp-genesis-builder/std", - "sp-inherents/std", - "sp-npos-elections/std", - "sp-offchain/std", - "sp-runtime/std", - "sp-session/std", - "sp-staking/std", - "sp-std/std", - "sp-transaction-pool/std", - "sp-version/std", + "runtime-common/std", "time-primitives/std", ] runtime-benchmarks = [ - "frame-benchmarking/runtime-benchmarks", - "frame-support/runtime-benchmarks", - "frame-system-benchmarking/runtime-benchmarks", - "frame-system/runtime-benchmarks", - "pallet-balances/runtime-benchmarks", - "pallet-collective/runtime-benchmarks", - "pallet-collective/runtime-benchmarks", - "pallet-grandpa/runtime-benchmarks", - "pallet-im-online/runtime-benchmarks", + "polkadot-sdk/frame-system-benchmarking", + "polkadot-sdk/runtime-benchmarks", + "pallet-elections/runtime-benchmarks", "pallet-members/runtime-benchmarks", "pallet-networks/runtime-benchmarks", "pallet-shards/runtime-benchmarks", "pallet-tasks/runtime-benchmarks", "pallet-timegraph/runtime-benchmarks", - "pallet-timestamp/runtime-benchmarks", + "runtime-common/runtime-benchmarks", ] try-runtime = [ - "frame-executive/try-runtime", - "frame-support/try-runtime", - "frame-system/try-runtime", - "frame-try-runtime", - "pallet-authorship/try-runtime", - "pallet-babe/try-runtime", - "pallet-balances/try-runtime", - "pallet-grandpa/try-runtime", - "pallet-im-online/try-runtime", + "polkadot-sdk/frame-try-runtime", + "polkadot-sdk/try-runtime", + + "pallet-elections/try-runtime", + "pallet-members/try-runtime", "pallet-networks/try-runtime", "pallet-shards/try-runtime", - "pallet-sudo/try-runtime", "pallet-tasks/try-runtime", - "pallet-timestamp/try-runtime", "pallet-timegraph/try-runtime", - "pallet-transaction-payment/try-runtime", - "pallet-treasury/try-runtime", ] -fast-runtime = [ - "runtime-common/fast-runtime" +development = [ + "runtime-common/development" ] diff --git a/runtime/build.rs b/runtime/build.rs index 62aefb7d4e..9a7aba07bf 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -1,17 +1,15 @@ use substrate_wasm_builder::WasmBuilder; fn main() { - WasmBuilder::new() - .with_current_project() - .export_heap_base() - .import_memory() + #[cfg(not(feature = "development"))] + WasmBuilder::init_with_defaults() + .enable_metadata() + .enable_metadata_hash("TANLOG", 12) .build(); - WasmBuilder::new() - .with_current_project() - .set_file_name("fast_wasm_binary.rs") - .enable_feature("fast-runtime") - .export_heap_base() - .import_memory() + #[cfg(feature = "development")] + WasmBuilder::init_with_defaults() + .enable_metadata() + .enable_metadata_hash("DANLOG", 12) .build(); } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 33aea48e66..03757467a5 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -1,14 +1,16 @@ [package] name = "runtime-common" -authors = [ "Analog Devs " ] -edition = "2021" -homepage = "" -license = "LGPL-3.0" -repository = "" version = "1.0.0" +license = "LGPL-3.0" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true + [dependencies] -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0", default-features = false } +sp-core = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } +sp-weights = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched", default-features = false } [features] default = [ "std" ] @@ -17,4 +19,4 @@ std = [ "sp-weights/std", ] runtime-benchmarks = [] -fast-runtime = [] +development = [] diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 99fbcd3bfb..3341a76b5f 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -24,19 +24,19 @@ pub mod currency { } /// Macro to set a value (e.g. when using the `parameter_types` macro) to either -/// a production value or a testing value (in case the `fast-runtime` feature is +/// a production value or a development value (in case the `development` feature is /// selected). /// /// Usage: /// ```Rust /// parameter_types! { -/// pub const VotingPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 1 * MINUTES); +/// pub const VotingPeriod: BlockNumber = prod_or_dev!(7 * DAYS, 1 * MINUTES); /// } /// ``` #[macro_export] -macro_rules! prod_or_fast { +macro_rules! prod_or_dev { ($prod:expr, $fast:expr) => { - if cfg!(feature = "fast-runtime") { + if cfg!(feature = "development") { $fast } else { $prod diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index ea55da52fa..3aa5b82824 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -1,7 +1,7 @@ -// @generated to prevent rustfmt reformat/check +//! The Substrate runtime. This can be compiled with `#[no_std]`, ready for Wasm. #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. -#![recursion_limit = "256"] +#![recursion_limit = "1024"] // Automatically generated nomination bagging mod bag_thresholds; @@ -12,17 +12,13 @@ mod weights; // Make the WASM binary available in native code #[cfg(feature = "std")] -pub mod binaries { - include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); -} +include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); -#[cfg(feature = "std")] -pub mod fast_binaries { - include!(concat!(env!("OUT_DIR"), "/fast_wasm_binary.rs")); -} +use polkadot_sdk::*; -use frame_system::{limits::BlockWeights, EnsureRoot}; +use scale_codec::{Decode, Encode}; +use frame_election_provider_support::bounds::{ElectionBounds, ElectionBoundsBuilder}; use frame_election_provider_support::{ generate_solution_type, onchain, ExtendedBalance, SequentialPhragmen, }; @@ -34,49 +30,55 @@ use frame_support::{ }, weights::constants::WEIGHT_REF_TIME_PER_SECOND, }; -use pallet_im_online::sr25519::AuthorityId as ImOnlineId; +use frame_system::EnsureRootWithSuccess; +use frame_system::{limits::BlockWeights, EnsureRoot}; -use codec::{Decode, Encode}; -use frame_election_provider_support::bounds::{ElectionBounds, ElectionBoundsBuilder}; use pallet_election_provider_multi_phase::{GeometricDepositBase, SolutionAccuracyOf}; use pallet_grandpa::{ fg_primitives, AuthorityId as GrandpaId, AuthorityList as GrandpaAuthorityList, }; +use pallet_im_online::sr25519::AuthorityId as ImOnlineId; use pallet_session::historical as pallet_session_historical; -pub use runtime_common::{ - currency::*, - prod_or_fast, - weights::{BlockExecutionWeight, ExtrinsicBaseWeight}, -}; +// Can't use `FungibleAdapter` here until Treasury pallet migrates to fungibles +// +#[allow(deprecated)] +use pallet_transaction_payment::{CurrencyAdapter, Multiplier, TargetedFeeAdjustment}; + use sp_api::impl_runtime_apis; +use sp_authority_discovery::AuthorityId as AuthorityDiscoveryId; use sp_core::{crypto::KeyTypeId, OpaqueMetadata}; use sp_runtime::{ create_runtime_str, generic::{self, Era}, impl_opaque_keys, traits::{ - BlakeTwo256, Block as BlockT, BlockNumberProvider, IdentityLookup, NumberFor, OpaqueKeys, - Saturating, + BlakeTwo256, Block as BlockT, BlockNumberProvider, Hash as HashT, IdentityLookup, + NumberFor, OpaqueKeys, Saturating, }, transaction_validity::{TransactionPriority, TransactionSource, TransactionValidity}, ApplyExtrinsicResult, ExtrinsicInclusionMode, FixedPointNumber, Percent, SaturatedConversion, }; - -use frame_system::EnsureRootWithSuccess; use sp_std::prelude::*; #[cfg(feature = "std")] use sp_version::NativeVersion; use sp_version::RuntimeVersion; + +pub use runtime_common::{ + currency::*, + prod_or_dev, + weights::{BlockExecutionWeight, ExtrinsicBaseWeight}, +}; pub use time_primitives::{ AccountId, Balance, BlockNumber, ChainName, ChainNetwork, Commitment, DepreciationRate, MemberStatus, MemberStorage, NetworkId, PeerId, ProofOfKnowledge, PublicKey, ShardId, ShardStatus, Signature, TaskDescriptor, TaskExecution, TaskId, TaskPhase, TaskResult, TssPublicKey, TssSignature, }; + // A few exports that help ease life for downstream crates. pub use frame_support::{ - construct_runtime, derive_impl, - genesis_builder_helper::{build_config, create_default_config}, + derive_impl, + genesis_builder_helper::{build_state, get_preset}, pallet_prelude::Get, parameter_types, traits::{ @@ -86,13 +88,17 @@ pub use frame_support::{ weights::{constants::RocksDbWeight, ConstantMultiplier, IdentityFee, Weight, WeightToFee}, PalletId, StorageValue, }; +#[cfg(any(feature = "std", test))] pub use frame_system::Call as SystemCall; +#[cfg(any(feature = "std", test))] pub use pallet_balances::Call as BalancesCall; +#[cfg(any(feature = "std", test))] pub use pallet_timestamp::Call as TimestampCall; -use pallet_transaction_payment::{CurrencyAdapter, Multiplier, TargetedFeeAdjustment}; +#[cfg(any(feature = "std", test))] pub use pallet_utility::Call as UtilityCall; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; + pub use sp_runtime::{traits::Bounded, Perbill, Permill, Perquintill}; use static_assertions::const_assert; @@ -122,7 +128,7 @@ const MAXIMUM_BLOCK_WEIGHT: Weight = const_assert!(NORMAL_DISPATCH_RATIO.deconstruct() >= AVERAGE_ON_INITIALIZE_RATIO.deconstruct()); /// Index of a transaction in the chain. -pub type Index = u32; +pub type Nonce = u32; /// A hash of some data used by the chain. pub type Hash = time_primitives::BlockHash; @@ -133,7 +139,6 @@ pub type Hash = time_primitives::BlockHash; /// to even the core data structures. pub mod opaque { use super::*; - pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; /// Opaque block header type. @@ -142,19 +147,22 @@ pub mod opaque { pub type Block = generic::Block; /// Opaque block identifier type. pub type BlockId = generic::BlockId; + /// Opaque block hash type. + pub type Hash = ::Output; +} - impl_opaque_keys! { - pub struct SessionKeys { - pub babe: Babe, - pub grandpa: Grandpa, - pub im_online: ImOnline, - } +impl_opaque_keys! { + pub struct SessionKeys { + pub babe: Babe, + pub grandpa: Grandpa, + pub im_online: ImOnline, + pub authority_discovery: AuthorityDiscovery, } } // To learn more about runtime versioning, see: // -#[cfg(not(feature = "fast-runtime"))] +#[cfg(not(feature = "development"))] #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("analog-testnet"), @@ -163,20 +171,20 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 120, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 1, + transaction_version: 2, state_version: 1, }; -#[cfg(feature = "fast-runtime")] +#[cfg(feature = "development")] #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("analog-fastnet"), - impl_name: create_runtime_str!("analog-fastnet"), + spec_name: create_runtime_str!("analog-development"), + impl_name: create_runtime_str!("analog-development"), authoring_version: 1, spec_version: 120, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 1, + transaction_version: 2, state_version: 1, }; @@ -222,7 +230,7 @@ pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber); pub const HOURS: BlockNumber = MINUTES * 60; pub const DAYS: BlockNumber = HOURS * 24; -pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = prod_or_fast!(8 * HOURS, 5 * MINUTES); +pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = prod_or_dev!(8 * HOURS, 5 * MINUTES); const MILLISECONDS_PER_YEAR: u64 = 1000 * 3600 * 24 * 36525 / 100; @@ -262,8 +270,8 @@ impl pallet_session::Config for Runtime { type ShouldEndSession = Babe; type NextSessionRotation = Babe; type SessionManager = pallet_session::historical::NoteHistoricalRoot; - type SessionHandler = ::KeyTypeIdProviders; - type Keys = opaque::SessionKeys; + type SessionHandler = ::KeyTypeIdProviders; + type Keys = SessionKeys; type WeightInfo = pallet_session::weights::SubstrateWeight; } @@ -312,7 +320,7 @@ impl frame_system::Config for Runtime { /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// The index type for storing how many extrinsics an account has signed. - type Nonce = Index; + type Nonce = Nonce; /// The index type for blocks. type Block = Block; /// The type for hashing blocks and tries. @@ -402,10 +410,14 @@ impl pallet_im_online::Config for Runtime { type MaxPeerInHeartbeats = MaxPeerInHeartbeats; } +impl pallet_authority_discovery::Config for Runtime { + type MaxAuthorities = MaxAuthorities; +} + parameter_types! { // phase durations. 1/8 (1h) of the last session for each. - pub SignedPhase: u32 = prod_or_fast!(EPOCH_DURATION_IN_SLOTS / 8, 5 * MINUTES); - pub UnsignedPhase: u32 = prod_or_fast!(EPOCH_DURATION_IN_SLOTS / 8, 5 * MINUTES); + pub SignedPhase: u32 = prod_or_dev!(EPOCH_DURATION_IN_SLOTS / 8, 5 * MINUTES); + pub UnsignedPhase: u32 = prod_or_dev!(EPOCH_DURATION_IN_SLOTS / 8, 5 * MINUTES); // signed config pub const SignedMaxSubmissions: u32 = 16; @@ -418,7 +430,7 @@ parameter_types! { pub SignedRewardBase: Balance = 1000; // 4 hour session, 1 hour unsigned phase, 32 offchain executions. - pub OffchainRepeat: BlockNumber = UnsignedPhase::get() / prod_or_fast!(32, 10); + pub OffchainRepeat: BlockNumber = UnsignedPhase::get() / prod_or_dev!(32, 10); /// We take the top 22500 nominators as electing voters.. pub const MaxElectingVoters: u32 = 22_500; @@ -439,12 +451,10 @@ generate_solution_type!( parameter_types! { // TODO Needs to be properly configured. - pub const SessionsPerEra: sp_staking::SessionIndex = prod_or_fast!(1, 3); - pub const BondingDuration: sp_staking::EraIndex = prod_or_fast!(2, 4); + pub const SessionsPerEra: sp_staking::SessionIndex = prod_or_dev!(1, 3); + pub const BondingDuration: sp_staking::EraIndex = prod_or_dev!(2, 4); pub const SlashDeferDuration: sp_staking::EraIndex = 0;//24 * 7; // 1/4 the bonding duration. - pub const OffendingValidatorsThreshold: Perbill = Perbill::from_percent(17); - pub const MaxNominations: u32 = ::LIMIT as u32; } @@ -486,7 +496,7 @@ impl onchain::Config for OnChainSeqPhragmen { } parameter_types! { - pub const CouncilMotionDuration: BlockNumber = prod_or_fast!(5 * DAYS, HOURS); + pub const CouncilMotionDuration: BlockNumber = prod_or_dev!(5 * DAYS, HOURS); pub const CouncilMaxProposals: u32 = 100; pub const CouncilMaxMembers: u32 = 100; } @@ -573,7 +583,6 @@ impl pallet_staking::Config for Runtime { type SessionInterface = Self; type EraPayout = EraPayout; type NextNewSession = Session; - type OffendingValidatorsThreshold = OffendingValidatorsThreshold; type ElectionProvider = ElectionProviderMultiPhase; type GenesisElectionProvider = onchain::OnChainExecution; type VoterList = VoterList; @@ -586,6 +595,7 @@ impl pallet_staking::Config for Runtime { type NominationsQuota = pallet_staking::FixedNominationsQuota<16>; type MaxExposurePageSize = MaxExposurePageSize; type MaxControllersInDeprecationBatch = MaxControllersInDeprecationBatch; + type DisablingStrategy = pallet_staking::UpToLimitDisablingStrategy; } parameter_types! { @@ -781,6 +791,9 @@ pub type SlowAdjustingFeeUpdate = TargetedFeeAdjustment< MaximumMultiplier, >; +// Can't use `FungibleAdapter` here until Treasury pallet migrates to fungibles +// +#[allow(deprecated)] impl pallet_transaction_payment::Config for Runtime { type RuntimeEvent = RuntimeEvent; type OnChargeTransaction = CurrencyAdapter>; @@ -818,7 +831,7 @@ where call: RuntimeCall, public: PublicKey, account: AccountId, - nonce: Index, + nonce: Nonce, ) -> Option<( RuntimeCall, ::SignaturePayload, @@ -848,6 +861,7 @@ where frame_system::CheckNonce::::from(nonce), frame_system::CheckWeight::::new(), pallet_transaction_payment::ChargeTransactionPayment::::from(tip), + frame_metadata_hash_extension::CheckMetadataHash::::new(false), ); let raw_payload = SignedPayload::new(call, extra) .map_err(|e| { @@ -873,10 +887,10 @@ parameter_types! { pub const MaxApprovals: u32 = 100; pub const ProposalBond: Permill = Permill::from_percent(5); pub const ProposalBondMinimum: Balance = ANLOG; - pub const SpendPeriod: BlockNumber = prod_or_fast!(DAYS, HOURS); + pub const SpendPeriod: BlockNumber = prod_or_dev!(DAYS, HOURS); pub const Burn: Permill = Permill::from_percent(50); pub const MaxBalance: Balance = Balance::max_value(); - pub const PayoutPeriod: BlockNumber = prod_or_fast!(14 * DAYS, 6 * HOURS); + pub const PayoutPeriod: BlockNumber = prod_or_dev!(14 * DAYS, 6 * HOURS); pub TreasuryAccount: AccountId = Treasury::account_id(); } @@ -912,6 +926,8 @@ impl pallet_treasury::Config for Runtime { type Paymaster = PayFromAccount; type BalanceConverter = UnityAssetBalanceConversion; type PayoutPeriod = PayoutPeriod; + #[cfg(feature = "runtime-benchmarks")] + type BenchmarkHelper = (); } parameter_types! { @@ -977,35 +993,99 @@ impl pallet_networks::Config for Runtime { } // Create the runtime by composing the FRAME pallets that were previously configured. -#[rustfmt::skip] -construct_runtime!( - pub struct Runtime { - System: frame_system, - Balances: pallet_balances, - Timestamp: pallet_timestamp, - Babe: pallet_babe, - Grandpa: pallet_grandpa, - ImOnline: pallet_im_online, - Offences: pallet_offences, - Authorship: pallet_authorship, - Session: pallet_session, - Staking: pallet_staking, - Council: pallet_collective::, - VoterList: pallet_bags_list, - Historical: pallet_session_historical, - ElectionProviderMultiPhase: pallet_election_provider_multi_phase, - TransactionPayment: pallet_transaction_payment, - Utility: pallet_utility, - Sudo: pallet_sudo, - Treasury: pallet_treasury, - Members: pallet_members, - Shards: pallet_shards, - Elections: pallet_elections, - Tasks: pallet_tasks, - Timegraph: pallet_timegraph, - Networks: pallet_networks, - } -); +#[frame_support::runtime] +mod runtime { + use super::*; + + #[runtime::runtime] + #[runtime::derive( + RuntimeCall, + RuntimeEvent, + RuntimeError, + RuntimeOrigin, + RuntimeFreezeReason, + RuntimeHoldReason, + RuntimeSlashReason, + RuntimeLockId, + RuntimeTask + )] + pub struct Runtime; + + #[runtime::pallet_index(0)] + pub type System = frame_system; + + #[runtime::pallet_index(1)] + pub type Balances = pallet_balances; + + #[runtime::pallet_index(2)] + pub type Timestamp = pallet_timestamp; + + #[runtime::pallet_index(3)] + pub type Babe = pallet_babe; + + #[runtime::pallet_index(4)] + pub type Grandpa = pallet_grandpa; + + #[runtime::pallet_index(5)] + pub type ImOnline = pallet_im_online; + + #[runtime::pallet_index(6)] + type AuthorityDiscovery = pallet_authority_discovery; + + #[runtime::pallet_index(7)] + pub type Offences = pallet_offences; + + #[runtime::pallet_index(8)] + pub type Authorship = pallet_authorship; + + #[runtime::pallet_index(9)] + pub type Session = pallet_session; + + #[runtime::pallet_index(10)] + pub type Staking = pallet_staking; + + #[runtime::pallet_index(11)] + pub type Council = pallet_collective; + + #[runtime::pallet_index(12)] + pub type VoterList = pallet_bags_list; + + #[runtime::pallet_index(13)] + pub type Historical = pallet_session_historical; + + #[runtime::pallet_index(14)] + pub type ElectionProviderMultiPhase = pallet_election_provider_multi_phase; + + #[runtime::pallet_index(15)] + pub type TransactionPayment = pallet_transaction_payment; + + #[runtime::pallet_index(16)] + pub type Utility = pallet_utility; + + #[runtime::pallet_index(17)] + pub type Sudo = pallet_sudo; + + #[runtime::pallet_index(18)] + pub type Treasury = pallet_treasury; + + #[runtime::pallet_index(19)] + pub type Members = pallet_members; + + #[runtime::pallet_index(20)] + pub type Shards = pallet_shards; + + #[runtime::pallet_index(21)] + pub type Elections = pallet_elections; + + #[runtime::pallet_index(22)] + pub type Tasks = pallet_tasks; + + #[runtime::pallet_index(23)] + pub type Timegraph = pallet_timegraph; + + #[runtime::pallet_index(24)] + pub type Networks = pallet_networks; +} /// The address format for describing accounts. pub type Address = sp_runtime::MultiAddress; @@ -1023,6 +1103,7 @@ pub type SignedExtra = ( frame_system::CheckNonce, frame_system::CheckWeight, pallet_transaction_payment::ChargeTransactionPayment, + frame_metadata_hash_extension::CheckMetadataHash, ); /// Unchecked extrinsic type as expected by this runtime. @@ -1039,13 +1120,9 @@ pub type Executive = frame_executive::Executive< AllPalletsWithSystem, >; -#[cfg(feature = "runtime-benchmarks")] -#[macro_use] -extern crate frame_benchmarking; - #[cfg(feature = "runtime-benchmarks")] mod benches { - define_benchmarks!( + polkadot_sdk::frame_benchmarking::define_benchmarks!( [frame_benchmarking, BaselineBench::] [frame_system, SystemBench::] [pallet_balances, Balances] @@ -1127,13 +1204,13 @@ impl_runtime_apis! { impl sp_session::SessionKeys for Runtime { fn generate_session_keys(seed: Option>) -> Vec { - opaque::SessionKeys::generate(seed) + SessionKeys::generate(seed) } fn decode_session_keys( encoded: Vec, ) -> Option, KeyTypeId)>> { - opaque::SessionKeys::decode_into_raw_public_keys(&encoded) + SessionKeys::decode_into_raw_public_keys(&encoded) } } @@ -1166,8 +1243,6 @@ impl_runtime_apis! { _slot: sp_consensus_babe::Slot, authority_id: sp_consensus_babe::AuthorityId, ) -> Option { - use codec::Encode; - Historical::prove((sp_consensus_babe::KEY_TYPE, authority_id)) .map(|p| p.encode()) .map(sp_consensus_babe::OpaqueKeyOwnershipProof::new) @@ -1217,8 +1292,14 @@ impl_runtime_apis! { } } - impl frame_system_rpc_runtime_api::AccountNonceApi for Runtime { - fn account_nonce(account: AccountId) -> Index { + impl sp_authority_discovery::AuthorityDiscoveryApi for Runtime { + fn authorities() -> Vec { + AuthorityDiscovery::authorities() + } + } + + impl frame_system_rpc_runtime_api::AccountNonceApi for Runtime { + fn account_nonce(account: AccountId) -> Nonce { System::account_nonce(account) } } @@ -1365,7 +1446,7 @@ impl_runtime_apis! { Vec, Vec, ) { - use frame_benchmarking::{baseline, Benchmarking, BenchmarkList}; + use frame_benchmarking::{baseline, Benchmarking, BenchmarkList, list_benchmark}; use frame_support::traits::StorageInfoTrait; use frame_system_benchmarking::Pallet as SystemBench; use baseline::Pallet as BaselineBench; @@ -1387,7 +1468,7 @@ impl_runtime_apis! { fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig ) -> Result, sp_runtime::RuntimeString> { - use frame_benchmarking::{baseline, Benchmarking, BenchmarkBatch}; + use frame_benchmarking::{add_benchmark, baseline, Benchmarking, BenchmarkBatch}; use frame_system_benchmarking::Pallet as SystemBench; use baseline::Pallet as BaselineBench; @@ -1435,12 +1516,16 @@ impl_runtime_apis! { } impl sp_genesis_builder::GenesisBuilder for Runtime { - fn create_default_config() -> Vec { - create_default_config::() + fn build_state(config: Vec) -> sp_genesis_builder::Result { + build_state::(config) + } + + fn get_preset(id: &Option) -> Option> { + get_preset::(id, |_| None) } - fn build_config(config: Vec) -> sp_genesis_builder::Result { - build_config::(config) + fn preset_names() -> Vec { + vec![] } } } diff --git a/runtime/src/tests.rs b/runtime/src/tests.rs index c987ed1572..bb8a619ec9 100644 --- a/runtime/src/tests.rs +++ b/runtime/src/tests.rs @@ -1,5 +1,8 @@ /// Integration tests use crate::*; + +//use polkadot_sdk::*; + use frame_support::assert_ok; use frame_support::traits::WhitelistedStorageKeys; use frame_system::RawOrigin; diff --git a/runtime/src/weights/balances.rs b/runtime/src/weights/balances.rs index 62a9f9f2e9..731bc39898 100644 --- a/runtime/src/weights/balances.rs +++ b/runtime/src/weights/balances.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; @@ -139,4 +141,24 @@ impl pallet_balances::WeightInfo for WeightInfo { Weight::from_parts(5_457_000, 0) .saturating_add(Weight::from_parts(0, 0)) } + + /// FIXME: Copied from westend, needs to be generated + fn burn_allow_death() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 27_328_000 picoseconds. + Weight::from_parts(27_785_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + } + + /// FIXME: Copied from westend, needs to be generated + fn burn_keep_alive() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 17_797_000 picoseconds. + Weight::from_parts(18_103_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + } } diff --git a/runtime/src/weights/elections.rs b/runtime/src/weights/elections.rs index 7f03063b31..cea1fececf 100644 --- a/runtime/src/weights/elections.rs +++ b/runtime/src/weights/elections.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/members.rs b/runtime/src/weights/members.rs index 2d39884706..5e15f1e767 100644 --- a/runtime/src/weights/members.rs +++ b/runtime/src/weights/members.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/networks.rs b/runtime/src/weights/networks.rs index d1b87408dd..849d0bd142 100644 --- a/runtime/src/weights/networks.rs +++ b/runtime/src/weights/networks.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/shards.rs b/runtime/src/weights/shards.rs index 9be85501fc..4c259f4c8c 100644 --- a/runtime/src/weights/shards.rs +++ b/runtime/src/weights/shards.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/system.rs b/runtime/src/weights/system.rs index 2c563d1aa9..d22a452586 100644 --- a/runtime/src/weights/system.rs +++ b/runtime/src/weights/system.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/tasks.rs b/runtime/src/weights/tasks.rs index 576c90eed0..d983115c74 100644 --- a/runtime/src/weights/tasks.rs +++ b/runtime/src/weights/tasks.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/timegraph.rs b/runtime/src/weights/timegraph.rs index e34e7244f1..18ef20df92 100644 --- a/runtime/src/weights/timegraph.rs +++ b/runtime/src/weights/timegraph.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/runtime/src/weights/timestamp.rs b/runtime/src/weights/timestamp.rs index 86df417254..abbed4f73b 100644 --- a/runtime/src/weights/timestamp.rs +++ b/runtime/src/weights/timestamp.rs @@ -27,6 +27,8 @@ #![allow(unused_imports)] #![allow(missing_docs)] +use polkadot_sdk::*; + use frame_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; diff --git a/scripts/build_docker.sh b/scripts/build_docker.sh index ab8d509028..9cb47e878f 100755 --- a/scripts/build_docker.sh +++ b/scripts/build_docker.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e @@ -27,6 +27,29 @@ case "$(uname -m)" in ;; esac +# Evaluate optional environment argument +environment="${1:-development}" +case "${environment}" in + timechain) + profile=production + features=default + ;; + testnet) + profile=testnet + features=default + ;; + staging|development) + profile=testnet + features=development + ;; + *) + echo >&2 "ERROR - unsupported environment: ${1}" + echo >&2 " - options: timechain testnet development" + echo >&2 " - default: development" + exit 1 + ;; +esac + # Check if the musl linker is installed # "$muslLinker" --version > /dev/null 2>&1 || { echo >&2 "ERROR - requires '$muslLinker' linker for compile"; exit 1; } @@ -37,17 +60,19 @@ if ! rustup target list | grep -q "$rustTarget"; then fi # Build docker image -cargo build -p timechain-node -p chronicle -p tester --target "$rustTarget" --release +cargo build -p timechain-node -p chronicle -p tester --target "$rustTarget" --profile "$profile" --features "$features" + cp tester/contracts/test_contract.sol analog-gmp/src/ -forge build --root analog-gmp --optimize --optimizer-runs=200000 --use=0.8.24 --force +forge build --root analog-gmp --optimize --optimizer-runs=200000 --evm-version=shanghai --use=0.8.25 --force + rm -rf target/docker mkdir -p target/docker -mv "target/$rustTarget/release/timechain-node" target/docker -docker build target/docker -f config/docker/Dockerfile -t analoglabs/timechain-node +mv "target/$rustTarget/$profile/timechain-node" target/docker +docker build target/docker -f config/docker/Dockerfile -t analoglabs/timenode-$environment -mv "target/$rustTarget/release/chronicle" target/docker -docker build target/docker -f config/docker/Dockerfile.chronicle -t analoglabs/chronicle +mv "target/$rustTarget/$profile/chronicle" target/docker +docker build target/docker -f config/docker/Dockerfile.chronicle -t analoglabs/chronicle-$environment -mv "target/$rustTarget/release/tester" target/docker -docker build target/docker -f config/docker/Dockerfile.tester -t analoglabs/timechain-tester +mv "target/$rustTarget/$profile/tester" target/docker +docker build target/docker -f config/docker/Dockerfile.tester -t analoglabs/tester-$environment diff --git a/tc-subxt/Cargo.toml b/tc-subxt/Cargo.toml index d50311b532..6c069a9139 100644 --- a/tc-subxt/Cargo.toml +++ b/tc-subxt/Cargo.toml @@ -1,16 +1,32 @@ [package] name = "tc-subxt" version = "0.1.0" -edition = "2021" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] -anyhow = "1.0.75" -async-stream = "0.3.5" -async-trait = "0.1.73" -futures = "0.3.30" -hex = "0.4" +anyhow.workspace = true +async-stream.workspace = true +async-trait.workspace = true +clap.workspace = true +futures.workspace = true +hex.workspace = true +tokio.workspace = true +tracing.workspace = true + +scale-codec.workspace = true +scale-decode.workspace = true +scale-info.workspace = true + subxt = { version = "0.37.0", features = ["unstable-reconnecting-rpc-client"] } subxt-signer = { version = "0.37.0", features = ["subxt"]} + time-primitives = { path = "../primitives" } -tokio = "1.35.1" -tracing = "0.1.40" + +[features] +testnet = [] +development = [] diff --git a/tc-subxt/build.rs b/tc-subxt/build.rs index 43abd9943e..3feafbb9c9 100644 --- a/tc-subxt/build.rs +++ b/tc-subxt/build.rs @@ -1,3 +1,6 @@ fn main() { - println!("cargo:rerun-if-changed=../config/subxt/metadata.scale"); + println!("cargo:rerun-if-changed=../config/subxt/testnet.default.scale"); + println!("cargo:rerun-if-changed=../config/subxt/testnet.development.scale"); + println!("cargo:rerun-if-changed=../config/subxt/timechain.default.scale"); + println!("cargo:rerun-if-changed=../config/subxt/timechain.development.scale"); } diff --git a/tc-subxt/src/events.rs b/tc-subxt/src/events.rs new file mode 100644 index 0000000000..f22f2e3e04 --- /dev/null +++ b/tc-subxt/src/events.rs @@ -0,0 +1,23 @@ +use scale_decode::DecodeAsType; +use subxt::ext::subxt_core::events::StaticEvent; +use time_primitives::TaskResult as PrimitiveTaskResult; + +#[derive(DecodeAsType, Debug)] +pub struct TaskResult(pub u64, pub PrimitiveTaskResult); +impl StaticEvent for TaskResult { + const PALLET: &'static str = "Tasks"; + const EVENT: &'static str = "TaskResult"; +} +#[derive(DecodeAsType, Debug)] +pub struct TaskCreated(pub u64); +impl StaticEvent for TaskCreated { + const PALLET: &'static str = "Tasks"; + const EVENT: &'static str = "TaskCreated"; +} + +#[derive(DecodeAsType, Debug)] +pub struct GatewayRegistered(pub u16, pub [u8; 20], pub u64); +impl StaticEvent for GatewayRegistered { + const PALLET: &'static str = "Tasks"; + const EVENT: &'static str = "GatewayRegistered"; +} diff --git a/tc-subxt/src/lib.rs b/tc-subxt/src/lib.rs index e253991afe..ca0e159727 100644 --- a/tc-subxt/src/lib.rs +++ b/tc-subxt/src/lib.rs @@ -15,20 +15,14 @@ use time_primitives::{ ProofOfKnowledge, PublicKey, Runtime, ShardId, ShardStatus, TaskDescriptor, TaskDescriptorParams, TaskExecution, TaskId, TaskResult, TssSignature, }; -use timechain_runtime::runtime_types::sp_runtime::MultiSigner as MetadataMultiSigner; -use timechain_runtime::runtime_types::time_primitives::task; -use timechain_runtime::runtime_types::timechain_runtime::RuntimeCall; use tokio::sync::oneshot::{self, Sender}; +pub mod events; +mod metadata; + mod shards; mod tasks; -#[subxt::subxt( - runtime_metadata_path = "../config/subxt/metadata.scale", - derive_for_all_types = "PartialEq, Clone" -)] -pub mod timechain_runtime {} - pub use subxt::backend::{ rpc::{rpc_params, RpcParams}, StreamOfResults, @@ -40,6 +34,9 @@ pub use subxt::{ext, tx, utils}; pub use subxt::{OnlineClient, PolkadotConfig}; pub use subxt_signer::sr25519::Keypair; +use metadata::MultiSigner; +pub use metadata::Variant as MetadataVariant; + pub type TxInBlock = subxt::tx::TxInBlock>; pub type TxProgress = subxt::tx::TxProgress>; @@ -64,6 +61,7 @@ pub enum Tx { struct SubxtWorker { client: OnlineClient, + metadata: MetadataVariant, keypair: Keypair, nonce: u64, tx_submitter: T, @@ -72,11 +70,13 @@ struct SubxtWorker { impl SubxtWorker { pub async fn new( client: OnlineClient, + metadata: MetadataVariant, keypair: Keypair, tx_submitter: T, ) -> Result { let mut me = Self { client, + metadata, keypair, nonce: 0, tx_submitter, @@ -116,90 +116,98 @@ impl SubxtWorker { pub async fn submit(&mut self, tx: (Tx, Sender)) { let (transaction, sender) = tx; - let tx = match transaction { - Tx::RegisterMember { network, peer_id, stake_amount } => { - let public_key = self.public_key(); - let public_key: MetadataMultiSigner = unsafe { std::mem::transmute(public_key) }; - let tx = timechain_runtime::tx().members().register_member( - network, - public_key, - peer_id, - stake_amount, - ); - self.create_signed_payload(&tx).await - }, - Tx::Heartbeat => { - let tx = timechain_runtime::tx().members().send_heartbeat(); - self.create_signed_payload(&tx).await - }, - Tx::Commitment { - shard_id, - commitment, - proof_of_knowledge, - } => { - let tx = timechain_runtime::tx().shards().commit( + let tx = metadata_scope!(self.metadata, { + match transaction { + Tx::RegisterMember { network, peer_id, stake_amount } => { + let public_key: MultiSigner = unsafe { std::mem::transmute(self.public_key()) }; + let payload = metadata::tx().members().register_member( + network, + subxt::utils::Static(public_key), + peer_id, + stake_amount, + ); + self.create_signed_payload(&payload).await + }, + Tx::Heartbeat => { + let payload = metadata::tx().members().send_heartbeat(); + self.create_signed_payload(&payload).await + }, + Tx::Commitment { shard_id, commitment, proof_of_knowledge, - ); - self.create_signed_payload(&tx).await - }, - Tx::Ready { shard_id } => { - let tx = timechain_runtime::tx().shards().ready(shard_id); - self.create_signed_payload(&tx).await - }, - Tx::TaskSignature { task_id, signature } => { - let tx = timechain_runtime::tx().tasks().submit_signature(task_id, signature); - self.create_signed_payload(&tx).await - }, - Tx::TaskHash { task_id, hash } => { - let tx = timechain_runtime::tx().tasks().submit_hash(task_id, hash); - self.create_signed_payload(&tx).await - }, - Tx::TaskResult { task_id, result } => { - let result: task::TaskResult = unsafe { std::mem::transmute(result) }; - let tx = timechain_runtime::tx().tasks().submit_result(task_id, result); - self.create_signed_payload(&tx).await - }, - Tx::CreateTask { task } => { - let task_params: task::TaskDescriptorParams = unsafe { std::mem::transmute(task) }; - let tx = timechain_runtime::tx().tasks().create_task(task_params); - self.create_signed_payload(&tx).await - }, - Tx::RegisterGateway { - shard_id, - address, - block_height, - } => { - let runtime_call = RuntimeCall::Tasks( - timechain_runtime::runtime_types::pallet_tasks::pallet::Call::register_gateway { - bootstrap: shard_id, - address, - block_height, - }, - ); - let sudo_call = timechain_runtime::tx().sudo().sudo(runtime_call); - self.create_signed_payload(&sudo_call).await - }, - Tx::SetShardConfig { shard_size, shard_threshold } => { - let runtime_call = RuntimeCall::Elections(timechain_runtime::runtime_types::pallet_elections::pallet::Call::set_shard_config { - shard_size, - shard_threshold, - }); - let sudo_call = timechain_runtime::tx().sudo().sudo(runtime_call); - self.create_signed_payload(&sudo_call).await - }, - Tx::RegisterNetwork { chain_name, chain_network } => { - let runtime_call = RuntimeCall::Networks( - timechain_runtime::runtime_types::pallet_networks::pallet::Call::add_network { - chain_name, - chain_network, - }, - ); - let sudo_call = timechain_runtime::tx().sudo().sudo(runtime_call); - self.create_signed_payload(&sudo_call).await - }, - }; + } => { + let payload = + metadata::tx().shards().commit(shard_id, commitment, proof_of_knowledge); + self.create_signed_payload(&payload).await + }, + Tx::Ready { shard_id } => { + let payload = metadata::tx().shards().ready(shard_id); + self.create_signed_payload(&payload).await + }, + Tx::TaskSignature { task_id, signature } => { + let payload = metadata::tx().tasks().submit_signature(task_id, signature); + self.create_signed_payload(&payload).await + }, + Tx::TaskHash { task_id, hash } => { + let payload = metadata::tx().tasks().submit_hash(task_id, hash); + self.create_signed_payload(&payload).await + }, + Tx::TaskResult { task_id, result } => { + use metadata::runtime_types::time_primitives::task; + let result: task::TaskResult = unsafe { std::mem::transmute(result) }; + let payload = metadata::tx().tasks().submit_result(task_id, result); + self.create_signed_payload(&payload).await + }, + Tx::CreateTask { task } => { + use metadata::runtime_types::time_primitives::task; + let task_params: task::TaskDescriptorParams = + unsafe { std::mem::transmute(task) }; + let payload = metadata::tx().tasks().create_task(task_params); + self.create_signed_payload(&payload).await + }, + Tx::RegisterGateway { + shard_id, + address, + block_height, + } => { + use metadata::runtime_types::timechain_runtime::RuntimeCall; + let runtime_call = RuntimeCall::Tasks( + metadata::runtime_types::pallet_tasks::pallet::Call::register_gateway { + bootstrap: shard_id, + address, + block_height, + }, + ); + + let payload = metadata::tx().sudo().sudo(runtime_call); + self.create_signed_payload(&payload).await + }, + Tx::SetShardConfig { shard_size, shard_threshold } => { + use metadata::runtime_types::timechain_runtime::RuntimeCall; + let runtime_call = RuntimeCall::Elections( + metadata::runtime_types::pallet_elections::pallet::Call::set_shard_config { + shard_size, + shard_threshold, + }, + ); + let payload = metadata::tx().sudo().sudo(runtime_call); + self.create_signed_payload(&payload).await + }, + Tx::RegisterNetwork { chain_name, chain_network } => { + use metadata::runtime_types::timechain_runtime::RuntimeCall; + let runtime_call = RuntimeCall::Networks( + metadata::runtime_types::pallet_networks::pallet::Call::add_network { + chain_name, + chain_network, + }, + ); + let payload = metadata::tx().sudo().sudo(runtime_call); + self.create_signed_payload(&payload).await + }, + } + }); + let result: Result = async { let mut tx_progress = self.tx_submitter.submit(tx).await?; while let Some(status) = tx_progress.next().await { @@ -276,21 +284,28 @@ impl SubxtWorker { #[derive(Clone)] pub struct SubxtClient { client: OnlineClient, + metadata: metadata::Variant, tx: mpsc::UnboundedSender<(Tx, Sender)>, public_key: PublicKey, account_id: AccountId, } impl SubxtClient { - pub async fn new(url: &str, keypair: Keypair, tx_submitter: T) -> Result { + pub async fn new( + url: &str, + metadata: MetadataVariant, + keypair: Keypair, + tx_submitter: T, + ) -> Result { let client = Self::get_client(url).await?; - let worker = SubxtWorker::new(client.clone(), keypair, tx_submitter).await?; + let worker = SubxtWorker::new(client.clone(), metadata, keypair, tx_submitter).await?; let public_key = worker.public_key(); let account_id = worker.account_id(); tracing::info!("account id {}", account_id); let tx = worker.into_sender(); Ok(Self { client, + metadata, tx, public_key, account_id, @@ -299,6 +314,7 @@ impl SubxtClient { pub async fn with_keyfile( url: &str, + metadata: MetadataVariant, keyfile: &Path, tx_submitter: T, ) -> Result { @@ -306,9 +322,8 @@ impl SubxtClient { .context("failed to read substrate keyfile") .with_context(|| keyfile.display().to_string())?; let secret = SecretUri::from_str(&content).context("failed to parse substrate keyfile")?; - let keypair = - Keypair::from_uri(&secret).context("substrate keyfile contains invalid suri")?; - Self::new(url, keypair, tx_submitter).await + let keypair = Keypair::from_uri(&secret).context("substrate keyfile contains uri")?; + Self::new(url, metadata, keypair, tx_submitter).await } pub async fn get_client(url: &str) -> Result> { @@ -427,8 +442,10 @@ impl Runtime for SubxtClient { } async fn get_network(&self, network: NetworkId) -> Result> { - let runtime_call = timechain_runtime::apis().networks_api().get_network(network); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().networks_api().get_network(network); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } @@ -437,28 +454,36 @@ impl Runtime for SubxtClient { _: BlockHash, account: &AccountId, ) -> Result> { - let account: subxt::utils::AccountId32 = subxt::utils::AccountId32(*(account.as_ref())); - let runtime_call = timechain_runtime::apis().members_api().get_member_peer_id(account); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let account = AccountId32(*(account.as_ref())); + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().members_api().get_member_peer_id(account); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_heartbeat_timeout(&self) -> Result { - let runtime_call = timechain_runtime::apis().members_api().get_heartbeat_timeout(); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().members_api().get_heartbeat_timeout(); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_min_stake(&self) -> Result { - let runtime_call = timechain_runtime::apis().members_api().get_min_stake(); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().members_api().get_min_stake(); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_shards(&self, _: BlockHash, account: &AccountId) -> Result> { let account: subxt::utils::AccountId32 = subxt::utils::AccountId32(*(account.as_ref())); - let runtime_call = timechain_runtime::apis().shards_api().get_shards(account); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().shards_api().get_shards(account); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } @@ -467,20 +492,26 @@ impl Runtime for SubxtClient { _: BlockHash, shard_id: ShardId, ) -> Result> { - let runtime_call = timechain_runtime::apis().shards_api().get_shard_members(shard_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().shards_api().get_shard_members(shard_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(unsafe { std::mem::transmute(data) }) } async fn get_shard_threshold(&self, _: BlockHash, shard_id: ShardId) -> Result { - let runtime_call = timechain_runtime::apis().shards_api().get_shard_threshold(shard_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().shards_api().get_shard_threshold(shard_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_shard_status(&self, _: BlockHash, shard_id: ShardId) -> Result { - let runtime_call = timechain_runtime::apis().shards_api().get_shard_status(shard_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().shards_api().get_shard_status(shard_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(unsafe { std::mem::transmute(data) }) } @@ -489,44 +520,58 @@ impl Runtime for SubxtClient { _: BlockHash, shard_id: ShardId, ) -> Result> { - let runtime_call = timechain_runtime::apis().shards_api().get_shard_commitment(shard_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().shards_api().get_shard_commitment(shard_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_shard_tasks(&self, _: BlockHash, shard_id: ShardId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_shard_tasks(shard_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_shard_tasks(shard_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(unsafe { std::mem::transmute(data) }) } async fn get_task(&self, _: BlockHash, task_id: TaskId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_task(task_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_task(task_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(unsafe { std::mem::transmute(data) }) } async fn get_task_signature(&self, task_id: TaskId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_task_signature(task_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_task_signature(task_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_task_signer(&self, task_id: TaskId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_task_signer(task_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_task_signer(task_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(unsafe { std::mem::transmute(data) }) } async fn get_task_hash(&self, task_id: TaskId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_task_hash(task_id); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_task_hash(task_id); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } async fn get_gateway(&self, network: NetworkId) -> Result> { - let runtime_call = timechain_runtime::apis().tasks_api().get_gateway(network); - let data = self.client.runtime_api().at_latest().await?.call(runtime_call).await?; + let data = metadata_scope!(self.metadata, { + let runtime_call = metadata::apis().tasks_api().get_gateway(network); + self.client.runtime_api().at_latest().await?.call(runtime_call).await? + }); Ok(data) } diff --git a/tc-subxt/src/metadata.rs b/tc-subxt/src/metadata.rs new file mode 100644 index 0000000000..20aa4bca9a --- /dev/null +++ b/tc-subxt/src/metadata.rs @@ -0,0 +1,180 @@ +use scale_codec::{Decode, Encode}; + +#[subxt::subxt( + runtime_metadata_path = "../config/subxt/timechain.default.scale", + derive_for_all_types = "PartialEq, Clone", + substitute_type( + path = "time_primitives::shard::MemberStatus", + with = "::subxt::utils::Static<::time_primitives::MemberStatus>", + ), + substitute_type( + path = "time_primitives::shard::ShardStatus", + with = "::subxt::utils::Static<::time_primitives::ShardStatus>", + ), + substitute_type( + path = "time_primitives::task::Payload", + with = "::subxt::utils::Static<::time_primitives::Payload>", + ), + substitute_type( + path = "time_primitives::task::TaskDescriptor", + with = "::subxt::utils::Static<::time_primitives::TaskDescriptor>", + ), + substitute_type( + path = "time_primitives::task::TaskExecution", + with = "::subxt::utils::Static<::time_primitives::TaskExecution>", + ), + substitute_type( + path = "time_primitives::task::TaskPhase", + with = "::subxt::utils::Static<::time_primitives::TaskPhase>", + ), + substitute_type( + path = "sp_runtime::MultiSigner", + with = "::subxt::utils::Static", + ) +)] +pub mod timechain {} + +#[subxt::subxt( + runtime_metadata_path = "../config/subxt/timechain.development.scale", + derive_for_all_types = "PartialEq, Clone", + substitute_type( + path = "time_primitives::shard::MemberStatus", + with = "::subxt::utils::Static<::time_primitives::MemberStatus>", + ), + substitute_type( + path = "time_primitives::shard::ShardStatus", + with = "::subxt::utils::Static<::time_primitives::ShardStatus>", + ), + substitute_type( + path = "time_primitives::task::Payload", + with = "::subxt::utils::Static<::time_primitives::Payload>", + ), + substitute_type( + path = "time_primitives::task::TaskDescriptor", + with = "::subxt::utils::Static<::time_primitives::TaskDescriptor>", + ), + substitute_type( + path = "time_primitives::task::TaskExecution", + with = "::subxt::utils::Static<::time_primitives::TaskExecution>", + ), + substitute_type( + path = "time_primitives::task::TaskPhase", + with = "::subxt::utils::Static<::time_primitives::TaskPhase>", + ), + substitute_type( + path = "sp_runtime::MultiSigner", + with = "::subxt::utils::Static", + ) +)] +pub mod staging {} + +#[subxt::subxt( + runtime_metadata_path = "../config/subxt/testnet.default.scale", + derive_for_all_types = "PartialEq, Clone", + substitute_type( + path = "time_primitives::shard::MemberStatus", + with = "::subxt::utils::Static<::time_primitives::MemberStatus>", + ), + substitute_type( + path = "time_primitives::shard::ShardStatus", + with = "::subxt::utils::Static<::time_primitives::ShardStatus>", + ), + substitute_type( + path = "time_primitives::task::Payload", + with = "::subxt::utils::Static<::time_primitives::Payload>", + ), + substitute_type( + path = "time_primitives::task::TaskDescriptor", + with = "::subxt::utils::Static<::time_primitives::TaskDescriptor>", + ), + substitute_type( + path = "time_primitives::task::TaskExecution", + with = "::subxt::utils::Static<::time_primitives::TaskExecution>", + ), + substitute_type( + path = "time_primitives::task::TaskPhase", + with = "::subxt::utils::Static<::time_primitives::TaskPhase>", + ), + substitute_type( + path = "sp_runtime::MultiSigner", + with = "::subxt::utils::Static", + ) +)] +pub mod testnet {} + +#[subxt::subxt( + runtime_metadata_path = "../config/subxt/testnet.development.scale", + derive_for_all_types = "PartialEq, Clone", + substitute_type( + path = "time_primitives::shard::MemberStatus", + with = "::subxt::utils::Static<::time_primitives::MemberStatus>", + ), + substitute_type( + path = "time_primitives::shard::ShardStatus", + with = "::subxt::utils::Static<::time_primitives::ShardStatus>", + ), + substitute_type( + path = "time_primitives::task::Payload", + with = "::subxt::utils::Static<::time_primitives::Payload>", + ), + substitute_type( + path = "time_primitives::task::TaskDescriptor", + with = "::subxt::utils::Static<::time_primitives::TaskDescriptor>", + ), + substitute_type( + path = "time_primitives::task::TaskExecution", + with = "::subxt::utils::Static<::time_primitives::TaskExecution>", + ), + substitute_type( + path = "time_primitives::task::TaskPhase", + with = "::subxt::utils::Static<::time_primitives::TaskPhase>", + ), + substitute_type( + path = "sp_runtime::MultiSigner", + with = "::subxt::utils::Static", + ) +)] +pub mod development {} + +/// Specifies the targeted timechain variant and metadata +#[derive(clap::ValueEnum, Clone, Copy, Default, Debug)] +pub enum Variant { + Timechain, + Staging, + #[default] + Testnet, + Development, +} + +/// Helper macro to map derived metadata +#[macro_export] +macro_rules! metadata_scope { + ( $variant:expr, $block:block ) => { + match $variant { + $crate::metadata::Variant::Timechain => { + use $crate::metadata::timechain as metadata; + $block + }, + $crate::metadata::Variant::Staging => { + use $crate::metadata::staging as metadata; + $block + }, + $crate::metadata::Variant::Testnet => { + use $crate::metadata::testnet as metadata; + $block + }, + $crate::metadata::Variant::Development => { + use $crate::metadata::development as metadata; + $block + }, + } + }; +} + +/// Shared helper data strucuture +#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug, scale_info::TypeInfo)] +pub enum MultiSigner { + Ed25519([u8; 32]), + Sr25519([u8; 32]), + Ecdsa([u8; 33]), +} diff --git a/tc-subxt/src/shards.rs b/tc-subxt/src/shards.rs index 24700c9003..a1971bd1b7 100644 --- a/tc-subxt/src/shards.rs +++ b/tc-subxt/src/shards.rs @@ -1,74 +1,85 @@ -use crate::{timechain_runtime, SubxtClient}; +use crate::{metadata_scope, SubxtClient}; use anyhow::{anyhow, Result}; -use time_primitives::{NetworkId, ShardId}; -use timechain_runtime::runtime_types::time_primitives::shard::ShardStatus; +use time_primitives::{NetworkId, ShardId, ShardStatus}; impl SubxtClient { pub async fn shard_public_key(&self, shard_id: ShardId) -> Result<[u8; 33]> { - let storage = timechain_runtime::storage().shards().shard_commitment(shard_id); - Ok(self - .client - .storage() - .at_latest() - .await? - .fetch(&storage) - .await? - .ok_or(anyhow!("shard key not found"))?[0]) + metadata_scope!(self.metadata, { + let storage = metadata::storage().shards().shard_commitment(shard_id); + self.client + .storage() + .at_latest() + .await? + .fetch(&storage) + .await? + .ok_or(anyhow!("shard key not found")) + .map(|v| v[0]) + }) } pub async fn shard_id_counter(&self) -> Result { - let storage_query = timechain_runtime::storage().shards().shard_id_counter(); - let shard_id = self - .client - .storage() - .at_latest() - .await? - .fetch_or_default(&storage_query) - .await?; - Ok(shard_id) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().shards().shard_id_counter(); + Ok(self + .client + .storage() + .at_latest() + .await? + .fetch_or_default(&storage_query) + .await?) + }) } pub async fn shard_network(&self, shard_id: u64) -> Result { - let storage_query = timechain_runtime::storage().shards().shard_network(shard_id); - self.client - .storage() - .at_latest() - .await? - .fetch(&storage_query) - .await? - .ok_or(anyhow!("Shard network not found")) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().shards().shard_network(shard_id); + self.client + .storage() + .at_latest() + .await? + .fetch(&storage_query) + .await? + .ok_or(anyhow!("Shard network not found")) + }) } pub async fn shard_state(&self, shard_id: u64) -> Result { - let storage_query = timechain_runtime::storage().shards().shard_state(shard_id); - self.client - .storage() - .at_latest() - .await? - .fetch(&storage_query) - .await? - .ok_or(anyhow!("Shard Status not found")) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().shards().shard_state(shard_id); + self.client + .storage() + .at_latest() + .await? + .fetch(&storage_query) + .await? + .ok_or(anyhow!("Shard Status not found")) + .map(|s| s.0) + }) } pub async fn shard_size(&self) -> Result { - let storage_query = timechain_runtime::storage().elections().shard_size(); - self.client - .storage() - .at_latest() - .await? - .fetch(&storage_query) - .await? - .ok_or(anyhow!("Shard size not found")) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().elections().shard_size(); + self.client + .storage() + .at_latest() + .await? + .fetch(&storage_query) + .await? + .ok_or(anyhow!("Shard size not found")) + }) } pub async fn shard_threshold(&self) -> Result { - let storage_query = timechain_runtime::storage().elections().shard_threshold(); - self.client - .storage() - .at_latest() - .await? - .fetch(&storage_query) - .await? - .ok_or(anyhow!("Shard size not found")) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().elections().shard_threshold(); + self.client + .storage() + .at_latest() + .await? + .fetch(&storage_query) + .await? + .ok_or(anyhow!("Shard size not found")) + }) } } diff --git a/tc-subxt/src/tasks.rs b/tc-subxt/src/tasks.rs index e8ada86562..af2fb223b6 100644 --- a/tc-subxt/src/tasks.rs +++ b/tc-subxt/src/tasks.rs @@ -1,12 +1,13 @@ -use crate::{timechain_runtime, SubxtClient}; +use crate::{metadata_scope, SubxtClient}; use anyhow::Result; -use time_primitives::TaskId; -use timechain_runtime::runtime_types::time_primitives::task::{Payload, TaskPhase}; +use time_primitives::{Payload, TaskId, TaskPhase}; impl SubxtClient { pub async fn get_network_unassigned_tasks(&self, network_id: u16) -> Result> { - let storage_query = timechain_runtime::storage().tasks().unassigned_tasks_iter1(network_id); - let mut items = self.client.storage().at_latest().await?.iter(storage_query).await?; + let mut items = metadata_scope!(self.metadata, { + let storage_query = metadata::storage().tasks().unassigned_tasks_iter1(network_id); + self.client.storage().at_latest().await?.iter(storage_query).await? + }); let mut tasks: Vec = vec![]; while let Some(Ok(pair)) = items.next().await { tasks.push(pair.value); @@ -15,19 +16,31 @@ impl SubxtClient { } pub async fn is_task_complete(&self, task_id: u64) -> Result { - let storage_query = timechain_runtime::storage().tasks().task_output(task_id); - let Some(output) = self.client.storage().at_latest().await?.fetch(&storage_query).await? - else { - return Ok(false); - }; - if let Payload::Error(msg) = output.payload { - anyhow::bail!("{msg}"); - } - Ok(true) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().tasks().task_output(task_id); + let Some(output) = + self.client.storage().at_latest().await?.fetch(&storage_query).await? + else { + return Ok(false); + }; + if let Payload::Error(msg) = output.payload.0 { + anyhow::bail!("{msg}"); + } + Ok(true) + }) } pub async fn get_task_phase(&self, task_id: u64) -> Result> { - let storage_query = timechain_runtime::storage().tasks().task_phase_state(task_id); - Ok(self.client.storage().at_latest().await?.fetch(&storage_query).await?) + metadata_scope!(self.metadata, { + let storage_query = metadata::storage().tasks().task_phase_state(task_id); + Ok(self + .client + .storage() + .at_latest() + .await? + .fetch(&storage_query) + .await? + .map(|s| s.0)) + }) } } diff --git a/tester/Cargo.toml b/tester/Cargo.toml index 12ac71275b..53b218d5b4 100644 --- a/tester/Cargo.toml +++ b/tester/Cargo.toml @@ -1,25 +1,38 @@ [package] name = "tester" version = "0.1.0" -edition = "2021" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] -alloy-primitives = { version = "0.6.4" } +anyhow.workspace = true +clap.workspace = true +hex.workspace = true +serde_json.workspace = true +tokio = { workspace = true, features = [ "macros", "rt-multi-thread", "signal" ]} + +rosetta-client.workspace = true +rosetta-config-ethereum.workspace = true + +alloy-primitives = { version = "0.6.4", features = ["std", "rlp"] } alloy-sol-types = { version = "0.6.4" } -anyhow = "1.0.75" -clap = { version = "4.4.2", features = [ "derive" ] } ethers-solc = "2.0.1" getrandom = "0.2.12" -hex = "0.4.3" tabled = "0.15.0" -rosetta-client.workspace = true -rosetta-config-ethereum.workspace = true schnorr-evm = "0.1.2" -serde_json = "1.0" sha3 = "0.10.8" surf = { version = "2.3.2", default-features = false, features = [ "h1-client-rustls" ] } sysinfo = "0.30.10" +tracing-subscriber = "0.3.18" + tc-subxt = { path = "../tc-subxt"} time-primitives = { path = "../primitives" } -tokio = {version = "1.38.0", features = ["macros", "rt-multi-thread", "signal"]} -tracing-subscriber = "0.3.18" + +[features] +default = [] +testnet = [ "tc-subxt/testnet" ] +development = [ "tc-subxt/development" ] diff --git a/tester/src/lib.rs b/tester/src/lib.rs index d06de83d0c..353aa0fd11 100644 --- a/tester/src/lib.rs +++ b/tester/src/lib.rs @@ -2,30 +2,27 @@ use alloy_primitives::{Address, U256}; use alloy_sol_types::{sol, SolCall, SolConstructor}; use anyhow::{Context, Result}; use rosetta_client::Wallet; -use rosetta_config_ethereum::ext::types::ext::rlp::RlpStream; use rosetta_config_ethereum::{ AtBlock, CallContract, CallResult, GetTransactionCount, SubmitResult, }; use schnorr_evm::SigningKey; -use sha3::Digest; use sp_core::crypto::Ss58Codec; use std::collections::HashMap; use std::future::Future; -use std::intrinsics::transmute; use std::path::{Path, PathBuf}; use std::process::Command; +use std::str::FromStr; use std::time::Duration; use tabled::{builder::Builder, settings::Style}; use tc_subxt::ext::futures::future::join_all; use tc_subxt::ext::futures::stream::BoxStream; use tc_subxt::ext::futures::{stream, StreamExt}; -pub use tc_subxt::timechain_runtime::runtime_types::time_primitives::shard::ShardStatus; -use tc_subxt::timechain_runtime::tasks::events::{GatewayRegistered, TaskCreated}; -use tc_subxt::{SubxtClient, SubxtTxSubmitter}; +use tc_subxt::{events, MetadataVariant, SubxtClient, SubxtTxSubmitter}; use time_primitives::sp_core::H160; use time_primitives::{ sp_core, BlockHash, BlockNumber, Function, GmpParams, IGateway, Message, Msg, NetworkId, - Runtime, ShardId, TaskDescriptor, TaskDescriptorParams, TaskId, TaskPhase, TssPublicKey, + Runtime, ShardId, ShardStatus, TaskDescriptor, TaskDescriptorParams, TaskId, TaskPhase, + TssPublicKey, }; use tokio::time::Instant; @@ -54,7 +51,7 @@ pub struct ChainNetwork { pub url: String, } -impl std::str::FromStr for ChainNetwork { +impl FromStr for ChainNetwork { type Err = anyhow::Error; fn from_str(network: &str) -> Result { @@ -76,14 +73,18 @@ pub struct Tester { wallet: Wallet, } -pub async fn subxt_client(keyfile: &Path, url: &str) -> Result { +pub async fn subxt_client( + keyfile: &Path, + metadata: MetadataVariant, + url: &str, +) -> Result { while SubxtClient::get_client(url).await.is_err() { println!("waiting for chain to start"); sleep_or_abort(Duration::from_secs(10)).await?; } let tx_submitter = SubxtTxSubmitter::try_new(url).await.unwrap(); - let runtime = SubxtClient::with_keyfile(url, keyfile, tx_submitter).await?; + let runtime = SubxtClient::with_keyfile(url, metadata, keyfile, tx_submitter).await?; println!("tester key is {:?}", runtime.account_id().to_ss58check()); Ok(runtime) } @@ -162,12 +163,45 @@ impl Tester { self.deploy(&self.gateway_contract, call).await } - pub async fn deploy_proxy(&self, implementation: Address) -> Result<(EthContractAddress, u64)> { - let call = GatewayProxy::constructorCall { - implementation, - initializer: vec![], - }; - self.deploy(&self.proxy_contract, call).await + pub async fn deploy_proxy( + &self, + implementation: Address, + proxy_addr: Address, + admin: Address, + tss_public_key: Vec, + ) -> Result<(EthContractAddress, u64)> { + // Build the Gateway initializer + let tss_keys: Vec = tss_public_key + .into_iter() + .map(|key| { + let parity_bit = if key[0] % 2 == 0 { 0 } else { 1 }; + let x_coords = hex::encode(&key[1..]); + TssKeyR { + yParity: parity_bit, + xCoord: U256::from_str_radix(&x_coords, 16).unwrap(), + } + }) + .collect(); + let initializer = Gateway::initializeCall { + admin: admin.into_array().into(), + keys: tss_keys, + networks: vec![Network { + id: self.network_id, + gateway: proxy_addr.into_array().into(), + }], + } + .abi_encode(); + + // Deploy the proxy contract + let call = GatewayProxy::constructorCall { implementation, initializer }; + let (actual_addr, block_number) = self.deploy(&self.proxy_contract, call).await?; + + // Check if the proxy address match the expect address + let actual_addr: Address = actual_addr.into(); + if actual_addr != proxy_addr.into_array() { + anyhow::bail!("Proxy address mismatch, expect {proxy_addr:?}, got {actual_addr:?}"); + } + Ok((actual_addr.into_array(), block_number)) } pub async fn deposit_funds( @@ -270,8 +304,8 @@ impl Tester { funds: 10000000000000000, }; let events = self.runtime.create_task(params).await?.wait_for_success().await?; - let transfer_event = events.find_first::().unwrap(); - let TaskCreated(id) = + let transfer_event = events.find_first::().unwrap(); + let events::TaskCreated(id) = transfer_event.ok_or(anyhow::anyhow!("Not able to fetch task event"))?; println!("Task registered: {:?}", id); Ok(id) @@ -289,7 +323,7 @@ impl Tester { .await? .wait_for_success() .await?; - let gateway_event = events.find_first::().unwrap(); + let gateway_event = events.find_first::().unwrap(); println!("Gateway registered with event {:?}", gateway_event); Ok(()) } @@ -308,8 +342,7 @@ impl Tester { } pub async fn get_task_phase(&self, task_id: TaskId) -> Option { - let val = self.runtime.get_task_phase(task_id).await.unwrap(); - unsafe { transmute(val) } + self.runtime.get_task_phase(task_id).await.unwrap() } pub async fn get_network_unassigned_tasks(&self, network_id: u16) -> Vec { @@ -357,85 +390,44 @@ impl Tester { let shard_public_key = self.runtime.shard_public_key(shard_id).await.unwrap(); gateway_keys.push(shard_public_key); - // get proxy address - let calculated_proxy_addr = self.get_proxy_addr().await?; - // deploy gateway - let (address, _) = self.deploy_gateway(calculated_proxy_addr).await?; - // deploy proxy - let (proxy_addr, block_height) = self.deploy_proxy(address.into()).await?; + // get proxy and admin addresses + let proxy_addr = self.get_proxy_addr().await?; + let gateway_admin = Address::from_str(self.wallet().account().address.as_str())?; - assert_eq!(calculated_proxy_addr, proxy_addr); + // deploy gateway implementation + println!("deploying implementation contract..."); + let (address, _) = self.deploy_gateway(proxy_addr).await?; - // initialize the gateway - let gateway_admin = - hex::decode(self.wallet().account().address.strip_prefix("0x").unwrap())?; - let mut address_bytes = [0u8; 20]; - address_bytes.copy_from_slice(&gateway_admin[..20]); - self.initialize_gateway(proxy_addr, gateway_keys, address_bytes.into()).await?; + // deploy and initialize gateway proxy + println!("deploying proxy contract..."); + let (proxy_addr, block_height) = self + .deploy_proxy(address.into(), proxy_addr, gateway_admin, gateway_keys) + .await?; // register proxy self.register_gateway_address(shard_id, proxy_addr, block_height).await?; + // can you believe it, substrate can return old values after emitting a // successful event tokio::time::sleep(Duration::from_secs(20)).await; Ok(proxy_addr) } - pub async fn initialize_gateway( - &self, - proxy_address: EthContractAddress, - tss_public_key: Vec, - admin: Address, - ) -> Result<()> { - let mut tss_keys: Vec = vec![]; - for key in tss_public_key.into_iter() { - let parity_bit = if key[0] % 2 == 0 { 0 } else { 1 }; - let x_coords = hex::encode(&key[1..]); - tss_keys.push(TssKeyR { - yParity: parity_bit, - xCoord: U256::from_str_radix(&x_coords, 16).unwrap(), - }); - } - - let network = vec![Network { - id: self.network_id, - gateway: proxy_address.into(), - }]; - - let call = Gateway::initializeCall { - admin, - keys: tss_keys, - networks: network, - } - .abi_encode(); - - self.wallet().eth_send_call(proxy_address, call, 0, None, None).await?; - - Ok(()) - } - pub async fn get_proxy_addr(&self) -> Result

{ - let bytes = hex::decode(self.wallet().account().address.strip_prefix("0x").unwrap())?; - let mut address_bytes = [0u8; 20]; - address_bytes.copy_from_slice(&bytes[..20]); + // account which is going to deploy the gateway + let deployer = Address::from_str(self.wallet().account().address.as_str())?; + + // get deployer's nonce let nonce = self .wallet() .query(GetTransactionCount { - address: address_bytes.into(), + address: deployer.into_array().into(), block: AtBlock::Latest, }) .await?; - let nonce = nonce + 1; - - let mut stream = RlpStream::new_list(2); - stream.append(&bytes); - stream.append(&nonce); - - let rlp_encoded = stream.out().to_vec(); - let hash = sha3::Keccak256::digest(rlp_encoded); - let address = Address::from_slice(&hash[12..]); - Ok(address) + // compute the proxy address + Ok(deployer.create(nonce + 1)) } pub async fn register_shard_on_gateway( diff --git a/tester/src/main.rs b/tester/src/main.rs index 0a145c3140..527fe36528 100644 --- a/tester/src/main.rs +++ b/tester/src/main.rs @@ -8,14 +8,12 @@ use std::str::FromStr; use std::time::Duration; use sysinfo::System; use tc_subxt::ext::futures::{FutureExt, StreamExt}; -use tc_subxt::timechain_runtime::runtime_types::time_primitives::task::Payload; -use tc_subxt::timechain_runtime::tasks::events; -use tc_subxt::SubxtClient; +use tc_subxt::{events, MetadataVariant, SubxtClient}; use tester::{ format_duration, setup_funds_if_needed, setup_gmp_with_contracts, sleep_or_abort, stats, test_setup, wait_for_gmp_calls, ChainNetwork, GmpBenchState, Tester, VotingContract, }; -use time_primitives::ShardId; +use time_primitives::{Payload, ShardId}; use tokio::time::{interval_at, Instant}; // 0xD3e34B4a2530956f9eD2D56e3C6508B7bBa3aC84 tester wallet key @@ -28,6 +26,8 @@ const CHRONICLE_KEYFILES: [&str; 3] = ["/etc/keyfile1", "/etc/keyfile2", "/etc/k struct Args { #[arg(long, default_values = ["3;ws://ethereum:8545", "6;ws://astar:9944"])] network: Vec, + #[arg(long)] + timechain_metadata: Option, #[arg(long, default_value = "/etc/alice")] timechain_keyfile: PathBuf, #[arg(long, default_value = "ws://validator:9944")] @@ -109,7 +109,12 @@ enum Environment { async fn main() -> Result<()> { tracing_subscriber::fmt::init(); let args = Args::parse(); - let runtime = tester::subxt_client(&args.timechain_keyfile, &args.timechain_url).await?; + let runtime = tester::subxt_client( + &args.timechain_keyfile, + args.timechain_metadata.unwrap_or_default(), + &args.timechain_url, + ) + .await?; let mut tester = Vec::with_capacity(args.network.len()); let mut chronicles = vec![]; for network in &args.network { @@ -346,7 +351,7 @@ async fn gmp_benchmark( let contains_gmp_task = all_gmp_blocks.iter().any(|block| *block == item); if contains_gmp_task { bench_state.add_recv_task(task_id); - println!("Contians gmp task"); + println!("Contains gmp task"); } } }, diff --git a/tss/Cargo.toml b/tss/Cargo.toml index c4bcf8713f..0b522656a3 100644 --- a/tss/Cargo.toml +++ b/tss/Cargo.toml @@ -1,18 +1,20 @@ [package] name = "tss" -authors = [ "Dev " ] -edition = "2021" -homepage = "https://www.analog.one/" -license = "Apache-2.0" -repository = "https://github.com/Analog-Labs/tesseract/" version = "0.0.1" +license = "Apache-2.0" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true [dependencies] -anyhow = "1.0.75" +anyhow.workspace = true +serde.workspace = true +tracing.workspace = true + frost-evm = { version = "0.1.1", features = ["serde"] } rand_core = { version = "0.6.4", features = ["getrandom"] } -serde = { version = "1.0.188", features = [ "derive" ] } -tracing = "0.1.37" [dev-dependencies] -env_logger = "0.10.0" +env_logger.workspace = true diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 7bb429dea3..a286b91de3 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -1,10 +1,15 @@ [package] name = "timechain-generate-bags" version = "0.1.0" -edition = "2021" + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true [dependencies] -timechain-runtime = { path = "../../runtime" } -generate-bags = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.9.0" } +clap.workspace = true -clap = { version = "4.4.18", features = [ "derive" ] } +timechain-runtime = { path = "../../runtime" } +generate-bags = { git = "https://github.com/analog-labs/polkadot-sdk", tag = "v1.13.0-patched" }