Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • nodes/rust/duniter-v2s
  • llaq/lc-core-substrate
  • pini-gh/duniter-v2s
  • vincentux/duniter-v2s
  • mildred/duniter-v2s
  • d0p1/duniter-v2s
  • bgallois/duniter-v2s
  • Nicolas80/duniter-v2s
8 results
Show changes
Commits on Source (3)
  • Cédric Moreau's avatar
    Resolve "E2E tests fail but the CI succeeds" (!189) · 62a49be9
    Cédric Moreau authored
    * fix(#132): fix: always run `tests` job by default
    
    * fix(#132): fix: change `tests` job
    
    * fix(#132): E2E tests must fail if some hooks have failed
    62a49be9
  • Cédric Moreau's avatar
    9e3659a2
  • Hugo Trentesaux's avatar
    implement quotas and refund transaction fees (!183) · b793b455
    Hugo Trentesaux authored
    * implement quotas
    
    implement weights "à l'arrache"
    
    benchmarks duniter-account "à l'arrache"
    
    implement benchmark logic (not proper benchmarks)
    
    fix live tests :man_facepalming:
    
    and clippy :man_facepalming::man_facepalming:
    
    replace quotas by quota everywhere
    
    comment unused sections of template
    
    remove quota treasury dependency
    
    give treasury address as argument
    
    typo
    
    review tuxmain
    
    doc readme
    
    rename error DistanceKO to DistanceNotOK
    
    merge new owner key and revocation signature
    
    merge signature error types
    
    rename NewOwnerKeyPayload
    
    fix comment
    
    make eligibility more explicit
    
    implement quotas
    
    implement weights "à l'arrache"
    
    benchmarks duniter-account "à l'arrache"
    
    implement benchmark logic (not proper benchmarks)
    
    fix live tests :man_facepalming:
    
    and clippy :man_facepalming::man_facepalming:
    
    replace quotas by quota everywhere
    
    comment unused sections of template
    
    remove quota treasury dependency
    
    give treasury address as argument
    
    typo
    
    review tuxmain
    
    doc readme
    
    rename error DistanceKO to DistanceNotOK
    
    merge new owner key and revocation signature
    
    merge signature error types
    
    rename NewOwnerKeyPayload
    
    fix comment
    
    make eligibility more explicit
    
    update metadata
    
    fix
    
    fix fee multiplier update
    
    prevent network discovery + connecting other nodes
    b793b455
Showing
with 1729 additions and 1341 deletions
[alias] [alias]
cucumber = "test -p duniter-end2end-tests --test cucumber_tests --"
sanity-gdev = "test -p duniter-live-tests --test sanity_gdev -- --nocapture" sanity-gdev = "test -p duniter-live-tests --test sanity_gdev -- --nocapture"
tu = "test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests" tu = "test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests"
# `te` and `cucumber` are synonyms
te = "test -p duniter-end2end-tests --test cucumber_tests --"
cucumber = "test -p duniter-end2end-tests --test cucumber_tests --"
ta = "test --workspace --exclude duniter-live-tests"
tb = "test --features runtime-benchmarks -p" tb = "test --features runtime-benchmarks -p"
rbp = "run --release --features runtime-benchmarks -- benchmark pallet --chain=dev --steps=50 --repeat=20 --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=. --pallet" rbp = "run --release --features runtime-benchmarks -- benchmark pallet --chain=dev --steps=50 --repeat=20 --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=. --pallet"
xtask = "run --package xtask --" xtask = "run --package xtask --"
cucumber-node = "run -- --chain=gdev_dev --execution=Native --sealing=manual --force-authoring --rpc-cors=all --tmp --ws-port 9944 --alice"
...@@ -7,6 +7,7 @@ stages: ...@@ -7,6 +7,7 @@ stages:
- quality - quality
- build - build
- tests - tests
- release
- deploy - deploy
- deploy_readme - deploy_readme
...@@ -43,7 +44,7 @@ check_labels: ...@@ -43,7 +44,7 @@ check_labels:
.env: .env:
image: paritytech/ci-linux:production image: paritytech/ci-linux:production
tags: tags:
- podman - kepler
fmt_and_clippy: fmt_and_clippy:
extends: .env extends: .env
...@@ -52,6 +53,8 @@ fmt_and_clippy: ...@@ -52,6 +53,8 @@ fmt_and_clippy:
when: manual when: manual
- if: '$CI_COMMIT_TAG || $CI_COMMIT_BRANCH == "master"' - if: '$CI_COMMIT_TAG || $CI_COMMIT_BRANCH == "master"'
when: never when: never
- if: '$CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/'
when: never
- if: $CI_PIPELINE_SOURCE == "merge_request_event" - if: $CI_PIPELINE_SOURCE == "merge_request_event"
- when: manual - when: manual
stage: quality stage: quality
...@@ -69,6 +72,61 @@ fmt_and_clippy: ...@@ -69,6 +72,61 @@ fmt_and_clippy:
tags: tags:
- podman - podman
.docker_release_build:
stage: build
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
when: manual
changes:
- node/specs/$CHAIN-raw.json
variables:
IMAGE_NAME: "duniter/duniter-v2s-$CHAIN"
IMAGE_TAG: "latest"
PODMAN_BUILD_OPTIONS: "--platform linux/amd64 --build-arg chain=$CHAIN"
script:
- echo podman build --layers --tag "$IMAGE_NAME:$IMAGE_TAG" -f docker/Dockerfile $PODMAN_BUILD_OPTIONS .
- podman build --layers --tag "$IMAGE_NAME:$IMAGE_TAG" -f docker/Dockerfile $PODMAN_BUILD_OPTIONS .
tags:
- podman
.docker_release_deploy:
stage: deploy
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
when: manual
changes:
- node/specs/$CHAIN-raw.json
variables:
IMAGE_NAME: "duniter/duniter-v2s-$CHAIN"
IMAGE_TAG: "latest"
script:
- echo podman push "localhost/$IMAGE_NAME:$IMAGE_TAG" "docker://docker.io/$IMAGE_NAME:$IMAGE_TAG"
- podman podman push "localhost/$IMAGE_NAME:$IMAGE_TAG" "docker://docker.io/$IMAGE_NAME:$IMAGE_TAG"
tags:
- podman
gdev_docker_release_build:
extends: .docker_release_build
variables:
CHAIN: gdev
gtest_docker_release_build:
extends: .docker_release_build
variables:
CHAIN: gtest
gdev_docker_release_deploy:
extends: .docker_release_deploy
needs: ['gdev_docker_release_build']
variables:
CHAIN: gdev
gtest_docker_release_deploy:
extends: .docker_release_deploy
needs: ['gtest_docker_release_build']
variables:
CHAIN: gtest
.docker_deploy: .docker_deploy:
stage: deploy stage: deploy
before_script: before_script:
...@@ -127,20 +185,28 @@ build_release_tag: ...@@ -127,20 +185,28 @@ build_release_tag:
IMAGE_TAG: "$CI_COMMIT_TAG" IMAGE_TAG: "$CI_COMMIT_TAG"
PODMAN_BUILD_OPTIONS: "--platform linux/amd64" PODMAN_BUILD_OPTIONS: "--platform linux/amd64"
test_debug: tests:
stage: tests stage: tests
extends: .docker_build image: rust:1-bullseye
rules: rules:
- if: $CI_COMMIT_REF_NAME =~ /^wip*$/ - if: $CI_COMMIT_REF_NAME =~ /^wip*$/
when: manual when: manual
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
when: never when: never
- if: $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
when: never
- if: '$CI_MERGE_REQUEST_ID || $CI_COMMIT_BRANCH == "master"' - if: '$CI_MERGE_REQUEST_ID || $CI_COMMIT_BRANCH == "master"'
- when: manual when: manual
- when: always
variables: variables:
IMAGE_NAME: "duniter/duniter-v2s-test" DEBIAN_FRONTEND: noninteractive
IMAGE_TAG: "debug-sha-$CI_COMMIT_SHORT_SHA" script:
PODMAN_BUILD_OPTIONS: "--target build --build-arg debug=1 --build-arg cucumber=1" - apt-get update
- apt-get install -y clang cmake protobuf-compiler
# cargo build is required for cucumber tests anyway
- cargo build
- cargo tu
- cargo cucumber
test_release: test_release:
stage: tests stage: tests
...@@ -229,3 +295,191 @@ readme_docker_release_tag: ...@@ -229,3 +295,191 @@ readme_docker_release_tag:
PUSHRM_FILE: "$CI_PROJECT_DIR/docker/README.md" PUSHRM_FILE: "$CI_PROJECT_DIR/docker/README.md"
script: "/bin/true" script: "/bin/true"
############## SRTOOL ##############
.srtool:
stage: build
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
image: paritytech/srtool:1.73.0-0.12.0
variables:
PACKAGE: $RUNTIME-runtime
RUNTIME_DIR: runtime/$RUNTIME
SRTOOL_OUTPUT: $CI_PROJECT_DIR/release/srtool_output_$RUNTIME.json
script:
- echo "Building runtime for $RUNTIME"
- echo release/runtime-700 | sed -e "s/release\///g"
- mkdir -p $CI_PROJECT_DIR/release
# Copy sources to the expected directory of srtool
- cp -R * /build/
# Build the runtime
- /srtool/build --app --json -cM > $SRTOOL_OUTPUT
- mv /build/runtime/$RUNTIME/target/srtool/release/wbuild/$RUNTIME-runtime/${RUNTIME}_runtime.compact.compressed.wasm $CI_PROJECT_DIR/release/
artifacts:
name: "runtime"
paths:
- $CI_PROJECT_DIR/release
tags:
- kepler
gdev_srtool:
extends: .srtool
variables:
RUNTIME: gdev
gtest_srtool:
extends: .srtool
variables:
RUNTIME: gtest
############## SPECS ##############
create_g1_data:
stage: build
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
image: python:3.9.18
variables:
DEBIAN_FRONTEND: noninteractive
LEVELDB_PATH: /dump/duniter_default/data/leveldb
script:
# Duniter 1.8.7 dump
- mkdir /dump
- cd /dump
# Export file constructed using Duniter 1.8.7:
# - bin/duniter sync g1.cgeek.fr --store-txs --nointeractive --mdb 1.8.7
# - mkdir -p /tmp/backup-g1-duniter-1.8.7
# - cp -R $HOME/.config/duniter/1.8.7/data /tmp/backup-g1-duniter-1.8.7
# - cp -R $HOME/.config/duniter/1.8.7/g1 /tmp/backup-g1-duniter-1.8.7
# - cp -R $HOME/.config/duniter/1.8.7/txs.db /tmp/backup-g1-duniter-1.8.7
# - tar -cvzf /tmp/backup-g1-duniter-1.8.7.tgz /tmp/backup-g1-duniter-1.8.7
# Then the file is uploaded to dl.cgeek.fr manually
- curl https://dl.cgeek.fr/public/backup-g1-duniter-1.8.7.tgz -o g1-dump.tgz
- tar xvzf g1-dump.tgz
- rm g1-dump.tgz
- mv tmp/backup-g1-duniter-1.8.7 duniter_default
# py-g1-migrator conversion
- git clone https://git.duniter.org/tools/py-g1-migrator.git -b import_identities_from_leveldb /py-g1-migrator
- cd /py-g1-migrator
- rm -rf inputs/*
- apt-get update
- apt-get install -y sqlite3 libleveldb-dev jq
- pip install -r requirements.txt
# Export identities and wallets
- ./main.py
# Export transaction history
- sqlite3 /dump/duniter_default/txs.db --json "select time,comment,issuers,outputs from txs;" > inputs/transactions_history.json 2>> inputs/txs.err
- ./generate_transactions_history.py
# Merge in one file
- 'jq -s "{ identities: .[0].identities, wallets: .[0].wallets, initial_monetary_mass: .[0].initial_monetary_mass, transactions_history: .[1] }" output/gtest_genesis.json output/history.json > output/g1-data.json'
# Make the exported file available for next jobs
- mkdir -p $CI_PROJECT_DIR/release/
- cp output/g1-data.json $CI_PROJECT_DIR/release/
artifacts:
paths:
- $CI_PROJECT_DIR/release/
tags:
- kepler
.build_specs:
stage: build
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
image: rust:1-bullseye
variables:
WASM_FILE: $CI_PROJECT_DIR/release/${RUNTIME}_runtime.compact.compressed.wasm
DUNITER_GENESIS_DATA: $CI_PROJECT_DIR/release/g1-data.json
DUNITER_GENESIS_EXPORT: $CI_PROJECT_DIR/release/${RUNTIME}-indexer.json
DEBIAN_FRONTEND: noninteractive
script:
- apt-get update
- apt-get install -y clang cmake protobuf-compiler
- cargo run ${FEATURES} -- build-spec --chain=${RUNTIME}_live > release/${RUNTIME}.json
- cargo run ${FEATURES} -- build-spec --chain=release/${RUNTIME}.json --disable-default-bootnode --raw > release/${RUNTIME}-raw.json
- cp node/specs/${RUNTIME}_client-specs.json release/
artifacts:
name: "runtime"
paths:
- $CI_PROJECT_DIR/release
tags:
- kepler
gdev_specs:
extends: .build_specs
needs:
- gdev_srtool
- create_g1_data
variables:
RUNTIME: gdev
gtest_specs:
extends: .build_specs
needs:
- gtest_srtool
- create_g1_data
variables:
RUNTIME: gtest
FEATURES: --features gtest --no-default-features
############## RELEASE ##############
create_release:
stage: release
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
needs: ['create_g1_data', 'gdev_srtool', 'gtest_srtool']
when: manual
image: rust:1-bullseye
variables:
SRTOOL_OUTPUT_GDEV: $CI_PROJECT_DIR/release/srtool_output_gdev.json
SRTOOL_OUTPUT_GTEST: $CI_PROJECT_DIR/release/srtool_output_gtest.json
SRTOOL_OUTPUT_G1: $CI_PROJECT_DIR/release/srtool_output_g1.json
script:
# Release creation
- export MILESTONE=$(echo release/runtime-700 | sed -e "s/release\///g")
- cargo xtask release-runtime $MILESTONE $CI_COMMIT_BRANCH
# We always ship runtimes: this is both a proof and a convenience
- cargo xtask create-asset-link $MILESTONE g1-data.json https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/g1-data.json
- cargo xtask create-asset-link $MILESTONE gdev_runtime.compact.compressed.wasm https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/gdev_runtime.compact.compressed.wasm
- cargo xtask create-asset-link $MILESTONE gtest_runtime.compact.compressed.wasm https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/gtest_runtime.compact.compressed.wasm
- cargo xtask create-asset-link $MILESTONE gdev_client-specs.json https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/gdev_client-specs.json
- cargo xtask create-asset-link $MILESTONE gtest_client-specs.json https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/gtest_client-specs.json
artifacts:
paths:
- $CI_PROJECT_DIR/release/
tags:
- kepler
# ------ RELEASE: ADD SPECS ------
.release_specs:
stage: release
rules:
- if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
image: rust:1-bullseye
script:
- export MILESTONE=$(echo release/runtime-700 | sed -e "s/release\///g")
- cargo xtask create-asset-link $MILESTONE ${RUNTIME}.json https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/${RUNTIME}.json
- cargo xtask create-asset-link $MILESTONE ${RUNTIME}-raw.json https://nodes.pages.duniter.org/-/rust/duniter-v2s/-/jobs/$CI_JOB_ID/artifacts/release/${RUNTIME}-raw.json
- echo "Release Docker file..."
artifacts:
paths:
- $CI_PROJECT_DIR/release/
tags:
- kepler
release_gdev_6_specs:
extends: .release_specs
needs:
- create_release
- gdev_specs
variables:
RUNTIME: gdev
release_gtest_specs:
extends: .release_specs
needs:
- create_release
- gtest_specs
variables:
RUNTIME: gtest
...@@ -23,11 +23,11 @@ dependencies = [ ...@@ -23,11 +23,11 @@ dependencies = [
[[package]] [[package]]
name = "addr2line" name = "addr2line"
version = "0.21.0" version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
dependencies = [ dependencies = [
"gimli 0.28.0", "gimli 0.27.1",
] ]
[[package]] [[package]]
...@@ -42,7 +42,7 @@ version = "0.3.2" ...@@ -42,7 +42,7 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -51,7 +51,7 @@ version = "0.4.3" ...@@ -51,7 +51,7 @@ version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"rand_core 0.6.4", "rand_core 0.6.4",
] ]
...@@ -62,7 +62,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -62,7 +62,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [ dependencies = [
"crypto-common", "crypto-common",
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -115,9 +115,9 @@ dependencies = [ ...@@ -115,9 +115,9 @@ dependencies = [
[[package]] [[package]]
name = "aes-gcm" name = "aes-gcm"
version = "0.10.2" version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
dependencies = [ dependencies = [
"aead 0.5.2", "aead 0.5.2",
"aes 0.8.3", "aes 0.8.3",
...@@ -153,38 +153,33 @@ version = "0.7.6" ...@@ -153,38 +153,33 @@ version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [ dependencies = [
"getrandom 0.2.10", "getrandom 0.2.8",
"once_cell", "once_cell",
"version_check", "version_check",
] ]
[[package]] [[package]]
name = "ahash" name = "ahash"
version = "0.8.3" version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"getrandom 0.2.10", "getrandom 0.2.8",
"once_cell", "once_cell",
"version_check", "version_check",
"zerocopy",
] ]
[[package]] [[package]]
name = "aho-corasick" name = "aho-corasick"
version = "1.0.5" version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]] [[package]]
name = "android_system_properties" name = "android_system_properties"
version = "0.1.5" version = "0.1.5"
...@@ -203,59 +198,11 @@ dependencies = [ ...@@ -203,59 +198,11 @@ dependencies = [
"winapi 0.3.9", "winapi 0.3.9",
] ]
[[package]]
name = "anstream"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46"
[[package]]
name = "anstyle-parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.75" version = "1.0.68"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
[[package]] [[package]]
name = "approx" name = "approx"
...@@ -280,9 +227,9 @@ checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" ...@@ -280,9 +227,9 @@ checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6"
[[package]] [[package]]
name = "arrayref" name = "arrayref"
version = "0.3.7" version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]] [[package]]
name = "arrayvec" name = "arrayvec"
...@@ -292,9 +239,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" ...@@ -292,9 +239,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]] [[package]]
name = "arrayvec" name = "arrayvec"
version = "0.7.4" version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]] [[package]]
name = "ascii" name = "ascii"
...@@ -315,7 +262,7 @@ dependencies = [ ...@@ -315,7 +262,7 @@ dependencies = [
"num-traits", "num-traits",
"rusticata-macros", "rusticata-macros",
"thiserror", "thiserror",
"time", "time 0.3.23",
] ]
[[package]] [[package]]
...@@ -331,7 +278,7 @@ dependencies = [ ...@@ -331,7 +278,7 @@ dependencies = [
"num-traits", "num-traits",
"rusticata-macros", "rusticata-macros",
"thiserror", "thiserror",
"time", "time 0.3.23",
] ]
[[package]] [[package]]
...@@ -371,9 +318,9 @@ dependencies = [ ...@@ -371,9 +318,9 @@ dependencies = [
[[package]] [[package]]
name = "asn1_der" name = "asn1_der"
version = "0.7.6" version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247" checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21"
[[package]] [[package]]
name = "assert_matches" name = "assert_matches"
...@@ -383,9 +330,9 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" ...@@ -383,9 +330,9 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
[[package]] [[package]]
name = "async-channel" name = "async-channel"
version = "1.9.0" version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
dependencies = [ dependencies = [
"concurrent-queue", "concurrent-queue",
"event-listener", "event-listener",
...@@ -394,31 +341,32 @@ dependencies = [ ...@@ -394,31 +341,32 @@ dependencies = [
[[package]] [[package]]
name = "async-io" name = "async-io"
version = "1.13.0" version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794"
dependencies = [ dependencies = [
"async-lock", "async-lock",
"autocfg", "autocfg",
"cfg-if 1.0.0",
"concurrent-queue", "concurrent-queue",
"futures-lite", "futures-lite",
"libc",
"log", "log",
"parking", "parking",
"polling", "polling",
"rustix 0.37.23",
"slab", "slab",
"socket2 0.4.9", "socket2 0.4.7",
"waker-fn", "waker-fn",
"windows-sys 0.42.0",
] ]
[[package]] [[package]]
name = "async-lock" name = "async-lock"
version = "2.8.0" version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
dependencies = [ dependencies = [
"event-listener", "event-listener",
"futures-lite",
] ]
[[package]] [[package]]
...@@ -429,25 +377,25 @@ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" ...@@ -429,25 +377,25 @@ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
name = "async-trait" name = "async-trait"
version = "0.1.73" version = "0.1.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
name = "asynchronous-codec" name = "asynchronous-codec"
version = "0.6.2" version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" checksum = "06a0daa378f5fd10634e44b0a29b2a87b890657658e072a30d6f26e57ddee182"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures-sink", "futures-sink",
...@@ -458,9 +406,9 @@ dependencies = [ ...@@ -458,9 +406,9 @@ dependencies = [
[[package]] [[package]]
name = "atomic-waker" name = "atomic-waker"
version = "1.1.1" version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599"
[[package]] [[package]]
name = "atty" name = "atty"
...@@ -481,16 +429,16 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" ...@@ -481,16 +429,16 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]] [[package]]
name = "backtrace" name = "backtrace"
version = "0.3.69" version = "0.3.67"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
dependencies = [ dependencies = [
"addr2line 0.21.0", "addr2line 0.19.0",
"cc", "cc",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"miniz_oxide", "miniz_oxide",
"object 0.32.1", "object 0.30.3",
"rustc-demangle", "rustc-demangle",
] ]
...@@ -526,15 +474,15 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" ...@@ -526,15 +474,15 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]] [[package]]
name = "base64" name = "base64"
version = "0.21.4" version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
[[package]] [[package]]
name = "base64ct" name = "base64ct"
version = "1.6.0" version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf"
[[package]] [[package]]
name = "beef" name = "beef"
...@@ -562,9 +510,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" ...@@ -562,9 +510,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]] [[package]]
name = "bitflags" name = "bitflags"
version = "2.4.0" version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
[[package]] [[package]]
name = "bitvec" name = "bitvec"
...@@ -594,32 +542,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -594,32 +542,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780"
dependencies = [ dependencies = [
"arrayref", "arrayref",
"arrayvec 0.7.4", "arrayvec 0.7.2",
"constant_time_eq", "constant_time_eq 0.3.0",
] ]
[[package]] [[package]]
name = "blake2s_simd" name = "blake2s_simd"
version = "1.0.2" version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94230421e395b9920d23df13ea5d77a20e1725331f90fbbf6df6040b33f756ae" checksum = "db539cc2b5f6003621f1cd9ef92d7ded8ea5232c7de0f9faa2de251cd98730d4"
dependencies = [ dependencies = [
"arrayref", "arrayref",
"arrayvec 0.7.4", "arrayvec 0.7.2",
"constant_time_eq", "constant_time_eq 0.1.5",
] ]
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "1.4.1" version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "199c42ab6972d92c9f8995f086273d25c42fc0f7b2a1fcefba465c1352d25ba5" checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
dependencies = [ dependencies = [
"arrayref", "arrayref",
"arrayvec 0.7.4", "arrayvec 0.7.2",
"cc", "cc",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"constant_time_eq", "constant_time_eq 0.2.4",
] ]
[[package]] [[package]]
...@@ -640,16 +588,16 @@ version = "0.9.0" ...@@ -640,16 +588,16 @@ version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
name = "block-buffer" name = "block-buffer"
version = "0.10.4" version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -679,9 +627,9 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" ...@@ -679,9 +627,9 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
[[package]] [[package]]
name = "bounded-collections" name = "bounded-collections"
version = "0.1.8" version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb5b05133427c07c4776906f673ccf36c21b102c9829c641a5b56bd151d44fd6" checksum = "ca548b6163b872067dc5eb82fd130c56881435e30367d2073594a3d9744120dd"
dependencies = [ dependencies = [
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -695,11 +643,20 @@ version = "0.4.0" ...@@ -695,11 +643,20 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
[[package]]
name = "bs58"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896"
dependencies = [
"tinyvec",
]
[[package]] [[package]]
name = "bstr" name = "bstr"
version = "1.6.2" version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" checksum = "b7f0778972c64420fdedc63f09919c8a88bda7b25135357fd25a5d9f3257e832"
dependencies = [ dependencies = [
"memchr", "memchr",
"serde", "serde",
...@@ -716,9 +673,9 @@ dependencies = [ ...@@ -716,9 +673,9 @@ dependencies = [
[[package]] [[package]]
name = "bumpalo" name = "bumpalo"
version = "3.13.0" version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
[[package]] [[package]]
name = "byte-slice-cast" name = "byte-slice-cast"
...@@ -752,24 +709,24 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" ...@@ -752,24 +709,24 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]] [[package]]
name = "bytes" name = "bytes"
version = "1.5.0" version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]] [[package]]
name = "camino" name = "camino"
version = "1.1.6" version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055"
dependencies = [ dependencies = [
"serde", "serde",
] ]
[[package]] [[package]]
name = "cargo-platform" name = "cargo-platform"
version = "0.1.3" version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
dependencies = [ dependencies = [
"serde", "serde",
] ]
...@@ -782,7 +739,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" ...@@ -782,7 +739,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
dependencies = [ dependencies = [
"camino", "camino",
"cargo-platform", "cargo-platform",
"semver 1.0.18", "semver 1.0.16",
"serde", "serde",
"serde_json", "serde_json",
"thiserror", "thiserror",
...@@ -790,12 +747,11 @@ dependencies = [ ...@@ -790,12 +747,11 @@ dependencies = [
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.0.83" version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
dependencies = [ dependencies = [
"jobserver", "jobserver",
"libc",
] ]
[[package]] [[package]]
...@@ -863,16 +819,17 @@ dependencies = [ ...@@ -863,16 +819,17 @@ dependencies = [
[[package]] [[package]]
name = "chrono" name = "chrono"
version = "0.4.30" version = "0.4.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
dependencies = [ dependencies = [
"android-tzdata",
"iana-time-zone", "iana-time-zone",
"js-sys", "js-sys",
"num-integer",
"num-traits", "num-traits",
"time 0.1.45",
"wasm-bindgen", "wasm-bindgen",
"windows-targets 0.48.5", "winapi 0.3.9",
] ]
[[package]] [[package]]
...@@ -903,7 +860,7 @@ version = "0.2.5" ...@@ -903,7 +860,7 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -912,7 +869,7 @@ version = "0.3.0" ...@@ -912,7 +869,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -927,15 +884,15 @@ dependencies = [ ...@@ -927,15 +884,15 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "3.2.25" version = "3.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
dependencies = [ dependencies = [
"atty", "atty",
"bitflags 1.3.2", "bitflags 1.3.2",
"clap_derive 3.2.25", "clap_derive 3.2.18",
"clap_lex 0.2.4", "clap_lex 0.2.4",
"indexmap 1.9.3", "indexmap 1.9.2",
"once_cell", "once_cell",
"strsim", "strsim",
"termcolor", "termcolor",
...@@ -944,40 +901,33 @@ dependencies = [ ...@@ -944,40 +901,33 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "4.4.2" version = "4.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6" checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
dependencies = [ dependencies = [
"clap_builder", "bitflags 1.3.2",
"clap_derive 4.4.2", "clap_derive 4.1.0",
] "clap_lex 0.3.1",
"is-terminal",
[[package]] "once_cell",
name = "clap_builder"
version = "4.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08"
dependencies = [
"anstream",
"anstyle",
"clap_lex 0.5.1",
"strsim", "strsim",
"termcolor",
] ]
[[package]] [[package]]
name = "clap_complete" name = "clap_complete"
version = "4.4.1" version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4110a1e6af615a9e6d0a36f805d5c99099f8bab9b8042f5bc1fa220a4a89e36f" checksum = "3d6540eedc41f8a5a76cf3d8d458057dcdf817be4158a55b5f861f7a5483de75"
dependencies = [ dependencies = [
"clap 4.4.2", "clap 4.1.4",
] ]
[[package]] [[package]]
name = "clap_derive" name = "clap_derive"
version = "3.2.25" version = "3.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
dependencies = [ dependencies = [
"heck 0.4.1", "heck 0.4.1",
"proc-macro-error", "proc-macro-error",
...@@ -988,14 +938,15 @@ dependencies = [ ...@@ -988,14 +938,15 @@ dependencies = [
[[package]] [[package]]
name = "clap_derive" name = "clap_derive"
version = "4.4.2" version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
dependencies = [ dependencies = [
"heck 0.4.1", "heck 0.4.1",
"proc-macro-error",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -1009,9 +960,12 @@ dependencies = [ ...@@ -1009,9 +960,12 @@ dependencies = [
[[package]] [[package]]
name = "clap_lex" name = "clap_lex"
version = "0.5.1" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
dependencies = [
"os_str_bytes",
]
[[package]] [[package]]
name = "cmake" name = "cmake"
...@@ -1032,12 +986,6 @@ dependencies = [ ...@@ -1032,12 +986,6 @@ dependencies = [
"unicode-width", "unicode-width",
] ]
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]] [[package]]
name = "colored" name = "colored"
version = "2.0.4" version = "2.0.4"
...@@ -1064,9 +1012,9 @@ dependencies = [ ...@@ -1064,9 +1012,9 @@ dependencies = [
[[package]] [[package]]
name = "comfy-table" name = "comfy-table"
version = "6.2.0" version = "6.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e959d788268e3bf9d35ace83e81b124190378e4c91c9067524675e33394b8ba" checksum = "6e7b787b0dc42e8111badfdbe4c3059158ccb2db8780352fa1b01e8ccf45cc4d"
dependencies = [ dependencies = [
"strum", "strum",
"strum_macros", "strum_macros",
...@@ -1100,6 +1048,7 @@ dependencies = [ ...@@ -1100,6 +1048,7 @@ dependencies = [
"pallet-preimage", "pallet-preimage",
"pallet-provide-randomness", "pallet-provide-randomness",
"pallet-proxy", "pallet-proxy",
"pallet-quota",
"pallet-scheduler", "pallet-scheduler",
"pallet-session", "pallet-session",
"pallet-session-benchmarking", "pallet-session-benchmarking",
...@@ -1127,24 +1076,24 @@ dependencies = [ ...@@ -1127,24 +1076,24 @@ dependencies = [
[[package]] [[package]]
name = "concurrent-queue" name = "concurrent-queue"
version = "2.2.0" version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e"
dependencies = [ dependencies = [
"crossbeam-utils", "crossbeam-utils",
] ]
[[package]] [[package]]
name = "console" name = "console"
version = "0.15.7" version = "0.15.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
dependencies = [ dependencies = [
"encode_unicode", "encode_unicode",
"lazy_static", "lazy_static",
"libc", "libc",
"unicode-width", "unicode-width",
"windows-sys 0.45.0", "windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -1153,6 +1102,18 @@ version = "0.9.5" ...@@ -1153,6 +1102,18 @@ version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "constant_time_eq"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279"
[[package]] [[package]]
name = "constant_time_eq" name = "constant_time_eq"
version = "0.3.0" version = "0.3.0"
...@@ -1171,9 +1132,9 @@ dependencies = [ ...@@ -1171,9 +1132,9 @@ dependencies = [
[[package]] [[package]]
name = "core-foundation-sys" name = "core-foundation-sys"
version = "0.8.4" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
[[package]] [[package]]
name = "core2" name = "core2"
...@@ -1195,9 +1156,9 @@ dependencies = [ ...@@ -1195,9 +1156,9 @@ dependencies = [
[[package]] [[package]]
name = "cpufeatures" name = "cpufeatures"
version = "0.2.9" version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
dependencies = [ dependencies = [
"libc", "libc",
] ]
...@@ -1217,7 +1178,7 @@ version = "0.93.2" ...@@ -1217,7 +1178,7 @@ version = "0.93.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "253531aca9b6f56103c9420369db3263e784df39aa1c90685a1f69cfbba0623e" checksum = "253531aca9b6f56103c9420369db3263e784df39aa1c90685a1f69cfbba0623e"
dependencies = [ dependencies = [
"arrayvec 0.7.4", "arrayvec 0.7.2",
"bumpalo", "bumpalo",
"cranelift-bforest", "cranelift-bforest",
"cranelift-codegen-meta", "cranelift-codegen-meta",
...@@ -1312,9 +1273,9 @@ dependencies = [ ...@@ -1312,9 +1273,9 @@ dependencies = [
[[package]] [[package]]
name = "crc-catalog" name = "crc-catalog"
version = "2.2.0" version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
[[package]] [[package]]
name = "crc32fast" name = "crc32fast"
...@@ -1327,9 +1288,9 @@ dependencies = [ ...@@ -1327,9 +1288,9 @@ dependencies = [
[[package]] [[package]]
name = "crossbeam-channel" name = "crossbeam-channel"
version = "0.5.8" version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"crossbeam-utils", "crossbeam-utils",
...@@ -1337,9 +1298,9 @@ dependencies = [ ...@@ -1337,9 +1298,9 @@ dependencies = [
[[package]] [[package]]
name = "crossbeam-deque" name = "crossbeam-deque"
version = "0.8.3" version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"crossbeam-epoch", "crossbeam-epoch",
...@@ -1348,22 +1309,22 @@ dependencies = [ ...@@ -1348,22 +1309,22 @@ dependencies = [
[[package]] [[package]]
name = "crossbeam-epoch" name = "crossbeam-epoch"
version = "0.9.15" version = "0.9.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"crossbeam-utils", "crossbeam-utils",
"memoffset 0.9.0", "memoffset 0.7.1",
"scopeguard", "scopeguard",
] ]
[[package]] [[package]]
name = "crossbeam-utils" name = "crossbeam-utils"
version = "0.8.16" version = "0.8.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
] ]
...@@ -1380,7 +1341,7 @@ version = "0.4.9" ...@@ -1380,7 +1341,7 @@ version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"rand_core 0.6.4", "rand_core 0.6.4",
"subtle", "subtle",
"zeroize", "zeroize",
...@@ -1392,7 +1353,7 @@ version = "0.5.3" ...@@ -1392,7 +1353,7 @@ version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"rand_core 0.6.4", "rand_core 0.6.4",
"subtle", "subtle",
"zeroize", "zeroize",
...@@ -1404,7 +1365,7 @@ version = "0.1.6" ...@@ -1404,7 +1365,7 @@ version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"rand_core 0.6.4", "rand_core 0.6.4",
"typenum", "typenum",
] ]
...@@ -1415,7 +1376,7 @@ version = "0.8.0" ...@@ -1415,7 +1376,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"subtle", "subtle",
] ]
...@@ -1425,7 +1386,7 @@ version = "0.11.1" ...@@ -1425,7 +1386,7 @@ version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"subtle", "subtle",
] ]
...@@ -1459,12 +1420,12 @@ dependencies = [ ...@@ -1459,12 +1420,12 @@ dependencies = [
[[package]] [[package]]
name = "ctrlc" name = "ctrlc"
version = "3.4.1" version = "3.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82e95fbd621905b854affdc67943b043a0fbb6ed7385fd5a25650d19a8a6cfdf" checksum = "1631ca6e3c59112501a9d87fd86f21591ff77acd31331e8a73f8d80a65bbdd71"
dependencies = [ dependencies = [
"nix 0.27.1", "nix 0.26.2",
"windows-sys 0.48.0", "windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -1475,13 +1436,13 @@ checksum = "17c2113609da80892316eeacd21e63c359536814b07146d4caa17ad7676e0db3" ...@@ -1475,13 +1436,13 @@ checksum = "17c2113609da80892316eeacd21e63c359536814b07146d4caa17ad7676e0db3"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"atty", "atty",
"clap 3.2.25", "clap 3.2.23",
"console", "console",
"cucumber-codegen", "cucumber-codegen",
"cucumber-expressions", "cucumber-expressions",
"derive_more", "derive_more",
"either", "either",
"futures 0.3.28", "futures 0.3.29",
"gherkin", "gherkin",
"globwalk", "globwalk",
"inventory", "inventory",
...@@ -1549,16 +1510,15 @@ dependencies = [ ...@@ -1549,16 +1510,15 @@ dependencies = [
[[package]] [[package]]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "4.1.0" version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622178105f911d937a42cdb140730ba4a3ed2becd8ae6ce39c7d28b5d75d4588" checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"cpufeatures", "cpufeatures",
"curve25519-dalek-derive", "curve25519-dalek-derive",
"digest 0.10.7",
"fiat-crypto", "fiat-crypto",
"platforms 3.1.2", "platforms 3.0.2",
"rustc_version", "rustc_version",
"subtle", "subtle",
"zeroize", "zeroize",
...@@ -1566,20 +1526,20 @@ dependencies = [ ...@@ -1566,20 +1526,20 @@ dependencies = [
[[package]] [[package]]
name = "curve25519-dalek-derive" name = "curve25519-dalek-derive"
version = "0.1.0" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b" checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
name = "cxx" name = "cxx"
version = "1.0.107" version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe98ba1789d56fb3db3bee5e032774d4f421b685de7ba703643584ba24effbe" checksum = "bc831ee6a32dd495436e317595e639a587aa9907bef96fe6e6abc290ab6204e9"
dependencies = [ dependencies = [
"cc", "cc",
"cxxbridge-flags", "cxxbridge-flags",
...@@ -1589,9 +1549,9 @@ dependencies = [ ...@@ -1589,9 +1549,9 @@ dependencies = [
[[package]] [[package]]
name = "cxx-build" name = "cxx-build"
version = "1.0.107" version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4ce20f6b8433da4841b1dadfb9468709868022d829d5ca1f2ffbda928455ea3" checksum = "94331d54f1b1a8895cd81049f7eaaaef9d05a7dcb4d1fd08bf3ff0806246789d"
dependencies = [ dependencies = [
"cc", "cc",
"codespan-reporting", "codespan-reporting",
...@@ -1599,24 +1559,24 @@ dependencies = [ ...@@ -1599,24 +1559,24 @@ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"scratch", "scratch",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
name = "cxxbridge-flags" name = "cxxbridge-flags"
version = "1.0.107" version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20888d9e1d2298e2ff473cee30efe7d5036e437857ab68bbfea84c74dba91da2" checksum = "48dcd35ba14ca9b40d6e4b4b39961f23d835dbb8eed74565ded361d93e1feb8a"
[[package]] [[package]]
name = "cxxbridge-macro" name = "cxxbridge-macro"
version = "1.0.107" version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fa16a70dd58129e4dfffdff535fb1bce66673f7bbeec4a5a1765a504e1ccd84" checksum = "81bbeb29798b407ccd82a3324ade1a7286e0d29851475990b612670f6f5124d2"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -1656,15 +1616,15 @@ dependencies = [ ...@@ -1656,15 +1616,15 @@ dependencies = [
[[package]] [[package]]
name = "data-encoding" name = "data-encoding"
version = "2.4.0" version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
[[package]] [[package]]
name = "data-encoding-macro" name = "data-encoding-macro"
version = "0.1.13" version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c904b33cc60130e1aeea4956ab803d08a3f4a0ca82d64ed757afac3891f2bb99" checksum = "86927b7cd2fe88fa698b87404b287ab98d1a0063a34071d92e575b72d3029aca"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"data-encoding-macro-internal", "data-encoding-macro-internal",
...@@ -1672,9 +1632,9 @@ dependencies = [ ...@@ -1672,9 +1632,9 @@ dependencies = [
[[package]] [[package]]
name = "data-encoding-macro-internal" name = "data-encoding-macro-internal"
version = "0.1.11" version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fdf3fce3ce863539ec1d7fd1b6dcc3c645663376b43ed376bbf887733e4f772" checksum = "a5bbed42daaa95e780b60a50546aa345b8413a1e46f9a40a12907d3598f038db"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"syn 1.0.109", "syn 1.0.109",
...@@ -1831,7 +1791,7 @@ version = "0.9.0" ...@@ -1831,7 +1791,7 @@ version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -1840,7 +1800,7 @@ version = "0.10.7" ...@@ -1840,7 +1800,7 @@ version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [ dependencies = [
"block-buffer 0.10.4", "block-buffer 0.10.3",
"const-oid", "const-oid",
"crypto-common", "crypto-common",
"subtle", "subtle",
...@@ -1895,7 +1855,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" ...@@ -1895,7 +1855,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -1903,7 +1863,7 @@ name = "distance-oracle" ...@@ -1903,7 +1863,7 @@ name = "distance-oracle"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bincode", "bincode",
"clap 4.4.2", "clap 4.1.4",
"dubp-wot", "dubp-wot",
"flate2", "flate2",
"fnv", "fnv",
...@@ -1916,7 +1876,7 @@ dependencies = [ ...@@ -1916,7 +1876,7 @@ dependencies = [
"sp-distance", "sp-distance",
"sp-runtime", "sp-runtime",
"subxt", "subxt",
"time", "time 0.3.23",
"time-macros", "time-macros",
"tokio", "tokio",
] ]
...@@ -1935,9 +1895,9 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" ...@@ -1935,9 +1895,9 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]] [[package]]
name = "dtoa" name = "dtoa"
version = "1.0.9" version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" checksum = "c00704156a7de8df8da0911424e30c2049957b0a714542a44e05fe693dd85313"
[[package]] [[package]]
name = "dubp-wot" name = "dubp-wot"
...@@ -1957,7 +1917,8 @@ name = "duniter" ...@@ -1957,7 +1917,8 @@ name = "duniter"
version = "0.3.0" version = "0.3.0"
dependencies = [ dependencies = [
"async-io", "async-io",
"clap 4.4.2", "bs58 0.5.0",
"clap 4.1.4",
"clap_complete", "clap_complete",
"common-runtime", "common-runtime",
"dc-distance", "dc-distance",
...@@ -1966,7 +1927,7 @@ dependencies = [ ...@@ -1966,7 +1927,7 @@ dependencies = [
"frame-benchmarking", "frame-benchmarking",
"frame-benchmarking-cli", "frame-benchmarking-cli",
"frame-system", "frame-system",
"futures 0.3.28", "futures 0.3.29",
"g1-runtime", "g1-runtime",
"gdev-runtime", "gdev-runtime",
"gtest-runtime", "gtest-runtime",
...@@ -1979,6 +1940,7 @@ dependencies = [ ...@@ -1979,6 +1940,7 @@ dependencies = [
"num-format", "num-format",
"pallet-certification", "pallet-certification",
"pallet-grandpa", "pallet-grandpa",
"pallet-im-online",
"pallet-oneshot-account", "pallet-oneshot-account",
"pallet-transaction-payment", "pallet-transaction-payment",
"pallet-transaction-payment-rpc", "pallet-transaction-payment-rpc",
...@@ -2039,7 +2001,7 @@ version = "3.0.0" ...@@ -2039,7 +2001,7 @@ version = "3.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
"clap 3.2.25", "clap 3.2.23",
"ctrlc", "ctrlc",
"cucumber", "cucumber",
"distance-oracle", "distance-oracle",
...@@ -2102,9 +2064,9 @@ dependencies = [ ...@@ -2102,9 +2064,9 @@ dependencies = [
[[package]] [[package]]
name = "dyn-clone" name = "dyn-clone"
version = "1.0.13" version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbfc4744c1b8f2a09adc0e55242f60b1af195d88596bd8700be74418c056c555" checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
[[package]] [[package]]
name = "ecdsa" name = "ecdsa"
...@@ -2126,7 +2088,7 @@ checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4" ...@@ -2126,7 +2088,7 @@ checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4"
dependencies = [ dependencies = [
"der 0.7.8", "der 0.7.8",
"digest 0.10.7", "digest 0.10.7",
"elliptic-curve 0.13.5", "elliptic-curve 0.13.6",
"rfc6979 0.4.0", "rfc6979 0.4.0",
"signature 2.1.0", "signature 2.1.0",
"spki 0.7.2", "spki 0.7.2",
...@@ -2141,16 +2103,6 @@ dependencies = [ ...@@ -2141,16 +2103,6 @@ dependencies = [
"signature 1.6.4", "signature 1.6.4",
] ]
[[package]]
name = "ed25519"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60f6d271ca33075c88028be6f04d502853d63a5ece419d269c15315d4fc1cf1d"
dependencies = [
"pkcs8 0.10.2",
"signature 2.1.0",
]
[[package]] [[package]]
name = "ed25519-dalek" name = "ed25519-dalek"
version = "1.0.1" version = "1.0.1"
...@@ -2158,27 +2110,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -2158,27 +2110,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
dependencies = [ dependencies = [
"curve25519-dalek 3.2.0", "curve25519-dalek 3.2.0",
"ed25519 1.5.3", "ed25519",
"rand 0.7.3", "rand 0.7.3",
"serde", "serde",
"sha2 0.9.9", "sha2 0.9.9",
"zeroize", "zeroize",
] ]
[[package]]
name = "ed25519-dalek"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7277392b266383ef8396db7fdeb1e77b6c52fed775f5df15bb24f35b72156980"
dependencies = [
"curve25519-dalek 4.1.0",
"ed25519 2.2.2",
"rand_core 0.6.4",
"serde",
"sha2 0.10.7",
"zeroize",
]
[[package]] [[package]]
name = "ed25519-zebra" name = "ed25519-zebra"
version = "3.1.0" version = "3.1.0"
...@@ -2195,9 +2133,9 @@ dependencies = [ ...@@ -2195,9 +2133,9 @@ dependencies = [
[[package]] [[package]]
name = "either" name = "either"
version = "1.9.0" version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]] [[package]]
name = "elliptic-curve" name = "elliptic-curve"
...@@ -2210,7 +2148,7 @@ dependencies = [ ...@@ -2210,7 +2148,7 @@ dependencies = [
"der 0.6.1", "der 0.6.1",
"digest 0.10.7", "digest 0.10.7",
"ff 0.12.1", "ff 0.12.1",
"generic-array 0.14.7", "generic-array 0.14.6",
"group 0.12.1", "group 0.12.1",
"hkdf", "hkdf",
"pem-rfc7468", "pem-rfc7468",
...@@ -2223,19 +2161,19 @@ dependencies = [ ...@@ -2223,19 +2161,19 @@ dependencies = [
[[package]] [[package]]
name = "elliptic-curve" name = "elliptic-curve"
version = "0.13.5" version = "0.13.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b" checksum = "d97ca172ae9dc9f9b779a6e3a65d308f2af74e5b8c921299075bdb4a0370e914"
dependencies = [ dependencies = [
"base16ct 0.2.0", "base16ct 0.2.0",
"crypto-bigint 0.5.3", "crypto-bigint 0.5.3",
"digest 0.10.7", "digest 0.10.7",
"ff 0.13.0", "ff 0.13.0",
"generic-array 0.14.7", "generic-array 0.14.6",
"group 0.13.0", "group 0.13.0",
"pkcs8 0.10.2", "pkcs8 0.10.2",
"rand_core 0.6.4", "rand_core 0.6.4",
"sec1 0.7.3", "sec1 0.7.1",
"subtle", "subtle",
"zeroize", "zeroize",
] ]
...@@ -2248,9 +2186,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" ...@@ -2248,9 +2186,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]] [[package]]
name = "encoding_rs" name = "encoding_rs"
version = "0.8.33" version = "0.8.32"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
] ]
...@@ -2306,7 +2244,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -2306,7 +2244,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2d328fc287c61314c4a61af7cfdcbd7e678e39778488c7cb13ec133ce0f4059" checksum = "a2d328fc287c61314c4a61af7cfdcbd7e678e39778488c7cb13ec133ce0f4059"
dependencies = [ dependencies = [
"fsio", "fsio",
"indexmap 1.9.3", "indexmap 1.9.2",
] ]
[[package]] [[package]]
...@@ -2317,11 +2255,21 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" ...@@ -2317,11 +2255,21 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]] [[package]]
name = "errno" name = "errno"
version = "0.3.3" version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [ dependencies = [
"errno-dragonfly", "errno-dragonfly",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "errno"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e"
dependencies = [
"libc", "libc",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
...@@ -2348,7 +2296,7 @@ version = "0.2.0" ...@@ -2348,7 +2296,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5" checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
] ]
[[package]] [[package]]
...@@ -2400,19 +2348,13 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" ...@@ -2400,19 +2348,13 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[package]] [[package]]
name = "fastrand" name = "fastrand"
version = "1.9.0" version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [ dependencies = [
"instant", "instant",
] ]
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
[[package]] [[package]]
name = "fdlimit" name = "fdlimit"
version = "0.2.1" version = "0.2.1"
...@@ -2444,9 +2386,9 @@ dependencies = [ ...@@ -2444,9 +2386,9 @@ dependencies = [
[[package]] [[package]]
name = "fiat-crypto" name = "fiat-crypto"
version = "0.2.1" version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d" checksum = "f69037fe1b785e84986b4f2cbcf647381876a00671d25ceef715d7812dd7e1dd"
[[package]] [[package]]
name = "file-per-thread-logger" name = "file-per-thread-logger"
...@@ -2460,14 +2402,14 @@ dependencies = [ ...@@ -2460,14 +2402,14 @@ dependencies = [
[[package]] [[package]]
name = "filetime" name = "filetime"
version = "0.2.22" version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"redox_syscall 0.3.5", "redox_syscall 0.2.16",
"windows-sys 0.48.0", "windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -2477,7 +2419,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -2477,7 +2419,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3" checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3"
dependencies = [ dependencies = [
"either", "either",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"log", "log",
"num-traits", "num-traits",
...@@ -2506,9 +2448,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" ...@@ -2506,9 +2448,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]] [[package]]
name = "flate2" name = "flate2"
version = "1.0.27" version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
dependencies = [ dependencies = [
"crc32fast", "crc32fast",
"libz-sys", "libz-sys",
...@@ -2555,9 +2497,9 @@ dependencies = [ ...@@ -2555,9 +2497,9 @@ dependencies = [
[[package]] [[package]]
name = "form_urlencoded" name = "form_urlencoded"
version = "1.2.0" version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [ dependencies = [
"percent-encoding", "percent-encoding",
] ]
...@@ -2601,7 +2543,7 @@ dependencies = [ ...@@ -2601,7 +2543,7 @@ dependencies = [
"Inflector", "Inflector",
"array-bytes", "array-bytes",
"chrono", "chrono",
"clap 4.4.2", "clap 4.1.4",
"comfy-table", "comfy-table",
"frame-benchmarking", "frame-benchmarking",
"frame-support", "frame-support",
...@@ -2675,7 +2617,7 @@ version = "0.10.0-dev" ...@@ -2675,7 +2617,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-recursion", "async-recursion",
"futures 0.3.28", "futures 0.3.29",
"jsonrpsee", "jsonrpsee",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -2733,7 +2675,7 @@ dependencies = [ ...@@ -2733,7 +2675,7 @@ dependencies = [
"proc-macro-warning", "proc-macro-warning",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -2745,7 +2687,7 @@ dependencies = [ ...@@ -2745,7 +2687,7 @@ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -2755,7 +2697,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9 ...@@ -2755,7 +2697,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -2834,7 +2776,7 @@ version = "0.6.6" ...@@ -2834,7 +2776,7 @@ version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47" checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47"
dependencies = [ dependencies = [
"rustix 0.38.13", "rustix 0.38.21",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
...@@ -2897,9 +2839,9 @@ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" ...@@ -2897,9 +2839,9 @@ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
[[package]] [[package]]
name = "futures" name = "futures"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
dependencies = [ dependencies = [
"futures-channel", "futures-channel",
"futures-core", "futures-core",
...@@ -2912,9 +2854,9 @@ dependencies = [ ...@@ -2912,9 +2854,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-channel" name = "futures-channel"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-sink", "futures-sink",
...@@ -2922,15 +2864,15 @@ dependencies = [ ...@@ -2922,15 +2864,15 @@ dependencies = [
[[package]] [[package]]
name = "futures-core" name = "futures-core"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
[[package]] [[package]]
name = "futures-executor" name = "futures-executor"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-task", "futures-task",
...@@ -2940,17 +2882,17 @@ dependencies = [ ...@@ -2940,17 +2882,17 @@ dependencies = [
[[package]] [[package]]
name = "futures-io" name = "futures-io"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
[[package]] [[package]]
name = "futures-lite" name = "futures-lite"
version = "1.13.0" version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [ dependencies = [
"fastrand 1.9.0", "fastrand",
"futures-core", "futures-core",
"futures-io", "futures-io",
"memchr", "memchr",
...@@ -2961,13 +2903,13 @@ dependencies = [ ...@@ -2961,13 +2903,13 @@ dependencies = [
[[package]] [[package]]
name = "futures-macro" name = "futures-macro"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -2977,21 +2919,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -2977,21 +2919,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd" checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
dependencies = [ dependencies = [
"futures-io", "futures-io",
"rustls 0.20.9", "rustls 0.20.8",
"webpki 0.22.1", "webpki 0.22.0",
] ]
[[package]] [[package]]
name = "futures-sink" name = "futures-sink"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
[[package]] [[package]]
name = "futures-task" name = "futures-task"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
[[package]] [[package]]
name = "futures-timer" name = "futures-timer"
...@@ -3001,9 +2943,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" ...@@ -3001,9 +2943,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
[[package]] [[package]]
name = "futures-util" name = "futures-util"
version = "0.3.28" version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
dependencies = [ dependencies = [
"futures 0.1.31", "futures 0.1.31",
"futures-channel", "futures-channel",
...@@ -3063,6 +3005,7 @@ dependencies = [ ...@@ -3063,6 +3005,7 @@ dependencies = [
"pallet-preimage", "pallet-preimage",
"pallet-provide-randomness", "pallet-provide-randomness",
"pallet-proxy", "pallet-proxy",
"pallet-quota",
"pallet-scheduler", "pallet-scheduler",
"pallet-session", "pallet-session",
"pallet-sudo", "pallet-sudo",
...@@ -3131,6 +3074,7 @@ dependencies = [ ...@@ -3131,6 +3074,7 @@ dependencies = [
"pallet-preimage", "pallet-preimage",
"pallet-provide-randomness", "pallet-provide-randomness",
"pallet-proxy", "pallet-proxy",
"pallet-quota",
"pallet-scheduler", "pallet-scheduler",
"pallet-session", "pallet-session",
"pallet-session-benchmarking", "pallet-session-benchmarking",
...@@ -3178,9 +3122,9 @@ dependencies = [ ...@@ -3178,9 +3122,9 @@ dependencies = [
[[package]] [[package]]
name = "generic-array" name = "generic-array"
version = "0.14.7" version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [ dependencies = [
"typenum", "typenum",
"version_check", "version_check",
...@@ -3219,9 +3163,9 @@ dependencies = [ ...@@ -3219,9 +3163,9 @@ dependencies = [
[[package]] [[package]]
name = "getrandom" name = "getrandom"
version = "0.2.10" version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"js-sys", "js-sys",
...@@ -3269,13 +3213,13 @@ dependencies = [ ...@@ -3269,13 +3213,13 @@ dependencies = [
[[package]] [[package]]
name = "ghost" name = "ghost"
version = "0.1.14" version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba330b70a5341d3bc730b8e205aaee97ddab5d9c448c4f51a7c2d924266fa8f9" checksum = "41973d4c45f7a35af8753ba3457cc99d406d863941fd7f52663cff54a5ab99b3"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -3285,21 +3229,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -3285,21 +3229,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
dependencies = [ dependencies = [
"fallible-iterator", "fallible-iterator",
"indexmap 1.9.3", "indexmap 1.9.2",
"stable_deref_trait", "stable_deref_trait",
] ]
[[package]] [[package]]
name = "gimli" name = "gimli"
version = "0.28.0" version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec"
[[package]] [[package]]
name = "globset" name = "globset"
version = "0.4.13" version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"bstr", "bstr",
...@@ -3434,6 +3378,7 @@ dependencies = [ ...@@ -3434,6 +3378,7 @@ dependencies = [
"pallet-preimage", "pallet-preimage",
"pallet-provide-randomness", "pallet-provide-randomness",
"pallet-proxy", "pallet-proxy",
"pallet-quota",
"pallet-scheduler", "pallet-scheduler",
"pallet-session", "pallet-session",
"pallet-session-benchmarking", "pallet-session-benchmarking",
...@@ -3455,6 +3400,7 @@ dependencies = [ ...@@ -3455,6 +3400,7 @@ dependencies = [
"sp-block-builder", "sp-block-builder",
"sp-consensus-babe", "sp-consensus-babe",
"sp-core", "sp-core",
"sp-distance",
"sp-inherents", "sp-inherents",
"sp-io", "sp-io",
"sp-keyring", "sp-keyring",
...@@ -3470,9 +3416,9 @@ dependencies = [ ...@@ -3470,9 +3416,9 @@ dependencies = [
[[package]] [[package]]
name = "h2" name = "h2"
version = "0.3.21" version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
dependencies = [ dependencies = [
"bytes", "bytes",
"fnv", "fnv",
...@@ -3480,7 +3426,7 @@ dependencies = [ ...@@ -3480,7 +3426,7 @@ dependencies = [
"futures-sink", "futures-sink",
"futures-util", "futures-util",
"http", "http",
"indexmap 1.9.3", "indexmap 1.9.2",
"slab", "slab",
"tokio", "tokio",
"tokio-util", "tokio-util",
...@@ -3489,9 +3435,9 @@ dependencies = [ ...@@ -3489,9 +3435,9 @@ dependencies = [
[[package]] [[package]]
name = "handlebars" name = "handlebars"
version = "4.4.0" version = "4.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" checksum = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a"
dependencies = [ dependencies = [
"log", "log",
"pest", "pest",
...@@ -3531,14 +3477,14 @@ version = "0.13.2" ...@@ -3531,14 +3477,14 @@ version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.6",
] ]
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.14.0" version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
[[package]] [[package]]
name = "heck" name = "heck"
...@@ -3566,9 +3512,12 @@ dependencies = [ ...@@ -3566,9 +3512,12 @@ dependencies = [
[[package]] [[package]]
name = "hermit-abi" name = "hermit-abi"
version = "0.3.2" version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]] [[package]]
name = "hex" name = "hex"
...@@ -3627,19 +3576,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -3627,19 +3576,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
dependencies = [ dependencies = [
"digest 0.9.0", "digest 0.9.0",
"generic-array 0.14.7", "generic-array 0.14.6",
"hmac 0.8.1", "hmac 0.8.1",
] ]
[[package]]
name = "home"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
"windows-sys 0.48.0",
]
[[package]] [[package]]
name = "hostname" name = "hostname"
version = "0.3.1" version = "0.3.1"
...@@ -3653,9 +3593,9 @@ dependencies = [ ...@@ -3653,9 +3593,9 @@ dependencies = [
[[package]] [[package]]
name = "http" name = "http"
version = "0.2.9" version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [ dependencies = [
"bytes", "bytes",
"fnv", "fnv",
...@@ -3687,9 +3627,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" ...@@ -3687,9 +3627,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]] [[package]]
name = "httpdate" name = "httpdate"
version = "1.0.3" version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]] [[package]]
name = "humantime" name = "humantime"
...@@ -3699,9 +3639,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" ...@@ -3699,9 +3639,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]] [[package]]
name = "hyper" name = "hyper"
version = "0.14.27" version = "0.14.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures-channel", "futures-channel",
...@@ -3714,7 +3654,7 @@ dependencies = [ ...@@ -3714,7 +3654,7 @@ dependencies = [
"httpdate", "httpdate",
"itoa", "itoa",
"pin-project-lite 0.2.13", "pin-project-lite 0.2.13",
"socket2 0.4.9", "socket2 0.4.7",
"tokio", "tokio",
"tower-service", "tower-service",
"tracing", "tracing",
...@@ -3730,27 +3670,11 @@ dependencies = [ ...@@ -3730,27 +3670,11 @@ dependencies = [
"http", "http",
"hyper", "hyper",
"log", "log",
"rustls 0.20.9", "rustls 0.20.8",
"rustls-native-certs", "rustls-native-certs",
"tokio", "tokio",
"tokio-rustls 0.23.4", "tokio-rustls",
] "webpki-roots",
[[package]]
name = "hyper-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
dependencies = [
"futures-util",
"http",
"hyper",
"log",
"rustls 0.21.7",
"rustls-native-certs",
"tokio",
"tokio-rustls 0.24.1",
"webpki-roots 0.23.1",
] ]
[[package]] [[package]]
...@@ -3768,25 +3692,26 @@ dependencies = [ ...@@ -3768,25 +3692,26 @@ dependencies = [
[[package]] [[package]]
name = "iana-time-zone" name = "iana-time-zone"
version = "0.1.57" version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
dependencies = [ dependencies = [
"android_system_properties", "android_system_properties",
"core-foundation-sys", "core-foundation-sys",
"iana-time-zone-haiku", "iana-time-zone-haiku",
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",
"windows 0.48.0", "winapi 0.3.9",
] ]
[[package]] [[package]]
name = "iana-time-zone-haiku" name = "iana-time-zone-haiku"
version = "0.1.2" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [ dependencies = [
"cc", "cxx",
"cxx-build",
] ]
[[package]] [[package]]
...@@ -3808,9 +3733,9 @@ dependencies = [ ...@@ -3808,9 +3733,9 @@ dependencies = [
[[package]] [[package]]
name = "idna" name = "idna"
version = "0.4.0" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [ dependencies = [
"unicode-bidi", "unicode-bidi",
"unicode-normalization", "unicode-normalization",
...@@ -3828,21 +3753,21 @@ dependencies = [ ...@@ -3828,21 +3753,21 @@ dependencies = [
[[package]] [[package]]
name = "if-watch" name = "if-watch"
version = "3.0.1" version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9465340214b296cd17a0009acdb890d6160010b8adf8f78a00d0d7ab270f79f" checksum = "bbb892e5777fe09e16f3d44de7802f4daa7267ecbe8c466f19d94e25bb0c303e"
dependencies = [ dependencies = [
"async-io", "async-io",
"core-foundation", "core-foundation",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"if-addrs", "if-addrs",
"ipnet", "ipnet",
"log", "log",
"rtnetlink", "rtnetlink",
"system-configuration", "system-configuration",
"tokio", "tokio",
"windows 0.34.0", "windows",
] ]
[[package]] [[package]]
...@@ -3893,9 +3818,9 @@ dependencies = [ ...@@ -3893,9 +3818,9 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "1.9.3" version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"hashbrown 0.12.3", "hashbrown 0.12.3",
...@@ -3904,12 +3829,12 @@ dependencies = [ ...@@ -3904,12 +3829,12 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "2.0.0" version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
dependencies = [ dependencies = [
"equivalent", "equivalent",
"hashbrown 0.14.0", "hashbrown 0.14.2",
] ]
[[package]] [[package]]
...@@ -3944,7 +3869,7 @@ version = "0.1.3" ...@@ -3944,7 +3869,7 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
] ]
[[package]] [[package]]
...@@ -3996,13 +3921,12 @@ dependencies = [ ...@@ -3996,13 +3921,12 @@ dependencies = [
[[package]] [[package]]
name = "io-lifetimes" name = "io-lifetimes"
version = "1.0.11" version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
dependencies = [ dependencies = [
"hermit-abi 0.3.2",
"libc", "libc",
"windows-sys 0.48.0", "windows-sys 0.45.0",
] ]
[[package]] [[package]]
...@@ -4022,31 +3946,32 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" ...@@ -4022,31 +3946,32 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
[[package]] [[package]]
name = "ipconfig" name = "ipconfig"
version = "0.3.2" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
dependencies = [ dependencies = [
"socket2 0.5.3", "socket2 0.4.7",
"widestring", "widestring",
"windows-sys 0.48.0", "winapi 0.3.9",
"winreg", "winreg",
] ]
[[package]] [[package]]
name = "ipnet" name = "ipnet"
version = "2.8.0" version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"
[[package]] [[package]]
name = "is-terminal" name = "is-terminal"
version = "0.4.9" version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189"
dependencies = [ dependencies = [
"hermit-abi 0.3.2", "hermit-abi 0.2.6",
"rustix 0.38.13", "io-lifetimes",
"windows-sys 0.48.0", "rustix 0.36.7",
"windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -4060,33 +3985,33 @@ dependencies = [ ...@@ -4060,33 +3985,33 @@ dependencies = [
[[package]] [[package]]
name = "itoa" name = "itoa"
version = "1.0.9" version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
[[package]] [[package]]
name = "jobserver" name = "jobserver"
version = "0.1.26" version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
dependencies = [ dependencies = [
"libc", "libc",
] ]
[[package]] [[package]]
name = "js-sys" name = "js-sys"
version = "0.3.64" version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
dependencies = [ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
[[package]] [[package]]
name = "jsonrpsee" name = "jsonrpsee"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "367a292944c07385839818bb71c8d76611138e2dedb0677d035b8da21d29c78b" checksum = "7d291e3a5818a2384645fd9756362e6d89cf0541b0b916fa7702ea4a9833608e"
dependencies = [ dependencies = [
"jsonrpsee-client-transport", "jsonrpsee-client-transport",
"jsonrpsee-core", "jsonrpsee-core",
...@@ -4100,9 +4025,9 @@ dependencies = [ ...@@ -4100,9 +4025,9 @@ dependencies = [
[[package]] [[package]]
name = "jsonrpsee-client-transport" name = "jsonrpsee-client-transport"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8b3815d9f5d5de348e5f162b316dc9cdf4548305ebb15b4eb9328e66cf27d7a" checksum = "965de52763f2004bc91ac5bcec504192440f0b568a5d621c59d9dbd6f886c3fb"
dependencies = [ dependencies = [
"futures-util", "futures-util",
"http", "http",
...@@ -4113,20 +4038,20 @@ dependencies = [ ...@@ -4113,20 +4038,20 @@ dependencies = [
"soketto", "soketto",
"thiserror", "thiserror",
"tokio", "tokio",
"tokio-rustls 0.24.1", "tokio-rustls",
"tokio-util", "tokio-util",
"tracing", "tracing",
"webpki-roots 0.25.2", "webpki-roots",
] ]
[[package]] [[package]]
name = "jsonrpsee-core" name = "jsonrpsee-core"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b5dde66c53d6dcdc8caea1874a45632ec0fcf5b437789f1e45766a1512ce803" checksum = "a4e70b4439a751a5de7dd5ed55eacff78ebf4ffe0fc009cb1ebb11417f5b536b"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arrayvec 0.7.4", "arrayvec 0.7.2",
"async-lock", "async-lock",
"async-trait", "async-trait",
"beef", "beef",
...@@ -4149,13 +4074,13 @@ dependencies = [ ...@@ -4149,13 +4074,13 @@ dependencies = [
[[package]] [[package]]
name = "jsonrpsee-http-client" name = "jsonrpsee-http-client"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e5f9fabdd5d79344728521bb65e3106b49ec405a78b66fbff073b72b389fa43" checksum = "cc345b0a43c6bc49b947ebeb936e886a419ee3d894421790c969cc56040542ad"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"hyper", "hyper",
"hyper-rustls 0.24.1", "hyper-rustls",
"jsonrpsee-core", "jsonrpsee-core",
"jsonrpsee-types", "jsonrpsee-types",
"rustc-hash", "rustc-hash",
...@@ -4181,9 +4106,9 @@ dependencies = [ ...@@ -4181,9 +4106,9 @@ dependencies = [
[[package]] [[package]]
name = "jsonrpsee-server" name = "jsonrpsee-server"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf4d945a6008c9b03db3354fb3c83ee02d2faa9f2e755ec1dfb69c3551b8f4ba" checksum = "1fb69dad85df79527c019659a992498d03f8495390496da2f07e6c24c2b356fc"
dependencies = [ dependencies = [
"futures-channel", "futures-channel",
"futures-util", "futures-util",
...@@ -4203,9 +4128,9 @@ dependencies = [ ...@@ -4203,9 +4128,9 @@ dependencies = [
[[package]] [[package]]
name = "jsonrpsee-types" name = "jsonrpsee-types"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245ba8e5aa633dd1c1e4fae72bce06e71f42d34c14a2767c6b4d173b57bee5e5" checksum = "5bd522fe1ce3702fd94812965d7bb7a3364b1c9aba743944c5a00529aae80f8c"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"beef", "beef",
...@@ -4217,9 +4142,9 @@ dependencies = [ ...@@ -4217,9 +4142,9 @@ dependencies = [
[[package]] [[package]]
name = "jsonrpsee-ws-client" name = "jsonrpsee-ws-client"
version = "0.16.3" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e1b3975ed5d73f456478681a417128597acd6a2487855fdb7b4a3d4d195bf5e" checksum = "0b83daeecfc6517cfe210df24e570fb06213533dfb990318fae781f4c7119dd9"
dependencies = [ dependencies = [
"http", "http",
"jsonrpsee-client-transport", "jsonrpsee-client-transport",
...@@ -4235,16 +4160,16 @@ checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc" ...@@ -4235,16 +4160,16 @@ checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"ecdsa 0.16.8", "ecdsa 0.16.8",
"elliptic-curve 0.13.5", "elliptic-curve 0.13.6",
"once_cell", "once_cell",
"sha2 0.10.7", "sha2 0.10.6",
] ]
[[package]] [[package]]
name = "keccak" name = "keccak"
version = "0.1.4" version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768"
dependencies = [ dependencies = [
"cpufeatures", "cpufeatures",
] ]
...@@ -4292,15 +4217,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" ...@@ -4292,15 +4217,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.147" version = "0.2.150"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
[[package]] [[package]]
name = "libm" name = "libm"
version = "0.2.7" version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
[[package]] [[package]]
name = "libp2p" name = "libp2p"
...@@ -4309,9 +4234,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4309,9 +4234,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c7b0104790be871edcf97db9bd2356604984e623a08d825c3f27852290266b8" checksum = "9c7b0104790be871edcf97db9bd2356604984e623a08d825c3f27852290266b8"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"getrandom 0.2.10", "getrandom 0.2.8",
"instant", "instant",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"libp2p-dns", "libp2p-dns",
...@@ -4343,11 +4268,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4343,11 +4268,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6a8fcd392ff67af6cc3f03b1426c41f7f26b6b9aff2dc632c1c56dd649e571f" checksum = "b6a8fcd392ff67af6cc3f03b1426c41f7f26b6b9aff2dc632c1c56dd649e571f"
dependencies = [ dependencies = [
"asn1_der", "asn1_der",
"bs58", "bs58 0.4.0",
"ed25519-dalek 1.0.1", "ed25519-dalek",
"either", "either",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"instant", "instant",
"log", "log",
...@@ -4362,7 +4287,7 @@ dependencies = [ ...@@ -4362,7 +4287,7 @@ dependencies = [
"rand 0.8.5", "rand 0.8.5",
"rw-stream-sink", "rw-stream-sink",
"sec1 0.3.0", "sec1 0.3.0",
"sha2 0.10.7", "sha2 0.10.6",
"smallvec", "smallvec",
"thiserror", "thiserror",
"unsigned-varint", "unsigned-varint",
...@@ -4378,7 +4303,7 @@ checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" ...@@ -4378,7 +4303,7 @@ checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2"
dependencies = [ dependencies = [
"either", "either",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"instant", "instant",
"libp2p-identity", "libp2p-identity",
...@@ -4404,7 +4329,7 @@ version = "0.38.0" ...@@ -4404,7 +4329,7 @@ version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e42a271c1b49f789b92f7fc87749fa79ce5c7bdc88cbdfacb818a4bca47fec5" checksum = "8e42a271c1b49f789b92f7fc87749fa79ce5c7bdc88cbdfacb818a4bca47fec5"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
"parking_lot 0.12.1", "parking_lot 0.12.1",
...@@ -4419,7 +4344,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4419,7 +4344,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c052d0026f4817b44869bfb6810f4e1112f43aec8553f2cb38881c524b563abf" checksum = "c052d0026f4817b44869bfb6810f4e1112f43aec8553f2cb38881c524b563abf"
dependencies = [ dependencies = [
"asynchronous-codec", "asynchronous-codec",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"libp2p-swarm", "libp2p-swarm",
...@@ -4435,18 +4360,18 @@ dependencies = [ ...@@ -4435,18 +4360,18 @@ dependencies = [
[[package]] [[package]]
name = "libp2p-identity" name = "libp2p-identity"
version = "0.1.3" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "276bb57e7af15d8f100d3c11cbdd32c6752b7eef4ba7a18ecf464972c07abcce" checksum = "8a8ea433ae0cea7e3315354305237b9897afe45278b2118a7a57ca744e70fd27"
dependencies = [ dependencies = [
"bs58", "bs58 0.4.0",
"ed25519-dalek 2.0.0", "ed25519-dalek",
"log", "log",
"multiaddr 0.17.1", "multiaddr 0.17.1",
"multihash 0.17.0", "multihash 0.17.0",
"prost",
"quick-protobuf", "quick-protobuf",
"rand 0.8.5", "rand 0.8.5",
"sha2 0.10.7",
"thiserror", "thiserror",
"zeroize", "zeroize",
] ]
...@@ -4457,12 +4382,12 @@ version = "0.42.1" ...@@ -4457,12 +4382,12 @@ version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2766dcd2be8c87d5e1f35487deb22d765f49c6ae1251b3633efe3b25698bd3d2" checksum = "2766dcd2be8c87d5e1f35487deb22d765f49c6ae1251b3633efe3b25698bd3d2"
dependencies = [ dependencies = [
"arrayvec 0.7.4", "arrayvec 0.7.2",
"asynchronous-codec", "asynchronous-codec",
"bytes", "bytes",
"either", "either",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"instant", "instant",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
...@@ -4471,7 +4396,7 @@ dependencies = [ ...@@ -4471,7 +4396,7 @@ dependencies = [
"prost", "prost",
"prost-build", "prost-build",
"rand 0.8.5", "rand 0.8.5",
"sha2 0.10.7", "sha2 0.10.6",
"smallvec", "smallvec",
"thiserror", "thiserror",
"uint", "uint",
...@@ -4486,14 +4411,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4486,14 +4411,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04f378264aade9872d6ccd315c0accc18be3a35d15fc1b9c36e5b6f983b62b5b" checksum = "04f378264aade9872d6ccd315c0accc18be3a35d15fc1b9c36e5b6f983b62b5b"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"futures 0.3.28", "futures 0.3.29",
"if-watch", "if-watch",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"libp2p-swarm", "libp2p-swarm",
"log", "log",
"rand 0.8.5", "rand 0.8.5",
"smallvec", "smallvec",
"socket2 0.4.9", "socket2 0.4.7",
"tokio", "tokio",
"trust-dns-proto", "trust-dns-proto",
"void", "void",
...@@ -4521,7 +4446,7 @@ checksum = "03805b44107aa013e7cbbfa5627b31c36cbedfdfb00603c0311998882bc4bace" ...@@ -4521,7 +4446,7 @@ checksum = "03805b44107aa013e7cbbfa5627b31c36cbedfdfb00603c0311998882bc4bace"
dependencies = [ dependencies = [
"asynchronous-codec", "asynchronous-codec",
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
"nohash-hasher", "nohash-hasher",
...@@ -4539,14 +4464,14 @@ checksum = "a978cb57efe82e892ec6f348a536bfbd9fee677adbe5689d7a93ad3a9bffbf2e" ...@@ -4539,14 +4464,14 @@ checksum = "a978cb57efe82e892ec6f348a536bfbd9fee677adbe5689d7a93ad3a9bffbf2e"
dependencies = [ dependencies = [
"bytes", "bytes",
"curve25519-dalek 3.2.0", "curve25519-dalek 3.2.0",
"futures 0.3.28", "futures 0.3.29",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
"once_cell", "once_cell",
"prost", "prost",
"prost-build", "prost-build",
"rand 0.8.5", "rand 0.8.5",
"sha2 0.10.7", "sha2 0.10.6",
"snow", "snow",
"static_assertions", "static_assertions",
"thiserror", "thiserror",
...@@ -4560,7 +4485,7 @@ version = "0.41.0" ...@@ -4560,7 +4485,7 @@ version = "0.41.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "929fcace45a112536e22b3dcfd4db538723ef9c3cb79f672b98be2cc8e25f37f" checksum = "929fcace45a112536e22b3dcfd4db538723ef9c3cb79f672b98be2cc8e25f37f"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"instant", "instant",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
...@@ -4577,7 +4502,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4577,7 +4502,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01e7c867e95c8130667b24409d236d37598270e6da69b3baf54213ba31ffca59" checksum = "01e7c867e95c8130667b24409d236d37598270e6da69b3baf54213ba31ffca59"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"if-watch", "if-watch",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
...@@ -4586,7 +4511,7 @@ dependencies = [ ...@@ -4586,7 +4511,7 @@ dependencies = [
"parking_lot 0.12.1", "parking_lot 0.12.1",
"quinn-proto", "quinn-proto",
"rand 0.8.5", "rand 0.8.5",
"rustls 0.20.9", "rustls 0.20.8",
"thiserror", "thiserror",
"tokio", "tokio",
] ]
...@@ -4599,7 +4524,7 @@ checksum = "3236168796727bfcf4927f766393415361e2c644b08bedb6a6b13d957c9a4884" ...@@ -4599,7 +4524,7 @@ checksum = "3236168796727bfcf4927f766393415361e2c644b08bedb6a6b13d957c9a4884"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"instant", "instant",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"libp2p-swarm", "libp2p-swarm",
...@@ -4617,7 +4542,7 @@ checksum = "b2a35472fe3276b3855c00f1c032ea8413615e030256429ad5349cdf67c6e1a0" ...@@ -4617,7 +4542,7 @@ checksum = "b2a35472fe3276b3855c00f1c032ea8413615e030256429ad5349cdf67c6e1a0"
dependencies = [ dependencies = [
"either", "either",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"instant", "instant",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
...@@ -4648,13 +4573,13 @@ version = "0.38.0" ...@@ -4648,13 +4573,13 @@ version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b257baf6df8f2df39678b86c578961d48cc8b68642a12f0f763f56c8e5858d" checksum = "b4b257baf6df8f2df39678b86c578961d48cc8b68642a12f0f763f56c8e5858d"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"if-watch", "if-watch",
"libc", "libc",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
"socket2 0.4.9", "socket2 0.4.7",
"tokio", "tokio",
] ]
...@@ -4664,15 +4589,15 @@ version = "0.1.0" ...@@ -4664,15 +4589,15 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"futures-rustls", "futures-rustls",
"libp2p-core 0.39.2", "libp2p-core 0.39.2",
"libp2p-identity", "libp2p-identity",
"rcgen 0.10.0", "rcgen 0.10.0",
"ring", "ring",
"rustls 0.20.9", "rustls 0.20.8",
"thiserror", "thiserror",
"webpki 0.22.1", "webpki 0.22.0",
"x509-parser 0.14.0", "x509-parser 0.14.0",
"yasna", "yasna",
] ]
...@@ -4683,7 +4608,7 @@ version = "0.38.0" ...@@ -4683,7 +4608,7 @@ version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bb1a35299860e0d4b3c02a3e74e3b293ad35ae0cee8a056363b0c862d082069" checksum = "1bb1a35299860e0d4b3c02a3e74e3b293ad35ae0cee8a056363b0c862d082069"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"js-sys", "js-sys",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"parity-send-wrapper", "parity-send-wrapper",
...@@ -4700,7 +4625,7 @@ dependencies = [ ...@@ -4700,7 +4625,7 @@ dependencies = [
"async-trait", "async-trait",
"asynchronous-codec", "asynchronous-codec",
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"hex", "hex",
"if-watch", "if-watch",
...@@ -4729,7 +4654,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -4729,7 +4654,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d705506030d5c0aaf2882437c70dab437605f21c5f9811978f694e6917a3b54" checksum = "1d705506030d5c0aaf2882437c70dab437605f21c5f9811978f694e6917a3b54"
dependencies = [ dependencies = [
"either", "either",
"futures 0.3.28", "futures 0.3.29",
"futures-rustls", "futures-rustls",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
...@@ -4738,7 +4663,7 @@ dependencies = [ ...@@ -4738,7 +4663,7 @@ dependencies = [
"rw-stream-sink", "rw-stream-sink",
"soketto", "soketto",
"url", "url",
"webpki-roots 0.22.6", "webpki-roots",
] ]
[[package]] [[package]]
...@@ -4747,7 +4672,7 @@ version = "0.42.0" ...@@ -4747,7 +4672,7 @@ version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f63594a0aa818642d9d4915c791945053877253f08a3626f13416b5cd928a29" checksum = "4f63594a0aa818642d9d4915c791945053877253f08a3626f13416b5cd928a29"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"libp2p-core 0.38.0", "libp2p-core 0.38.0",
"log", "log",
"parking_lot 0.12.1", "parking_lot 0.12.1",
...@@ -4805,9 +4730,9 @@ dependencies = [ ...@@ -4805,9 +4730,9 @@ dependencies = [
[[package]] [[package]]
name = "libz-sys" name = "libz-sys"
version = "1.1.12" version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
dependencies = [ dependencies = [
"cc", "cc",
"cmake", "cmake",
...@@ -4818,9 +4743,9 @@ dependencies = [ ...@@ -4818,9 +4743,9 @@ dependencies = [
[[package]] [[package]]
name = "link-cplusplus" name = "link-cplusplus"
version = "1.0.9" version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
dependencies = [ dependencies = [
"cc", "cc",
] ]
...@@ -4857,15 +4782,9 @@ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" ...@@ -4857,15 +4782,9 @@ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
[[package]] [[package]]
name = "linux-raw-sys" name = "linux-raw-sys"
version = "0.3.8" version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
[[package]]
name = "linux-raw-sys"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
[[package]] [[package]]
name = "lock_api" name = "lock_api"
...@@ -4879,9 +4798,12 @@ dependencies = [ ...@@ -4879,9 +4798,12 @@ dependencies = [
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.20" version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if 1.0.0",
]
[[package]] [[package]]
name = "lru" name = "lru"
...@@ -4948,7 +4870,7 @@ version = "0.0.1" ...@@ -4948,7 +4870,7 @@ version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
dependencies = [ dependencies = [
"regex-automata 0.1.10", "regex-automata",
] ]
[[package]] [[package]]
...@@ -4959,36 +4881,36 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" ...@@ -4959,36 +4881,36 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
[[package]] [[package]]
name = "matrixmultiply" name = "matrixmultiply"
version = "0.3.7" version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090126dc04f95dc0d1c1c91f61bdd474b3930ca064c1edc8a849da2c6cbe1e77" checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84"
dependencies = [ dependencies = [
"autocfg",
"rawpointer", "rawpointer",
] ]
[[package]] [[package]]
name = "md-5" name = "md-5"
version = "0.10.5" version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [ dependencies = [
"cfg-if 1.0.0",
"digest 0.10.7", "digest 0.10.7",
] ]
[[package]] [[package]]
name = "memchr" name = "memchr"
version = "2.6.3" version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]] [[package]]
name = "memfd" name = "memfd"
version = "0.6.3" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffc89ccdc6e10d6907450f753537ebc5c5d3460d2e4e62ea74bd571db62c0f9e" checksum = "b20a59d985586e4a5aef64564ac77299f8586d8be6cf9106a5a40207e8908efb"
dependencies = [ dependencies = [
"rustix 0.37.23", "rustix 0.36.7",
] ]
[[package]] [[package]]
...@@ -5011,9 +4933,9 @@ dependencies = [ ...@@ -5011,9 +4933,9 @@ dependencies = [
[[package]] [[package]]
name = "memoffset" name = "memoffset"
version = "0.9.0" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [ dependencies = [
"autocfg", "autocfg",
] ]
...@@ -5047,9 +4969,9 @@ dependencies = [ ...@@ -5047,9 +4969,9 @@ dependencies = [
[[package]] [[package]]
name = "mime" name = "mime"
version = "0.3.17" version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]] [[package]]
name = "minimal-lexical" name = "minimal-lexical"
...@@ -5059,9 +4981,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" ...@@ -5059,9 +4981,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]] [[package]]
name = "miniz_oxide" name = "miniz_oxide"
version = "0.7.1" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [ dependencies = [
"adler", "adler",
] ]
...@@ -5087,9 +5009,9 @@ dependencies = [ ...@@ -5087,9 +5009,9 @@ dependencies = [
[[package]] [[package]]
name = "mio" name = "mio"
version = "0.8.8" version = "0.8.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
dependencies = [ dependencies = [
"libc", "libc",
"wasi 0.11.0+wasi-snapshot-preview1", "wasi 0.11.0+wasi-snapshot-preview1",
...@@ -5122,9 +5044,9 @@ dependencies = [ ...@@ -5122,9 +5044,9 @@ dependencies = [
[[package]] [[package]]
name = "mockall" name = "mockall"
version = "0.11.4" version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" checksum = "50e4a1c770583dac7ab5e2f6c139153b783a53a1bbee9729613f193e59828326"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"downcast", "downcast",
...@@ -5137,9 +5059,9 @@ dependencies = [ ...@@ -5137,9 +5059,9 @@ dependencies = [
[[package]] [[package]]
name = "mockall_derive" name = "mockall_derive"
version = "0.11.4" version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" checksum = "832663583d5fa284ca8810bf7015e46c9fff9622d3cf34bd1eea5003fec06dd0"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"proc-macro2", "proc-macro2",
...@@ -5207,7 +5129,7 @@ dependencies = [ ...@@ -5207,7 +5129,7 @@ dependencies = [
"core2", "core2",
"digest 0.10.7", "digest 0.10.7",
"multihash-derive", "multihash-derive",
"sha2 0.10.7", "sha2 0.10.6",
"sha3", "sha3",
"unsigned-varint", "unsigned-varint",
] ]
...@@ -5219,7 +5141,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -5219,7 +5141,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40"
dependencies = [ dependencies = [
"core2", "core2",
"digest 0.10.7",
"multihash-derive", "multihash-derive",
"sha2 0.10.6",
"unsigned-varint", "unsigned-varint",
] ]
...@@ -5250,7 +5174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -5250,7 +5174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a" checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"pin-project", "pin-project",
"smallvec", "smallvec",
...@@ -5313,9 +5237,9 @@ dependencies = [ ...@@ -5313,9 +5237,9 @@ dependencies = [
[[package]] [[package]]
name = "net2" name = "net2"
version = "0.2.39" version = "0.2.38"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 0.1.10",
"libc", "libc",
...@@ -5367,7 +5291,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -5367,7 +5291,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"netlink-packet-core", "netlink-packet-core",
"netlink-sys", "netlink-sys",
...@@ -5377,12 +5301,12 @@ dependencies = [ ...@@ -5377,12 +5301,12 @@ dependencies = [
[[package]] [[package]]
name = "netlink-sys" name = "netlink-sys"
version = "0.8.5" version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" checksum = "260e21fbb6f3d253a14df90eb0000a6066780a15dd901a7519ce02d77a94985b"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"libc", "libc",
"log", "log",
"tokio", "tokio",
...@@ -5408,13 +5332,14 @@ dependencies = [ ...@@ -5408,13 +5332,14 @@ dependencies = [
[[package]] [[package]]
name = "nix" name = "nix"
version = "0.27.1" version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
dependencies = [ dependencies = [
"bitflags 2.4.0", "bitflags 1.3.2",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"static_assertions",
] ]
[[package]] [[package]]
...@@ -5435,9 +5360,9 @@ dependencies = [ ...@@ -5435,9 +5360,9 @@ dependencies = [
[[package]] [[package]]
name = "nom_locate" name = "nom_locate"
version = "4.2.0" version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" checksum = "b1e299bf5ea7b212e811e71174c5d1a5d065c4c0ad0c8691ecb1f97e3e66025e"
dependencies = [ dependencies = [
"bytecount", "bytecount",
"memchr", "memchr",
...@@ -5470,9 +5395,9 @@ dependencies = [ ...@@ -5470,9 +5395,9 @@ dependencies = [
[[package]] [[package]]
name = "num-bigint" name = "num-bigint"
version = "0.4.4" version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"num-integer", "num-integer",
...@@ -5481,9 +5406,9 @@ dependencies = [ ...@@ -5481,9 +5406,9 @@ dependencies = [
[[package]] [[package]]
name = "num-complex" name = "num-complex"
version = "0.4.4" version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
dependencies = [ dependencies = [
"num-traits", "num-traits",
] ]
...@@ -5494,7 +5419,7 @@ version = "0.4.4" ...@@ -5494,7 +5419,7 @@ version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
dependencies = [ dependencies = [
"arrayvec 0.7.4", "arrayvec 0.7.2",
"itoa", "itoa",
] ]
...@@ -5522,37 +5447,37 @@ dependencies = [ ...@@ -5522,37 +5447,37 @@ dependencies = [
[[package]] [[package]]
name = "num-traits" name = "num-traits"
version = "0.2.16" version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [ dependencies = [
"autocfg", "autocfg",
] ]
[[package]] [[package]]
name = "num_cpus" name = "num_cpus"
version = "1.16.0" version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [ dependencies = [
"hermit-abi 0.3.2", "hermit-abi 0.2.6",
"libc", "libc",
] ]
[[package]] [[package]]
name = "num_enum" name = "num_enum"
version = "0.5.11" version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" checksum = "8d829733185c1ca374f17e52b762f24f535ec625d2cc1f070e34c8a9068f341b"
dependencies = [ dependencies = [
"num_enum_derive", "num_enum_derive",
] ]
[[package]] [[package]]
name = "num_enum_derive" name = "num_enum_derive"
version = "0.5.11" version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" checksum = "2be1598bf1c313dcdd12092e3f1920f463462525a21b7b4e11b4168353d0123e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
...@@ -5576,15 +5501,15 @@ checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" ...@@ -5576,15 +5501,15 @@ checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
dependencies = [ dependencies = [
"crc32fast", "crc32fast",
"hashbrown 0.12.3", "hashbrown 0.12.3",
"indexmap 1.9.3", "indexmap 1.9.2",
"memchr", "memchr",
] ]
[[package]] [[package]]
name = "object" name = "object"
version = "0.32.1" version = "0.30.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
dependencies = [ dependencies = [
"memchr", "memchr",
] ]
...@@ -5630,11 +5555,11 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" ...@@ -5630,11 +5555,11 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]] [[package]]
name = "openssl" name = "openssl"
version = "0.10.57" version = "0.10.45"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
dependencies = [ dependencies = [
"bitflags 2.4.0", "bitflags 1.3.2",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"foreign-types", "foreign-types",
"libc", "libc",
...@@ -5645,13 +5570,13 @@ dependencies = [ ...@@ -5645,13 +5570,13 @@ dependencies = [
[[package]] [[package]]
name = "openssl-macros" name = "openssl-macros"
version = "0.1.1" version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -5662,10 +5587,11 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" ...@@ -5662,10 +5587,11 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]] [[package]]
name = "openssl-sys" name = "openssl-sys"
version = "0.9.93" version = "0.9.80"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
dependencies = [ dependencies = [
"autocfg",
"cc", "cc",
"libc", "libc",
"pkg-config", "pkg-config",
...@@ -5674,9 +5600,9 @@ dependencies = [ ...@@ -5674,9 +5600,9 @@ dependencies = [
[[package]] [[package]]
name = "os_str_bytes" name = "os_str_bytes"
version = "6.5.1" version = "6.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
[[package]] [[package]]
name = "p256" name = "p256"
...@@ -5686,7 +5612,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" ...@@ -5686,7 +5612,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
dependencies = [ dependencies = [
"ecdsa 0.14.8", "ecdsa 0.14.8",
"elliptic-curve 0.12.3", "elliptic-curve 0.12.3",
"sha2 0.10.7", "sha2 0.10.6",
] ]
[[package]] [[package]]
...@@ -5697,7 +5623,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" ...@@ -5697,7 +5623,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
dependencies = [ dependencies = [
"ecdsa 0.14.8", "ecdsa 0.14.8",
"elliptic-curve 0.12.3", "elliptic-curve 0.12.3",
"sha2 0.10.7", "sha2 0.10.6",
] ]
[[package]] [[package]]
...@@ -5870,7 +5796,10 @@ dependencies = [ ...@@ -5870,7 +5796,10 @@ dependencies = [
"log", "log",
"maplit", "maplit",
"pallet-balances", "pallet-balances",
"pallet-identity",
"pallet-provide-randomness", "pallet-provide-randomness",
"pallet-quota",
"pallet-transaction-payment",
"pallet-treasury", "pallet-treasury",
"parity-scale-codec", "parity-scale-codec",
"scale-info", "scale-info",
...@@ -6107,6 +6036,23 @@ dependencies = [ ...@@ -6107,6 +6036,23 @@ dependencies = [
"sp-std 5.0.0", "sp-std 5.0.0",
] ]
[[package]]
name = "pallet-quota"
version = "3.0.0"
dependencies = [
"frame-benchmarking",
"frame-support",
"frame-system",
"pallet-balances",
"pallet-identity",
"parity-scale-codec",
"scale-info",
"sp-core",
"sp-io",
"sp-runtime",
"sp-std 5.0.0",
]
[[package]] [[package]]
name = "pallet-scheduler" name = "pallet-scheduler"
version = "4.0.0-dev" version = "4.0.0-dev"
...@@ -6309,9 +6255,9 @@ dependencies = [ ...@@ -6309,9 +6255,9 @@ dependencies = [
[[package]] [[package]]
name = "parity-db" name = "parity-db"
version = "0.4.10" version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78f19d20a0d2cc52327a88d131fa1c4ea81ea4a04714aedcfeca2dd410049cf8" checksum = "59e9ab494af9e6e813c72170f0d3c1de1500990d62c97cc05cc7576f91aa402f"
dependencies = [ dependencies = [
"blake2", "blake2",
"crc32fast", "crc32fast",
...@@ -6329,11 +6275,11 @@ dependencies = [ ...@@ -6329,11 +6275,11 @@ dependencies = [
[[package]] [[package]]
name = "parity-scale-codec" name = "parity-scale-codec"
version = "3.6.8" version = "3.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f88eaac72ead1b9bd4ce747d577dbd2ad31fb0a56a9a20c611bf27bd1b97fbed" checksum = "0dec8a8073036902368c2cdc0387e85ff9a37054d7e7c98e592145e0c92cd4fb"
dependencies = [ dependencies = [
"arrayvec 0.7.4", "arrayvec 0.7.2",
"bitvec", "bitvec",
"byte-slice-cast", "byte-slice-cast",
"bytes", "bytes",
...@@ -6344,9 +6290,9 @@ dependencies = [ ...@@ -6344,9 +6290,9 @@ dependencies = [
[[package]] [[package]]
name = "parity-scale-codec-derive" name = "parity-scale-codec-derive"
version = "3.6.8" version = "3.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33bdcd446e9400b6ad9fc85b4aea68846c258b07c3efb994679ae82707b133f0" checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260"
dependencies = [ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
...@@ -6368,9 +6314,9 @@ checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" ...@@ -6368,9 +6314,9 @@ checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304"
[[package]] [[package]]
name = "parking" name = "parking"
version = "2.1.0" version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
[[package]] [[package]]
name = "parking_lot" name = "parking_lot"
...@@ -6422,9 +6368,9 @@ dependencies = [ ...@@ -6422,9 +6368,9 @@ dependencies = [
[[package]] [[package]]
name = "paste" name = "paste"
version = "1.0.14" version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
[[package]] [[package]]
name = "pbkdf2" name = "pbkdf2"
...@@ -6491,26 +6437,25 @@ dependencies = [ ...@@ -6491,26 +6437,25 @@ dependencies = [
[[package]] [[package]]
name = "percent-encoding" name = "percent-encoding"
version = "2.3.0" version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]] [[package]]
name = "pest" name = "pest"
version = "2.7.3" version = "2.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7a4d085fd991ac8d5b05a147b437791b4260b76326baf0fc60cf7c9c27ecd33" checksum = "4ab62d2fa33726dbe6321cc97ef96d8cde531e3eeaf858a058de53a8a6d40d8f"
dependencies = [ dependencies = [
"memchr",
"thiserror", "thiserror",
"ucd-trie", "ucd-trie",
] ]
[[package]] [[package]]
name = "pest_derive" name = "pest_derive"
version = "2.7.3" version = "2.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bee7be22ce7918f641a33f08e3f43388c7656772244e2bbb2477f44cc9021a" checksum = "8bf026e2d0581559db66d837fe5242320f525d85c76283c61f4d51a1238d65ea"
dependencies = [ dependencies = [
"pest", "pest",
"pest_generator", "pest_generator",
...@@ -6518,56 +6463,56 @@ dependencies = [ ...@@ -6518,56 +6463,56 @@ dependencies = [
[[package]] [[package]]
name = "pest_generator" name = "pest_generator"
version = "2.7.3" version = "2.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1511785c5e98d79a05e8a6bc34b4ac2168a0e3e92161862030ad84daa223141" checksum = "2b27bd18aa01d91c8ed2b61ea23406a676b42d82609c6e2581fba42f0c15f17f"
dependencies = [ dependencies = [
"pest", "pest",
"pest_meta", "pest_meta",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
name = "pest_meta" name = "pest_meta"
version = "2.7.3" version = "2.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42f0394d3123e33353ca5e1e89092e533d2cc490389f2bd6131c43c634ebc5f" checksum = "9f02b677c1859756359fc9983c2e56a0237f18624a3789528804406b7e915e5d"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"pest", "pest",
"sha2 0.10.7", "sha2 0.10.6",
] ]
[[package]] [[package]]
name = "petgraph" name = "petgraph"
version = "0.6.4" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
dependencies = [ dependencies = [
"fixedbitset", "fixedbitset",
"indexmap 2.0.0", "indexmap 1.9.2",
] ]
[[package]] [[package]]
name = "pin-project" name = "pin-project"
version = "1.1.3" version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [ dependencies = [
"pin-project-internal", "pin-project-internal",
] ]
[[package]] [[package]]
name = "pin-project-internal" name = "pin-project-internal"
version = "1.1.3" version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -6610,9 +6555,9 @@ dependencies = [ ...@@ -6610,9 +6555,9 @@ dependencies = [
[[package]] [[package]]
name = "pkg-config" name = "pkg-config"
version = "0.3.27" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
[[package]] [[package]]
name = "placeholder" name = "placeholder"
...@@ -6632,24 +6577,22 @@ checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94" ...@@ -6632,24 +6577,22 @@ checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94"
[[package]] [[package]]
name = "platforms" name = "platforms"
version = "3.1.2" version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8" checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630"
[[package]] [[package]]
name = "polling" name = "polling"
version = "2.8.0" version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"bitflags 1.3.2",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"concurrent-queue",
"libc", "libc",
"log", "log",
"pin-project-lite 0.2.13", "wepoll-ffi",
"windows-sys 0.48.0", "windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -6718,15 +6661,15 @@ dependencies = [ ...@@ -6718,15 +6661,15 @@ dependencies = [
[[package]] [[package]]
name = "predicates-core" name = "predicates-core"
version = "1.0.6" version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2"
[[package]] [[package]]
name = "predicates-tree" name = "predicates-tree"
version = "1.0.9" version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
dependencies = [ dependencies = [
"predicates-core", "predicates-core",
"termtree", "termtree",
...@@ -6734,9 +6677,9 @@ dependencies = [ ...@@ -6734,9 +6677,9 @@ dependencies = [
[[package]] [[package]]
name = "prettyplease" name = "prettyplease"
version = "0.1.25" version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"syn 1.0.109", "syn 1.0.109",
...@@ -6797,7 +6740,7 @@ checksum = "0e99670bafb56b9a106419397343bdbc8b8742c3cc449fec6345f86173f47cd4" ...@@ -6797,7 +6740,7 @@ checksum = "0e99670bafb56b9a106419397343bdbc8b8742c3cc449fec6345f86173f47cd4"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -6848,9 +6791,9 @@ dependencies = [ ...@@ -6848,9 +6791,9 @@ dependencies = [
[[package]] [[package]]
name = "prost" name = "prost"
version = "0.11.9" version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
dependencies = [ dependencies = [
"bytes", "bytes",
"prost-derive", "prost-derive",
...@@ -6858,9 +6801,9 @@ dependencies = [ ...@@ -6858,9 +6801,9 @@ dependencies = [
[[package]] [[package]]
name = "prost-build" name = "prost-build"
version = "0.11.9" version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
dependencies = [ dependencies = [
"bytes", "bytes",
"heck 0.4.1", "heck 0.4.1",
...@@ -6893,9 +6836,9 @@ dependencies = [ ...@@ -6893,9 +6836,9 @@ dependencies = [
[[package]] [[package]]
name = "prost-derive" name = "prost-derive"
version = "0.11.9" version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools", "itertools",
...@@ -6906,10 +6849,11 @@ dependencies = [ ...@@ -6906,10 +6849,11 @@ dependencies = [
[[package]] [[package]]
name = "prost-types" name = "prost-types"
version = "0.11.9" version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
dependencies = [ dependencies = [
"bytes",
"prost", "prost",
] ]
...@@ -6950,20 +6894,20 @@ dependencies = [ ...@@ -6950,20 +6894,20 @@ dependencies = [
[[package]] [[package]]
name = "quinn-proto" name = "quinn-proto"
version = "0.9.4" version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31999cfc7927c4e212e60fd50934ab40e8e8bfd2d493d6095d2d306bc0764d9" checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863"
dependencies = [ dependencies = [
"bytes", "bytes",
"rand 0.8.5", "rand 0.8.5",
"ring", "ring",
"rustc-hash", "rustc-hash",
"rustls 0.20.9", "rustls 0.20.8",
"slab", "slab",
"thiserror", "thiserror",
"tinyvec", "tinyvec",
"tracing", "tracing",
"webpki 0.22.1", "webpki 0.22.0",
] ]
[[package]] [[package]]
...@@ -7040,7 +6984,7 @@ version = "0.6.4" ...@@ -7040,7 +6984,7 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [ dependencies = [
"getrandom 0.2.10", "getrandom 0.2.8",
] ]
[[package]] [[package]]
...@@ -7097,7 +7041,7 @@ checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd" ...@@ -7097,7 +7041,7 @@ checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
dependencies = [ dependencies = [
"pem", "pem",
"ring", "ring",
"time", "time 0.3.23",
"x509-parser 0.13.2", "x509-parser 0.13.2",
"yasna", "yasna",
] ]
...@@ -7110,7 +7054,7 @@ checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" ...@@ -7110,7 +7054,7 @@ checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
dependencies = [ dependencies = [
"pem", "pem",
"ring", "ring",
"time", "time 0.3.23",
"yasna", "yasna",
] ]
...@@ -7138,29 +7082,29 @@ version = "0.4.3" ...@@ -7138,29 +7082,29 @@ version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [ dependencies = [
"getrandom 0.2.10", "getrandom 0.2.8",
"redox_syscall 0.2.16", "redox_syscall 0.2.16",
"thiserror", "thiserror",
] ]
[[package]] [[package]]
name = "ref-cast" name = "ref-cast"
version = "1.0.20" version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280" checksum = "8c78fb8c9293bcd48ef6fce7b4ca950ceaf21210de6e105a883ee280c0f7b9ed"
dependencies = [ dependencies = [
"ref-cast-impl", "ref-cast-impl",
] ]
[[package]] [[package]]
name = "ref-cast-impl" name = "ref-cast-impl"
version = "1.0.20" version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925" checksum = "9f9c0c92af03644e4806106281fe2e068ac5bc0ae74a707266d06ea27bccee5f"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
...@@ -7177,14 +7121,13 @@ dependencies = [ ...@@ -7177,14 +7121,13 @@ dependencies = [
[[package]] [[package]]
name = "regex" name = "regex"
version = "1.9.5" version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"memchr", "memchr",
"regex-automata 0.3.8", "regex-syntax",
"regex-syntax 0.7.5",
] ]
[[package]] [[package]]
...@@ -7193,31 +7136,14 @@ version = "0.1.10" ...@@ -7193,31 +7136,14 @@ version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [ dependencies = [
"regex-syntax 0.6.29", "regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.5",
] ]
[[package]] [[package]]
name = "regex-syntax" name = "regex-syntax"
version = "0.6.29" version = "0.6.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
[[package]] [[package]]
name = "region" name = "region"
...@@ -7231,13 +7157,22 @@ dependencies = [ ...@@ -7231,13 +7157,22 @@ dependencies = [
"winapi 0.3.9", "winapi 0.3.9",
] ]
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi 0.3.9",
]
[[package]] [[package]]
name = "reqwest" name = "reqwest"
version = "0.11.20" version = "0.11.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
dependencies = [ dependencies = [
"base64 0.21.4", "base64 0.21.0",
"bytes", "bytes",
"encoding_rs", "encoding_rs",
"futures-core", "futures-core",
...@@ -7342,7 +7277,7 @@ version = "0.10.1" ...@@ -7342,7 +7277,7 @@ version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"netlink-packet-route", "netlink-packet-route",
"netlink-proto", "netlink-proto",
...@@ -7386,9 +7321,9 @@ dependencies = [ ...@@ -7386,9 +7321,9 @@ dependencies = [
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"
version = "0.1.23" version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
[[package]] [[package]]
name = "rustc-hash" name = "rustc-hash"
...@@ -7408,7 +7343,7 @@ version = "0.4.0" ...@@ -7408,7 +7343,7 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [ dependencies = [
"semver 1.0.18", "semver 1.0.16",
] ]
[[package]] [[package]]
...@@ -7422,42 +7357,28 @@ dependencies = [ ...@@ -7422,42 +7357,28 @@ dependencies = [
[[package]] [[package]]
name = "rustix" name = "rustix"
version = "0.36.15" version = "0.36.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941" checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"errno", "errno 0.2.8",
"io-lifetimes", "io-lifetimes",
"libc", "libc",
"linux-raw-sys 0.1.4", "linux-raw-sys 0.1.4",
"windows-sys 0.45.0", "windows-sys 0.42.0",
]
[[package]]
name = "rustix"
version = "0.37.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
] ]
[[package]] [[package]]
name = "rustix" name = "rustix"
version = "0.38.13" version = "0.38.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3"
dependencies = [ dependencies = [
"bitflags 2.4.0", "bitflags 2.4.1",
"errno", "errno 0.3.6",
"libc", "libc",
"linux-raw-sys 0.4.7", "linux-raw-sys 0.4.11",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
...@@ -7476,33 +7397,21 @@ dependencies = [ ...@@ -7476,33 +7397,21 @@ dependencies = [
[[package]] [[package]]
name = "rustls" name = "rustls"
version = "0.20.9" version = "0.20.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
dependencies = [
"log",
"ring",
"sct 0.7.0",
"webpki 0.22.1",
]
[[package]]
name = "rustls"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
dependencies = [ dependencies = [
"log", "log",
"ring", "ring",
"rustls-webpki 0.101.4",
"sct 0.7.0", "sct 0.7.0",
"webpki 0.22.0",
] ]
[[package]] [[package]]
name = "rustls-native-certs" name = "rustls-native-certs"
version = "0.6.3" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
dependencies = [ dependencies = [
"openssl-probe", "openssl-probe",
"rustls-pemfile", "rustls-pemfile",
...@@ -7512,38 +7421,18 @@ dependencies = [ ...@@ -7512,38 +7421,18 @@ dependencies = [
[[package]] [[package]]
name = "rustls-pemfile" name = "rustls-pemfile"
version = "1.0.3" version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
"base64 0.21.4",
]
[[package]]
name = "rustls-webpki"
version = "0.100.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98ff011474fa39949b7e5c0428f9b4937eda7da7848bbb947786b7be0b27dab"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustls-webpki"
version = "0.101.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d" checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
dependencies = [ dependencies = [
"ring", "base64 0.21.0",
"untrusted",
] ]
[[package]] [[package]]
name = "rustversion" name = "rustversion"
version = "1.0.14" version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
[[package]] [[package]]
name = "rusty-hook" name = "rusty-hook"
...@@ -7563,16 +7452,16 @@ version = "0.3.0" ...@@ -7563,16 +7452,16 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04" checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"pin-project", "pin-project",
"static_assertions", "static_assertions",
] ]
[[package]] [[package]]
name = "ryu" name = "ryu"
version = "1.0.15" version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
[[package]] [[package]]
name = "safe_arch" name = "safe_arch"
...@@ -7608,7 +7497,7 @@ name = "sc-basic-authorship" ...@@ -7608,7 +7497,7 @@ name = "sc-basic-authorship"
version = "0.10.0-dev" version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -7668,7 +7557,7 @@ dependencies = [ ...@@ -7668,7 +7557,7 @@ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -7678,9 +7567,9 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9 ...@@ -7678,9 +7567,9 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9
dependencies = [ dependencies = [
"array-bytes", "array-bytes",
"chrono", "chrono",
"clap 4.4.2", "clap 4.1.4",
"fdlimit", "fdlimit",
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"names", "names",
...@@ -7717,7 +7606,7 @@ version = "4.0.0-dev" ...@@ -7717,7 +7606,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
"parking_lot 0.12.1", "parking_lot 0.12.1",
...@@ -7768,7 +7657,7 @@ version = "0.10.0-dev" ...@@ -7768,7 +7657,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"libp2p", "libp2p",
"log", "log",
...@@ -7793,7 +7682,7 @@ version = "0.10.0-dev" ...@@ -7793,7 +7682,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
"sc-block-builder", "sc-block-builder",
...@@ -7823,7 +7712,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9 ...@@ -7823,7 +7712,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9
dependencies = [ dependencies = [
"async-trait", "async-trait",
"fork-tree", "fork-tree",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"num-bigint", "num-bigint",
"num-rational", "num-rational",
...@@ -7857,7 +7746,7 @@ name = "sc-consensus-babe-rpc" ...@@ -7857,7 +7746,7 @@ name = "sc-consensus-babe-rpc"
version = "0.10.0-dev" version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"jsonrpsee", "jsonrpsee",
"sc-consensus-babe", "sc-consensus-babe",
"sc-consensus-epochs", "sc-consensus-epochs",
...@@ -7892,13 +7781,13 @@ name = "sc-consensus-grandpa" ...@@ -7892,13 +7781,13 @@ name = "sc-consensus-grandpa"
version = "0.10.0-dev" version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.6",
"array-bytes", "array-bytes",
"async-trait", "async-trait",
"dyn-clone", "dyn-clone",
"finality-grandpa", "finality-grandpa",
"fork-tree", "fork-tree",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -7934,7 +7823,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9 ...@@ -7934,7 +7823,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"jsonrpsee", "jsonrpsee",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -7967,7 +7856,7 @@ version = "0.10.0-dev" ...@@ -7967,7 +7856,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -8044,7 +7933,7 @@ dependencies = [ ...@@ -8044,7 +7933,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"once_cell", "once_cell",
"rustix 0.36.15", "rustix 0.36.7",
"sc-allocator", "sc-allocator",
"sc-executor-common", "sc-executor-common",
"sp-runtime-interface", "sp-runtime-interface",
...@@ -8058,7 +7947,7 @@ version = "0.10.0-dev" ...@@ -8058,7 +7947,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"log", "log",
"sc-client-api", "sc-client-api",
...@@ -8095,7 +7984,7 @@ dependencies = [ ...@@ -8095,7 +7984,7 @@ dependencies = [
"bytes", "bytes",
"either", "either",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"ip_network", "ip_network",
"libp2p", "libp2p",
...@@ -8134,7 +8023,7 @@ version = "0.10.0-dev" ...@@ -8134,7 +8023,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"cid", "cid",
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"prost", "prost",
...@@ -8157,7 +8046,7 @@ dependencies = [ ...@@ -8157,7 +8046,7 @@ dependencies = [
"async-trait", "async-trait",
"bitflags 1.3.2", "bitflags 1.3.2",
"bytes", "bytes",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"libp2p", "libp2p",
"parity-scale-codec", "parity-scale-codec",
...@@ -8181,8 +8070,8 @@ name = "sc-network-gossip" ...@@ -8181,8 +8070,8 @@ name = "sc-network-gossip"
version = "0.10.0-dev" version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.6",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"libp2p", "libp2p",
"log", "log",
...@@ -8201,7 +8090,7 @@ version = "0.10.0-dev" ...@@ -8201,7 +8090,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"array-bytes", "array-bytes",
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -8225,7 +8114,7 @@ dependencies = [ ...@@ -8225,7 +8114,7 @@ dependencies = [
"array-bytes", "array-bytes",
"async-trait", "async-trait",
"fork-tree", "fork-tree",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"libp2p", "libp2p",
"log", "log",
...@@ -8257,7 +8146,7 @@ version = "0.10.0-dev" ...@@ -8257,7 +8146,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"array-bytes", "array-bytes",
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -8279,10 +8168,10 @@ dependencies = [ ...@@ -8279,10 +8168,10 @@ dependencies = [
"array-bytes", "array-bytes",
"bytes", "bytes",
"fnv", "fnv",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"hyper", "hyper",
"hyper-rustls 0.23.2", "hyper-rustls",
"libp2p", "libp2p",
"num_cpus", "num_cpus",
"once_cell", "once_cell",
...@@ -8307,7 +8196,7 @@ name = "sc-peerset" ...@@ -8307,7 +8196,7 @@ name = "sc-peerset"
version = "4.0.0-dev" version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"sc-utils", "sc-utils",
...@@ -8329,7 +8218,7 @@ name = "sc-rpc" ...@@ -8329,7 +8218,7 @@ name = "sc-rpc"
version = "4.0.0-dev" version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"jsonrpsee", "jsonrpsee",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -8394,7 +8283,7 @@ version = "0.10.0-dev" ...@@ -8394,7 +8283,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"array-bytes", "array-bytes",
"futures 0.3.28", "futures 0.3.29",
"futures-util", "futures-util",
"hex", "hex",
"jsonrpsee", "jsonrpsee",
...@@ -8422,7 +8311,7 @@ dependencies = [ ...@@ -8422,7 +8311,7 @@ dependencies = [
"async-trait", "async-trait",
"directories", "directories",
"exit-future", "exit-future",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"jsonrpsee", "jsonrpsee",
"log", "log",
...@@ -8496,9 +8385,9 @@ name = "sc-storage-monitor" ...@@ -8496,9 +8385,9 @@ name = "sc-storage-monitor"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"clap 4.4.2", "clap 4.1.4",
"fs4", "fs4",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"sc-client-db", "sc-client-db",
"sc-utils", "sc-utils",
...@@ -8512,7 +8401,7 @@ name = "sc-sysinfo" ...@@ -8512,7 +8401,7 @@ name = "sc-sysinfo"
version = "6.0.0-dev" version = "6.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"libc", "libc",
"log", "log",
"rand 0.8.5", "rand 0.8.5",
...@@ -8532,7 +8421,7 @@ version = "4.0.0-dev" ...@@ -8532,7 +8421,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"chrono", "chrono",
"futures 0.3.28", "futures 0.3.29",
"libp2p", "libp2p",
"log", "log",
"parking_lot 0.12.1", "parking_lot 0.12.1",
...@@ -8584,7 +8473,7 @@ dependencies = [ ...@@ -8584,7 +8473,7 @@ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -8593,7 +8482,7 @@ version = "4.0.0-dev" ...@@ -8593,7 +8482,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"linked-hash-map", "linked-hash-map",
"log", "log",
...@@ -8620,7 +8509,7 @@ version = "4.0.0-dev" ...@@ -8620,7 +8509,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"serde", "serde",
"sp-blockchain", "sp-blockchain",
...@@ -8634,7 +8523,7 @@ version = "4.0.0-dev" ...@@ -8634,7 +8523,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-channel", "async-channel",
"futures 0.3.28", "futures 0.3.29",
"futures-timer", "futures-timer",
"lazy_static", "lazy_static",
"log", "log",
...@@ -8710,9 +8599,9 @@ dependencies = [ ...@@ -8710,9 +8599,9 @@ dependencies = [
[[package]] [[package]]
name = "scale-info" name = "scale-info"
version = "2.9.0" version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" checksum = "7f7d66a1128282b7ef025a8ead62a4a9fcf017382ec53b8ffbf4d7bf77bd3c60"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"cfg-if 1.0.0", "cfg-if 1.0.0",
...@@ -8724,9 +8613,9 @@ dependencies = [ ...@@ -8724,9 +8613,9 @@ dependencies = [
[[package]] [[package]]
name = "scale-info-derive" name = "scale-info-derive"
version = "2.9.0" version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" checksum = "abf2c68b89cafb3b8d918dd07b42be0da66ff202cf1155c5739a4e0c1ea0dc19"
dependencies = [ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
...@@ -8754,11 +8643,11 @@ dependencies = [ ...@@ -8754,11 +8643,11 @@ dependencies = [
[[package]] [[package]]
name = "schannel" name = "schannel"
version = "0.1.22" version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
dependencies = [ dependencies = [
"windows-sys 0.48.0", "windows-sys 0.42.0",
] ]
[[package]] [[package]]
...@@ -8767,7 +8656,7 @@ version = "0.2.1" ...@@ -8767,7 +8656,7 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.6",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"hashbrown 0.13.2", "hashbrown 0.13.2",
] ]
...@@ -8792,15 +8681,15 @@ dependencies = [ ...@@ -8792,15 +8681,15 @@ dependencies = [
[[package]] [[package]]
name = "scopeguard" name = "scopeguard"
version = "1.2.0" version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]] [[package]]
name = "scratch" name = "scratch"
version = "1.0.7" version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
[[package]] [[package]]
name = "sct" name = "sct"
...@@ -8866,7 +8755,7 @@ checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" ...@@ -8866,7 +8755,7 @@ checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
dependencies = [ dependencies = [
"base16ct 0.1.1", "base16ct 0.1.1",
"der 0.6.1", "der 0.6.1",
"generic-array 0.14.7", "generic-array 0.14.6",
"pkcs8 0.9.0", "pkcs8 0.9.0",
"subtle", "subtle",
"zeroize", "zeroize",
...@@ -8874,13 +8763,13 @@ dependencies = [ ...@@ -8874,13 +8763,13 @@ dependencies = [
[[package]] [[package]]
name = "sec1" name = "sec1"
version = "0.7.3" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e"
dependencies = [ dependencies = [
"base16ct 0.2.0", "base16ct 0.2.0",
"der 0.7.8", "der 0.7.8",
"generic-array 0.14.7", "generic-array 0.14.6",
"pkcs8 0.10.2", "pkcs8 0.10.2",
"subtle", "subtle",
"zeroize", "zeroize",
...@@ -8915,9 +8804,9 @@ dependencies = [ ...@@ -8915,9 +8804,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework" name = "security-framework"
version = "2.9.2" version = "2.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"core-foundation", "core-foundation",
...@@ -8928,9 +8817,9 @@ dependencies = [ ...@@ -8928,9 +8817,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework-sys" name = "security-framework-sys"
version = "2.9.1" version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
dependencies = [ dependencies = [
"core-foundation-sys", "core-foundation-sys",
"libc", "libc",
...@@ -8947,9 +8836,9 @@ dependencies = [ ...@@ -8947,9 +8836,9 @@ dependencies = [
[[package]] [[package]]
name = "semver" name = "semver"
version = "1.0.18" version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
dependencies = [ dependencies = [
"serde", "serde",
] ]
...@@ -8977,14 +8866,14 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" ...@@ -8977,14 +8866,14 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.106" version = "1.0.108"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",
...@@ -8993,9 +8882,9 @@ dependencies = [ ...@@ -8993,9 +8882,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_spanned" name = "serde_spanned"
version = "0.6.3" version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
dependencies = [ dependencies = [
"serde", "serde",
] ]
...@@ -9027,9 +8916,9 @@ dependencies = [ ...@@ -9027,9 +8916,9 @@ dependencies = [
[[package]] [[package]]
name = "sha1" name = "sha1"
version = "0.10.5" version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"cpufeatures", "cpufeatures",
...@@ -9063,9 +8952,9 @@ dependencies = [ ...@@ -9063,9 +8952,9 @@ dependencies = [
[[package]] [[package]]
name = "sha2" name = "sha2"
version = "0.10.7" version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"cpufeatures", "cpufeatures",
...@@ -9074,9 +8963,9 @@ dependencies = [ ...@@ -9074,9 +8963,9 @@ dependencies = [
[[package]] [[package]]
name = "sha3" name = "sha3"
version = "0.10.8" version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9"
dependencies = [ dependencies = [
"digest 0.10.7", "digest 0.10.7",
"keccak", "keccak",
...@@ -9093,9 +8982,9 @@ dependencies = [ ...@@ -9093,9 +8982,9 @@ dependencies = [
[[package]] [[package]]
name = "signal-hook-registry" name = "signal-hook-registry"
version = "1.4.1" version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [ dependencies = [
"libc", "libc",
] ]
...@@ -9141,7 +9030,7 @@ checksum = "2230cd5c29b815c9b699fb610b49a5ed65588f3509d9f0108be3a885da629333" ...@@ -9141,7 +9030,7 @@ checksum = "2230cd5c29b815c9b699fb610b49a5ed65588f3509d9f0108be3a885da629333"
dependencies = [ dependencies = [
"colored", "colored",
"log", "log",
"time", "time 0.3.23",
"windows-sys 0.42.0", "windows-sys 0.42.0",
] ]
...@@ -9153,24 +9042,24 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" ...@@ -9153,24 +9042,24 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
[[package]] [[package]]
name = "slab" name = "slab"
version = "0.4.9" version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [ dependencies = [
"autocfg", "autocfg",
] ]
[[package]] [[package]]
name = "slice-group-by" name = "slice-group-by"
version = "0.3.1" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec"
[[package]] [[package]]
name = "smallvec" name = "smallvec"
version = "1.11.0" version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]] [[package]]
name = "snap" name = "snap"
...@@ -9187,19 +9076,19 @@ dependencies = [ ...@@ -9187,19 +9076,19 @@ dependencies = [
"aes-gcm 0.9.4", "aes-gcm 0.9.4",
"blake2", "blake2",
"chacha20poly1305", "chacha20poly1305",
"curve25519-dalek 4.1.0", "curve25519-dalek 4.1.1",
"rand_core 0.6.4", "rand_core 0.6.4",
"ring", "ring",
"rustc_version", "rustc_version",
"sha2 0.10.7", "sha2 0.10.6",
"subtle", "subtle",
] ]
[[package]] [[package]]
name = "socket2" name = "socket2"
version = "0.4.9" version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
dependencies = [ dependencies = [
"libc", "libc",
"winapi 0.3.9", "winapi 0.3.9",
...@@ -9207,9 +9096,9 @@ dependencies = [ ...@@ -9207,9 +9096,9 @@ dependencies = [
[[package]] [[package]]
name = "socket2" name = "socket2"
version = "0.5.3" version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
dependencies = [ dependencies = [
"libc", "libc",
"windows-sys 0.48.0", "windows-sys 0.48.0",
...@@ -9224,7 +9113,7 @@ dependencies = [ ...@@ -9224,7 +9113,7 @@ dependencies = [
"base64 0.13.1", "base64 0.13.1",
"bytes", "bytes",
"flate2", "flate2",
"futures 0.3.28", "futures 0.3.29",
"http", "http",
"httparse", "httparse",
"log", "log",
...@@ -9263,7 +9152,7 @@ dependencies = [ ...@@ -9263,7 +9152,7 @@ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -9323,7 +9212,7 @@ name = "sp-blockchain" ...@@ -9323,7 +9212,7 @@ name = "sp-blockchain"
version = "4.0.0-dev" version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"lru", "lru",
"parity-scale-codec", "parity-scale-codec",
...@@ -9342,7 +9231,7 @@ version = "0.10.0-dev" ...@@ -9342,7 +9231,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"sp-core", "sp-core",
"sp-inherents", "sp-inherents",
...@@ -9429,10 +9318,10 @@ dependencies = [ ...@@ -9429,10 +9318,10 @@ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"blake2", "blake2",
"bounded-collections", "bounded-collections",
"bs58", "bs58 0.4.0",
"dyn-clonable", "dyn-clonable",
"ed25519-zebra", "ed25519-zebra",
"futures 0.3.28", "futures 0.3.29",
"hash-db", "hash-db",
"hash256-std-hasher", "hash256-std-hasher",
"impl-serde", "impl-serde",
...@@ -9472,7 +9361,7 @@ dependencies = [ ...@@ -9472,7 +9361,7 @@ dependencies = [
"blake2b_simd", "blake2b_simd",
"byteorder", "byteorder",
"digest 0.10.7", "digest 0.10.7",
"sha2 0.10.7", "sha2 0.10.6",
"sha3", "sha3",
"sp-std 5.0.0", "sp-std 5.0.0",
"twox-hash", "twox-hash",
...@@ -9487,7 +9376,7 @@ dependencies = [ ...@@ -9487,7 +9376,7 @@ dependencies = [
"blake2b_simd", "blake2b_simd",
"byteorder", "byteorder",
"digest 0.10.7", "digest 0.10.7",
"sha2 0.10.7", "sha2 0.10.6",
"sha3", "sha3",
"sp-std 7.0.0", "sp-std 7.0.0",
"twox-hash", "twox-hash",
...@@ -9501,7 +9390,7 @@ dependencies = [ ...@@ -9501,7 +9390,7 @@ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"sp-core-hashing 5.0.0", "sp-core-hashing 5.0.0",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -9520,7 +9409,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9 ...@@ -9520,7 +9409,7 @@ source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -9570,9 +9459,9 @@ version = "7.0.0" ...@@ -9570,9 +9459,9 @@ version = "7.0.0"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"bytes", "bytes",
"ed25519 1.5.3", "ed25519",
"ed25519-dalek 1.0.1", "ed25519-dalek",
"futures 0.3.28", "futures 0.3.29",
"libsecp256k1", "libsecp256k1",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -9606,7 +9495,7 @@ name = "sp-keystore" ...@@ -9606,7 +9495,7 @@ name = "sp-keystore"
version = "0.13.0" version = "0.13.0"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"parity-scale-codec", "parity-scale-codec",
"parking_lot 0.12.1", "parking_lot 0.12.1",
"serde", "serde",
...@@ -9726,7 +9615,7 @@ dependencies = [ ...@@ -9726,7 +9615,7 @@ dependencies = [
"proc-macro-crate", "proc-macro-crate",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -9857,7 +9746,7 @@ name = "sp-trie" ...@@ -9857,7 +9746,7 @@ name = "sp-trie"
version = "7.0.0" version = "7.0.0"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.6",
"hash-db", "hash-db",
"hashbrown 0.13.2", "hashbrown 0.13.2",
"lazy_static", "lazy_static",
...@@ -9900,7 +9789,7 @@ dependencies = [ ...@@ -9900,7 +9789,7 @@ dependencies = [
"parity-scale-codec", "parity-scale-codec",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -9960,9 +9849,9 @@ dependencies = [ ...@@ -9960,9 +9849,9 @@ dependencies = [
[[package]] [[package]]
name = "ss58-registry" name = "ss58-registry"
version = "1.43.0" version = "1.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e6915280e2d0db8911e5032a5c275571af6bdded2916abd691a659be25d3439" checksum = "e40c020d72bc0a9c5660bb71e4a6fdef081493583062c474740a7d59f55f0e7b"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"num-format", "num-format",
...@@ -10087,7 +9976,7 @@ version = "4.0.0-dev" ...@@ -10087,7 +9976,7 @@ version = "4.0.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"frame-system-rpc-runtime-api", "frame-system-rpc-runtime-api",
"futures 0.3.28", "futures 0.3.29",
"jsonrpsee", "jsonrpsee",
"log", "log",
"parity-scale-codec", "parity-scale-codec",
...@@ -10167,8 +10056,8 @@ dependencies = [ ...@@ -10167,8 +10056,8 @@ dependencies = [
"derivative", "derivative",
"either", "either",
"frame-metadata", "frame-metadata",
"futures 0.3.28", "futures 0.3.29",
"getrandom 0.2.10", "getrandom 0.2.8",
"hex", "hex",
"impl-serde", "impl-serde",
"jsonrpsee", "jsonrpsee",
...@@ -10246,9 +10135,9 @@ dependencies = [ ...@@ -10246,9 +10135,9 @@ dependencies = [
[[package]] [[package]]
name = "syn" name = "syn"
version = "2.0.32" version = "2.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
...@@ -10302,9 +10191,9 @@ dependencies = [ ...@@ -10302,9 +10191,9 @@ dependencies = [
[[package]] [[package]]
name = "system-configuration" name = "system-configuration"
version = "0.5.1" version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"core-foundation", "core-foundation",
...@@ -10329,28 +10218,29 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" ...@@ -10329,28 +10218,29 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]] [[package]]
name = "target-lexicon" name = "target-lexicon"
version = "0.12.11" version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d"
[[package]] [[package]]
name = "tempfile" name = "tempfile"
version = "3.8.0" version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"fastrand 2.0.0", "fastrand",
"redox_syscall 0.3.5", "libc",
"rustix 0.38.13", "redox_syscall 0.2.16",
"windows-sys 0.48.0", "remove_dir_all",
"winapi 0.3.9",
] ]
[[package]] [[package]]
name = "tera" name = "tera"
version = "1.19.1" version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "970dff17c11e884a4a09bc76e3a17ef71e01bb13447a11e85226e254fe6d10b8" checksum = "3df578c295f9ec044ff1c829daf31bb7581d5b3c2a7a3d87419afe1f2531438c"
dependencies = [ dependencies = [
"globwalk", "globwalk",
"lazy_static", "lazy_static",
...@@ -10373,9 +10263,9 @@ dependencies = [ ...@@ -10373,9 +10263,9 @@ dependencies = [
[[package]] [[package]]
name = "termtree" name = "termtree"
version = "0.4.1" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
[[package]] [[package]]
name = "textwrap" name = "textwrap"
...@@ -10394,22 +10284,22 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" ...@@ -10394,22 +10284,22 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.48" version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.48" version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
...@@ -10420,11 +10310,10 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" ...@@ -10420,11 +10310,10 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
[[package]] [[package]]
name = "thread_local" name = "thread_local"
version = "1.1.7" version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [ dependencies = [
"cfg-if 1.0.0",
"once_cell", "once_cell",
] ]
...@@ -10437,6 +10326,17 @@ dependencies = [ ...@@ -10437,6 +10326,17 @@ dependencies = [
"num_cpus", "num_cpus",
] ]
[[package]]
name = "time"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
]
[[package]] [[package]]
name = "time" name = "time"
version = "0.3.23" version = "0.3.23"
...@@ -10478,7 +10378,7 @@ dependencies = [ ...@@ -10478,7 +10378,7 @@ dependencies = [
"pbkdf2 0.11.0", "pbkdf2 0.11.0",
"rand 0.8.5", "rand 0.8.5",
"rustc-hash", "rustc-hash",
"sha2 0.10.7", "sha2 0.10.6",
"thiserror", "thiserror",
"unicode-normalization", "unicode-normalization",
"wasm-bindgen", "wasm-bindgen",
...@@ -10512,39 +10412,39 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" ...@@ -10512,39 +10412,39 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.32.0" version = "1.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bytes", "bytes",
"libc", "libc",
"mio 0.8.8", "mio 0.8.9",
"num_cpus", "num_cpus",
"parking_lot 0.12.1", "parking_lot 0.12.1",
"pin-project-lite 0.2.13", "pin-project-lite 0.2.13",
"signal-hook-registry", "signal-hook-registry",
"socket2 0.5.3", "socket2 0.5.5",
"tokio-macros", "tokio-macros",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
[[package]] [[package]]
name = "tokio-macros" name = "tokio-macros"
version = "2.1.0" version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 2.0.31",
] ]
[[package]] [[package]]
name = "tokio-native-tls" name = "tokio-native-tls"
version = "0.3.1" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [ dependencies = [
"native-tls", "native-tls",
"tokio", "tokio",
...@@ -10556,26 +10456,16 @@ version = "0.23.4" ...@@ -10556,26 +10456,16 @@ version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [ dependencies = [
"rustls 0.20.9", "rustls 0.20.8",
"tokio",
"webpki 0.22.1",
]
[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
"rustls 0.21.7",
"tokio", "tokio",
"webpki 0.22.0",
] ]
[[package]] [[package]]
name = "tokio-stream" name = "tokio-stream"
version = "0.1.14" version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"pin-project-lite 0.2.13", "pin-project-lite 0.2.13",
...@@ -10585,9 +10475,9 @@ dependencies = [ ...@@ -10585,9 +10475,9 @@ dependencies = [
[[package]] [[package]]
name = "tokio-util" name = "tokio-util"
version = "0.7.8" version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
dependencies = [ dependencies = [
"bytes", "bytes",
"futures-core", "futures-core",
...@@ -10621,9 +10511,9 @@ dependencies = [ ...@@ -10621,9 +10511,9 @@ dependencies = [
[[package]] [[package]]
name = "toml_datetime" name = "toml_datetime"
version = "0.6.3" version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
dependencies = [ dependencies = [
"serde", "serde",
] ]
...@@ -10634,7 +10524,7 @@ version = "0.19.15" ...@@ -10634,7 +10524,7 @@ version = "0.19.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [ dependencies = [
"indexmap 2.0.0", "indexmap 2.1.0",
"serde", "serde",
"serde_spanned", "serde_spanned",
"toml_datetime", "toml_datetime",
...@@ -10697,20 +10587,20 @@ dependencies = [ ...@@ -10697,20 +10587,20 @@ dependencies = [
[[package]] [[package]]
name = "tracing-attributes" name = "tracing-attributes"
version = "0.1.26" version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
] ]
[[package]] [[package]]
name = "tracing-core" name = "tracing-core"
version = "0.1.31" version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"valuable", "valuable",
...@@ -10810,7 +10700,7 @@ dependencies = [ ...@@ -10810,7 +10700,7 @@ dependencies = [
"lazy_static", "lazy_static",
"rand 0.8.5", "rand 0.8.5",
"smallvec", "smallvec",
"socket2 0.4.9", "socket2 0.4.7",
"thiserror", "thiserror",
"tinyvec", "tinyvec",
"tokio", "tokio",
...@@ -10850,7 +10740,7 @@ version = "0.10.0-dev" ...@@ -10850,7 +10740,7 @@ version = "0.10.0-dev"
source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6" source = "git+https://github.com/duniter/substrate?branch=duniter-substrate-v0.9.42#38b19717f847d3eda654b6465802c244ea6372a6"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"clap 4.4.2", "clap 4.1.4",
"frame-remote-externalities", "frame-remote-externalities",
"hex", "hex",
"log", "log",
...@@ -10894,7 +10784,7 @@ checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8" ...@@ -10894,7 +10784,7 @@ checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"base64 0.13.1", "base64 0.13.1",
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"md-5", "md-5",
"rand 0.8.5", "rand 0.8.5",
...@@ -10936,9 +10826,9 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" ...@@ -10936,9 +10826,9 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]] [[package]]
name = "ucd-trie" name = "ucd-trie"
version = "0.1.6" version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
[[package]] [[package]]
name = "uint" name = "uint"
...@@ -11004,15 +10894,15 @@ dependencies = [ ...@@ -11004,15 +10894,15 @@ dependencies = [
[[package]] [[package]]
name = "unicode-bidi" name = "unicode-bidi"
version = "0.3.13" version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
[[package]] [[package]]
name = "unicode-ident" name = "unicode-ident"
version = "1.0.11" version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
[[package]] [[package]]
name = "unicode-normalization" name = "unicode-normalization"
...@@ -11047,7 +10937,7 @@ version = "0.4.1" ...@@ -11047,7 +10937,7 @@ version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [ dependencies = [
"generic-array 0.14.7", "generic-array 0.14.6",
"subtle", "subtle",
] ]
...@@ -11072,9 +10962,9 @@ dependencies = [ ...@@ -11072,9 +10962,9 @@ dependencies = [
[[package]] [[package]]
name = "unsigned-varint" name = "unsigned-varint"
version = "0.7.2" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836"
dependencies = [ dependencies = [
"asynchronous-codec", "asynchronous-codec",
"bytes", "bytes",
...@@ -11090,12 +10980,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" ...@@ -11090,12 +10980,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]] [[package]]
name = "url" name = "url"
version = "2.4.1" version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [ dependencies = [
"form_urlencoded", "form_urlencoded",
"idna 0.4.0", "idna 0.3.0",
"percent-encoding", "percent-encoding",
] ]
...@@ -11109,19 +10999,13 @@ dependencies = [ ...@@ -11109,19 +10999,13 @@ dependencies = [
"log", "log",
] ]
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.4.1" version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc"
dependencies = [ dependencies = [
"getrandom 0.2.10", "getrandom 0.2.8",
] ]
[[package]] [[package]]
...@@ -11171,20 +11055,22 @@ checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" ...@@ -11171,20 +11055,22 @@ checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]] [[package]]
name = "walkdir" name = "walkdir"
version = "2.4.0" version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [ dependencies = [
"same-file", "same-file",
"winapi 0.3.9",
"winapi-util", "winapi-util",
] ]
[[package]] [[package]]
name = "want" name = "want"
version = "0.3.1" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [ dependencies = [
"log",
"try-lock", "try-lock",
] ]
...@@ -11194,6 +11080,12 @@ version = "0.9.0+wasi-snapshot-preview1" ...@@ -11194,6 +11080,12 @@ version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]] [[package]]
name = "wasi" name = "wasi"
version = "0.11.0+wasi-snapshot-preview1" version = "0.11.0+wasi-snapshot-preview1"
...@@ -11202,9 +11094,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ...@@ -11202,9 +11094,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]] [[package]]
name = "wasm-bindgen" name = "wasm-bindgen"
version = "0.2.87" version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"wasm-bindgen-macro", "wasm-bindgen-macro",
...@@ -11212,24 +11104,24 @@ dependencies = [ ...@@ -11212,24 +11104,24 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-backend" name = "wasm-bindgen-backend"
version = "0.2.87" version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"log", "log",
"once_cell", "once_cell",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
"wasm-bindgen-shared", "wasm-bindgen-shared",
] ]
[[package]] [[package]]
name = "wasm-bindgen-futures" name = "wasm-bindgen-futures"
version = "0.4.37" version = "0.4.34"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"js-sys", "js-sys",
...@@ -11239,9 +11131,9 @@ dependencies = [ ...@@ -11239,9 +11131,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro" name = "wasm-bindgen-macro"
version = "0.2.87" version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
dependencies = [ dependencies = [
"quote", "quote",
"wasm-bindgen-macro-support", "wasm-bindgen-macro-support",
...@@ -11249,22 +11141,22 @@ dependencies = [ ...@@ -11249,22 +11141,22 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro-support" name = "wasm-bindgen-macro-support"
version = "0.2.87" version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
"wasm-bindgen-backend", "wasm-bindgen-backend",
"wasm-bindgen-shared", "wasm-bindgen-shared",
] ]
[[package]] [[package]]
name = "wasm-bindgen-shared" name = "wasm-bindgen-shared"
version = "0.2.87" version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
[[package]] [[package]]
name = "wasm-instrument" name = "wasm-instrument"
...@@ -11322,7 +11214,7 @@ version = "0.2.5" ...@@ -11322,7 +11214,7 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"js-sys", "js-sys",
"parking_lot 0.11.2", "parking_lot 0.11.2",
"pin-utils", "pin-utils",
...@@ -11371,7 +11263,7 @@ version = "0.100.0" ...@@ -11371,7 +11263,7 @@ version = "0.100.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64b20236ab624147dfbb62cf12a19aaf66af0e41b8398838b66e997d07d269d4" checksum = "64b20236ab624147dfbb62cf12a19aaf66af0e41b8398838b66e997d07d269d4"
dependencies = [ dependencies = [
"indexmap 1.9.3", "indexmap 1.9.2",
"url", "url",
] ]
...@@ -11384,7 +11276,7 @@ dependencies = [ ...@@ -11384,7 +11276,7 @@ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"indexmap 1.9.3", "indexmap 1.9.2",
"libc", "libc",
"log", "log",
"object 0.29.0", "object 0.29.0",
...@@ -11424,9 +11316,9 @@ dependencies = [ ...@@ -11424,9 +11316,9 @@ dependencies = [
"directories-next", "directories-next",
"file-per-thread-logger", "file-per-thread-logger",
"log", "log",
"rustix 0.36.15", "rustix 0.36.7",
"serde", "serde",
"sha2 0.10.7", "sha2 0.10.6",
"toml 0.5.11", "toml 0.5.11",
"windows-sys 0.42.0", "windows-sys 0.42.0",
"zstd 0.11.2+zstd.1.5.2", "zstd 0.11.2+zstd.1.5.2",
...@@ -11462,7 +11354,7 @@ dependencies = [ ...@@ -11462,7 +11354,7 @@ dependencies = [
"anyhow", "anyhow",
"cranelift-entity", "cranelift-entity",
"gimli 0.26.2", "gimli 0.26.2",
"indexmap 1.9.3", "indexmap 1.9.2",
"log", "log",
"object 0.29.0", "object 0.29.0",
"serde", "serde",
...@@ -11504,7 +11396,7 @@ checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2" ...@@ -11504,7 +11396,7 @@ checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2"
dependencies = [ dependencies = [
"object 0.29.0", "object 0.29.0",
"once_cell", "once_cell",
"rustix 0.36.15", "rustix 0.36.7",
] ]
[[package]] [[package]]
...@@ -11527,7 +11419,7 @@ dependencies = [ ...@@ -11527,7 +11419,7 @@ dependencies = [
"anyhow", "anyhow",
"cc", "cc",
"cfg-if 1.0.0", "cfg-if 1.0.0",
"indexmap 1.9.3", "indexmap 1.9.2",
"libc", "libc",
"log", "log",
"mach", "mach",
...@@ -11535,7 +11427,7 @@ dependencies = [ ...@@ -11535,7 +11427,7 @@ dependencies = [
"memoffset 0.6.5", "memoffset 0.6.5",
"paste", "paste",
"rand 0.8.5", "rand 0.8.5",
"rustix 0.36.15", "rustix 0.36.7",
"wasmtime-asm-macros", "wasmtime-asm-macros",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-jit-debug", "wasmtime-jit-debug",
...@@ -11556,9 +11448,9 @@ dependencies = [ ...@@ -11556,9 +11448,9 @@ dependencies = [
[[package]] [[package]]
name = "web-sys" name = "web-sys"
version = "0.3.64" version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
dependencies = [ dependencies = [
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",
...@@ -11576,9 +11468,9 @@ dependencies = [ ...@@ -11576,9 +11468,9 @@ dependencies = [
[[package]] [[package]]
name = "webpki" name = "webpki"
version = "0.22.1" version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0e74f82d49d545ad128049b7e88f6576df2da6b02e9ce565c6f533be576957e" checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [ dependencies = [
"ring", "ring",
"untrusted", "untrusted",
...@@ -11590,24 +11482,9 @@ version = "0.22.6" ...@@ -11590,24 +11482,9 @@ version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [ dependencies = [
"webpki 0.22.1", "webpki 0.22.0",
]
[[package]]
name = "webpki-roots"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
dependencies = [
"rustls-webpki 0.100.2",
] ]
[[package]]
name = "webpki-roots"
version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
[[package]] [[package]]
name = "webrtc" name = "webrtc"
version = "0.6.0" version = "0.6.0"
...@@ -11631,10 +11508,10 @@ dependencies = [ ...@@ -11631,10 +11508,10 @@ dependencies = [
"sdp", "sdp",
"serde", "serde",
"serde_json", "serde_json",
"sha2 0.10.7", "sha2 0.10.6",
"stun", "stun",
"thiserror", "thiserror",
"time", "time 0.3.23",
"tokio", "tokio",
"turn", "turn",
"url", "url",
...@@ -11671,7 +11548,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -11671,7 +11548,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a00f4242f2db33307347bd5be53263c52a0331c96c14292118c9a6bb48d267" checksum = "c4a00f4242f2db33307347bd5be53263c52a0331c96c14292118c9a6bb48d267"
dependencies = [ dependencies = [
"aes 0.6.0", "aes 0.6.0",
"aes-gcm 0.10.2", "aes-gcm 0.10.3",
"async-trait", "async-trait",
"bincode", "bincode",
"block-modes", "block-modes",
...@@ -11693,7 +11570,7 @@ dependencies = [ ...@@ -11693,7 +11570,7 @@ dependencies = [
"sec1 0.3.0", "sec1 0.3.0",
"serde", "serde",
"sha1", "sha1",
"sha2 0.10.7", "sha2 0.10.6",
"signature 1.6.4", "signature 1.6.4",
"subtle", "subtle",
"thiserror", "thiserror",
...@@ -11735,7 +11612,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" ...@@ -11735,7 +11612,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106"
dependencies = [ dependencies = [
"log", "log",
"socket2 0.4.9", "socket2 0.4.7",
"thiserror", "thiserror",
"tokio", "tokio",
"webrtc-util", "webrtc-util",
...@@ -11816,23 +11693,31 @@ dependencies = [ ...@@ -11816,23 +11693,31 @@ dependencies = [
"winapi 0.3.9", "winapi 0.3.9",
] ]
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
[[package]] [[package]]
name = "which" name = "which"
version = "4.4.2" version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [ dependencies = [
"either", "either",
"home", "libc",
"once_cell", "once_cell",
"rustix 0.38.13",
] ]
[[package]] [[package]]
name = "wide" name = "wide"
version = "0.7.11" version = "0.7.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa469ffa65ef7e0ba0f164183697b89b854253fd31aeb92358b7b6155177d62f" checksum = "c68938b57b33da363195412cfc5fc37c9ed49aa9cfe2156fde64b8d2c9498242"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"safe_arch", "safe_arch",
...@@ -11840,9 +11725,9 @@ dependencies = [ ...@@ -11840,9 +11725,9 @@ dependencies = [
[[package]] [[package]]
name = "widestring" name = "widestring"
version = "1.0.2" version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983"
[[package]] [[package]]
name = "winapi" name = "winapi"
...@@ -11889,22 +11774,19 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" ...@@ -11889,22 +11774,19 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]] [[package]]
name = "windows" name = "windows"
version = "0.34.0" version = "0.51.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
dependencies = [ dependencies = [
"windows_aarch64_msvc 0.34.0", "windows-core",
"windows_i686_gnu 0.34.0", "windows-targets 0.48.5",
"windows_i686_msvc 0.34.0",
"windows_x86_64_gnu 0.34.0",
"windows_x86_64_msvc 0.34.0",
] ]
[[package]] [[package]]
name = "windows" name = "windows-core"
version = "0.48.0" version = "0.51.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
dependencies = [ dependencies = [
"windows-targets 0.48.5", "windows-targets 0.48.5",
] ]
...@@ -11915,13 +11797,13 @@ version = "0.42.0" ...@@ -11915,13 +11797,13 @@ version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [ dependencies = [
"windows_aarch64_gnullvm 0.42.2", "windows_aarch64_gnullvm 0.42.1",
"windows_aarch64_msvc 0.42.2", "windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.2", "windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.2", "windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.2", "windows_x86_64_gnu 0.42.1",
"windows_x86_64_gnullvm 0.42.2", "windows_x86_64_gnullvm 0.42.1",
"windows_x86_64_msvc 0.42.2", "windows_x86_64_msvc 0.42.1",
] ]
[[package]] [[package]]
...@@ -11930,7 +11812,7 @@ version = "0.45.0" ...@@ -11930,7 +11812,7 @@ version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [ dependencies = [
"windows-targets 0.42.2", "windows-targets 0.42.1",
] ]
[[package]] [[package]]
...@@ -11944,17 +11826,17 @@ dependencies = [ ...@@ -11944,17 +11826,17 @@ dependencies = [
[[package]] [[package]]
name = "windows-targets" name = "windows-targets"
version = "0.42.2" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [ dependencies = [
"windows_aarch64_gnullvm 0.42.2", "windows_aarch64_gnullvm 0.42.1",
"windows_aarch64_msvc 0.42.2", "windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.2", "windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.2", "windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.2", "windows_x86_64_gnu 0.42.1",
"windows_x86_64_gnullvm 0.42.2", "windows_x86_64_gnullvm 0.42.1",
"windows_x86_64_msvc 0.42.2", "windows_x86_64_msvc 0.42.1",
] ]
[[package]] [[package]]
...@@ -11974,9 +11856,9 @@ dependencies = [ ...@@ -11974,9 +11856,9 @@ dependencies = [
[[package]] [[package]]
name = "windows_aarch64_gnullvm" name = "windows_aarch64_gnullvm"
version = "0.42.2" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
[[package]] [[package]]
name = "windows_aarch64_gnullvm" name = "windows_aarch64_gnullvm"
...@@ -11986,15 +11868,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" ...@@ -11986,15 +11868,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]] [[package]]
name = "windows_aarch64_msvc" name = "windows_aarch64_msvc"
version = "0.34.0" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
[[package]] [[package]]
name = "windows_aarch64_msvc" name = "windows_aarch64_msvc"
...@@ -12004,15 +11880,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" ...@@ -12004,15 +11880,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]] [[package]]
name = "windows_i686_gnu" name = "windows_i686_gnu"
version = "0.34.0" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
[[package]] [[package]]
name = "windows_i686_gnu" name = "windows_i686_gnu"
...@@ -12022,15 +11892,9 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" ...@@ -12022,15 +11892,9 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]] [[package]]
name = "windows_i686_msvc" name = "windows_i686_msvc"
version = "0.34.0" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
[[package]] [[package]]
name = "windows_i686_msvc" name = "windows_i686_msvc"
...@@ -12040,15 +11904,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" ...@@ -12040,15 +11904,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]] [[package]]
name = "windows_x86_64_gnu" name = "windows_x86_64_gnu"
version = "0.34.0" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
[[package]] [[package]]
name = "windows_x86_64_gnu" name = "windows_x86_64_gnu"
...@@ -12058,9 +11916,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" ...@@ -12058,9 +11916,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]] [[package]]
name = "windows_x86_64_gnullvm" name = "windows_x86_64_gnullvm"
version = "0.42.2" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
[[package]] [[package]]
name = "windows_x86_64_gnullvm" name = "windows_x86_64_gnullvm"
...@@ -12070,15 +11928,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" ...@@ -12070,15 +11928,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]] [[package]]
name = "windows_x86_64_msvc" name = "windows_x86_64_msvc"
version = "0.34.0" version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
[[package]] [[package]]
name = "windows_x86_64_msvc" name = "windows_x86_64_msvc"
...@@ -12088,21 +11940,20 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" ...@@ -12088,21 +11940,20 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]] [[package]]
name = "winnow" name = "winnow"
version = "0.5.15" version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"
dependencies = [ dependencies = [
"memchr", "memchr",
] ]
[[package]] [[package]]
name = "winreg" name = "winreg"
version = "0.50.0" version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "winapi 0.3.9",
"windows-sys 0.48.0",
] ]
[[package]] [[package]]
...@@ -12141,7 +11992,7 @@ version = "2.0.0" ...@@ -12141,7 +11992,7 @@ version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96" checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
dependencies = [ dependencies = [
"curve25519-dalek 4.1.0", "curve25519-dalek 4.1.1",
"rand_core 0.6.4", "rand_core 0.6.4",
"serde", "serde",
"zeroize", "zeroize",
...@@ -12163,7 +12014,7 @@ dependencies = [ ...@@ -12163,7 +12014,7 @@ dependencies = [
"ring", "ring",
"rusticata-macros", "rusticata-macros",
"thiserror", "thiserror",
"time", "time 0.3.23",
] ]
[[package]] [[package]]
...@@ -12181,7 +12032,7 @@ dependencies = [ ...@@ -12181,7 +12032,7 @@ dependencies = [
"oid-registry 0.6.1", "oid-registry 0.6.1",
"rusticata-macros", "rusticata-macros",
"thiserror", "thiserror",
"time", "time 0.3.23",
] ]
[[package]] [[package]]
...@@ -12189,7 +12040,7 @@ name = "xtask" ...@@ -12189,7 +12040,7 @@ name = "xtask"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap 4.4.2", "clap 4.1.4",
"frame-metadata", "frame-metadata",
"graphql_client", "graphql_client",
"hex", "hex",
...@@ -12213,7 +12064,7 @@ version = "0.10.2" ...@@ -12213,7 +12064,7 @@ version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5" checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5"
dependencies = [ dependencies = [
"futures 0.3.28", "futures 0.3.29",
"log", "log",
"nohash-hasher", "nohash-hasher",
"parking_lot 0.12.1", "parking_lot 0.12.1",
...@@ -12233,27 +12084,48 @@ version = "0.5.2" ...@@ -12233,27 +12084,48 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
dependencies = [ dependencies = [
"time", "time 0.3.23",
]
[[package]]
name = "zerocopy"
version = "0.7.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cd369a67c0edfef15010f980c3cbe45d7f651deac2cd67ce097cd801de16557"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.31",
] ]
[[package]] [[package]]
name = "zeroize" name = "zeroize"
version = "1.6.0" version = "1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
dependencies = [ dependencies = [
"zeroize_derive", "zeroize_derive",
] ]
[[package]] [[package]]
name = "zeroize_derive" name = "zeroize_derive"
version = "1.4.2" version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.32", "syn 1.0.109",
"synstructure",
] ]
[[package]] [[package]]
...@@ -12296,11 +12168,10 @@ dependencies = [ ...@@ -12296,11 +12168,10 @@ dependencies = [
[[package]] [[package]]
name = "zstd-sys" name = "zstd-sys"
version = "2.0.8+zstd.1.5.5" version = "2.0.9+zstd.1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
dependencies = [ dependencies = [
"cc", "cc",
"libc",
"pkg-config", "pkg-config",
] ]
...@@ -69,6 +69,7 @@ sp-membership = { path = 'primitives/membership' } ...@@ -69,6 +69,7 @@ sp-membership = { path = 'primitives/membership' }
# crates.io dependencies # crates.io dependencies
async-io = { version = "1.6.0", default-features = false } async-io = { version = "1.6.0", default-features = false }
bs58 = "0.5.0"
clap = { version = "4.0.9", default-features = false, features = ["derive"] } clap = { version = "4.0.9", default-features = false, features = ["derive"] }
clap_complete = { version = "4", default-features = false } clap_complete = { version = "4", default-features = false }
futures = { version = "0.3.28", default-features = false, features = ["compat"] } futures = { version = "0.3.28", default-features = false, features = ["compat"] }
...@@ -89,6 +90,7 @@ frame-benchmarking = { git = "https://github.com/duniter/substrate", branch = "d ...@@ -89,6 +90,7 @@ frame-benchmarking = { git = "https://github.com/duniter/substrate", branch = "d
frame-benchmarking-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } frame-benchmarking-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
frame-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } frame-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
pallet-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } pallet-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
pallet-im-online = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
pallet-transaction-payment = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } pallet-transaction-payment = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
pallet-transaction-payment-rpc = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } pallet-transaction-payment-rpc = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false } pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.42", default-features = false }
...@@ -143,6 +145,7 @@ members = [ ...@@ -143,6 +145,7 @@ members = [
'end2end-tests', 'end2end-tests',
'live-tests', 'live-tests',
'pallets/certification', 'pallets/certification',
'pallets/quota',
'pallets/distance', 'pallets/distance',
'pallets/duniter-test-parameters', 'pallets/duniter-test-parameters',
'pallets/duniter-test-parameters/macro', 'pallets/duniter-test-parameters/macro',
......
...@@ -44,23 +44,18 @@ RUN set -x && \ ...@@ -44,23 +44,18 @@ RUN set -x && \
fi fi
# Build # Build
ARG chain="gdev"
RUN set -x && \ RUN set -x && \
cat /root/dynenv && \ cat /root/dynenv && \
. /root/dynenv && \ . /root/dynenv && \
cargo build --locked $CARGO_OPTIONS --target "$RUST_ARCH_TRIPLET" && \ cargo build --locked $CARGO_OPTIONS --no-default-features --features $chain --target "$RUST_ARCH_TRIPLET" && \
mkdir -p build && \ mkdir -p build && \
mv target/$RUST_ARCH_TRIPLET/$TARGET_FOLDER/duniter build/ mv target/$RUST_ARCH_TRIPLET/$TARGET_FOLDER/duniter build/
# Run tests if requested, expted when cross-building # Run tests if requested, expted when cross-building
ARG cucumber=0 ARG cucumber=0
RUN if [ "$cucumber" != 0 ] && [ "$TARGETPLATFORM" = "$BUILDPLATFORM" ]; then \ RUN if [ "$cucumber" != 0 ] && [ "$TARGETPLATFORM" = "$BUILDPLATFORM" ]; then \
cargo test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests && \ cargo ta && \
cargo cucumber -i account_creation* && \
cargo cucumber -i certification* && \
cargo cucumber -i identity_creation* && \
cargo cucumber -i monetary_mass* && \
cargo cucumber -i oneshot_account* && \
cargo cucumber -i transfer_all* && \
cd target/debug/deps/ && \ cd target/debug/deps/ && \
rm cucumber_tests-*.d && \ rm cucumber_tests-*.d && \
mv cucumber_tests* ../../../build/duniter-cucumber; \ mv cucumber_tests* ../../../build/duniter-cucumber; \
......
...@@ -13,7 +13,20 @@ through on-chain governance mechanisms. ...@@ -13,7 +13,20 @@ through on-chain governance mechanisms.
## User calls ## User calls
There are **69** user calls from **21** pallets. There are **80** user calls from **23** pallets.
### Account - 1
#### unlink_identity - 0
<details><summary><code>unlink_identity()</code></summary>
```rust
```
</details>
unlink the identity associated with the account
### Scheduler - 2 ### Scheduler - 2
...@@ -88,7 +101,6 @@ call: Box<<T as Config>::RuntimeCall> ...@@ -88,7 +101,6 @@ call: Box<<T as Config>::RuntimeCall>
Anonymously schedule a task after a delay. Anonymously schedule a task after a delay.
#### schedule_named_after - 5 #### schedule_named_after - 5
<details><summary><code>schedule_named_after(id, after, maybe_periodic, priority, call)</code></summary> <details><summary><code>schedule_named_after(id, after, maybe_periodic, priority, call)</code></summary>
...@@ -105,7 +117,6 @@ call: Box<<T as Config>::RuntimeCall> ...@@ -105,7 +117,6 @@ call: Box<<T as Config>::RuntimeCall>
Schedule a named task after a delay. Schedule a named task after a delay.
### Babe - 3 ### Babe - 3
#### report_equivocation - 0 #### report_equivocation - 0
...@@ -126,9 +137,9 @@ be reported. ...@@ -126,9 +137,9 @@ be reported.
### Balances - 6 ### Balances - 6
#### transfer - 0 #### transfer_allow_death - 0
<details><summary><code>transfer(dest, value)</code></summary> <details><summary><code>transfer_allow_death(dest, value)</code></summary>
```rust ```rust
dest: AccountIdLookupOf<T> dest: AccountIdLookupOf<T>
...@@ -139,12 +150,30 @@ value: T::Balance ...@@ -139,12 +150,30 @@ value: T::Balance
Transfer some liquid free balance to another account. Transfer some liquid free balance to another account.
`transfer` will set the `FreeBalance` of the sender and receiver. `transfer_allow_death` will set the `FreeBalance` of the sender and receiver.
If the sender's account is below the existential deposit as a result If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped. of the transfer, the account will be reaped.
The dispatch origin for this call must be `Signed` by the transactor. The dispatch origin for this call must be `Signed` by the transactor.
#### set_balance_deprecated - 1
<details><summary><code>set_balance_deprecated(who, new_free, old_reserved)</code></summary>
```rust
who: AccountIdLookupOf<T>
new_free: T::Balance
old_reserved: T::Balance
```
</details>
Set the regular balance of a given account; it also takes a reserved balance but this
must be the same as the account's current reserved balance.
The dispatch origin for this call is `root`.
WARNING: This call is DEPRECATED! Use `force_set_balance` instead.
#### transfer_keep_alive - 3 #### transfer_keep_alive - 3
...@@ -157,12 +186,12 @@ value: T::Balance ...@@ -157,12 +186,12 @@ value: T::Balance
</details> </details>
Same as the [`transfer`] call, but with a check that the transfer will not kill the Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
origin account. kill the origin account.
99% of the time you want [`transfer`] instead. 99% of the time you want [`transfer_allow_death`] instead.
[`transfer`]: struct.Pallet.html#method.transfer [`transfer_allow_death`]: struct.Pallet.html#method.transfer
#### transfer_all - 4 #### transfer_all - 4
...@@ -189,9 +218,56 @@ The dispatch origin of this call must be Signed. ...@@ -189,9 +218,56 @@ The dispatch origin of this call must be Signed.
- `keep_alive`: A boolean to determine if the `transfer_all` operation should send all - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
of the funds the account has, causing the sender account to be killed (false), or of the funds the account has, causing the sender account to be killed (false), or
transfer everything except at least the existential deposit, which will guarantee to transfer everything except at least the existential deposit, which will guarantee to
keep the sender account alive (true). # <weight> keep the sender account alive (true).
- O(1). Just like transfer, but reading the user's transferable balance first.
#</weight> #### upgrade_accounts - 6
<details><summary><code>upgrade_accounts(who)</code></summary>
```rust
who: Vec<T::AccountId>
```
</details>
Upgrade a specified account.
- `origin`: Must be `Signed`.
- `who`: The account to be upgraded.
This will waive the transaction fee if at least all but 10% of the accounts needed to
be upgraded. (We let some not have to be upgraded just in order to allow for the
possibililty of churn).
#### transfer - 7
<details><summary><code>transfer(dest, value)</code></summary>
```rust
dest: AccountIdLookupOf<T>
value: T::Balance
```
</details>
Alias for `transfer_allow_death`, provided only for name-wise compatibility.
WARNING: DEPRECATED! Will be released in approximately 3 months.
#### force_set_balance - 8
<details><summary><code>force_set_balance(who, new_free)</code></summary>
```rust
who: AccountIdLookupOf<T>
new_free: T::Balance
```
</details>
Set the regular balance of a given account.
The dispatch origin for this call is `root`.
### OneshotAccount - 7 ### OneshotAccount - 7
...@@ -290,6 +366,18 @@ keys: T::KeysWrapper ...@@ -290,6 +366,18 @@ keys: T::KeysWrapper
declare new session keys to replace current ones declare new session keys to replace current ones
#### remove_member_from_blacklist - 4
<details><summary><code>remove_member_from_blacklist(member_id)</code></summary>
```rust
member_id: T::MemberId
```
</details>
remove an identity from the blacklist
### Grandpa - 15 ### Grandpa - 15
#### report_equivocation - 0 #### report_equivocation - 0
...@@ -407,6 +495,11 @@ Dispatch a proposal from a member using the `Member` origin. ...@@ -407,6 +495,11 @@ Dispatch a proposal from a member using the `Member` origin.
Origin must be a member of the collective. Origin must be a member of the collective.
**Complexity**:
- `O(B + M + P)` where:
- `B` is `proposal` size in bytes (length-fee-bounded)
- `M` members-count (code-bounded)
- `P` complexity of dispatching `proposal`
#### propose - 2 #### propose - 2
...@@ -427,6 +520,13 @@ Requires the sender to be member. ...@@ -427,6 +520,13 @@ Requires the sender to be member.
`threshold` determines whether `proposal` is executed directly (`threshold < 2`) `threshold` determines whether `proposal` is executed directly (`threshold < 2`)
or put up for voting. or put up for voting.
**Complexity**
- `O(B + M + P1)` or `O(B + M + P2)` where:
- `B` is `proposal` size in bytes (length-fee-bounded)
- `M` is members-count (code- and governance-bounded)
- branching is influenced by `threshold` where:
- `P1` is proposal execution complexity (`threshold < 2`)
- `P2` is proposals-count (code-bounded) (`threshold >= 2`)
#### vote - 3 #### vote - 3
...@@ -447,38 +547,8 @@ Requires the sender to be a member. ...@@ -447,38 +547,8 @@ Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a for the first time and the call is successful. Subsequent vote changes will charge a
fee. fee.
**Complexity**
#### close_old_weight - 4 - `O(M)` where `M` is members-count (code- and governance-bounded)
<details><summary><code>close_old_weight(proposal_hash, index, proposal_weight_bound, length_bound)</code></summary>
```rust
proposal_hash: T::Hash
index: ProposalIndex
proposal_weight_bound: OldWeight
length_bound: u32
```
</details>
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is
has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections
unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will
be waived. Otherwise execution of the approved operation will be charged to the caller.
+ `proposal_weight_bound`: The maximum amount of weight consumed by executing the closed
proposal.
+ `length_bound`: The upper bound for the length of the proposal in storage. Checked via
`storage::read` so it is `size_of::<u32>() == 4` larger than the pure length.
#### close - 6 #### close - 6
...@@ -511,6 +581,12 @@ proposal. ...@@ -511,6 +581,12 @@ proposal.
+ `length_bound`: The upper bound for the length of the proposal in storage. Checked via + `length_bound`: The upper bound for the length of the proposal in storage. Checked via
`storage::read` so it is `size_of::<u32>() == 4` larger than the pure length. `storage::read` so it is `size_of::<u32>() == 4` larger than the pure length.
**Complexity**
- `O(B + M + P1 + P2)` where:
- `B` is `proposal` size in bytes (length-fee-bounded)
- `M` is members-count (code- and governance-bounded)
- `P1` is the complexity of `proposal` preimage.
- `P2` is proposal-count (code-bounded)
### UniversalDividend - 30 ### UniversalDividend - 30
...@@ -603,7 +679,7 @@ validate the owned identity (must meet the main wot requirements) ...@@ -603,7 +679,7 @@ validate the owned identity (must meet the main wot requirements)
```rust ```rust
new_key: T::AccountId new_key: T::AccountId
new_key_sig: T::NewOwnerKeySignature new_key_sig: T::Signature
``` ```
</details> </details>
...@@ -611,7 +687,7 @@ new_key_sig: T::NewOwnerKeySignature ...@@ -611,7 +687,7 @@ new_key_sig: T::NewOwnerKeySignature
Change identity owner key. Change identity owner key.
- `new_key`: the new owner key. - `new_key`: the new owner key.
- `new_key_sig`: the signature of the encoded form of `NewOwnerKeyPayload`. - `new_key_sig`: the signature of the encoded form of `IdtyIndexAccountIdPayload`.
Must be signed by `new_key`. Must be signed by `new_key`.
The origin should be the old identity owner key. The origin should be the old identity owner key.
...@@ -623,7 +699,7 @@ The origin should be the old identity owner key. ...@@ -623,7 +699,7 @@ The origin should be the old identity owner key.
```rust ```rust
idty_index: T::IdtyIndex idty_index: T::IdtyIndex
revocation_key: T::AccountId revocation_key: T::AccountId
revocation_sig: T::RevocationSignature revocation_sig: T::Signature
``` ```
</details> </details>
...@@ -650,6 +726,19 @@ inc: bool ...@@ -650,6 +726,19 @@ inc: bool
change sufficient ref count for given key change sufficient ref count for given key
#### link_account - 8
<details><summary><code>link_account(account_id, payload_sig)</code></summary>
```rust
account_id: T::AccountId
payload_sig: T::Signature
```
</details>
Link an account to an identity
### Membership - 42 ### Membership - 42
#### claim_membership - 1 #### claim_membership - 1
...@@ -694,6 +783,63 @@ Add a new certification or renew an existing one ...@@ -694,6 +783,63 @@ Add a new certification or renew an existing one
The origin must be allow to certify. The origin must be allow to certify.
### Distance - 44
#### request_distance_evaluation - 0
<details><summary><code>request_distance_evaluation()</code></summary>
```rust
```
</details>
Request an identity to be evaluated
#### update_evaluation - 1
<details><summary><code>update_evaluation(computation_result)</code></summary>
```rust
computation_result: ComputationResult
```
</details>
(Inherent) Push an evaluation result to the pool
#### force_update_evaluation - 2
<details><summary><code>force_update_evaluation(evaluator, computation_result)</code></summary>
```rust
evaluator: <T as frame_system::Config>::AccountId
computation_result: ComputationResult
```
</details>
Push an evaluation result to the pool
#### force_set_distance_status - 3
<details><summary><code>force_set_distance_status(identity, status)</code></summary>
```rust
identity: <T as pallet_identity::Config>::IdtyIndex
status: Option<(<T as frame_system::Config>::AccountId, DistanceStatus)>
```
</details>
Set the distance evaluation status of an identity
Removes the status if `status` is `None`.
* `status.0` is the account for whom the price will be unreserved or slashed
when the evaluation completes.
* `status.1` is the status of the evaluation.
### SmithMembership - 52 ### SmithMembership - 52
#### request_membership - 0 #### request_membership - 0
...@@ -851,6 +997,8 @@ multi-signature, but do not participate in the approval process. ...@@ -851,6 +997,8 @@ multi-signature, but do not participate in the approval process.
Result is equivalent to the dispatched result. Result is equivalent to the dispatched result.
**Complexity**
O(Z + C) where Z is the length of the call and C its execution weight.
#### as_multi - 1 #### as_multi - 1
...@@ -892,6 +1040,19 @@ Result is equivalent to the dispatched result if `threshold` is exactly `1`. Oth ...@@ -892,6 +1040,19 @@ Result is equivalent to the dispatched result if `threshold` is exactly `1`. Oth
on success, result is `Ok` and the result from the interior call, if it was executed, on success, result is `Ok` and the result from the interior call, if it was executed,
may be found in the deposited `MultisigExecuted` event. may be found in the deposited `MultisigExecuted` event.
**Complexity**
- `O(S + Z + Call)`.
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both `O(S)` where `S` is the number of
signatories. `S` is capped by `MaxSignatories`, with weight being proportional.
- One call encode & hash, both of complexity `O(Z)` where `Z` is tx-len.
- One encode & hash, both of complexity `O(S)`.
- Up to one binary search and insert (`O(logS + S)`).
- I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove.
- One event.
- The weight of the `call`.
- Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
taken for its lifetime of `DepositBase + threshold * DepositFactor`.
#### approve_as_multi - 2 #### approve_as_multi - 2
...@@ -926,6 +1087,17 @@ transaction index) of the first approval transaction. ...@@ -926,6 +1087,17 @@ transaction index) of the first approval transaction.
NOTE: If this is the final approval, you will want to use `as_multi` instead. NOTE: If this is the final approval, you will want to use `as_multi` instead.
**Complexity**
- `O(S)`.
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both `O(S)` where `S` is the number of
signatories. `S` is capped by `MaxSignatories`, with weight being proportional.
- One encode & hash, both of complexity `O(S)`.
- Up to one binary search and insert (`O(logS + S)`).
- I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove.
- One event.
- Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
taken for its lifetime of `DepositBase + threshold * DepositFactor`.
#### cancel_as_multi - 3 #### cancel_as_multi - 3
...@@ -952,6 +1124,15 @@ dispatch. May not be empty. ...@@ -952,6 +1124,15 @@ dispatch. May not be empty.
transaction for this dispatch. transaction for this dispatch.
- `call_hash`: The hash of the call to be executed. - `call_hash`: The hash of the call to be executed.
**Complexity**
- `O(S)`.
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both `O(S)` where `S` is the number of
signatories. `S` is capped by `MaxSignatories`, with weight being proportional.
- One encode & hash, both of complexity `O(S)`.
- One event.
- I/O: 1 read `O(S)`, one remove.
- Storage: removes one item.
### ProvideRandomness - 62 ### ProvideRandomness - 62
...@@ -985,8 +1166,6 @@ call: Box<<T as Config>::RuntimeCall> ...@@ -985,8 +1166,6 @@ call: Box<<T as Config>::RuntimeCall>
Dispatch the given `call` from an account that the sender is authorised for through Dispatch the given `call` from an account that the sender is authorised for through
`add_proxy`. `add_proxy`.
Removes any corresponding announcement(s).
The dispatch origin for this call must be _Signed_. The dispatch origin for this call must be _Signed_.
Parameters: Parameters:
...@@ -1224,14 +1403,22 @@ calls: Vec<<T as Config>::RuntimeCall> ...@@ -1224,14 +1403,22 @@ calls: Vec<<T as Config>::RuntimeCall>
Send a batch of dispatch calls. Send a batch of dispatch calls.
May be called from any origin. May be called from any origin except `None`.
- `calls`: The calls to be dispatched from the same origin. The number of call must not - `calls`: The calls to be dispatched from the same origin. The number of call must not
exceed the constant: `batched_calls_limit` (available in constant metadata). exceed the constant: `batched_calls_limit` (available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes If origin is root then the calls are dispatched without checking origin filter. (This
bypassing `frame_system::Config::BaseCallFilter`). includes bypassing `frame_system::Config::BaseCallFilter`).
**Complexity**
- O(C) where C is the number of calls to be batched.
This will return `Ok` in all circumstances. To determine the success of the batch, an
event is deposited. If a call failed and the batch was interrupted, then the
`BatchInterrupted` event is deposited, along with the number of successful calls made
and the error of the failed call. If all were successful, then the `BatchCompleted`
event is deposited.
#### as_derivative - 1 #### as_derivative - 1
...@@ -1271,14 +1458,16 @@ calls: Vec<<T as Config>::RuntimeCall> ...@@ -1271,14 +1458,16 @@ calls: Vec<<T as Config>::RuntimeCall>
Send a batch of dispatch calls and atomically execute them. Send a batch of dispatch calls and atomically execute them.
The whole transaction will rollback and fail if any of the calls failed. The whole transaction will rollback and fail if any of the calls failed.
May be called from any origin. May be called from any origin except `None`.
- `calls`: The calls to be dispatched from the same origin. The number of call must not - `calls`: The calls to be dispatched from the same origin. The number of call must not
exceed the constant: `batched_calls_limit` (available in constant metadata). exceed the constant: `batched_calls_limit` (available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes If origin is root then the calls are dispatched without checking origin filter. (This
bypassing `frame_system::Config::BaseCallFilter`). includes bypassing `frame_system::Config::BaseCallFilter`).
**Complexity**
- O(C) where C is the number of calls to be batched.
#### force_batch - 4 #### force_batch - 4
...@@ -1293,14 +1482,34 @@ calls: Vec<<T as Config>::RuntimeCall> ...@@ -1293,14 +1482,34 @@ calls: Vec<<T as Config>::RuntimeCall>
Send a batch of dispatch calls. Send a batch of dispatch calls.
Unlike `batch`, it allows errors and won't interrupt. Unlike `batch`, it allows errors and won't interrupt.
May be called from any origin. May be called from any origin except `None`.
- `calls`: The calls to be dispatched from the same origin. The number of call must not - `calls`: The calls to be dispatched from the same origin. The number of call must not
exceed the constant: `batched_calls_limit` (available in constant metadata). exceed the constant: `batched_calls_limit` (available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes If origin is root then the calls are dispatch without checking origin filter. (This
bypassing `frame_system::Config::BaseCallFilter`). includes bypassing `frame_system::Config::BaseCallFilter`).
**Complexity**
- O(C) where C is the number of calls to be batched.
#### with_weight - 5
<details><summary><code>with_weight(call, weight)</code></summary>
```rust
call: Box<<T as Config>::RuntimeCall>
weight: Weight
```
</details>
Dispatch a function call with a specified weight.
This function does not check the weight of the call, and instead allows the
Root origin to specify the weight of the call.
The dispatch origin for this call must be _Root_.
### Treasury - 65 ### Treasury - 65
...@@ -1319,6 +1528,8 @@ Put forward a suggestion for spending. A deposit proportional to the value ...@@ -1319,6 +1528,8 @@ Put forward a suggestion for spending. A deposit proportional to the value
is reserved and slashed if the proposal is rejected. It is returned once the is reserved and slashed if the proposal is rejected. It is returned once the
proposal is awarded. proposal is awarded.
**Complexity**
- O(1)
#### spend - 3 #### spend - 3
...@@ -1356,28 +1567,23 @@ The original deposit will no longer be returned. ...@@ -1356,28 +1567,23 @@ The original deposit will no longer be returned.
May only be called from `T::RejectOrigin`. May only be called from `T::RejectOrigin`.
- `proposal_id`: The index of a proposal - `proposal_id`: The index of a proposal
**Complexity**
- O(A) where `A` is the number of approvals
Errors:
- `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
i.e., the proposal has not been approved. This could also mean the proposal does not
exist altogether, thus there is no way it would have been approved in the first place.
## Root calls ## Root calls
There are **22** root calls from **10** pallets. There are **20** root calls from **10** pallets.
### System - 0 ### System - 0
#### fill_block - 0 #### set_heap_pages - 1
<details><summary><code>fill_block(ratio)</code></summary>
```rust
ratio: Perbill
```
</details>
A dispatch that will fill the block weight up to the given ratio.
#### set_heap_pages - 2
<details><summary><code>set_heap_pages(pages)</code></summary> <details><summary><code>set_heap_pages(pages)</code></summary>
...@@ -1389,7 +1595,7 @@ pages: u64 ...@@ -1389,7 +1595,7 @@ pages: u64
Set the number of pages in the WebAssembly environment's heap. Set the number of pages in the WebAssembly environment's heap.
#### set_code - 3 #### set_code - 2
<details><summary><code>set_code(code)</code></summary> <details><summary><code>set_code(code)</code></summary>
...@@ -1401,8 +1607,10 @@ code: Vec<u8> ...@@ -1401,8 +1607,10 @@ code: Vec<u8>
Set the new runtime code. Set the new runtime code.
**Complexity**
- `O(C + S)` where `C` length of `code` and `S` complexity of `can_set_code`
#### set_code_without_checks - 4 #### set_code_without_checks - 3
<details><summary><code>set_code_without_checks(code)</code></summary> <details><summary><code>set_code_without_checks(code)</code></summary>
...@@ -1414,8 +1622,10 @@ code: Vec<u8> ...@@ -1414,8 +1622,10 @@ code: Vec<u8>
Set the new runtime code without doing any checks of the given `code`. Set the new runtime code without doing any checks of the given `code`.
**Complexity**
- `O(C)` where `C` length of `code`
#### set_storage - 5 #### set_storage - 4
<details><summary><code>set_storage(items)</code></summary> <details><summary><code>set_storage(items)</code></summary>
...@@ -1427,7 +1637,7 @@ items: Vec<KeyValue> ...@@ -1427,7 +1637,7 @@ items: Vec<KeyValue>
Set some items of storage. Set some items of storage.
#### kill_storage - 6 #### kill_storage - 5
<details><summary><code>kill_storage(keys)</code></summary> <details><summary><code>kill_storage(keys)</code></summary>
...@@ -1439,7 +1649,7 @@ keys: Vec<Key> ...@@ -1439,7 +1649,7 @@ keys: Vec<Key>
Kill some items from storage. Kill some items from storage.
#### kill_prefix - 7 #### kill_prefix - 6
<details><summary><code>kill_prefix(prefix, subkeys)</code></summary> <details><summary><code>kill_prefix(prefix, subkeys)</code></summary>
...@@ -1474,27 +1684,6 @@ not been enacted yet. ...@@ -1474,27 +1684,6 @@ not been enacted yet.
### Balances - 6 ### Balances - 6
#### set_balance - 1
<details><summary><code>set_balance(who, new_free, new_reserved)</code></summary>
```rust
who: AccountIdLookupOf<T>
new_free: T::Balance
new_reserved: T::Balance
```
</details>
Set the balances of a given account.
This will alter `FreeBalance` and `ReservedBalance` in storage. it will
also alter the total issuance of the system (`TotalIssuance`) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (`frame_system::AccountNonce`).
The dispatch origin for this call is `root`.
#### force_transfer - 2 #### force_transfer - 2
<details><summary><code>force_transfer(source, dest, value)</code></summary> <details><summary><code>force_transfer(source, dest, value)</code></summary>
...@@ -1507,8 +1696,8 @@ value: T::Balance ...@@ -1507,8 +1696,8 @@ value: T::Balance
</details> </details>
Exactly as `transfer`, except the origin must be root and the source account may be Exactly as `transfer_allow_death`, except the origin must be root and the source account
specified. may be specified.
#### force_unreserve - 5 #### force_unreserve - 5
...@@ -1586,7 +1775,7 @@ Set the collective's membership. ...@@ -1586,7 +1775,7 @@ Set the collective's membership.
- `old_count`: The upper bound for the previous number of members in storage. Used for - `old_count`: The upper bound for the previous number of members in storage. Used for
weight estimation. weight estimation.
Requires root origin. The dispatch of this call must be `SetMembersOrigin`.
NOTE: Does not enforce the expected `MaxMembers` limit on the amount of members, but NOTE: Does not enforce the expected `MaxMembers` limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight. the weight estimations rely on it to estimate dispatchable weight.
...@@ -1598,6 +1787,11 @@ implementation of the trait [`ChangeMembers`]. ...@@ -1598,6 +1787,11 @@ implementation of the trait [`ChangeMembers`].
Any call to `set_members` must be careful that the member set doesn't get out of sync Any call to `set_members` must be careful that the member set doesn't get out of sync
with other logic managing the member set. with other logic managing the member set.
**Complexity**:
- `O(MP + N)` where:
- `M` old-members-count (code- and governance-bounded)
- `N` new-members-count (code- and governance-bounded)
- `P` proposals-count (code-bounded)
#### disapprove_proposal - 5 #### disapprove_proposal - 5
...@@ -1617,16 +1811,19 @@ Must be called by the Root origin. ...@@ -1617,16 +1811,19 @@ Must be called by the Root origin.
Parameters: Parameters:
* `proposal_hash`: The hash of the proposal that should be disapproved. * `proposal_hash`: The hash of the proposal that should be disapproved.
**Complexity**
O(P) where P is the number of max proposals
### Identity - 41 ### Identity - 41
#### remove_identity - 5 #### remove_identity - 5
<details><summary><code>remove_identity(idty_index, idty_name)</code></summary> <details><summary><code>remove_identity(idty_index, idty_name, reason)</code></summary>
```rust ```rust
idty_index: T::IdtyIndex idty_index: T::IdtyIndex
idty_name: Option<IdtyName> idty_name: Option<IdtyName>
reason: IdtyRemovalReason<T::IdtyRemovalOtherReason>
``` ```
</details> </details>
...@@ -1716,6 +1913,8 @@ Dispatches a function call with a provided origin. ...@@ -1716,6 +1913,8 @@ Dispatches a function call with a provided origin.
The dispatch origin for this call must be _Root_. The dispatch origin for this call must be _Root_.
**Complexity**
- O(1).
...@@ -1728,7 +1927,7 @@ There are **6** disabled calls from **3** pallets. ...@@ -1728,7 +1927,7 @@ There are **6** disabled calls from **3** pallets.
### System - 0 ### System - 0
#### remark - 1 #### remark - 0
<details><summary><code>remark(remark)</code></summary> <details><summary><code>remark(remark)</code></summary>
...@@ -1740,8 +1939,10 @@ remark: Vec<u8> ...@@ -1740,8 +1939,10 @@ remark: Vec<u8>
Make some on-chain remark. Make some on-chain remark.
**Complexity**
- `O(1)`
#### remark_with_event - 8 #### remark_with_event - 7
<details><summary><code>remark_with_event(remark)</code></summary> <details><summary><code>remark_with_event(remark)</code></summary>
...@@ -1772,6 +1973,9 @@ This doesn't take effect until the next session. ...@@ -1772,6 +1973,9 @@ This doesn't take effect until the next session.
The dispatch origin of this function must be signed. The dispatch origin of this function must be signed.
**Complexity**
- `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
fixed.
#### purge_keys - 1 #### purge_keys - 1
...@@ -1791,6 +1995,9 @@ convertible to a validator ID using the chain's typical addressing system (this ...@@ -1791,6 +1995,9 @@ convertible to a validator ID using the chain's typical addressing system (this
means being a controller account) or directly convertible into a validator ID (which means being a controller account) or directly convertible into a validator ID (which
usually means being a stash account). usually means being a stash account).
**Complexity**
- `O(1)` in number of key types. Actual cost depends on the number of length of
`T::Keys::key_ids()` which is fixed.
### Membership - 42 ### Membership - 42
......
...@@ -9,13 +9,13 @@ You can use `try-runtime` subcommand to replay a block against a real state from ...@@ -9,13 +9,13 @@ You can use `try-runtime` subcommand to replay a block against a real state from
5. Replay the block a first time to get the state: 5. Replay the block a first time to get the state:
``` ```
duniter try-runtime --exectuion=Native execute-block --block-at 0x2633026e3e428b010cfe08d215b6253843a9fe54db28748ca56de37e6a83c644 live -s tmp/snapshot1 -u ws://localhost:9944 duniter try-runtime --execution=Native execute-block --block-at 0x2633026e3e428b010cfe08d215b6253843a9fe54db28748ca56de37e6a83c644 live -s tmp/snapshot1 -u ws://localhost:9944
``` ```
6. Then, replay the block as many times as you need against your local snapshot: 6. Then, replay the block as many times as you need against your local snapshot:
``` ```
duniter try-runtime --exectuion=Native execute-block --block-at 0x2633026e3e428b010cfe08d215b6253843a9fe54db28748ca56de37e6a83c644 --block-ws-uri ws://localhost:9944 snap -s tmp/snapshot1 duniter try-runtime --execution=Native execute-block --block-at 0x2633026e3e428b010cfe08d215b6253843a9fe54db28748ca56de37e6a83c644 --block-ws-uri ws://localhost:9944 snap -s tmp/snapshot1
``` ```
try-runtime does not allow (for now) to store the block locally, only the storage can be stored. try-runtime does not allow (for now) to store the block locally, only the storage can be stored.
Feature: Balance transfer Feature: Account creation
Scenario: Create a new account with enough funds Scenario: Create a new account with enough funds
When alice sends 5 ĞD to dave When alice sends 5 ĞD to dave
...@@ -29,8 +29,10 @@ Feature: Balance transfer ...@@ -29,8 +29,10 @@ Feature: Balance transfer
@ignoreErrors @ignoreErrors
Scenario: Create a new account without any funds Scenario: Create a new account without any funds
Then eve should have 0 ĞD Then eve should have 0 ĞD
# Alice is treasury funder for 1 ĞD
Then alice should have 9 ĞD
When eve send 0 ĞD to alice When eve send 0 ĞD to alice
Then alice should have 10 ĞD Then alice should have 9 ĞD
When alice send 5 ĞD to eve When alice send 5 ĞD to eve
Then eve should have 5 ĞD Then eve should have 5 ĞD
When 1 block later When 1 block later
......
...@@ -3,9 +3,11 @@ Feature: Identity creation ...@@ -3,9 +3,11 @@ Feature: Identity creation
Scenario: alice invites a new member to join the web of trust Scenario: alice invites a new member to join the web of trust
# 6 ĞD covers: # 6 ĞD covers:
# - account creation fees (3 ĞD) # - account creation fees (3 ĞD)
# - existential deposit (2 ĞD) # - existential deposit (1 ĞD)
# - transaction fees (below 1 ĞD) # - transaction fees (below 1 ĞD)
When alice sends 7 ĞD to dave When alice sends 7 ĞD to dave
# Alice is treasury funder for 1 ĞD => 10-1-7 = 2 (minus fees)
Then alice should have 199 cĞD
When bob sends 750 cĞD to dave When bob sends 750 cĞD to dave
When charlie sends 6 ĞD to eve When charlie sends 6 ĞD to eve
# alice last certification is counted from block zero # alice last certification is counted from block zero
......
Feature: Balance transfer Feature: Monetary mass
Scenario: After 10 blocks, the monetary mass should be 60 ĞD Scenario: After 10 blocks, the monetary mass should be 60 ĞD
Then Monetary mass should be 30.00 ĞD Then Monetary mass should be 30.00 ĞD
......
...@@ -2,20 +2,22 @@ Feature: Oneshot account ...@@ -2,20 +2,22 @@ Feature: Oneshot account
Scenario: Simple oneshot consumption Scenario: Simple oneshot consumption
When alice sends 7 ĞD to oneshot dave When alice sends 7 ĞD to oneshot dave
Then alice should have 3 ĞD # Alice is treasury funder for 1 ĞD and pays fees
Then alice should have 199 cĞD
Then dave should have oneshot 7 ĞD Then dave should have oneshot 7 ĞD
When oneshot dave consumes into account bob When oneshot dave consumes into account bob
Then dave should have oneshot 0 ĞD Then dave should have oneshot 0 ĞD
Then bob should have 1699 cĞD Then bob should have 1698 cĞD
Then bob should have oneshot 0 ĞD Then bob should have oneshot 0 ĞD
Scenario: Double oneshot consumption Scenario: Double oneshot consumption
When alice sends 7 ĞD to oneshot dave When alice sends 7 ĞD to oneshot dave
Then alice should have 3 ĞD # Alice is treasury funder for 1 ĞD and pays fees
Then alice should have 199 cĞD
Then dave should have oneshot 7 ĞD Then dave should have oneshot 7 ĞD
When oneshot dave consumes 4 ĞD into account bob and the rest into oneshot charlie When oneshot dave consumes 4 ĞD into account bob and the rest into oneshot charlie
Then dave should have oneshot 0 ĞD Then dave should have oneshot 0 ĞD
Then bob should have 14 ĞD Then bob should have 14 ĞD
Then bob should have oneshot 0 ĞD Then bob should have oneshot 0 ĞD
Then charlie should have 10 ĞD Then charlie should have 10 ĞD
Then charlie should have oneshot 299 cĞD Then charlie should have oneshot 298 cĞD
...@@ -5,10 +5,13 @@ Feature: Balance transfer all ...@@ -5,10 +5,13 @@ Feature: Balance transfer all
When bob sends all his ĞDs to dave When bob sends all his ĞDs to dave
""" """
Bob is a member, as such he is not allowed to empty his account completely, Bob is a member, as such he is not allowed to empty his account completely,
if he tries to do so, the existence deposit (2 ĞD) must remain. if he tries to do so, the existence deposit (1 ĞD) must remain.
Bob is a member, transaction fees are refunded for him
101 = existential deposit (100) + fees refunded using quota (001)
""" """
Then bob should have 2 ĞD Then bob should have 101 cĞD
""" """
10 ĞD (initial Bob balance) - 2 ĞD (Existential deposit) - 0.02 ĞD (transaction fees) 10 ĞD (initial Bob balance) - 1 ĞD (Existential deposit) - 0.02 ĞD (transaction fees)
""" """
Then dave should have 798 cĞD Then dave should have 898 cĞD
# TODO check that the missing cent went to treasury
...@@ -11,28 +11,37 @@ ...@@ -11,28 +11,37 @@
}, },
"identities": { "identities": {
"Alice": { "Alice": {
"index": 1,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Bob", "Bob": 2700000000,
"Charlie" "Charlie": 2700000000
], },
"pubkey": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY" "owner_address": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
}, },
"Bob": { "Bob": {
"index": 2,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Alice", "Alice": 2700000000,
"Charlie" "Charlie": 2700000000
], },
"pubkey": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty" "owner_address": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
}, },
"Charlie": { "Charlie": {
"index": 3,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Alice", "Alice": 2700000000,
"Bob" "Bob": 2700000000
], },
"pubkey": "5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y" "owner_address": "5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
} }
}, },
"parameters": { "parameters": {
...@@ -59,31 +68,18 @@ ...@@ -59,31 +68,18 @@
"wot_min_cert_for_create_idty_right": 2, "wot_min_cert_for_create_idty_right": 2,
"wot_min_cert_for_membership": 2 "wot_min_cert_for_membership": 2
}, },
"smiths": { "clique_smiths": [
"Alice": { { "name": "Alice" },
"certs": [ { "name": "Bob" },
"Bob", { "name": "Charlie" }
"Charlie" ],
]
},
"Bob": {
"certs": [
"Alice",
"Charlie"
]
},
"Charlie": {
"certs": [
"Alice",
"Bob"
]
}
},
"sudo_key": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY", "sudo_key": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"technical_committee": [ "technical_committee": [
"Alice", "Alice",
"Bob", "Bob",
"Charlie" "Charlie"
], ],
"ud": 1000 "treasury_funder_pubkey": "FHNpKmJrUtusuvKPGomAygQqeiks98bdV6yD61Stb6vg",
"ud": 1000,
"initial_monetary_mass": 3000
} }
\ No newline at end of file
...@@ -9,36 +9,48 @@ ...@@ -9,36 +9,48 @@
}, },
"identities": { "identities": {
"Alice": { "Alice": {
"index": 1,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Bob", "Bob": 2700000000,
"Charlie" "Charlie": 2700000000
], },
"pubkey": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY" "owner_address": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
}, },
"Bob": { "Bob": {
"index": 2,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Alice", "Alice": 2700000000,
"Charlie" "Charlie": 2700000000
], },
"pubkey": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty" "owner_address": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
}, },
"Charlie": { "Charlie": {
"index": 3,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Alice", "Alice": 2700000000,
"Bob" "Bob": 2700000000
], },
"pubkey": "5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y" "owner_address": "5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
}, },
"Dave": { "Dave": {
"index": 4,
"balance": 1000, "balance": 1000,
"certs": [ "certs_received": {
"Alice", "Alice": 2700000000,
"Bob" "Bob": 2700000000
], },
"pubkey": "5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy" "owner_address": "5DAAnrj7VHTznn2AWBemMuyBwZWs6FNFjdyVXUeYum3PTXFy",
"membership_expire_on": 2700000000,
"next_cert_issuable_on": 0
} }
}, },
"parameters": { "parameters": {
...@@ -65,31 +77,18 @@ ...@@ -65,31 +77,18 @@
"wot_min_cert_for_create_idty_right": 2, "wot_min_cert_for_create_idty_right": 2,
"wot_min_cert_for_membership": 2 "wot_min_cert_for_membership": 2
}, },
"smiths": { "clique_smiths": [
"Alice": { { "name": "Alice" },
"certs": [ { "name": "Bob" },
"Bob", { "name": "Charlie" }
"Charlie" ],
]
},
"Bob": {
"certs": [
"Alice",
"Charlie"
]
},
"Charlie": {
"certs": [
"Alice",
"Bob"
]
}
},
"sudo_key": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY", "sudo_key": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"technical_committee": [ "technical_committee": [
"Alice", "Alice",
"Bob", "Bob",
"Charlie" "Charlie"
], ],
"ud": 1000 "treasury_funder_pubkey": "FHNpKmJrUtusuvKPGomAygQqeiks98bdV6yD61Stb6vg",
"ud": 1000,
"initial_monetary_mass": 4000
} }
\ No newline at end of file
...@@ -30,9 +30,13 @@ pub async fn certify(client: &Client, from: AccountKeyring, to: AccountKeyring) ...@@ -30,9 +30,13 @@ pub async fn certify(client: &Client, from: AccountKeyring, to: AccountKeyring)
.at_latest() .at_latest()
.await .await
.unwrap() .unwrap()
.fetch(&gdev::storage().identity().identity_index_of(&from.into())) .fetch(
&gdev::storage()
.identity()
.identity_index_of(&from.clone().into()),
)
.await? .await?
.unwrap(); .unwrap_or_else(|| panic!("{} issuer must exist", from));
let receiver_index = client let receiver_index = client
.storage() .storage()
.at_latest() .at_latest()
...@@ -40,7 +44,7 @@ pub async fn certify(client: &Client, from: AccountKeyring, to: AccountKeyring) ...@@ -40,7 +44,7 @@ pub async fn certify(client: &Client, from: AccountKeyring, to: AccountKeyring)
.unwrap() .unwrap()
.fetch(&gdev::storage().identity().identity_index_of(&to.into())) .fetch(&gdev::storage().identity().identity_index_of(&to.into()))
.await? .await?
.unwrap(); .unwrap_or_else(|| panic!("{} issuer must exist", from));
let _events = create_block_with_extrinsic( let _events = create_block_with_extrinsic(
client, client,
......
...@@ -87,6 +87,13 @@ impl Process { ...@@ -87,6 +87,13 @@ impl Process {
} }
} }
// Do not let the process keep running after the tests ended
impl Drop for Process {
fn drop(&mut self) {
self.kill()
}
}
pub const DISTANCE_ORACLE_LOCAL_PATH: &str = "../target/debug/distance-oracle"; pub const DISTANCE_ORACLE_LOCAL_PATH: &str = "../target/debug/distance-oracle";
const DUNITER_DOCKER_PATH: &str = "/usr/local/bin/duniter"; const DUNITER_DOCKER_PATH: &str = "/usr/local/bin/duniter";
const DUNITER_LOCAL_PATH: &str = "../target/debug/duniter"; const DUNITER_LOCAL_PATH: &str = "../target/debug/duniter";
...@@ -97,7 +104,10 @@ struct FullNode { ...@@ -97,7 +104,10 @@ struct FullNode {
ws_port: u16, ws_port: u16,
} }
pub async fn spawn_node(maybe_genesis_conf_file: Option<PathBuf>) -> (Client, Process, u16) { pub async fn spawn_node(
maybe_genesis_conf_file: Option<PathBuf>,
no_spawn: bool,
) -> (Client, Option<Process>, u16) {
println!("maybe_genesis_conf_file={:?}", maybe_genesis_conf_file); println!("maybe_genesis_conf_file={:?}", maybe_genesis_conf_file);
let duniter_binary_path = std::env::var("DUNITER_BINARY_PATH").unwrap_or_else(|_| { let duniter_binary_path = std::env::var("DUNITER_BINARY_PATH").unwrap_or_else(|_| {
if std::path::Path::new(DUNITER_DOCKER_PATH).exists() { if std::path::Path::new(DUNITER_DOCKER_PATH).exists() {
...@@ -107,20 +117,40 @@ pub async fn spawn_node(maybe_genesis_conf_file: Option<PathBuf>) -> (Client, Pr ...@@ -107,20 +117,40 @@ pub async fn spawn_node(maybe_genesis_conf_file: Option<PathBuf>) -> (Client, Pr
} }
}); });
let FullNode { let mut the_ws_port = 9944;
process, let mut opt_process = None;
p2p_port: _, // Eventually spawn a node (we most likely will - unless --no-spawn option is used)
ws_port, if !no_spawn {
} = spawn_full_node( let FullNode {
&["--dev", "--execution=Native", "--sealing=manual"], process,
&duniter_binary_path, p2p_port: _,
maybe_genesis_conf_file, ws_port,
); } = spawn_full_node(
let client = Client::from_url(format!("ws://127.0.0.1:{}", ws_port)) &[
"--chain=gdev_dev",
"--execution=Native",
"--sealing=manual",
// Necessary options which were previously set by --dev option:
"--force-authoring",
"--rpc-cors=all",
"--alice",
"--tmp",
// Fix: End2End test may fail due to network discovery. This option disables automatic peer discovery.π
"--reserved-only",
// prevent local network discovery (even it does not connect due to above flag)
"--no-mdns",
],
&duniter_binary_path,
maybe_genesis_conf_file,
);
opt_process = Some(process);
the_ws_port = ws_port;
}
let client = Client::from_url(format!("ws://127.0.0.1:{}", the_ws_port))
.await .await
.expect("fail to connect to node"); .expect("fail to connect to node");
(client, process, ws_port) (client, opt_process, the_ws_port)
} }
pub async fn create_empty_block(client: &Client) -> Result<()> { pub async fn create_empty_block(client: &Client) -> Result<()> {
...@@ -169,16 +199,14 @@ fn spawn_full_node( ...@@ -169,16 +199,14 @@ fn spawn_full_node(
// Env vars // Env vars
let mut envs = Vec::new(); let mut envs = Vec::new();
if let Some(genesis_conf_file) = maybe_genesis_conf_file { if let Some(genesis_conf_file) = maybe_genesis_conf_file {
envs.push(("DUNITER_GENESIS_CONFIG", genesis_conf_file)); envs.push(("DUNITER_GENESIS_CONFIG", genesis_conf_file.clone()));
envs.push(("DUNITER_GENESIS_DATA", genesis_conf_file));
} }
// Logs // Logs
let log_file_path = format!("duniter-v2s-{}.log", ws_port); let log_file_path = format!("duniter-v2s-{}.log", ws_port);
let log_file = std::fs::File::create(&log_file_path).expect("fail to create log file"); let log_file = std::fs::File::create(&log_file_path).expect("fail to create log file");
// Clean previous data
std::fs::remove_dir_all("/tmp/duniter-cucumber").ok();
// Command // Command
let process = Process( let process = Process(
Command::new(duniter_binary_path) Command::new(duniter_binary_path)
...@@ -192,8 +220,6 @@ fn spawn_full_node( ...@@ -192,8 +220,6 @@ fn spawn_full_node(
&rpc_port.to_string(), &rpc_port.to_string(),
"--ws-port", "--ws-port",
&ws_port.to_string(), &ws_port.to_string(),
"--base-path",
"/tmp/duniter-cucumber",
] ]
.iter() .iter()
.chain(args), .chain(args),
......
...@@ -18,7 +18,7 @@ mod common; ...@@ -18,7 +18,7 @@ mod common;
use async_trait::async_trait; use async_trait::async_trait;
use common::*; use common::*;
use cucumber::{given, then, when, World, WorldInit}; use cucumber::{given, then, when, FailureWriter, World, WorldInit};
use sp_keyring::AccountKeyring; use sp_keyring::AccountKeyring;
use std::convert::Infallible; use std::convert::Infallible;
use std::path::PathBuf; use std::path::PathBuf;
...@@ -38,11 +38,11 @@ pub struct DuniterWorld { ...@@ -38,11 +38,11 @@ pub struct DuniterWorld {
impl DuniterWorld { impl DuniterWorld {
// Write methods // Write methods
async fn init(&mut self, maybe_genesis_conf_file: Option<PathBuf>) { async fn init(&mut self, maybe_genesis_conf_file: Option<PathBuf>, no_spawn: bool) {
if let Some(ref mut inner) = self.inner { if let Some(ref mut inner) = self.inner {
inner.kill(); inner.kill();
} }
self.inner = Some(DuniterWorldInner::new(maybe_genesis_conf_file).await); self.inner = Some(DuniterWorldInner::new(maybe_genesis_conf_file, no_spawn).await);
} }
fn kill(&mut self) { fn kill(&mut self) {
if let Some(ref mut inner) = self.inner { if let Some(ref mut inner) = self.inner {
...@@ -121,13 +121,13 @@ impl World for DuniterWorld { ...@@ -121,13 +121,13 @@ impl World for DuniterWorld {
struct DuniterWorldInner { struct DuniterWorldInner {
client: Client, client: Client,
process: Process, process: Option<Process>,
ws_port: u16, ws_port: u16,
} }
impl DuniterWorldInner { impl DuniterWorldInner {
async fn new(maybe_genesis_conf_file: Option<PathBuf>) -> Self { async fn new(maybe_genesis_conf_file: Option<PathBuf>, no_spawn: bool) -> Self {
let (client, process, ws_port) = spawn_node(maybe_genesis_conf_file).await; let (client, process, ws_port) = spawn_node(maybe_genesis_conf_file, no_spawn).await;
DuniterWorldInner { DuniterWorldInner {
client, client,
process, process,
...@@ -135,7 +135,9 @@ impl DuniterWorldInner { ...@@ -135,7 +135,9 @@ impl DuniterWorldInner {
} }
} }
fn kill(&mut self) { fn kill(&mut self) {
self.process.kill(); if let Some(p) = &mut self.process {
p.kill();
}
} }
} }
...@@ -599,6 +601,9 @@ struct CustomOpts { ...@@ -599,6 +601,9 @@ struct CustomOpts {
/// Keep running /// Keep running
#[clap(short, long)] #[clap(short, long)]
keep_running: bool, keep_running: bool,
/// Do not spawn a node, reuse expected node on port 9944
#[clap(long)]
no_spawn: bool,
/// For compliance with Jetbrains IDE which pushes extra args. /// For compliance with Jetbrains IDE which pushes extra args.
/// https://youtrack.jetbrains.com/issue/CPP-33071/cargo-test-adds-extra-options-which-conflict-with-Cucumber /// https://youtrack.jetbrains.com/issue/CPP-33071/cargo-test-adds-extra-options-which-conflict-with-Cucumber
...@@ -627,6 +632,7 @@ async fn main() { ...@@ -627,6 +632,7 @@ async fn main() {
let opts = cucumber::cli::Opts::<_, _, _, CustomOpts>::parsed(); let opts = cucumber::cli::Opts::<_, _, _, CustomOpts>::parsed();
let keep_running = opts.custom.keep_running; let keep_running = opts.custom.keep_running;
let no_spawn = opts.custom.no_spawn;
// Handle crtl+C // Handle crtl+C
let running = Arc::new(AtomicBool::new(true)); let running = Arc::new(AtomicBool::new(true));
...@@ -636,10 +642,10 @@ async fn main() { ...@@ -636,10 +642,10 @@ async fn main() {
}) })
.expect("Error setting Ctrl-C handler"); .expect("Error setting Ctrl-C handler");
DuniterWorld::cucumber() let summarize = DuniterWorld::cucumber()
//.fail_on_skipped() //.fail_on_skipped()
.max_concurrent_scenarios(4) .max_concurrent_scenarios(4)
.before(|feature, _rule, scenario, world| { .before(move |feature, _rule, scenario, world| {
let mut genesis_conf_file_path = PathBuf::new(); let mut genesis_conf_file_path = PathBuf::new();
genesis_conf_file_path.push("cucumber-genesis"); genesis_conf_file_path.push("cucumber-genesis");
genesis_conf_file_path.push(&format!( genesis_conf_file_path.push(&format!(
...@@ -647,21 +653,25 @@ async fn main() { ...@@ -647,21 +653,25 @@ async fn main() {
genesis_conf_name(&feature.tags, &scenario.tags) genesis_conf_name(&feature.tags, &scenario.tags)
)); ));
world.set_ignore_errors(ignore_errors(&scenario.tags)); world.set_ignore_errors(ignore_errors(&scenario.tags));
Box::pin(world.init(Some(genesis_conf_file_path))) Box::pin(world.init(Some(genesis_conf_file_path), no_spawn))
}) })
.after(move |_feature, _rule, _scenario, maybe_world| { .after(move |_feature, _rule, _scenario, maybe_world| {
if keep_running { if keep_running {
while running.load(Ordering::SeqCst) {} while running.load(Ordering::SeqCst) {}
} }
// Early kill (not waiting destructor) to save CPU/memory
if let Some(world) = maybe_world { if let Some(world) = maybe_world {
world.kill(); world.kill();
} }
Box::pin(std::future::ready(())) Box::pin(std::future::ready(()))
}) })
.with_cli(opts) .with_cli(opts)
.run_and_exit(features_path) .run(features_path)
.await; .await;
if summarize.hook_errors() > 0 {
panic!("Could not run tests correctly (hook errors)");
}
} }
fn genesis_conf_name(feature_tags: &[String], scenario_tags: &[String]) -> String { fn genesis_conf_name(feature_tags: &[String], scenario_tags: &[String]) -> String {
......
...@@ -38,7 +38,7 @@ type Index = u32; ...@@ -38,7 +38,7 @@ type Index = u32;
// Define gdev types // Define gdev types
type AccountInfo = gdev::runtime_types::frame_system::AccountInfo< type AccountInfo = gdev::runtime_types::frame_system::AccountInfo<
Index, Index,
gdev::runtime_types::pallet_duniter_account::types::AccountData<Balance>, gdev::runtime_types::pallet_duniter_account::types::AccountData<Balance, IdtyIndex>,
>; >;
type IdtyData = gdev::runtime_types::common_runtime::entities::IdtyData; type IdtyData = gdev::runtime_types::common_runtime::entities::IdtyData;
type IdtyIndex = u32; type IdtyIndex = u32;
......
{
"name": "ĞDev",
"id": "gdev",
"chainType": "Live",
"bootNodes": [],
"telemetryEndpoints": [
[
"/dns/telemetry.polkadot.io/tcp/443/x-parity-wss/%2Fsubmit%2F",
0
]
],
"properties": {
"tokenDecimals": 2,
"tokenSymbol": "ĞD"
}
}
\ No newline at end of file
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>. // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.
#[cfg(feature = "gdev")] // Common to all Duniter blockchains
pub mod gen_genesis_data; pub mod gen_genesis_data;
#[cfg(feature = "g1")] #[cfg(feature = "g1")]
...@@ -23,8 +23,6 @@ pub mod g1; ...@@ -23,8 +23,6 @@ pub mod g1;
pub mod gdev; pub mod gdev;
#[cfg(feature = "gtest")] #[cfg(feature = "gtest")]
pub mod gtest; pub mod gtest;
#[cfg(feature = "gtest")]
pub mod gtest_genesis;
use common_runtime::{AccountId, IdtyIndex, Signature}; use common_runtime::{AccountId, IdtyIndex, Signature};
use sp_core::{Pair, Public}; use sp_core::{Pair, Public};
...@@ -42,14 +40,6 @@ pub fn get_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pair>::Pu ...@@ -42,14 +40,6 @@ pub fn get_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pair>::Pu
.public() .public()
} }
/*/// Generate an account ID from pair.
pub fn get_account_id_from_pair<TPublic: Public>(pair: TPublic::Pair) -> AccountId
where
AccountPublic: From<<TPublic::Pair as Pair>::Public>,
{
AccountPublic::from(pair.public()).into_account()
}*/
/// Generate an account ID from seed. /// Generate an account ID from seed.
pub fn get_account_id_from_seed<TPublic: Public>(seed: &str) -> AccountId pub fn get_account_id_from_seed<TPublic: Public>(seed: &str) -> AccountId
where where
...@@ -60,9 +50,14 @@ where ...@@ -60,9 +50,14 @@ where
fn clique_wot( fn clique_wot(
initial_identities_len: usize, initial_identities_len: usize,
) -> BTreeMap<IdtyIndex, BTreeMap<IdtyIndex, Option<common_runtime::BlockNumber>>> { ) -> (
BTreeMap<IdtyIndex, BTreeMap<IdtyIndex, Option<common_runtime::BlockNumber>>>,
u32,
) {
let mut certs_by_issuer = BTreeMap::new(); let mut certs_by_issuer = BTreeMap::new();
let mut count: u32 = 0;
for i in 1..=initial_identities_len { for i in 1..=initial_identities_len {
count += initial_identities_len as u32;
certs_by_issuer.insert( certs_by_issuer.insert(
i as IdtyIndex, i as IdtyIndex,
(1..=initial_identities_len) (1..=initial_identities_len)
...@@ -76,5 +71,5 @@ fn clique_wot( ...@@ -76,5 +71,5 @@ fn clique_wot(
.collect(), .collect(),
); );
} }
certs_by_issuer (certs_by_issuer, count)
} }