From 54491c62e668d7fae1457cef16d46c2b73646172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Tomi=C4=87?= Date: Wed, 24 Jan 2024 11:29:58 +0100 Subject: [PATCH] feat(ci): Nightly update dependencies and cache (#102) * feat(ci): Enable grouping of dependabot PRs * Update Python version and delete Bazel cache * repin after update * Automatically push updated files also * fix push * fixup * fixup * fixup * fixup * git gymanistics * fix(ci): Update the reference to the gitlab api token (#98) * fix(ci): Update the reference to the gitlab api token * Fix reference to GitLab API token (#99) * fix(ci): Cloning k8s repo to the correct directory (#103) * fix(dashboard): Use Debian Slim base image for OCI images by default (#105) * fix(dashboard): Use Ubuntu 22.04 base image for OCI images by default * Use generic ubuntu image * Use debian slim instead of Ubuntu, since ubuntu isn't defined * fixup * another attempt * Use existing github action instead of reinventing the wheel * Update dependencies * Ready for prime time --------- Co-authored-by: sasa-tomic --- .github/workflows/bazel.yaml | 74 +- Cargo.Bazel.lock | 1226 ++++++++++++++++------------------ Cargo.lock | 320 +++++---- poetry.lock | 356 +++++----- requirements.txt | 312 ++++----- 5 files changed, 1150 insertions(+), 1138 deletions(-) diff --git a/.github/workflows/bazel.yaml b/.github/workflows/bazel.yaml index d383f70d..9d23ea15 100644 --- a/.github/workflows/bazel.yaml +++ b/.github/workflows/bazel.yaml @@ -12,6 +12,10 @@ jobs: bazel: runs-on: ubuntu-22.04 steps: + + ######################################## + # Setup + ######################################## - name: Free Disk Space (Ubuntu) uses: jlumbroso/free-disk-space@v1.3.1 with: @@ -21,6 +25,10 @@ jobs: large-packages: false # this is slow - uses: actions/checkout@v4 - uses: bazelbuild/setup-bazelisk@v2 + + ######################################## + # Download and unpack cache + ######################################## - name: Mount bazel cache uses: actions/cache@v3 with: @@ -31,9 +39,39 @@ jobs: key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel', 'Cargo.Bazel.lock') }} restore-keys: | ${{ runner.os }}-bazel- - - name: If running on schedule (at night) and on main, completely delete bazel cache + + ######################################## + # Once per night, update dependencies and completely delete and recreate bazel cache + ######################################## + - uses: actions/setup-python@v4 + if: "${{github.event.schedule == '30 1 * * *' && github.ref == 'refs/heads/main'}}" + with: + python-version: "3.11" + - uses: snok/install-poetry@v1 + if: "${{github.event.schedule == '30 1 * * *' && github.ref == 'refs/heads/main'}}" + - name: If running on schedule (at night) and on main, completely delete bazel cache then update deps if: "${{github.event.schedule == '30 1 * * *' && github.ref == 'refs/heads/main'}}" - run: sudo rm -rf ~/.cache/bazel/* + run: | + set -eExou pipefail + # + # Completely delete bazel cache + # + sudo rm -rf ~/.cache/bazel/* + # + # Update dependencies + # + cargo update + poetry update + ./bin/poetry-export.sh + CARGO_BAZEL_REPIN=true bazel query //... + - uses: stefanzweifel/git-auto-commit-action@v5 + if: "${{github.event.schedule == '30 1 * * *' && github.ref == 'refs/heads/main'}}" + with: + commit_message: Update dependencies + + ######################################## + # Build and test + ######################################## - name: Set GIT_HASH variable run: | set -eExou pipefail @@ -45,15 +83,13 @@ jobs: fi - run: bazel build ... - run: bazel test ... + + ######################################## + # Prepare release + ######################################## - name: Optimize bazel cache directory before uploading run: bin/optimize-bazel-cache.sh - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Get bazel binaries, so they can be pushed as GitHub artifacts in the next step + - name: Extract binaries from bazel, so they can be pushed as GitHub artifacts in the next steps if: startsWith(github.ref, 'refs/tags/v') run: | set -eExuo pipefail @@ -73,10 +109,24 @@ jobs: prerelease: true files: | release/* + + ######################################## + # Upload container images + ######################################## + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Push images to GitHub Container Registry if: ${{ startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/container') || (github.ref == 'refs/heads/main') }} run: bazel query --noshow_progress 'kind("oci_push", ...)' | xargs -I_target bazel run _target -- --tag ${GITHUB_SHA} + + ######################################## + # Update k8s deployments + ######################################## - name: Update k8s deployments if: ${{ startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/container') || (github.ref == 'refs/heads/main') }} env: @@ -114,3 +164,9 @@ jobs: -o merge_request.title="[nomrbot] - Updating container image refs mainnet-dashboard [$GITHUB_SHA]" \ -o merge_request.description="Changes to the release repository - [here](https://github.com/dfinity/dre/commit/$GITHUB_SHA)" \ --force --set-upstream origin "update-image-tag-${GITHUB_SHA}" + + ######################################## + # Optimize bazel cache by hard-linking duplicate files + ######################################## + - name: Optimize bazel cache directory before uploading + run: bin/optimize-bazel-cache.sh diff --git a/Cargo.Bazel.lock b/Cargo.Bazel.lock index 3e61072c..d912cc5d 100644 --- a/Cargo.Bazel.lock +++ b/Cargo.Bazel.lock @@ -1,5 +1,5 @@ { - "checksum": "2698cdbc0a6928a03a7b95cdb1deb6e0e9d48a26e30e206224f3148b364a1b10", + "checksum": "da1e9e3fdc6a5808f078461e5365c0fe48692802db63c5097fcfc50fbe476a3c", "crates": { "actix-codec 0.5.1": { "name": "actix-codec", @@ -138,7 +138,7 @@ "target": "base64" }, { - "id": "bitflags 2.4.1", + "id": "bitflags 2.4.2", "target": "bitflags" }, { @@ -206,7 +206,7 @@ "target": "sha1" }, { - "id": "smallvec 1.11.2", + "id": "smallvec 1.13.1", "target": "smallvec" }, { @@ -324,7 +324,7 @@ "target": "http" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -693,7 +693,7 @@ "target": "pin_project_lite" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -709,7 +709,7 @@ "target": "serde_urlencoded" }, { - "id": "smallvec 1.11.2", + "id": "smallvec 1.13.1", "target": "smallvec" }, { @@ -781,7 +781,7 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -912,7 +912,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.11", + "id": "cpufeatures 0.2.12", "target": "cpufeatures" } ] @@ -967,7 +967,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" } ], @@ -1052,7 +1052,7 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" }, { @@ -1115,7 +1115,6 @@ ], "crate_features": { "common": [ - "default", "perf-literal", "std" ], @@ -1229,7 +1228,7 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -1240,13 +1239,13 @@ }, "license": "MIT/Apache-2.0" }, - "anstream 0.6.7": { + "anstream 0.6.11": { "name": "anstream", - "version": "0.6.7", + "version": "0.6.11", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/anstream/0.6.7/download", - "sha256": "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" + "url": "https://crates.io/api/v1/crates/anstream/0.6.11/download", + "sha256": "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" } }, "targets": [ @@ -1306,7 +1305,7 @@ } }, "edition": "2021", - "version": "0.6.7" + "version": "0.6.11" }, "license": "MIT OR Apache-2.0" }, @@ -1828,7 +1827,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -1879,7 +1878,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -2163,7 +2162,7 @@ "target": "concurrent_queue" }, { - "id": "event-listener 4.0.2", + "id": "event-listener 4.0.3", "target": "event_listener" }, { @@ -2214,7 +2213,7 @@ "deps": { "common": [ { - "id": "async-lock 3.2.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -2230,7 +2229,7 @@ "target": "fastrand" }, { - "id": "futures-lite 2.1.0", + "id": "futures-lite 2.2.0", "target": "futures_lite" }, { @@ -2425,13 +2424,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "async-io 2.2.2": { + "async-io 2.3.0": { "name": "async-io", - "version": "2.2.2", + "version": "2.3.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/async-io/2.2.2/download", - "sha256": "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" + "url": "https://crates.io/api/v1/crates/async-io/2.3.0/download", + "sha256": "fb41eb19024a91746eba0773aa5e16036045bbf45733766661099e182ea6a744" } }, "targets": [ @@ -2453,7 +2452,7 @@ "deps": { "common": [ { - "id": "async-lock 3.2.0", + "id": "async-lock 3.3.0", "target": "async_lock" }, { @@ -2469,7 +2468,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.1.0", + "id": "futures-lite 2.2.0", "target": "futures_lite" }, { @@ -2477,11 +2476,11 @@ "target": "parking" }, { - "id": "polling 3.3.1", + "id": "polling 3.3.2", "target": "polling" }, { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" }, { @@ -2503,7 +2502,7 @@ } }, "edition": "2021", - "version": "2.2.2" + "version": "2.3.0" }, "license": "Apache-2.0 OR MIT" }, @@ -2546,13 +2545,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "async-lock 3.2.0": { + "async-lock 3.3.0": { "name": "async-lock", - "version": "3.2.0", + "version": "3.3.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/async-lock/3.2.0/download", - "sha256": "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" + "url": "https://crates.io/api/v1/crates/async-lock/3.3.0/download", + "sha256": "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" } }, "targets": [ @@ -2581,7 +2580,7 @@ "deps": { "common": [ { - "id": "event-listener 4.0.2", + "id": "event-listener 4.0.3", "target": "event_listener" }, { @@ -2595,8 +2594,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "3.2.0" + "edition": "2021", + "version": "3.3.0" }, "license": "Apache-2.0 OR MIT" }, @@ -2655,7 +2654,7 @@ "target": "async_signal" }, { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], @@ -2704,7 +2703,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -2762,7 +2761,7 @@ "selects": { "cfg(unix)": [ { - "id": "async-io 2.2.2", + "id": "async-io 2.3.0", "target": "async_io" }, { @@ -2770,7 +2769,7 @@ "target": "futures_io" }, { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" }, { @@ -2883,7 +2882,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -2980,7 +2979,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -3070,7 +3069,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -3402,7 +3401,7 @@ "target": "futures_core" }, { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" }, { @@ -3537,7 +3536,7 @@ "target": "addr2line" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -3921,7 +3920,7 @@ "target": "either" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -4052,13 +4051,13 @@ }, "license": "MIT/Apache-2.0" }, - "bitflags 2.4.1": { + "bitflags 2.4.2": { "name": "bitflags", - "version": "2.4.1", + "version": "2.4.2", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/bitflags/2.4.1/download", - "sha256": "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" + "url": "https://crates.io/api/v1/crates/bitflags/2.4.2/download", + "sha256": "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" } }, "targets": [ @@ -4084,7 +4083,7 @@ "selects": {} }, "edition": "2021", - "version": "2.4.1" + "version": "2.4.2" }, "license": "MIT OR Apache-2.0" }, @@ -4342,7 +4341,7 @@ "target": "futures_io" }, { - "id": "futures-lite 2.1.0", + "id": "futures-lite 2.2.0", "target": "futures_lite" }, { @@ -4357,7 +4356,7 @@ "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "async-lock 3.2.0", + "id": "async-lock 3.3.0", "target": "async_lock" } ] @@ -4439,13 +4438,13 @@ }, "license": "MIT/Apache-2.0" }, - "borsh 1.3.0": { + "borsh 1.3.1": { "name": "borsh", - "version": "1.3.0", + "version": "1.3.1", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/borsh/1.3.0/download", - "sha256": "26d4d6dafc1a3bb54687538972158f07b2c948bc57d5890df22c0739098b3028" + "url": "https://crates.io/api/v1/crates/borsh/1.3.1/download", + "sha256": "f58b559fd6448c6e2fd0adb5720cd98a2506594cafa4737ff98c396f3e82f667" } }, "targets": [ @@ -4476,7 +4475,7 @@ "deps": { "common": [ { - "id": "borsh 1.3.0", + "id": "borsh 1.3.1", "target": "build_script_build" } ], @@ -4486,13 +4485,13 @@ "proc_macro_deps": { "common": [ { - "id": "borsh-derive 1.3.0", + "id": "borsh-derive 1.3.1", "target": "borsh_derive" } ], "selects": {} }, - "version": "1.3.0" + "version": "1.3.1" }, "build_script_attrs": { "data_glob": [ @@ -4510,13 +4509,13 @@ }, "license": "MIT OR Apache-2.0" }, - "borsh-derive 1.3.0": { + "borsh-derive 1.3.1": { "name": "borsh-derive", - "version": "1.3.0", + "version": "1.3.1", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/borsh-derive/1.3.0/download", - "sha256": "bf4918709cc4dd777ad2b6303ed03cb37f3ca0ccede8c1b0d28ac6db8f4710e0" + "url": "https://crates.io/api/v1/crates/borsh-derive/1.3.1/download", + "sha256": "7aadb5b6ccbd078890f6d7003694e33816e6b784358f18e15e7e6d9f065a57cd" } }, "targets": [ @@ -4542,11 +4541,11 @@ "target": "once_cell" }, { - "id": "proc-macro-crate 2.0.1", + "id": "proc-macro-crate 3.1.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -4570,7 +4569,7 @@ ], "selects": {} }, - "version": "1.3.0" + "version": "1.3.1" }, "license": "Apache-2.0" }, @@ -4672,7 +4671,7 @@ "target": "memchr" }, { - "id": "regex-automata 0.4.3", + "id": "regex-automata 0.4.4", "target": "regex_automata" } ], @@ -4802,7 +4801,7 @@ "target": "cargo_metadata" }, { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -4876,7 +4875,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -4958,7 +4957,7 @@ "target": "build_info_common" }, { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -4974,7 +4973,7 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -5227,7 +5226,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -5766,7 +5765,7 @@ "target": "lazy_static" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -5802,7 +5801,7 @@ "target": "anyhow" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { @@ -5975,7 +5974,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -6046,13 +6045,13 @@ }, "license": "MIT" }, - "chrono 0.4.31": { + "chrono 0.4.32": { "name": "chrono", - "version": "0.4.31", + "version": "0.4.32", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/chrono/0.4.31/download", - "sha256": "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" + "url": "https://crates.io/api/v1/crates/chrono/0.4.32/download", + "sha256": "41daef31d7a747c5c847246f36de49ced6f7403b4cdabc807a97b5cc184cda7a" } }, "targets": [ @@ -6073,11 +6072,13 @@ ], "crate_features": { "common": [ + "alloc", "android-tzdata", "clock", "default", "iana-time-zone", "js-sys", + "now", "oldtime", "serde", "std", @@ -6102,11 +6103,11 @@ "selects": { "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))": [ { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" } ], @@ -6124,14 +6125,14 @@ ], "cfg(windows)": [ { - "id": "windows-targets 0.48.5", + "id": "windows-targets 0.52.0", "target": "windows_targets" } ] } }, "edition": "2021", - "version": "0.4.31" + "version": "0.4.32" }, "license": "MIT OR Apache-2.0" }, @@ -6375,7 +6376,7 @@ "target": "strsim" }, { - "id": "termcolor 1.4.0", + "id": "termcolor 1.4.1", "target": "termcolor" }, { @@ -6399,13 +6400,13 @@ }, "license": "MIT OR Apache-2.0" }, - "clap 4.4.17": { + "clap 4.4.18": { "name": "clap", - "version": "4.4.17", + "version": "4.4.18", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/clap/4.4.17/download", - "sha256": "80932e03c33999b9235edb8655bc9df3204adc9887c2f95b50cb1deb9fd54253" + "url": "https://crates.io/api/v1/crates/clap/4.4.18/download", + "sha256": "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" } }, "targets": [ @@ -6444,7 +6445,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.4.17", + "id": "clap_builder 4.4.18", "target": "clap_builder" } ], @@ -6460,17 +6461,17 @@ ], "selects": {} }, - "version": "4.4.17" + "version": "4.4.18" }, "license": "MIT OR Apache-2.0" }, - "clap-num 1.0.2": { + "clap-num 1.1.1": { "name": "clap-num", - "version": "1.0.2", + "version": "1.1.1", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/clap-num/1.0.2/download", - "sha256": "488557e97528174edaa2ee268b23a809e0c598213a4bbcb4f34575a46fda147e" + "url": "https://crates.io/api/v1/crates/clap-num/1.1.1/download", + "sha256": "0e063d263364859dc54fb064cedb7c122740cd4733644b14b176c097f51e8ab7" } }, "targets": [ @@ -6499,17 +6500,17 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.1.1" }, "license": "MIT" }, - "clap_builder 4.4.17": { + "clap_builder 4.4.18": { "name": "clap_builder", - "version": "4.4.17", + "version": "4.4.18", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/clap_builder/4.4.17/download", - "sha256": "d6c0db58c659eef1c73e444d298c27322a1b52f6927d2ad470c0c0f96fa7b8fa" + "url": "https://crates.io/api/v1/crates/clap_builder/4.4.18/download", + "sha256": "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" } }, "targets": [ @@ -6546,7 +6547,7 @@ "deps": { "common": [ { - "id": "anstream 0.6.7", + "id": "anstream 0.6.11", "target": "anstream" }, { @@ -6569,7 +6570,7 @@ "selects": {} }, "edition": "2021", - "version": "4.4.17" + "version": "4.4.18" }, "license": "MIT OR Apache-2.0" }, @@ -6615,7 +6616,7 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -6672,7 +6673,7 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -6788,7 +6789,7 @@ "deps": { "common": [ { - "id": "termcolor 1.4.0", + "id": "termcolor 1.4.1", "target": "termcolor" }, { @@ -7036,7 +7037,7 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -7087,7 +7088,7 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -7141,7 +7142,7 @@ "deps": { "common": [ { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], @@ -7175,11 +7176,11 @@ "deps": { "common": [ { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -7195,7 +7196,7 @@ "target": "ic_utils" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -7239,13 +7240,13 @@ }, "license": null }, - "console 0.15.7": { + "console 0.15.8": { "name": "console", - "version": "0.15.7", + "version": "0.15.8", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/console/0.15.7/download", - "sha256": "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" + "url": "https://crates.io/api/v1/crates/console/0.15.8/download", + "sha256": "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" } }, "targets": [ @@ -7279,7 +7280,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -7294,14 +7295,14 @@ "target": "encode_unicode" }, { - "id": "windows-sys 0.45.0", + "id": "windows-sys 0.52.0", "target": "windows_sys" } ] } }, "edition": "2018", - "version": "0.15.7" + "version": "0.15.8" }, "license": "MIT" }, @@ -7443,7 +7444,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -7491,13 +7492,13 @@ }, "license": "MIT OR Apache-2.0" }, - "cpufeatures 0.2.11": { + "cpufeatures 0.2.12": { "name": "cpufeatures", - "version": "0.2.11", + "version": "0.2.12", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/cpufeatures/0.2.11/download", - "sha256": "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" + "url": "https://crates.io/api/v1/crates/cpufeatures/0.2.12/download", + "sha256": "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" } }, "targets": [ @@ -7521,32 +7522,32 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.11" + "version": "0.2.12" }, "license": "MIT OR Apache-2.0" }, @@ -7642,7 +7643,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -7661,13 +7662,13 @@ }, "license": "MIT OR Apache-2.0" }, - "crossbeam 0.8.3": { + "crossbeam 0.8.4": { "name": "crossbeam", - "version": "0.8.3", + "version": "0.8.4", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam/0.8.3/download", - "sha256": "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920" + "url": "https://crates.io/api/v1/crates/crossbeam/0.8.4/download", + "sha256": "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" } }, "targets": [ @@ -7701,44 +7702,40 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { - "id": "crossbeam-deque 0.8.4", + "id": "crossbeam-deque 0.8.5", "target": "crossbeam_deque" }, { - "id": "crossbeam-epoch 0.9.17", + "id": "crossbeam-epoch 0.9.18", "target": "crossbeam_epoch" }, { - "id": "crossbeam-queue 0.3.10", + "id": "crossbeam-queue 0.3.11", "target": "crossbeam_queue" }, { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.8.3" + "version": "0.8.4" }, "license": "MIT OR Apache-2.0" }, - "crossbeam-channel 0.5.10": { + "crossbeam-channel 0.5.11": { "name": "crossbeam-channel", - "version": "0.5.10", + "version": "0.5.11", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam-channel/0.5.10/download", - "sha256": "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2" + "url": "https://crates.io/api/v1/crates/crossbeam-channel/0.5.11/download", + "sha256": "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" } }, "targets": [ @@ -7767,28 +7764,24 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.5.10" + "version": "0.5.11" }, "license": "MIT OR Apache-2.0" }, - "crossbeam-deque 0.8.4": { + "crossbeam-deque 0.8.5": { "name": "crossbeam-deque", - "version": "0.8.4", + "version": "0.8.5", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam-deque/0.8.4/download", - "sha256": "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" + "url": "https://crates.io/api/v1/crates/crossbeam-deque/0.8.5/download", + "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" } }, "targets": [ @@ -7809,8 +7802,6 @@ ], "crate_features": { "common": [ - "crossbeam-epoch", - "crossbeam-utils", "std" ], "selects": {} @@ -7818,32 +7809,28 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-epoch 0.9.17", + "id": "crossbeam-epoch 0.9.18", "target": "crossbeam_epoch" }, { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, - "edition": "2018", - "version": "0.8.4" + "edition": "2021", + "version": "0.8.5" }, "license": "MIT OR Apache-2.0" }, - "crossbeam-epoch 0.9.17": { + "crossbeam-epoch 0.9.18": { "name": "crossbeam-epoch", - "version": "0.9.17", + "version": "0.9.18", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam-epoch/0.9.17/download", - "sha256": "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d" + "url": "https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download", + "sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" } }, "targets": [ @@ -7872,28 +7859,24 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.9.17" + "version": "0.9.18" }, "license": "MIT OR Apache-2.0" }, - "crossbeam-queue 0.3.10": { + "crossbeam-queue 0.3.11": { "name": "crossbeam-queue", - "version": "0.3.10", + "version": "0.3.11", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam-queue/0.3.10/download", - "sha256": "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2" + "url": "https://crates.io/api/v1/crates/crossbeam-queue/0.3.11/download", + "sha256": "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" } }, "targets": [ @@ -7922,28 +7905,24 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "crossbeam_utils" } ], "selects": {} }, "edition": "2021", - "version": "0.3.10" + "version": "0.3.11" }, "license": "MIT OR Apache-2.0" }, - "crossbeam-utils 0.8.18": { + "crossbeam-utils 0.8.19": { "name": "crossbeam-utils", - "version": "0.8.18", + "version": "0.8.19", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/crossbeam-utils/0.8.18/download", - "sha256": "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" + "url": "https://crates.io/api/v1/crates/crossbeam-utils/0.8.19/download", + "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" } }, "targets": [ @@ -7980,18 +7959,14 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-utils 0.8.18", + "id": "crossbeam-utils 0.8.19", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.8.18" + "version": "0.8.19" }, "build_script_attrs": { "data_glob": [ @@ -8931,7 +8906,7 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -8997,7 +8972,7 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -9335,7 +9310,7 @@ "target": "include_dir" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" } ], @@ -9564,7 +9539,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -9707,7 +9682,7 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -9758,7 +9733,7 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -9926,7 +9901,7 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -10015,7 +9990,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -10351,7 +10326,7 @@ "deps": { "common": [ { - "id": "console 0.15.7", + "id": "console 0.15.8", "target": "console" }, { @@ -10672,7 +10647,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -10725,7 +10700,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -10777,7 +10752,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -10947,11 +10922,11 @@ "target": "candid" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "clap-num 1.0.2", + "id": "clap-num 1.1.1", "target": "clap_num" }, { @@ -11027,7 +11002,7 @@ "target": "pretty_env_logger" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -11678,7 +11653,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -11697,13 +11672,13 @@ }, "license": "MIT OR Apache-2.0" }, - "env_logger 0.10.1": { + "env_logger 0.10.2": { "name": "env_logger", - "version": "0.10.1", + "version": "0.10.2", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/env_logger/0.10.1/download", - "sha256": "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" + "url": "https://crates.io/api/v1/crates/env_logger/0.10.2/download", + "sha256": "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" } }, "targets": [ @@ -11747,18 +11722,18 @@ "target": "log" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { - "id": "termcolor 1.4.0", + "id": "termcolor 1.4.1", "target": "termcolor" } ], "selects": {} }, "edition": "2021", - "version": "0.10.1" + "version": "0.10.2" }, "license": "MIT OR Apache-2.0" }, @@ -11921,19 +11896,19 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -12030,13 +12005,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "event-listener 4.0.2": { + "event-listener 4.0.3": { "name": "event-listener", - "version": "4.0.2", + "version": "4.0.3", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/event-listener/4.0.2/download", - "sha256": "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5" + "url": "https://crates.io/api/v1/crates/event-listener/4.0.3/download", + "sha256": "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" } }, "targets": [ @@ -12083,7 +12058,7 @@ } }, "edition": "2021", - "version": "4.0.2" + "version": "4.0.3" }, "license": "Apache-2.0 OR MIT" }, @@ -12121,7 +12096,7 @@ "deps": { "common": [ { - "id": "event-listener 4.0.2", + "id": "event-listener 4.0.3", "target": "event_listener" }, { @@ -12288,7 +12263,7 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -12741,7 +12716,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -13149,13 +13124,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "futures-lite 2.1.0": { + "futures-lite 2.2.0": { "name": "futures-lite", - "version": "2.1.0", + "version": "2.2.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/futures-lite/2.1.0/download", - "sha256": "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" + "url": "https://crates.io/api/v1/crates/futures-lite/2.2.0/download", + "sha256": "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" } }, "targets": [ @@ -13199,8 +13174,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "2.1.0" + "edition": "2021", + "version": "2.2.0" }, "license": "Apache-2.0 OR MIT" }, @@ -13232,7 +13207,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -13592,7 +13567,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -13608,13 +13583,13 @@ }, "license": "MIT OR Apache-2.0" }, - "getrandom 0.2.11": { + "getrandom 0.2.12": { "name": "getrandom", - "version": "0.2.11", + "version": "0.2.12", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/getrandom/0.2.11/download", - "sha256": "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" + "url": "https://crates.io/api/v1/crates/getrandom/0.2.12/download", + "sha256": "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" } }, "targets": [ @@ -13659,14 +13634,14 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.11" + "version": "0.2.12" }, "license": "MIT OR Apache-2.0" }, @@ -13751,7 +13726,7 @@ "target": "bytes" }, { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -14042,7 +14017,7 @@ "target": "lazy_static" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -14101,7 +14076,7 @@ "target": "graphql_client_codegen" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -14222,13 +14197,13 @@ }, "license": "MIT/Apache-2.0" }, - "h2 0.3.22": { + "h2 0.3.24": { "name": "h2", - "version": "0.3.22", + "version": "0.3.24", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/h2/0.3.22/download", - "sha256": "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" + "url": "https://crates.io/api/v1/crates/h2/0.3.24/download", + "sha256": "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" } }, "targets": [ @@ -14297,7 +14272,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.22" + "version": "0.3.24" }, "license": "MIT" }, @@ -14639,7 +14614,7 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -14650,13 +14625,13 @@ }, "license": "MIT/Apache-2.0" }, - "hermit-abi 0.3.3": { + "hermit-abi 0.3.4": { "name": "hermit-abi", - "version": "0.3.3", + "version": "0.3.4", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/hermit-abi/0.3.3/download", - "sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" + "url": "https://crates.io/api/v1/crates/hermit-abi/0.3.4/download", + "sha256": "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" } }, "targets": [ @@ -14676,7 +14651,7 @@ "**" ], "edition": "2021", - "version": "0.3.3" + "version": "0.3.4" }, "license": "MIT OR Apache-2.0" }, @@ -15215,7 +15190,7 @@ "target": "bytes" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -15243,7 +15218,7 @@ "target": "once_cell" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -15360,7 +15335,7 @@ "target": "futures_util" }, { - "id": "h2 0.3.22", + "id": "h2 0.3.24", "target": "h2" }, { @@ -15645,11 +15620,11 @@ ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" } ], @@ -15985,7 +15960,7 @@ "target": "ic_verify_bls_signature" }, { - "id": "k256 0.13.2", + "id": "k256 0.13.3", "target": "k256" }, { @@ -17119,7 +17094,7 @@ "target": "candid" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -17620,7 +17595,7 @@ "deps": { "common": [ { - "id": "k256 0.13.2", + "id": "k256 0.13.3", "target": "k256" }, { @@ -17688,13 +17663,13 @@ "selects": { "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" } ], "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" } ] @@ -18454,7 +18429,7 @@ "target": "ic_types" }, { - "id": "k256 0.13.2", + "id": "k256 0.13.3", "target": "k256" }, { @@ -20487,7 +20462,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -20573,7 +20548,7 @@ "target": "candid" }, { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -20597,7 +20572,7 @@ "target": "dotenv" }, { - "id": "env_logger 0.10.1", + "id": "env_logger 0.10.2", "target": "env_logger" }, { @@ -20705,7 +20680,7 @@ "target": "prometheus_http_query" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -20813,11 +20788,11 @@ "target": "candid" }, { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { @@ -20920,7 +20895,7 @@ "target": "ic_logger" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -22417,7 +22392,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -22896,7 +22871,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" }, { @@ -23369,7 +23344,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -23413,7 +23388,7 @@ "target": "tempfile" }, { - "id": "uuid 1.6.1", + "id": "uuid 1.7.0", "target": "uuid" } ], @@ -24345,7 +24320,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -24582,7 +24557,7 @@ "selects": { "cfg(not(all(target_arch = \"wasm32\", target_os = \"unknown\")))": [ { - "id": "chrono 0.4.31", + "id": "chrono 0.4.32", "target": "chrono" } ] @@ -24754,7 +24729,7 @@ "target": "ic_sys" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -25369,7 +25344,7 @@ "deps": { "common": [ { - "id": "unicode-bidi 0.3.14", + "id": "unicode-bidi 0.3.15", "target": "unicode_bidi" }, { @@ -25457,7 +25432,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -25716,13 +25691,13 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.3", + "id": "hermit-abi 0.3.4", "target": "hermit_abi" } ], @@ -25811,13 +25786,13 @@ "selects": { "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [ { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.3", + "id": "hermit-abi 0.3.4", "target": "hermit_abi" } ], @@ -26046,13 +26021,13 @@ }, "license": "MIT OR Apache-2.0" }, - "js-sys 0.3.66": { + "js-sys 0.3.67": { "name": "js-sys", - "version": "0.3.66", + "version": "0.3.67", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/js-sys/0.3.66/download", - "sha256": "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" + "url": "https://crates.io/api/v1/crates/js-sys/0.3.67/download", + "sha256": "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" } }, "targets": [ @@ -26074,14 +26049,14 @@ "deps": { "common": [ { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2018", - "version": "0.3.66" + "version": "0.3.67" }, "license": "MIT OR Apache-2.0" }, @@ -26137,13 +26112,13 @@ }, "license": "ISC" }, - "k256 0.13.2": { + "k256 0.13.3": { "name": "k256", - "version": "0.13.2", + "version": "0.13.3", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/k256/0.13.2/download", - "sha256": "3f01b677d82ef7a676aa37e099defd83a28e15687112cafdd112d60236b6115b" + "url": "https://crates.io/api/v1/crates/k256/0.13.3/download", + "sha256": "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" } }, "targets": [ @@ -26213,7 +26188,7 @@ "selects": {} }, "edition": "2021", - "version": "0.13.2" + "version": "0.13.3" }, "license": "Apache-2.0 OR MIT" }, @@ -26311,7 +26286,7 @@ ], "cfg(target_os = \"linux\")": [ { - "id": "linux-keyutils 0.2.3", + "id": "linux-keyutils 0.2.4", "target": "linux_keyutils" }, { @@ -26421,7 +26396,7 @@ "target": "pico_args" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -26489,7 +26464,7 @@ "deps": { "common": [ { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" } ], @@ -26606,13 +26581,13 @@ }, "license": "Apache-2.0/MIT" }, - "libc 0.2.151": { + "libc 0.2.152": { "name": "libc", - "version": "0.2.151", + "version": "0.2.152", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/libc/0.2.151/download", - "sha256": "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" + "url": "https://crates.io/api/v1/crates/libc/0.2.152/download", + "sha256": "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" } }, "targets": [ @@ -26651,14 +26626,14 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "build_script_build" } ], "selects": {} }, "edition": "2015", - "version": "0.2.151" + "version": "0.2.152" }, "build_script_attrs": { "data_glob": [ @@ -26870,11 +26845,11 @@ "deps": { "common": [ { - "id": "bitflags 2.4.1", + "id": "bitflags 2.4.2", "target": "bitflags" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -26919,13 +26894,13 @@ }, "license": "MIT/Apache-2.0" }, - "linux-keyutils 0.2.3": { + "linux-keyutils 0.2.4": { "name": "linux-keyutils", - "version": "0.2.3", + "version": "0.2.4", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/linux-keyutils/0.2.3/download", - "sha256": "3f27bb67f6dd1d0bb5ab582868e4f65052e58da6401188a08f0da09cf512b84b" + "url": "https://crates.io/api/v1/crates/linux-keyutils/0.2.4/download", + "sha256": "761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e" } }, "targets": [ @@ -26954,18 +26929,18 @@ "deps": { "common": [ { - "id": "bitflags 1.3.2", + "id": "bitflags 2.4.2", "target": "bitflags" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "0.2.3" + "version": "0.2.4" }, "license": "Apache-2.0 OR MIT" }, @@ -27081,13 +27056,13 @@ }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" }, - "linux-raw-sys 0.4.12": { + "linux-raw-sys 0.4.13": { "name": "linux-raw-sys", - "version": "0.4.12", + "version": "0.4.13", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/linux-raw-sys/0.4.12/download", - "sha256": "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" + "url": "https://crates.io/api/v1/crates/linux-raw-sys/0.4.13/download", + "sha256": "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" } }, "targets": [ @@ -27108,35 +27083,16 @@ ], "crate_features": { "common": [ + "elf", + "errno", "general", "ioctl", "no_std" ], - "selects": { - "aarch64-unknown-linux-gnu": [ - "elf", - "errno" - ], - "arm-unknown-linux-gnueabi": [ - "elf", - "errno" - ], - "armv7-unknown-linux-gnueabi": [ - "elf", - "errno" - ], - "i686-unknown-linux-gnu": [ - "elf", - "errno" - ], - "x86_64-unknown-linux-gnu": [ - "elf", - "errno" - ] - } + "selects": {} }, "edition": "2021", - "version": "0.4.12" + "version": "0.4.13" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" }, @@ -27343,7 +27299,7 @@ "target": "anyhow" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { @@ -27466,7 +27422,7 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -27565,7 +27521,7 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -27589,7 +27545,7 @@ "target": "cc" }, { - "id": "pkg-config 0.3.28", + "id": "pkg-config 0.3.29", "target": "pkg_config" } ], @@ -28174,7 +28130,7 @@ "selects": { "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -28184,7 +28140,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -28301,7 +28257,7 @@ "target": "cfg_if" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -28471,15 +28427,15 @@ "target": "base64" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -28515,7 +28471,7 @@ "target": "ic_utils" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -28592,15 +28548,15 @@ "deps": { "common": [ { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -28620,7 +28576,7 @@ "target": "ic_types" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -28686,7 +28642,7 @@ "target": "ic_types" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -28757,7 +28713,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -28779,7 +28735,7 @@ "target": "log" }, { - "id": "openssl 0.10.62", + "id": "openssl 0.10.63", "target": "openssl" }, { @@ -28787,7 +28743,7 @@ "target": "openssl_probe" }, { - "id": "openssl-sys 0.9.98", + "id": "openssl-sys 0.9.99", "target": "openssl_sys" } ], @@ -28811,7 +28767,7 @@ "selects": { "cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))": [ { - "id": "openssl-sys 0.9.98", + "id": "openssl-sys 0.9.99", "target": "openssl_sys" } ] @@ -28925,7 +28881,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -28989,7 +28945,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -29024,15 +28980,15 @@ "target": "anyhow" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -29621,7 +29577,7 @@ "target": "serde" }, { - "id": "smallvec 1.11.2", + "id": "smallvec 1.13.1", "target": "smallvec" } ], @@ -30048,13 +30004,13 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], "cfg(target_os = \"hermit\")": [ { - "id": "hermit-abi 0.3.3", + "id": "hermit-abi 0.3.4", "target": "hermit_abi" } ] @@ -30150,7 +30106,7 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -30199,7 +30155,7 @@ "selects": { "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -30478,13 +30434,13 @@ }, "license": "MIT OR Apache-2.0" }, - "openssl 0.10.62": { + "openssl 0.10.63": { "name": "openssl", - "version": "0.10.62", + "version": "0.10.63", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/openssl/0.10.62/download", - "sha256": "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" + "url": "https://crates.io/api/v1/crates/openssl/0.10.63/download", + "sha256": "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" } }, "targets": [ @@ -30521,7 +30477,7 @@ "deps": { "common": [ { - "id": "bitflags 2.4.1", + "id": "bitflags 2.4.2", "target": "bitflags" }, { @@ -30533,7 +30489,7 @@ "target": "foreign_types" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -30541,11 +30497,11 @@ "target": "once_cell" }, { - "id": "openssl 0.10.62", + "id": "openssl 0.10.63", "target": "build_script_build" }, { - "id": "openssl-sys 0.9.98", + "id": "openssl-sys 0.9.99", "target": "openssl_sys", "alias": "ffi" } @@ -30562,7 +30518,7 @@ ], "selects": {} }, - "version": "0.10.62" + "version": "0.10.63" }, "build_script_attrs": { "data_glob": [ @@ -30571,7 +30527,7 @@ "link_deps": { "common": [ { - "id": "openssl-sys 0.9.98", + "id": "openssl-sys 0.9.99", "target": "openssl_sys", "alias": "ffi" } @@ -30609,7 +30565,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -30658,13 +30614,13 @@ }, "license": "MIT/Apache-2.0" }, - "openssl-sys 0.9.98": { + "openssl-sys 0.9.99": { "name": "openssl-sys", - "version": "0.9.98", + "version": "0.9.99", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/openssl-sys/0.9.98/download", - "sha256": "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" + "url": "https://crates.io/api/v1/crates/openssl-sys/0.9.99/download", + "sha256": "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" } }, "targets": [ @@ -30701,11 +30657,11 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { - "id": "openssl-sys 0.9.98", + "id": "openssl-sys 0.9.99", "target": "build_script_main" } ], @@ -30718,7 +30674,7 @@ "selects": {} }, "edition": "2018", - "version": "0.9.98" + "version": "0.9.99" }, "build_script_attrs": { "data": { @@ -30739,7 +30695,7 @@ "target": "cc" }, { - "id": "pkg-config 0.3.28", + "id": "pkg-config 0.3.29", "target": "pkg_config" }, { @@ -31180,7 +31136,7 @@ "target": "build_script_build" }, { - "id": "smallvec 1.11.2", + "id": "smallvec 1.13.1", "target": "smallvec" } ], @@ -31193,7 +31149,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -31583,7 +31539,7 @@ "target": "pest_meta" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -31887,7 +31843,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -32115,13 +32071,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "pkg-config 0.3.28": { + "pkg-config 0.3.29": { "name": "pkg-config", - "version": "0.3.28", + "version": "0.3.29", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/pkg-config/0.3.28/download", - "sha256": "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" + "url": "https://crates.io/api/v1/crates/pkg-config/0.3.29/download", + "sha256": "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" } }, "targets": [ @@ -32141,7 +32097,7 @@ "**" ], "edition": "2015", - "version": "0.3.28" + "version": "0.3.29" }, "license": "MIT OR Apache-2.0" }, @@ -32204,7 +32160,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -32247,13 +32203,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "polling 3.3.1": { + "polling 3.3.2": { "name": "polling", - "version": "3.3.1", + "version": "3.3.2", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/polling/3.3.1/download", - "sha256": "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" + "url": "https://crates.io/api/v1/crates/polling/3.3.2/download", + "sha256": "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" } }, "targets": [ @@ -32286,7 +32242,7 @@ "selects": { "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], @@ -32307,7 +32263,7 @@ } }, "edition": "2021", - "version": "3.3.1" + "version": "3.3.2" }, "license": "Apache-2.0 OR MIT" }, @@ -32466,7 +32422,7 @@ "target": "predicates_core" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" } ], @@ -32728,7 +32684,7 @@ "deps": { "common": [ { - "id": "env_logger 0.10.1", + "id": "env_logger 0.10.2", "target": "env_logger" }, { @@ -32784,7 +32740,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -32953,13 +32909,13 @@ }, "license": "MIT OR Apache-2.0" }, - "proc-macro-crate 2.0.1": { + "proc-macro-crate 3.1.0": { "name": "proc-macro-crate", - "version": "2.0.1", + "version": "3.1.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/proc-macro-crate/2.0.1/download", - "sha256": "97dc5fea232fc28d2f597b37c4876b348a40e33f3b02cc975c8d006d78d94b1a" + "url": "https://crates.io/api/v1/crates/proc-macro-crate/3.1.0/download", + "sha256": "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" } }, "targets": [ @@ -32981,18 +32937,14 @@ "deps": { "common": [ { - "id": "toml_datetime 0.6.3", - "target": "toml_datetime" - }, - { - "id": "toml_edit 0.20.2", + "id": "toml_edit 0.21.0", "target": "toml_edit" } ], "selects": {} }, "edition": "2021", - "version": "2.0.1" + "version": "3.1.0" }, "license": "MIT OR Apache-2.0" }, @@ -33045,7 +32997,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -33128,7 +33080,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -33210,13 +33162,13 @@ }, "license": "MIT OR Apache-2.0" }, - "proc-macro2 1.0.75": { + "proc-macro2 1.0.78": { "name": "proc-macro2", - "version": "1.0.75", + "version": "1.0.78", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.75/download", - "sha256": "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708" + "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.78/download", + "sha256": "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" } }, "targets": [ @@ -33254,7 +33206,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "build_script_build" }, { @@ -33265,7 +33217,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.75" + "version": "1.0.78" }, "build_script_attrs": { "data_glob": [ @@ -33395,7 +33347,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -33465,7 +33417,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -33529,11 +33481,11 @@ "target": "base64" }, { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { @@ -33569,7 +33521,7 @@ "target": "ic_types" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -33861,7 +33813,7 @@ "target": "prost_types" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -33920,7 +33872,7 @@ "target": "itertools" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -34160,7 +34112,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -34214,7 +34166,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" } ], @@ -34332,7 +34284,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -34412,7 +34364,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -34475,7 +34427,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -34737,7 +34689,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" } ], @@ -34962,7 +34914,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" }, { @@ -34981,13 +34933,13 @@ }, "license": "MIT" }, - "regex 1.10.2": { + "regex 1.10.3": { "name": "regex", - "version": "1.10.2", + "version": "1.10.3", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/regex/1.10.2/download", - "sha256": "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" + "url": "https://crates.io/api/v1/crates/regex/1.10.3/download", + "sha256": "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" } }, "targets": [ @@ -35039,7 +34991,7 @@ "target": "memchr" }, { - "id": "regex-automata 0.4.3", + "id": "regex-automata 0.4.4", "target": "regex_automata" }, { @@ -35050,7 +35002,7 @@ "selects": {} }, "edition": "2021", - "version": "1.10.2" + "version": "1.10.3" }, "license": "MIT OR Apache-2.0" }, @@ -35101,13 +35053,13 @@ }, "license": "Unlicense/MIT" }, - "regex-automata 0.4.3": { + "regex-automata 0.4.4": { "name": "regex-automata", - "version": "0.4.3", + "version": "0.4.4", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/regex-automata/0.4.3/download", - "sha256": "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" + "url": "https://crates.io/api/v1/crates/regex-automata/0.4.4/download", + "sha256": "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a" } }, "targets": [ @@ -35172,7 +35124,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.3" + "version": "0.4.4" }, "license": "MIT OR Apache-2.0" }, @@ -35716,7 +35668,7 @@ "target": "encoding_rs" }, { - "id": "h2 0.3.22", + "id": "h2 0.3.24", "target": "h2" }, { @@ -35795,15 +35747,15 @@ ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.39", + "id": "wasm-bindgen-futures 0.4.40", "target": "wasm_bindgen_futures" }, { @@ -35811,7 +35763,7 @@ "target": "wasm_streams" }, { - "id": "web-sys 0.3.66", + "id": "web-sys 0.3.67", "target": "web_sys" } ], @@ -36012,7 +35964,7 @@ "selects": { "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ { - "id": "web-sys 0.3.66", + "id": "web-sys 0.3.67", "target": "web_sys" } ], @@ -36024,7 +35976,7 @@ ], "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -36111,7 +36063,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" }, { @@ -36126,7 +36078,7 @@ "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -36266,7 +36218,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -36587,7 +36539,7 @@ ], "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -36602,7 +36554,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -36701,7 +36653,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -36728,13 +36680,13 @@ }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" }, - "rustix 0.38.28": { + "rustix 0.38.30": { "name": "rustix", - "version": "0.38.28", + "version": "0.38.30", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/rustix/0.38.28/download", - "sha256": "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" + "url": "https://crates.io/api/v1/crates/rustix/0.38.30/download", + "sha256": "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" } }, "targets": [ @@ -36776,18 +36728,18 @@ "deps": { "common": [ { - "id": "bitflags 2.4.1", + "id": "bitflags 2.4.2", "target": "bitflags" }, { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "build_script_build" } ], "selects": { "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.4.12", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], @@ -36798,7 +36750,7 @@ "alias": "libc_errno" }, { - "id": "linux-raw-sys 0.4.12", + "id": "linux-raw-sys 0.4.13", "target": "linux_raw_sys" } ], @@ -36809,7 +36761,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -36827,7 +36779,7 @@ } }, "edition": "2021", - "version": "0.38.28" + "version": "0.38.30" }, "build_script_attrs": { "data_glob": [ @@ -37570,7 +37522,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -37624,7 +37576,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -37902,7 +37854,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -38075,7 +38027,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -38122,7 +38074,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -38280,7 +38232,7 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -38432,11 +38384,11 @@ "target": "anyhow" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -38508,7 +38460,7 @@ "target": "prometheus" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -38606,7 +38558,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ { - "id": "cpufeatures 0.2.11", + "id": "cpufeatures 0.2.12", "target": "cpufeatures" } ] @@ -38663,7 +38615,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.11", + "id": "cpufeatures 0.2.12", "target": "cpufeatures" } ] @@ -38728,7 +38680,7 @@ "selects": { "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ { - "id": "cpufeatures 0.2.11", + "id": "cpufeatures 0.2.12", "target": "cpufeatures" } ] @@ -38843,7 +38795,7 @@ "deps": { "common": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -39118,7 +39070,7 @@ "target": "dotenv" }, { - "id": "env_logger 0.10.1", + "id": "env_logger 0.10.2", "target": "env_logger" }, { @@ -39154,7 +39106,7 @@ "target": "log" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -39306,7 +39258,7 @@ "deps": { "common": [ { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -39572,13 +39524,13 @@ }, "license": "Zlib" }, - "smallvec 1.11.2": { + "smallvec 1.13.1": { "name": "smallvec", - "version": "1.11.2", + "version": "1.13.1", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/smallvec/1.11.2/download", - "sha256": "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" + "url": "https://crates.io/api/v1/crates/smallvec/1.13.1/download", + "sha256": "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" } }, "targets": [ @@ -39604,7 +39556,7 @@ "selects": {} }, "edition": "2018", - "version": "1.11.2" + "version": "1.13.1" }, "license": "MIT OR Apache-2.0" }, @@ -39621,15 +39573,15 @@ "deps": { "common": [ { - "id": "clap 4.4.17", + "id": "clap 4.4.18", "target": "clap" }, { - "id": "crossbeam 0.8.3", + "id": "crossbeam 0.8.4", "target": "crossbeam" }, { - "id": "crossbeam-channel 0.5.10", + "id": "crossbeam-channel 0.5.11", "target": "crossbeam_channel" }, { @@ -39645,7 +39597,7 @@ "target": "ic_async_utils" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -39724,7 +39676,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -39777,7 +39729,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ], @@ -40072,7 +40024,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -40355,7 +40307,7 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40415,7 +40367,7 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40564,7 +40516,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40636,7 +40588,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40687,7 +40639,7 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40771,7 +40723,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -40882,7 +40834,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -41000,7 +40952,7 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -41207,7 +41159,7 @@ "selects": { "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], @@ -41293,13 +41245,13 @@ }, "license": "MIT/Apache-2.0" }, - "termcolor 1.4.0": { + "termcolor 1.4.1": { "name": "termcolor", - "version": "1.4.0", + "version": "1.4.1", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/termcolor/1.4.0/download", - "sha256": "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" + "url": "https://crates.io/api/v1/crates/termcolor/1.4.1/download", + "sha256": "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" } }, "targets": [ @@ -41330,7 +41282,7 @@ } }, "edition": "2018", - "version": "1.4.0" + "version": "1.4.1" }, "license": "Unlicense OR MIT" }, @@ -41364,7 +41316,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], @@ -41500,7 +41452,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -41639,7 +41591,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -41790,7 +41742,7 @@ "selects": { "cfg(target_family = \"unix\")": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -42130,7 +42082,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -42231,7 +42183,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -42585,13 +42537,13 @@ }, "license": "MIT" }, - "toml_datetime 0.6.3": { + "toml_datetime 0.6.5": { "name": "toml_datetime", - "version": "0.6.3", + "version": "0.6.5", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/toml_datetime/0.6.3/download", - "sha256": "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" + "url": "https://crates.io/api/v1/crates/toml_datetime/0.6.5/download", + "sha256": "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" } }, "targets": [ @@ -42611,7 +42563,7 @@ "**" ], "edition": "2021", - "version": "0.6.3" + "version": "0.6.5" }, "license": "MIT OR Apache-2.0" }, @@ -42653,11 +42605,11 @@ "target": "indexmap" }, { - "id": "toml_datetime 0.6.3", + "id": "toml_datetime 0.6.5", "target": "toml_datetime" }, { - "id": "winnow 0.5.32", + "id": "winnow 0.5.34", "target": "winnow" } ], @@ -42668,13 +42620,13 @@ }, "license": "MIT OR Apache-2.0" }, - "toml_edit 0.20.2": { + "toml_edit 0.21.0": { "name": "toml_edit", - "version": "0.20.2", + "version": "0.21.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/toml_edit/0.20.2/download", - "sha256": "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" + "url": "https://crates.io/api/v1/crates/toml_edit/0.21.0/download", + "sha256": "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" } }, "targets": [ @@ -42700,18 +42652,18 @@ "target": "indexmap" }, { - "id": "toml_datetime 0.6.3", + "id": "toml_datetime 0.6.5", "target": "toml_datetime" }, { - "id": "winnow 0.5.32", + "id": "winnow 0.5.34", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.20.2" + "version": "0.21.0" }, "license": "MIT OR Apache-2.0" }, @@ -42769,7 +42721,7 @@ "target": "bytes" }, { - "id": "h2 0.3.22", + "id": "h2 0.3.24", "target": "h2" }, { @@ -42882,7 +42834,7 @@ "target": "prettyplease" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -43182,7 +43134,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -43371,7 +43323,7 @@ "target": "once_cell" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -43379,7 +43331,7 @@ "target": "sharded_slab" }, { - "id": "smallvec 1.11.2", + "id": "smallvec 1.13.1", "target": "smallvec" }, { @@ -43814,13 +43766,13 @@ }, "license": "MIT/Apache-2.0" }, - "unicode-bidi 0.3.14": { + "unicode-bidi 0.3.15": { "name": "unicode-bidi", - "version": "0.3.14", + "version": "0.3.15", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/unicode-bidi/0.3.14/download", - "sha256": "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" + "url": "https://crates.io/api/v1/crates/unicode-bidi/0.3.15/download", + "sha256": "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" } }, "targets": [ @@ -43847,7 +43799,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.14" + "version": "0.3.15" }, "license": "MIT OR Apache-2.0" }, @@ -44311,13 +44263,13 @@ }, "license": "Apache-2.0 OR MIT" }, - "uuid 1.6.1": { + "uuid 1.7.0": { "name": "uuid", - "version": "1.6.1", + "version": "1.7.0", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/uuid/1.6.1/download", - "sha256": "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" + "url": "https://crates.io/api/v1/crates/uuid/1.7.0/download", + "sha256": "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" } }, "targets": [ @@ -44339,7 +44291,6 @@ "crate_features": { "common": [ "default", - "getrandom", "rng", "serde", "std", @@ -44350,7 +44301,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.11", + "id": "getrandom 0.2.12", "target": "getrandom" }, { @@ -44361,7 +44312,7 @@ "selects": {} }, "edition": "2018", - "version": "1.6.1" + "version": "1.7.0" }, "license": "Apache-2.0 OR MIT" }, @@ -44538,7 +44489,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" } ] @@ -44829,13 +44780,13 @@ }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" }, - "wasm-bindgen 0.2.89": { + "wasm-bindgen 0.2.90": { "name": "wasm-bindgen", - "version": "0.2.89", + "version": "0.2.90", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen/0.2.89/download", - "sha256": "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" + "url": "https://crates.io/api/v1/crates/wasm-bindgen/0.2.90/download", + "sha256": "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" } }, "targets": [ @@ -44878,7 +44829,7 @@ "target": "cfg_if" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "build_script_build" } ], @@ -44888,13 +44839,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasm-bindgen-macro 0.2.89", + "id": "wasm-bindgen-macro 0.2.90", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.89" + "version": "0.2.90" }, "build_script_attrs": { "data_glob": [ @@ -44903,13 +44854,13 @@ }, "license": "MIT OR Apache-2.0" }, - "wasm-bindgen-backend 0.2.89": { + "wasm-bindgen-backend 0.2.90": { "name": "wasm-bindgen-backend", - "version": "0.2.89", + "version": "0.2.90", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.89/download", - "sha256": "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" + "url": "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.90/download", + "sha256": "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" } }, "targets": [ @@ -44949,7 +44900,7 @@ "target": "once_cell" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -44961,24 +44912,24 @@ "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.89", + "id": "wasm-bindgen-shared 0.2.90", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2018", - "version": "0.2.89" + "version": "0.2.90" }, "license": "MIT OR Apache-2.0" }, - "wasm-bindgen-futures 0.4.39": { + "wasm-bindgen-futures 0.4.40": { "name": "wasm-bindgen-futures", - "version": "0.4.39", + "version": "0.4.40", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.39/download", - "sha256": "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" + "url": "https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.40/download", + "sha256": "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" } }, "targets": [ @@ -45004,35 +44955,35 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.66", + "id": "web-sys 0.3.67", "target": "web_sys" } ] } }, "edition": "2018", - "version": "0.4.39" + "version": "0.4.40" }, "license": "MIT OR Apache-2.0" }, - "wasm-bindgen-macro 0.2.89": { + "wasm-bindgen-macro 0.2.90": { "name": "wasm-bindgen-macro", - "version": "0.2.89", + "version": "0.2.90", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.89/download", - "sha256": "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" + "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.90/download", + "sha256": "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" } }, "targets": [ @@ -45064,24 +45015,24 @@ "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.89", + "id": "wasm-bindgen-macro-support 0.2.90", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2018", - "version": "0.2.89" + "version": "0.2.90" }, "license": "MIT OR Apache-2.0" }, - "wasm-bindgen-macro-support 0.2.89": { + "wasm-bindgen-macro-support 0.2.90": { "name": "wasm-bindgen-macro-support", - "version": "0.2.89", + "version": "0.2.90", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.89/download", - "sha256": "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" + "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.90/download", + "sha256": "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" } }, "targets": [ @@ -45109,7 +45060,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -45121,28 +45072,28 @@ "target": "syn" }, { - "id": "wasm-bindgen-backend 0.2.89", + "id": "wasm-bindgen-backend 0.2.90", "target": "wasm_bindgen_backend" }, { - "id": "wasm-bindgen-shared 0.2.89", + "id": "wasm-bindgen-shared 0.2.90", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2018", - "version": "0.2.89" + "version": "0.2.90" }, "license": "MIT OR Apache-2.0" }, - "wasm-bindgen-shared 0.2.89": { + "wasm-bindgen-shared 0.2.90": { "name": "wasm-bindgen-shared", - "version": "0.2.89", + "version": "0.2.90", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.89/download", - "sha256": "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" + "url": "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.90/download", + "sha256": "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" } }, "targets": [ @@ -45173,14 +45124,14 @@ "deps": { "common": [ { - "id": "wasm-bindgen-shared 0.2.89", + "id": "wasm-bindgen-shared 0.2.90", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.2.89" + "version": "0.2.90" }, "build_script_attrs": { "data_glob": [ @@ -45222,19 +45173,19 @@ "target": "futures_util" }, { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.39", + "id": "wasm-bindgen-futures 0.4.40", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.66", + "id": "web-sys 0.3.67", "target": "web_sys" } ], @@ -45245,13 +45196,13 @@ }, "license": "MIT OR Apache-2.0" }, - "web-sys 0.3.66": { + "web-sys 0.3.67": { "name": "web-sys", - "version": "0.3.66", + "version": "0.3.67", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/web-sys/0.3.66/download", - "sha256": "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" + "url": "https://crates.io/api/v1/crates/web-sys/0.3.67/download", + "sha256": "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" } }, "targets": [ @@ -45299,18 +45250,18 @@ "deps": { "common": [ { - "id": "js-sys 0.3.66", + "id": "js-sys 0.3.67", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.89", + "id": "wasm-bindgen 0.2.90", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2018", - "version": "0.3.66" + "version": "0.3.67" }, "license": "MIT OR Apache-2.0" }, @@ -45376,7 +45327,7 @@ "target": "either" }, { - "id": "rustix 0.38.28", + "id": "rustix 0.38.30", "target": "rustix" } ], @@ -45705,21 +45656,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "default" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -45851,6 +45787,8 @@ "Win32_System_Memory", "Win32_System_Threading", "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", "Win32_UI_Shell", "default" ], @@ -47244,13 +47182,13 @@ }, "license": "MIT OR Apache-2.0" }, - "winnow 0.5.32": { + "winnow 0.5.34": { "name": "winnow", - "version": "0.5.32", + "version": "0.5.34", "repository": { "Http": { - "url": "https://crates.io/api/v1/crates/winnow/0.5.32/download", - "sha256": "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6" + "url": "https://crates.io/api/v1/crates/winnow/0.5.34/download", + "sha256": "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" } }, "targets": [ @@ -47278,7 +47216,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.32" + "version": "0.5.34" }, "license": "MIT" }, @@ -47389,7 +47327,7 @@ "target": "once_cell" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -48025,7 +47963,7 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -48033,7 +47971,7 @@ "target": "quote" }, { - "id": "regex 1.10.2", + "id": "regex 1.10.3", "target": "regex" }, { @@ -48174,7 +48112,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -48268,7 +48206,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -48329,7 +48267,7 @@ "target": "enumflags2" }, { - "id": "libc 0.2.151", + "id": "libc 0.2.152", "target": "libc" }, { @@ -48389,7 +48327,7 @@ "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { @@ -48440,7 +48378,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.75", + "id": "proc-macro2 1.0.78", "target": "proc_macro2" }, { diff --git a/Cargo.lock b/Cargo.lock index c10d792d..3fa2aba6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,7 +31,7 @@ dependencies = [ "actix-utils", "ahash 0.8.7", "base64 0.21.7", - "bitflags 2.4.1", + "bitflags 2.4.2", "bytes", "bytestring", "derive_more 0.99.17", @@ -211,7 +211,7 @@ version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "once_cell", "version_check", ] @@ -223,7 +223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" dependencies = [ "cfg-if", - "getrandom 0.2.11", + "getrandom 0.2.12", "once_cell", "version_check", "zerocopy", @@ -261,9 +261,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.7" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" +checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" dependencies = [ "anstyle", "anstyle-parse", @@ -444,7 +444,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" dependencies = [ "concurrent-queue", - "event-listener 4.0.2", + "event-listener 4.0.3", "event-listener-strategy", "futures-core", "pin-project-lite", @@ -456,11 +456,11 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" dependencies = [ - "async-lock 3.2.0", + "async-lock 3.3.0", "async-task", "concurrent-queue", "fastrand 2.0.1", - "futures-lite 2.1.0", + "futures-lite 2.2.0", "slab", ] @@ -498,18 +498,18 @@ dependencies = [ [[package]] name = "async-io" -version = "2.2.2" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" +checksum = "fb41eb19024a91746eba0773aa5e16036045bbf45733766661099e182ea6a744" dependencies = [ - "async-lock 3.2.0", + "async-lock 3.3.0", "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.1.0", + "futures-lite 2.2.0", "parking", - "polling 3.3.1", - "rustix 0.38.28", + "polling 3.3.2", + "rustix 0.38.30", "slab", "tracing", "windows-sys 0.52.0", @@ -526,11 +526,11 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" +checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" dependencies = [ - "event-listener 4.0.2", + "event-listener 4.0.3", "event-listener-strategy", "pin-project-lite", ] @@ -548,7 +548,7 @@ dependencies = [ "cfg-if", "event-listener 3.1.0", "futures-lite 1.13.0", - "rustix 0.38.28", + "rustix 0.38.30", "windows-sys 0.48.0", ] @@ -569,13 +569,13 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" dependencies = [ - "async-io 2.2.2", + "async-io 2.3.0", "async-lock 2.8.0", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.28", + "rustix 0.38.30", "signal-hook-registry", "slab", "windows-sys 0.48.0", @@ -695,7 +695,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ "futures-core", - "getrandom 0.2.11", + "getrandom 0.2.12", "instant", "pin-project-lite", "rand 0.8.5", @@ -820,9 +820,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.1" +version = "2.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" +checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "bitvec" @@ -877,11 +877,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" dependencies = [ "async-channel 2.1.1", - "async-lock 3.2.0", + "async-lock 3.3.0", "async-task", "fastrand 2.0.1", "futures-io", - "futures-lite 2.1.0", + "futures-lite 2.2.0", "piper", "tracing", ] @@ -902,9 +902,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d4d6dafc1a3bb54687538972158f07b2c948bc57d5890df22c0739098b3028" +checksum = "f58b559fd6448c6e2fd0adb5720cd98a2506594cafa4737ff98c396f3e82f667" dependencies = [ "borsh-derive", "cfg_aliases", @@ -912,12 +912,12 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4918709cc4dd777ad2b6303ed03cb37f3ca0ccede8c1b0d28ac6db8f4710e0" +checksum = "7aadb5b6ccbd078890f6d7003694e33816e6b784358f18e15e7e6d9f065a57cd" dependencies = [ "once_cell", - "proc-macro-crate 2.0.1", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.48", @@ -942,7 +942,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" dependencies = [ "memchr", - "regex-automata 0.4.3", + "regex-automata 0.4.4", "serde", ] @@ -1161,7 +1161,7 @@ name = "canister-log-fetcher" version = "0.2.0" dependencies = [ "anyhow", - "clap 4.4.17", + "clap 4.4.18", "humantime", "log", "pretty_env_logger", @@ -1217,9 +1217,9 @@ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] name = "chrono" -version = "0.4.31" +version = "0.4.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" +checksum = "41daef31d7a747c5c847246f36de49ced6f7403b4cdabc807a97b5cc184cda7a" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1227,7 +1227,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.48.5", + "windows-targets 0.52.0", ] [[package]] @@ -1285,9 +1285,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.17" +version = "4.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80932e03c33999b9235edb8655bc9df3204adc9887c2f95b50cb1deb9fd54253" +checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" dependencies = [ "clap_builder", "clap_derive 4.4.7", @@ -1295,18 +1295,18 @@ dependencies = [ [[package]] name = "clap-num" -version = "1.0.2" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "488557e97528174edaa2ee268b23a809e0c598213a4bbcb4f34575a46fda147e" +checksum = "0e063d263364859dc54fb064cedb7c122740cd4733644b14b176c097f51e8ab7" dependencies = [ "num-traits", ] [[package]] name = "clap_builder" -version = "4.4.17" +version = "4.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6c0db58c659eef1c73e444d298c27322a1b52f6927d2ad470c0c0f96fa7b8fa" +checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" dependencies = [ "anstream", "anstyle", @@ -1461,15 +1461,15 @@ dependencies = [ [[package]] name = "console" -version = "0.15.7" +version = "0.15.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" +checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" dependencies = [ "encode_unicode", "lazy_static", "libc", "unicode-width", - "windows-sys 0.45.0", + "windows-sys 0.52.0", ] [[package]] @@ -1511,9 +1511,9 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cpufeatures" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" +checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" dependencies = [ "libc", ] @@ -1540,11 +1540,10 @@ dependencies = [ [[package]] name = "crossbeam" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" dependencies = [ - "cfg-if", "crossbeam-channel", "crossbeam-deque", "crossbeam-epoch", @@ -1554,54 +1553,46 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2" +checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" dependencies = [ - "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" dependencies = [ - "cfg-if", "crossbeam-epoch", "crossbeam-utils", ] [[package]] name = "crossbeam-epoch" -version = "0.9.17" +version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "autocfg", - "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-queue" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2" +checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" dependencies = [ - "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.18" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" -dependencies = [ - "cfg-if", -] +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "crunchy" @@ -2183,7 +2174,7 @@ dependencies = [ "anyhow", "async-trait", "candid", - "clap 4.4.17", + "clap 4.4.18", "clap-num", "colored", "cryptoki", @@ -2340,9 +2331,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" +checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" dependencies = [ "humantime", "is-terminal", @@ -2404,9 +2395,9 @@ dependencies = [ [[package]] name = "event-listener" -version = "4.0.2" +version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" dependencies = [ "concurrent-queue", "parking", @@ -2419,7 +2410,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" dependencies = [ - "event-listener 4.0.2", + "event-listener 4.0.3", "pin-project-lite", ] @@ -2625,9 +2616,9 @@ dependencies = [ [[package]] name = "futures-lite" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" +checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" dependencies = [ "fastrand 2.0.1", "futures-core", @@ -2707,9 +2698,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "libc", @@ -2836,9 +2827,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.22" +version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" +checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" dependencies = [ "bytes", "fnv", @@ -2929,9 +2920,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" +checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" [[package]] name = "hex" @@ -3554,7 +3545,7 @@ name = "ic-crypto-getrandom-for-wasm" version = "0.9.0" source = "git+https://github.com/dfinity/ic.git?rev=4b3b2ce76c4bde0c1c60fb80b0915931003b7eca#4b3b2ce76c4bde0c1c60fb80b0915931003b7eca" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", ] [[package]] @@ -4207,7 +4198,7 @@ dependencies = [ "anyhow", "candid", "chrono", - "clap 4.4.17", + "clap 4.4.18", "ic-base-types", "ic-nns-governance", "ic-registry-subnet-type", @@ -5224,7 +5215,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.3", + "hermit-abi 0.3.4", "libc", "windows-sys 0.48.0", ] @@ -5241,8 +5232,8 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" dependencies = [ - "hermit-abi 0.3.3", - "rustix 0.38.28", + "hermit-abi 0.3.4", + "rustix 0.38.30", "windows-sys 0.52.0", ] @@ -5291,9 +5282,9 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "js-sys" -version = "0.3.66" +version = "0.3.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" +checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" dependencies = [ "wasm-bindgen", ] @@ -5311,9 +5302,9 @@ dependencies = [ [[package]] name = "k256" -version = "0.13.2" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f01b677d82ef7a676aa37e099defd83a28e15687112cafdd112d60236b6115b" +checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" dependencies = [ "cfg-if", "ecdsa", @@ -5392,9 +5383,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" [[package]] name = "libc" -version = "0.2.151" +version = "0.2.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" +checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" [[package]] name = "libloading" @@ -5428,7 +5419,7 @@ version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.4.2", "libc", "redox_syscall", ] @@ -5441,11 +5432,11 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-keyutils" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f27bb67f6dd1d0bb5ab582868e4f65052e58da6401188a08f0da09cf512b84b" +checksum = "761e49ec5fd8a5a463f9b84e877c373d888935b71c6be78f3767fe2ae6bed18e" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.2", "libc", ] @@ -5463,9 +5454,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "local-channel" @@ -5505,7 +5496,7 @@ name = "log-fetcher" version = "0.2.0" dependencies = [ "anyhow", - "clap 4.4.17", + "clap 4.4.18", "log", "pretty_env_logger", "reqwest", @@ -5713,7 +5704,7 @@ dependencies = [ "anyhow", "assert_cmd", "base64 0.21.7", - "clap 4.4.17", + "clap 4.4.18", "crossbeam", "crossbeam-channel", "erased-serde 0.4.2", @@ -5743,7 +5734,7 @@ dependencies = [ name = "multiservice-discovery-downloader" version = "0.2.0" dependencies = [ - "clap 4.4.17", + "clap 4.4.18", "crossbeam", "crossbeam-channel", "futures-util", @@ -5827,7 +5818,7 @@ name = "node-status-updater" version = "0.2.0" dependencies = [ "anyhow", - "clap 4.4.17", + "clap 4.4.18", "crossbeam", "crossbeam-channel", "futures-util", @@ -6008,7 +5999,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.3.3", + "hermit-abi 0.3.4", "libc", ] @@ -6091,11 +6082,11 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "openssl" -version = "0.10.62" +version = "0.10.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" +checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.4.2", "cfg-if", "foreign-types", "libc", @@ -6123,9 +6114,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.98" +version = "0.9.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" +checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" dependencies = [ "cc", "libc", @@ -6407,9 +6398,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" +checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" [[package]] name = "polling" @@ -6429,14 +6420,14 @@ dependencies = [ [[package]] name = "polling" -version = "3.3.1" +version = "3.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" +checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" dependencies = [ "cfg-if", "concurrent-queue", "pin-project-lite", - "rustix 0.38.28", + "rustix 0.38.30", "tracing", "windows-sys 0.52.0", ] @@ -6572,12 +6563,11 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "2.0.1" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97dc5fea232fc28d2f597b37c4876b348a40e33f3b02cc975c8d006d78d94b1a" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" dependencies = [ - "toml_datetime", - "toml_edit 0.20.2", + "toml_edit 0.21.0", ] [[package]] @@ -6612,9 +6602,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.75" +version = "1.0.78" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708" +checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" dependencies = [ "unicode-ident", ] @@ -6669,7 +6659,7 @@ version = "0.2.0" dependencies = [ "anyhow", "base64 0.21.7", - "clap 4.4.17", + "clap 4.4.18", "config-writer-common", "crossbeam", "futures-util", @@ -6909,7 +6899,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", ] [[package]] @@ -6960,20 +6950,20 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "libredox", "thiserror", ] [[package]] name = "regex" -version = "1.10.2" +version = "1.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.3", + "regex-automata 0.4.4", "regex-syntax 0.8.2", ] @@ -6988,9 +6978,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" +checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a" dependencies = [ "aho-corasick", "memchr", @@ -7168,7 +7158,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "getrandom 0.2.11", + "getrandom 0.2.12", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -7284,14 +7274,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.28" +version = "0.38.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" +checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.4.2", "errno", "libc", - "linux-raw-sys 0.4.12", + "linux-raw-sys 0.4.13", "windows-sys 0.52.0", ] @@ -7833,15 +7823,15 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.11.2" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" +checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" [[package]] name = "sns-downloader" version = "0.2.0" dependencies = [ - "clap 4.4.17", + "clap 4.4.18", "crossbeam", "crossbeam-channel", "futures-util", @@ -8143,7 +8133,7 @@ dependencies = [ "cfg-if", "fastrand 2.0.1", "redox_syscall", - "rustix 0.38.28", + "rustix 0.38.30", "windows-sys 0.52.0", ] @@ -8160,9 +8150,9 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" +checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" dependencies = [ "winapi-util", ] @@ -8173,7 +8163,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix 0.38.28", + "rustix 0.38.30", "windows-sys 0.48.0", ] @@ -8412,9 +8402,9 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" [[package]] name = "toml_edit" @@ -8429,9 +8419,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.2" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" dependencies = [ "indexmap 2.1.0", "toml_datetime", @@ -8648,9 +8638,9 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.14" +version = "0.3.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" [[package]] name = "unicode-ident" @@ -8744,11 +8734,11 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "serde", ] @@ -8845,9 +8835,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" +checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -8855,9 +8845,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" +checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" dependencies = [ "bumpalo", "log", @@ -8870,9 +8860,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.39" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" +checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" dependencies = [ "cfg-if", "js-sys", @@ -8882,9 +8872,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" +checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -8892,9 +8882,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" +checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" dependencies = [ "proc-macro2", "quote", @@ -8905,9 +8895,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" +checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" [[package]] name = "wasm-streams" @@ -8924,9 +8914,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.66" +version = "0.3.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" +checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" dependencies = [ "js-sys", "wasm-bindgen", @@ -8947,7 +8937,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.28", + "rustix 0.38.30", ] [[package]] @@ -9190,9 +9180,9 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "winnow" -version = "0.5.32" +version = "0.5.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6" +checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" dependencies = [ "memchr", ] diff --git a/poetry.lock b/poetry.lock index 358f423b..3f88da50 100644 --- a/poetry.lock +++ b/poetry.lock @@ -199,13 +199,13 @@ typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} [[package]] name = "atlassian-python-api" -version = "3.41.8" +version = "3.41.9" description = "Python Atlassian REST API Wrapper" optional = false python-versions = "*" files = [ - {file = "atlassian-python-api-3.41.8.tar.gz", hash = "sha256:ce678d89372578db06f5f5eadd6fc2abccc424608053dc6d83e7afea5070b021"}, - {file = "atlassian_python_api-3.41.8-py3-none-any.whl", hash = "sha256:506b3aa8325ba0df4edd6618ac4039c0aafa48795d16d143a270b6c1a68bd4fc"}, + {file = "atlassian-python-api-3.41.9.tar.gz", hash = "sha256:3682b9539c1e31fe53b020bdcbce532ca5655fc2cc98cc0e7f9572d92afcc13b"}, + {file = "atlassian_python_api-3.41.9-py3-none-any.whl", hash = "sha256:818294e2a89222dbda2fae03332317b2a770858e62fae4b62e6b579e0b31109b"}, ] [package.dependencies] @@ -905,47 +905,56 @@ files = [ [[package]] name = "cryptography" -version = "41.0.7" +version = "42.0.0" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-41.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf"}, - {file = "cryptography-41.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:928258ba5d6f8ae644e764d0f996d61a8777559f72dfeb2eea7e2fe0ad6e782d"}, - {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a1b41bc97f1ad230a41657d9155113c7521953869ae57ac39ac7f1bb471469a"}, - {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:841df4caa01008bad253bce2a6f7b47f86dc9f08df4b433c404def869f590a15"}, - {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5429ec739a29df2e29e15d082f1d9ad683701f0ec7709ca479b3ff2708dae65a"}, - {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:43f2552a2378b44869fe8827aa19e69512e3245a219104438692385b0ee119d1"}, - {file = "cryptography-41.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:af03b32695b24d85a75d40e1ba39ffe7db7ffcb099fe507b39fd41a565f1b157"}, - {file = "cryptography-41.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:49f0805fc0b2ac8d4882dd52f4a3b935b210935d500b6b805f321addc8177406"}, - {file = "cryptography-41.0.7-cp37-abi3-win32.whl", hash = "sha256:f983596065a18a2183e7f79ab3fd4c475205b839e02cbc0efbbf9666c4b3083d"}, - {file = "cryptography-41.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:90452ba79b8788fa380dfb587cca692976ef4e757b194b093d845e8d99f612f2"}, - {file = "cryptography-41.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:079b85658ea2f59c4f43b70f8119a52414cdb7be34da5d019a77bf96d473b960"}, - {file = "cryptography-41.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b640981bf64a3e978a56167594a0e97db71c89a479da8e175d8bb5be5178c003"}, - {file = "cryptography-41.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e3114da6d7f95d2dee7d3f4eec16dacff819740bbab931aff8648cb13c5ff5e7"}, - {file = "cryptography-41.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d5ec85080cce7b0513cfd233914eb8b7bbd0633f1d1703aa28d1dd5a72f678ec"}, - {file = "cryptography-41.0.7-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7a698cb1dac82c35fcf8fe3417a3aaba97de16a01ac914b89a0889d364d2f6be"}, - {file = "cryptography-41.0.7-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:37a138589b12069efb424220bf78eac59ca68b95696fc622b6ccc1c0a197204a"}, - {file = "cryptography-41.0.7-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:68a2dec79deebc5d26d617bfdf6e8aab065a4f34934b22d3b5010df3ba36612c"}, - {file = "cryptography-41.0.7-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:09616eeaef406f99046553b8a40fbf8b1e70795a91885ba4c96a70793de5504a"}, - {file = "cryptography-41.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48a0476626da912a44cc078f9893f292f0b3e4c739caf289268168d8f4702a39"}, - {file = "cryptography-41.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c7f3201ec47d5207841402594f1d7950879ef890c0c495052fa62f58283fde1a"}, - {file = "cryptography-41.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c5ca78485a255e03c32b513f8c2bc39fedb7f5c5f8535545bdc223a03b24f248"}, - {file = "cryptography-41.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d6c391c021ab1f7a82da5d8d0b3cee2f4b2c455ec86c8aebbc84837a631ff309"}, - {file = "cryptography-41.0.7.tar.gz", hash = "sha256:13f93ce9bea8016c253b34afc6bd6a75993e5c40672ed5405a9c832f0d4a00bc"}, + {file = "cryptography-42.0.0-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:c640b0ef54138fde761ec99a6c7dc4ce05e80420262c20fa239e694ca371d434"}, + {file = "cryptography-42.0.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:678cfa0d1e72ef41d48993a7be75a76b0725d29b820ff3cfd606a5b2b33fda01"}, + {file = "cryptography-42.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:146e971e92a6dd042214b537a726c9750496128453146ab0ee8971a0299dc9bd"}, + {file = "cryptography-42.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87086eae86a700307b544625e3ba11cc600c3c0ef8ab97b0fda0705d6db3d4e3"}, + {file = "cryptography-42.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:0a68bfcf57a6887818307600c3c0ebc3f62fbb6ccad2240aa21887cda1f8df1b"}, + {file = "cryptography-42.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5a217bca51f3b91971400890905a9323ad805838ca3fa1e202a01844f485ee87"}, + {file = "cryptography-42.0.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ca20550bb590db16223eb9ccc5852335b48b8f597e2f6f0878bbfd9e7314eb17"}, + {file = "cryptography-42.0.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:33588310b5c886dfb87dba5f013b8d27df7ffd31dc753775342a1e5ab139e59d"}, + {file = "cryptography-42.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9515ea7f596c8092fdc9902627e51b23a75daa2c7815ed5aa8cf4f07469212ec"}, + {file = "cryptography-42.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:35cf6ed4c38f054478a9df14f03c1169bb14bd98f0b1705751079b25e1cb58bc"}, + {file = "cryptography-42.0.0-cp37-abi3-win32.whl", hash = "sha256:8814722cffcfd1fbd91edd9f3451b88a8f26a5fd41b28c1c9193949d1c689dc4"}, + {file = "cryptography-42.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:a2a8d873667e4fd2f34aedab02ba500b824692c6542e017075a2efc38f60a4c0"}, + {file = "cryptography-42.0.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:8fedec73d590fd30c4e3f0d0f4bc961aeca8390c72f3eaa1a0874d180e868ddf"}, + {file = "cryptography-42.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be41b0c7366e5549265adf2145135dca107718fa44b6e418dc7499cfff6b4689"}, + {file = "cryptography-42.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ca482ea80626048975360c8e62be3ceb0f11803180b73163acd24bf014133a0"}, + {file = "cryptography-42.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:c58115384bdcfe9c7f644c72f10f6f42bed7cf59f7b52fe1bf7ae0a622b3a139"}, + {file = "cryptography-42.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:56ce0c106d5c3fec1038c3cca3d55ac320a5be1b44bf15116732d0bc716979a2"}, + {file = "cryptography-42.0.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:324721d93b998cb7367f1e6897370644751e5580ff9b370c0a50dc60a2003513"}, + {file = "cryptography-42.0.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:d97aae66b7de41cdf5b12087b5509e4e9805ed6f562406dfcf60e8481a9a28f8"}, + {file = "cryptography-42.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:85f759ed59ffd1d0baad296e72780aa62ff8a71f94dc1ab340386a1207d0ea81"}, + {file = "cryptography-42.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:206aaf42e031b93f86ad60f9f5d9da1b09164f25488238ac1dc488334eb5e221"}, + {file = "cryptography-42.0.0-cp39-abi3-win32.whl", hash = "sha256:74f18a4c8ca04134d2052a140322002fef535c99cdbc2a6afc18a8024d5c9d5b"}, + {file = "cryptography-42.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:14e4b909373bc5bf1095311fa0f7fcabf2d1a160ca13f1e9e467be1ac4cbdf94"}, + {file = "cryptography-42.0.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3005166a39b70c8b94455fdbe78d87a444da31ff70de3331cdec2c568cf25b7e"}, + {file = "cryptography-42.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:be14b31eb3a293fc6e6aa2807c8a3224c71426f7c4e3639ccf1a2f3ffd6df8c3"}, + {file = "cryptography-42.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:bd7cf7a8d9f34cc67220f1195884151426ce616fdc8285df9054bfa10135925f"}, + {file = "cryptography-42.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c310767268d88803b653fffe6d6f2f17bb9d49ffceb8d70aed50ad45ea49ab08"}, + {file = "cryptography-42.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bdce70e562c69bb089523e75ef1d9625b7417c6297a76ac27b1b8b1eb51b7d0f"}, + {file = "cryptography-42.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e9326ca78111e4c645f7e49cbce4ed2f3f85e17b61a563328c85a5208cf34440"}, + {file = "cryptography-42.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:69fd009a325cad6fbfd5b04c711a4da563c6c4854fc4c9544bff3088387c77c0"}, + {file = "cryptography-42.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:988b738f56c665366b1e4bfd9045c3efae89ee366ca3839cd5af53eaa1401bce"}, + {file = "cryptography-42.0.0.tar.gz", hash = "sha256:6cf9b76d6e93c62114bd19485e5cb003115c134cf9ce91f8ac924c44f8c8c3f4"}, ] [package.dependencies] -cffi = ">=1.12" +cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} [package.extras] docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] nox = ["nox"] -pep8test = ["black", "check-sdist", "mypy", "ruff"] +pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -1769,13 +1778,13 @@ files = [ [[package]] name = "jsonschema" -version = "4.21.0" +version = "4.21.1" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.21.0-py3-none-any.whl", hash = "sha256:70a09719d375c0a2874571b363c8a24be7df8071b80c9aa76bc4551e7297c63c"}, - {file = "jsonschema-4.21.0.tar.gz", hash = "sha256:3ba18e27f7491ea4a1b22edce00fb820eec968d397feb3f9cb61d5894bb38167"}, + {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, + {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, ] [package.dependencies] @@ -1973,13 +1982,13 @@ test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0)", "pytest-console-sc [[package]] name = "jupyter-server-terminals" -version = "0.5.1" +version = "0.5.2" description = "A Jupyter Server Extension Providing Terminals." optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_server_terminals-0.5.1-py3-none-any.whl", hash = "sha256:5e63e947ddd97bb2832db5ef837a258d9ccd4192cd608c1270850ad947ae5dd7"}, - {file = "jupyter_server_terminals-0.5.1.tar.gz", hash = "sha256:16d3be9cf48be6a1f943f3a6c93c033be259cf4779184c66421709cf63dccfea"}, + {file = "jupyter_server_terminals-0.5.2-py3-none-any.whl", hash = "sha256:1b80c12765da979513c42c90215481bbc39bd8ae7c0350b4f85bc3eb58d0fa80"}, + {file = "jupyter_server_terminals-0.5.2.tar.gz", hash = "sha256:396b5ccc0881e550bf0ee7012c6ef1b53edbde69e67cab1d56e89711b46052e8"}, ] [package.dependencies] @@ -2281,71 +2290,71 @@ testing = ["coverage", "pyyaml"] [[package]] name = "markupsafe" -version = "2.1.3" +version = "2.1.4" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.7" files = [ - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, - {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:de8153a7aae3835484ac168a9a9bdaa0c5eee4e0bc595503c95d53b942879c84"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e888ff76ceb39601c59e219f281466c6d7e66bd375b4ec1ce83bcdc68306796b"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0b838c37ba596fcbfca71651a104a611543077156cb0a26fe0c475e1f152ee8"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac1ebf6983148b45b5fa48593950f90ed6d1d26300604f321c74a9ca1609f8e"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0fbad3d346df8f9d72622ac71b69565e621ada2ce6572f37c2eae8dacd60385d"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5291d98cd3ad9a562883468c690a2a238c4a6388ab3bd155b0c75dd55ece858"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a7cc49ef48a3c7a0005a949f3c04f8baa5409d3f663a1b36f0eba9bfe2a0396e"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b83041cda633871572f0d3c41dddd5582ad7d22f65a72eacd8d3d6d00291df26"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-win32.whl", hash = "sha256:0c26f67b3fe27302d3a412b85ef696792c4a2386293c53ba683a89562f9399b0"}, + {file = "MarkupSafe-2.1.4-cp310-cp310-win_amd64.whl", hash = "sha256:a76055d5cb1c23485d7ddae533229039b850db711c554a12ea64a0fd8a0129e2"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9e9e3c4020aa2dc62d5dd6743a69e399ce3de58320522948af6140ac959ab863"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0042d6a9880b38e1dd9ff83146cc3c9c18a059b9360ceae207805567aacccc69"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d03fea4c4e9fd0ad75dc2e7e2b6757b80c152c032ea1d1de487461d8140efc"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ab3a886a237f6e9c9f4f7d272067e712cdb4efa774bef494dccad08f39d8ae6"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abf5ebbec056817057bfafc0445916bb688a255a5146f900445d081db08cbabb"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e1a0d1924a5013d4f294087e00024ad25668234569289650929ab871231668e7"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e7902211afd0af05fbadcc9a312e4cf10f27b779cf1323e78d52377ae4b72bea"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c669391319973e49a7c6230c218a1e3044710bc1ce4c8e6eb71f7e6d43a2c131"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-win32.whl", hash = "sha256:31f57d64c336b8ccb1966d156932f3daa4fee74176b0fdc48ef580be774aae74"}, + {file = "MarkupSafe-2.1.4-cp311-cp311-win_amd64.whl", hash = "sha256:54a7e1380dfece8847c71bf7e33da5d084e9b889c75eca19100ef98027bd9f56"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:a76cd37d229fc385738bd1ce4cba2a121cf26b53864c1772694ad0ad348e509e"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:987d13fe1d23e12a66ca2073b8d2e2a75cec2ecb8eab43ff5624ba0ad42764bc"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5244324676254697fe5c181fc762284e2c5fceeb1c4e3e7f6aca2b6f107e60dc"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78bc995e004681246e85e28e068111a4c3f35f34e6c62da1471e844ee1446250"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a4d176cfdfde84f732c4a53109b293d05883e952bbba68b857ae446fa3119b4f"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f9917691f410a2e0897d1ef99619fd3f7dd503647c8ff2475bf90c3cf222ad74"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:f06e5a9e99b7df44640767842f414ed5d7bedaaa78cd817ce04bbd6fd86e2dd6"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:396549cea79e8ca4ba65525470d534e8a41070e6b3500ce2414921099cb73e8d"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-win32.whl", hash = "sha256:f6be2d708a9d0e9b0054856f07ac7070fbe1754be40ca8525d5adccdbda8f475"}, + {file = "MarkupSafe-2.1.4-cp312-cp312-win_amd64.whl", hash = "sha256:5045e892cfdaecc5b4c01822f353cf2c8feb88a6ec1c0adef2a2e705eef0f656"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7a07f40ef8f0fbc5ef1000d0c78771f4d5ca03b4953fc162749772916b298fc4"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d18b66fe626ac412d96c2ab536306c736c66cf2a31c243a45025156cc190dc8a"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:698e84142f3f884114ea8cf83e7a67ca8f4ace8454e78fe960646c6c91c63bfa"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a3b78a5af63ec10d8604180380c13dcd870aba7928c1fe04e881d5c792dc4e"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:15866d7f2dc60cfdde12ebb4e75e41be862348b4728300c36cdf405e258415ec"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:6aa5e2e7fc9bc042ae82d8b79d795b9a62bd8f15ba1e7594e3db243f158b5565"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:54635102ba3cf5da26eb6f96c4b8c53af8a9c0d97b64bdcb592596a6255d8518"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-win32.whl", hash = "sha256:3583a3a3ab7958e354dc1d25be74aee6228938312ee875a22330c4dc2e41beb0"}, + {file = "MarkupSafe-2.1.4-cp37-cp37m-win_amd64.whl", hash = "sha256:d6e427c7378c7f1b2bef6a344c925b8b63623d3321c09a237b7cc0e77dd98ceb"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:bf1196dcc239e608605b716e7b166eb5faf4bc192f8a44b81e85251e62584bd2"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4df98d4a9cd6a88d6a585852f56f2155c9cdb6aec78361a19f938810aa020954"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b835aba863195269ea358cecc21b400276747cc977492319fd7682b8cd2c253d"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23984d1bdae01bee794267424af55eef4dfc038dc5d1272860669b2aa025c9e3"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c98c33ffe20e9a489145d97070a435ea0679fddaabcafe19982fe9c971987d5"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9896fca4a8eb246defc8b2a7ac77ef7553b638e04fbf170bff78a40fa8a91474"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b0fe73bac2fed83839dbdbe6da84ae2a31c11cfc1c777a40dbd8ac8a6ed1560f"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c7556bafeaa0a50e2fe7dc86e0382dea349ebcad8f010d5a7dc6ba568eaaa789"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-win32.whl", hash = "sha256:fc1a75aa8f11b87910ffd98de62b29d6520b6d6e8a3de69a70ca34dea85d2a8a"}, + {file = "MarkupSafe-2.1.4-cp38-cp38-win_amd64.whl", hash = "sha256:3a66c36a3864df95e4f62f9167c734b3b1192cb0851b43d7cc08040c074c6279"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:765f036a3d00395a326df2835d8f86b637dbaf9832f90f5d196c3b8a7a5080cb"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:21e7af8091007bf4bebf4521184f4880a6acab8df0df52ef9e513d8e5db23411"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5c31fe855c77cad679b302aabc42d724ed87c043b1432d457f4976add1c2c3e"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7653fa39578957bc42e5ebc15cf4361d9e0ee4b702d7d5ec96cdac860953c5b4"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47bb5f0142b8b64ed1399b6b60f700a580335c8e1c57f2f15587bd072012decc"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:fe8512ed897d5daf089e5bd010c3dc03bb1bdae00b35588c49b98268d4a01e00"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:36d7626a8cca4d34216875aee5a1d3d654bb3dac201c1c003d182283e3205949"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b6f14a9cd50c3cb100eb94b3273131c80d102e19bb20253ac7bd7336118a673a"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-win32.whl", hash = "sha256:c8f253a84dbd2c63c19590fa86a032ef3d8cc18923b8049d91bcdeeb2581fbf6"}, + {file = "MarkupSafe-2.1.4-cp39-cp39-win_amd64.whl", hash = "sha256:8b570a1537367b52396e53325769608f2a687ec9a4363647af1cded8928af959"}, + {file = "MarkupSafe-2.1.4.tar.gz", hash = "sha256:3aae9af4cac263007fd6309c64c6ab4506dd2b79382d9d19a1994f9240b8db4f"}, ] [[package]] @@ -2704,13 +2713,13 @@ test = ["pep440", "pre-commit", "pytest", "testpath"] [[package]] name = "nest-asyncio" -version = "1.5.9" +version = "1.6.0" description = "Patch asyncio to allow nested event loops" optional = false python-versions = ">=3.5" files = [ - {file = "nest_asyncio-1.5.9-py3-none-any.whl", hash = "sha256:61ec07ef052e72e3de22045b81b2cc7d71fceb04c568ba0b2e4b2f9f5231bec2"}, - {file = "nest_asyncio-1.5.9.tar.gz", hash = "sha256:d1e1144e9c6e3e6392e0fcf5211cb1c8374b5648a98f1ebe48e5336006b41907"}, + {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, + {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, ] [[package]] @@ -2830,13 +2839,13 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "overrides" -version = "7.4.0" +version = "7.6.0" description = "A decorator to automatically detect mismatch when overriding a method." optional = false python-versions = ">=3.6" files = [ - {file = "overrides-7.4.0-py3-none-any.whl", hash = "sha256:3ad24583f86d6d7a49049695efe9933e67ba62f0c7625d53c59fa832ce4b8b7d"}, - {file = "overrides-7.4.0.tar.gz", hash = "sha256:9502a3cca51f4fac40b5feca985b6703a5c1f6ad815588a7ca9e285b9dca6757"}, + {file = "overrides-7.6.0-py3-none-any.whl", hash = "sha256:c36e6635519ea9c5b043b65c36d4b886aee8bd45b7d4681d2a6df0898df4b654"}, + {file = "overrides-7.6.0.tar.gz", hash = "sha256:01e15bbbf15b766f0675c275baa1878bd1c7dc9bc7b9ee13e677cdba93dc1bd9"}, ] [[package]] @@ -2862,36 +2871,40 @@ files = [ [[package]] name = "pandas" -version = "2.1.4" +version = "2.2.0" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" files = [ - {file = "pandas-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bdec823dc6ec53f7a6339a0e34c68b144a7a1fd28d80c260534c39c62c5bf8c9"}, - {file = "pandas-2.1.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:294d96cfaf28d688f30c918a765ea2ae2e0e71d3536754f4b6de0ea4a496d034"}, - {file = "pandas-2.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b728fb8deba8905b319f96447a27033969f3ea1fea09d07d296c9030ab2ed1d"}, - {file = "pandas-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00028e6737c594feac3c2df15636d73ace46b8314d236100b57ed7e4b9ebe8d9"}, - {file = "pandas-2.1.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:426dc0f1b187523c4db06f96fb5c8d1a845e259c99bda74f7de97bd8a3bb3139"}, - {file = "pandas-2.1.4-cp310-cp310-win_amd64.whl", hash = "sha256:f237e6ca6421265643608813ce9793610ad09b40154a3344a088159590469e46"}, - {file = "pandas-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b7d852d16c270e4331f6f59b3e9aa23f935f5c4b0ed2d0bc77637a8890a5d092"}, - {file = "pandas-2.1.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7d5f2f54f78164b3d7a40f33bf79a74cdee72c31affec86bfcabe7e0789821"}, - {file = "pandas-2.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0aa6e92e639da0d6e2017d9ccff563222f4eb31e4b2c3cf32a2a392fc3103c0d"}, - {file = "pandas-2.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d797591b6846b9db79e65dc2d0d48e61f7db8d10b2a9480b4e3faaddc421a171"}, - {file = "pandas-2.1.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d2d3e7b00f703aea3945995ee63375c61b2e6aa5aa7871c5d622870e5e137623"}, - {file = "pandas-2.1.4-cp311-cp311-win_amd64.whl", hash = "sha256:dc9bf7ade01143cddc0074aa6995edd05323974e6e40d9dbde081021ded8510e"}, - {file = "pandas-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:482d5076e1791777e1571f2e2d789e940dedd927325cc3cb6d0800c6304082f6"}, - {file = "pandas-2.1.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8a706cfe7955c4ca59af8c7a0517370eafbd98593155b48f10f9811da440248b"}, - {file = "pandas-2.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0513a132a15977b4a5b89aabd304647919bc2169eac4c8536afb29c07c23540"}, - {file = "pandas-2.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9f17f2b6fc076b2a0078862547595d66244db0f41bf79fc5f64a5c4d635bead"}, - {file = "pandas-2.1.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:45d63d2a9b1b37fa6c84a68ba2422dc9ed018bdaa668c7f47566a01188ceeec1"}, - {file = "pandas-2.1.4-cp312-cp312-win_amd64.whl", hash = "sha256:f69b0c9bb174a2342818d3e2778584e18c740d56857fc5cdb944ec8bbe4082cf"}, - {file = "pandas-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3f06bda01a143020bad20f7a85dd5f4a1600112145f126bc9e3e42077c24ef34"}, - {file = "pandas-2.1.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab5796839eb1fd62a39eec2916d3e979ec3130509930fea17fe6f81e18108f6a"}, - {file = "pandas-2.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edbaf9e8d3a63a9276d707b4d25930a262341bca9874fcb22eff5e3da5394732"}, - {file = "pandas-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ebfd771110b50055712b3b711b51bee5d50135429364d0498e1213a7adc2be8"}, - {file = "pandas-2.1.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8ea107e0be2aba1da619cc6ba3f999b2bfc9669a83554b1904ce3dd9507f0860"}, - {file = "pandas-2.1.4-cp39-cp39-win_amd64.whl", hash = "sha256:d65148b14788b3758daf57bf42725caa536575da2b64df9964c563b015230984"}, - {file = "pandas-2.1.4.tar.gz", hash = "sha256:fcb68203c833cc735321512e13861358079a96c174a61f5116a1de89c58c0ef7"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1"}, + {file = "pandas-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71"}, + {file = "pandas-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042"}, + {file = "pandas-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7"}, + {file = "pandas-2.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae"}, + {file = "pandas-2.2.0.tar.gz", hash = "sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2"}, ] [package.dependencies] @@ -2902,31 +2915,31 @@ numpy = [ ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" -tzdata = ">=2022.1" +tzdata = ">=2022.7" [package.extras] -all = ["PyQt5 (>=5.15.6)", "SQLAlchemy (>=1.4.36)", "beautifulsoup4 (>=4.11.1)", "bottleneck (>=1.3.4)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=0.8.1)", "fsspec (>=2022.05.0)", "gcsfs (>=2022.05.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.8.0)", "matplotlib (>=3.6.1)", "numba (>=0.55.2)", "numexpr (>=2.8.0)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pandas-gbq (>=0.17.5)", "psycopg2 (>=2.9.3)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.5)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "pyxlsb (>=1.0.9)", "qtpy (>=2.2.0)", "s3fs (>=2022.05.0)", "scipy (>=1.8.1)", "tables (>=3.7.0)", "tabulate (>=0.8.10)", "xarray (>=2022.03.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)", "zstandard (>=0.17.0)"] -aws = ["s3fs (>=2022.05.0)"] -clipboard = ["PyQt5 (>=5.15.6)", "qtpy (>=2.2.0)"] -compression = ["zstandard (>=0.17.0)"] -computation = ["scipy (>=1.8.1)", "xarray (>=2022.03.0)"] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] consortium-standard = ["dataframe-api-compat (>=0.1.7)"] -excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pyxlsb (>=1.0.9)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)"] -feather = ["pyarrow (>=7.0.0)"] -fss = ["fsspec (>=2022.05.0)"] -gcp = ["gcsfs (>=2022.05.0)", "pandas-gbq (>=0.17.5)"] -hdf5 = ["tables (>=3.7.0)"] -html = ["beautifulsoup4 (>=4.11.1)", "html5lib (>=1.1)", "lxml (>=4.8.0)"] -mysql = ["SQLAlchemy (>=1.4.36)", "pymysql (>=1.0.2)"] -output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.8.10)"] -parquet = ["pyarrow (>=7.0.0)"] -performance = ["bottleneck (>=1.3.4)", "numba (>=0.55.2)", "numexpr (>=2.8.0)"] -plot = ["matplotlib (>=3.6.1)"] -postgresql = ["SQLAlchemy (>=1.4.36)", "psycopg2 (>=2.9.3)"] -spss = ["pyreadstat (>=1.1.5)"] -sql-other = ["SQLAlchemy (>=1.4.36)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] -xml = ["lxml (>=4.8.0)"] +xml = ["lxml (>=4.9.2)"] [[package]] name = "pandocfilters" @@ -3234,27 +3247,27 @@ wcwidth = "*" [[package]] name = "psutil" -version = "5.9.7" +version = "5.9.8" description = "Cross-platform lib for process and system monitoring in Python." optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "psutil-5.9.7-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:0bd41bf2d1463dfa535942b2a8f0e958acf6607ac0be52265ab31f7923bcd5e6"}, - {file = "psutil-5.9.7-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:5794944462509e49d4d458f4dbfb92c47539e7d8d15c796f141f474010084056"}, - {file = "psutil-5.9.7-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:fe361f743cb3389b8efda21980d93eb55c1f1e3898269bc9a2a1d0bb7b1f6508"}, - {file = "psutil-5.9.7-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:e469990e28f1ad738f65a42dcfc17adaed9d0f325d55047593cb9033a0ab63df"}, - {file = "psutil-5.9.7-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:3c4747a3e2ead1589e647e64aad601981f01b68f9398ddf94d01e3dc0d1e57c7"}, - {file = "psutil-5.9.7-cp27-none-win32.whl", hash = "sha256:1d4bc4a0148fdd7fd8f38e0498639ae128e64538faa507df25a20f8f7fb2341c"}, - {file = "psutil-5.9.7-cp27-none-win_amd64.whl", hash = "sha256:4c03362e280d06bbbfcd52f29acd79c733e0af33d707c54255d21029b8b32ba6"}, - {file = "psutil-5.9.7-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ea36cc62e69a13ec52b2f625c27527f6e4479bca2b340b7a452af55b34fcbe2e"}, - {file = "psutil-5.9.7-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1132704b876e58d277168cd729d64750633d5ff0183acf5b3c986b8466cd0284"}, - {file = "psutil-5.9.7-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe8b7f07948f1304497ce4f4684881250cd859b16d06a1dc4d7941eeb6233bfe"}, - {file = "psutil-5.9.7-cp36-cp36m-win32.whl", hash = "sha256:b27f8fdb190c8c03914f908a4555159327d7481dac2f01008d483137ef3311a9"}, - {file = "psutil-5.9.7-cp36-cp36m-win_amd64.whl", hash = "sha256:44969859757f4d8f2a9bd5b76eba8c3099a2c8cf3992ff62144061e39ba8568e"}, - {file = "psutil-5.9.7-cp37-abi3-win32.whl", hash = "sha256:c727ca5a9b2dd5193b8644b9f0c883d54f1248310023b5ad3e92036c5e2ada68"}, - {file = "psutil-5.9.7-cp37-abi3-win_amd64.whl", hash = "sha256:f37f87e4d73b79e6c5e749440c3113b81d1ee7d26f21c19c47371ddea834f414"}, - {file = "psutil-5.9.7-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:032f4f2c909818c86cea4fe2cc407f1c0f0cde8e6c6d702b28b8ce0c0d143340"}, - {file = "psutil-5.9.7.tar.gz", hash = "sha256:3f02134e82cfb5d089fddf20bb2e03fd5cd52395321d1c8458a9e58500ff417c"}, + {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"}, + {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"}, + {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"}, + {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"}, + {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"}, + {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"}, + {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"}, + {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"}, + {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"}, + {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"}, ] [package.extras] @@ -3439,13 +3452,13 @@ six = ">=1.5" [[package]] name = "python-dotenv" -version = "1.0.0" +version = "1.0.1" description = "Read key-value pairs from a .env file and set them as environment variables" optional = false python-versions = ">=3.8" files = [ - {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, - {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, + {file = "python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca"}, + {file = "python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a"}, ] [package.extras] @@ -3547,6 +3560,7 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, diff --git a/requirements.txt b/requirements.txt index c269ec96..a992c957 100644 --- a/requirements.txt +++ b/requirements.txt @@ -49,9 +49,9 @@ asttokens==2.4.1 ; python_version >= "3.10" and python_version < "4" \ async-lru==2.0.4 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627 \ --hash=sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224 -atlassian-python-api==3.41.8 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:506b3aa8325ba0df4edd6618ac4039c0aafa48795d16d143a270b6c1a68bd4fc \ - --hash=sha256:ce678d89372578db06f5f5eadd6fc2abccc424608053dc6d83e7afea5070b021 +atlassian-python-api==3.41.9 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:3682b9539c1e31fe53b020bdcbce532ca5655fc2cc98cc0e7f9572d92afcc13b \ + --hash=sha256:818294e2a89222dbda2fae03332317b2a770858e62fae4b62e6b579e0b31109b attrs==23.2.0 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30 \ --hash=sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1 @@ -430,30 +430,39 @@ contourpy==1.2.0 ; python_full_version >= "3.10.0" and python_version < "4" \ crashtest==0.4.1 ; python_full_version >= "3.10.0" and python_version < "4.0" \ --hash=sha256:80d7b1f316ebfbd429f648076d6275c877ba30ba48979de4191714a75266f0ce \ --hash=sha256:8d23eac5fa660409f57472e3851dab7ac18aba459a8d19cbbba86d3d5aecd2a5 -cryptography==41.0.7 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:079b85658ea2f59c4f43b70f8119a52414cdb7be34da5d019a77bf96d473b960 \ - --hash=sha256:09616eeaef406f99046553b8a40fbf8b1e70795a91885ba4c96a70793de5504a \ - --hash=sha256:13f93ce9bea8016c253b34afc6bd6a75993e5c40672ed5405a9c832f0d4a00bc \ - --hash=sha256:37a138589b12069efb424220bf78eac59ca68b95696fc622b6ccc1c0a197204a \ - --hash=sha256:3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf \ - --hash=sha256:43f2552a2378b44869fe8827aa19e69512e3245a219104438692385b0ee119d1 \ - --hash=sha256:48a0476626da912a44cc078f9893f292f0b3e4c739caf289268168d8f4702a39 \ - --hash=sha256:49f0805fc0b2ac8d4882dd52f4a3b935b210935d500b6b805f321addc8177406 \ - --hash=sha256:5429ec739a29df2e29e15d082f1d9ad683701f0ec7709ca479b3ff2708dae65a \ - --hash=sha256:5a1b41bc97f1ad230a41657d9155113c7521953869ae57ac39ac7f1bb471469a \ - --hash=sha256:68a2dec79deebc5d26d617bfdf6e8aab065a4f34934b22d3b5010df3ba36612c \ - --hash=sha256:7a698cb1dac82c35fcf8fe3417a3aaba97de16a01ac914b89a0889d364d2f6be \ - --hash=sha256:841df4caa01008bad253bce2a6f7b47f86dc9f08df4b433c404def869f590a15 \ - --hash=sha256:90452ba79b8788fa380dfb587cca692976ef4e757b194b093d845e8d99f612f2 \ - --hash=sha256:928258ba5d6f8ae644e764d0f996d61a8777559f72dfeb2eea7e2fe0ad6e782d \ - --hash=sha256:af03b32695b24d85a75d40e1ba39ffe7db7ffcb099fe507b39fd41a565f1b157 \ - --hash=sha256:b640981bf64a3e978a56167594a0e97db71c89a479da8e175d8bb5be5178c003 \ - --hash=sha256:c5ca78485a255e03c32b513f8c2bc39fedb7f5c5f8535545bdc223a03b24f248 \ - --hash=sha256:c7f3201ec47d5207841402594f1d7950879ef890c0c495052fa62f58283fde1a \ - --hash=sha256:d5ec85080cce7b0513cfd233914eb8b7bbd0633f1d1703aa28d1dd5a72f678ec \ - --hash=sha256:d6c391c021ab1f7a82da5d8d0b3cee2f4b2c455ec86c8aebbc84837a631ff309 \ - --hash=sha256:e3114da6d7f95d2dee7d3f4eec16dacff819740bbab931aff8648cb13c5ff5e7 \ - --hash=sha256:f983596065a18a2183e7f79ab3fd4c475205b839e02cbc0efbbf9666c4b3083d +cryptography==42.0.0 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:0a68bfcf57a6887818307600c3c0ebc3f62fbb6ccad2240aa21887cda1f8df1b \ + --hash=sha256:146e971e92a6dd042214b537a726c9750496128453146ab0ee8971a0299dc9bd \ + --hash=sha256:14e4b909373bc5bf1095311fa0f7fcabf2d1a160ca13f1e9e467be1ac4cbdf94 \ + --hash=sha256:206aaf42e031b93f86ad60f9f5d9da1b09164f25488238ac1dc488334eb5e221 \ + --hash=sha256:3005166a39b70c8b94455fdbe78d87a444da31ff70de3331cdec2c568cf25b7e \ + --hash=sha256:324721d93b998cb7367f1e6897370644751e5580ff9b370c0a50dc60a2003513 \ + --hash=sha256:33588310b5c886dfb87dba5f013b8d27df7ffd31dc753775342a1e5ab139e59d \ + --hash=sha256:35cf6ed4c38f054478a9df14f03c1169bb14bd98f0b1705751079b25e1cb58bc \ + --hash=sha256:3ca482ea80626048975360c8e62be3ceb0f11803180b73163acd24bf014133a0 \ + --hash=sha256:56ce0c106d5c3fec1038c3cca3d55ac320a5be1b44bf15116732d0bc716979a2 \ + --hash=sha256:5a217bca51f3b91971400890905a9323ad805838ca3fa1e202a01844f485ee87 \ + --hash=sha256:678cfa0d1e72ef41d48993a7be75a76b0725d29b820ff3cfd606a5b2b33fda01 \ + --hash=sha256:69fd009a325cad6fbfd5b04c711a4da563c6c4854fc4c9544bff3088387c77c0 \ + --hash=sha256:6cf9b76d6e93c62114bd19485e5cb003115c134cf9ce91f8ac924c44f8c8c3f4 \ + --hash=sha256:74f18a4c8ca04134d2052a140322002fef535c99cdbc2a6afc18a8024d5c9d5b \ + --hash=sha256:85f759ed59ffd1d0baad296e72780aa62ff8a71f94dc1ab340386a1207d0ea81 \ + --hash=sha256:87086eae86a700307b544625e3ba11cc600c3c0ef8ab97b0fda0705d6db3d4e3 \ + --hash=sha256:8814722cffcfd1fbd91edd9f3451b88a8f26a5fd41b28c1c9193949d1c689dc4 \ + --hash=sha256:8fedec73d590fd30c4e3f0d0f4bc961aeca8390c72f3eaa1a0874d180e868ddf \ + --hash=sha256:9515ea7f596c8092fdc9902627e51b23a75daa2c7815ed5aa8cf4f07469212ec \ + --hash=sha256:988b738f56c665366b1e4bfd9045c3efae89ee366ca3839cd5af53eaa1401bce \ + --hash=sha256:a2a8d873667e4fd2f34aedab02ba500b824692c6542e017075a2efc38f60a4c0 \ + --hash=sha256:bd7cf7a8d9f34cc67220f1195884151426ce616fdc8285df9054bfa10135925f \ + --hash=sha256:bdce70e562c69bb089523e75ef1d9625b7417c6297a76ac27b1b8b1eb51b7d0f \ + --hash=sha256:be14b31eb3a293fc6e6aa2807c8a3224c71426f7c4e3639ccf1a2f3ffd6df8c3 \ + --hash=sha256:be41b0c7366e5549265adf2145135dca107718fa44b6e418dc7499cfff6b4689 \ + --hash=sha256:c310767268d88803b653fffe6d6f2f17bb9d49ffceb8d70aed50ad45ea49ab08 \ + --hash=sha256:c58115384bdcfe9c7f644c72f10f6f42bed7cf59f7b52fe1bf7ae0a622b3a139 \ + --hash=sha256:c640b0ef54138fde761ec99a6c7dc4ce05e80420262c20fa239e694ca371d434 \ + --hash=sha256:ca20550bb590db16223eb9ccc5852335b48b8f597e2f6f0878bbfd9e7314eb17 \ + --hash=sha256:d97aae66b7de41cdf5b12087b5509e4e9805ed6f562406dfcf60e8481a9a28f8 \ + --hash=sha256:e9326ca78111e4c645f7e49cbce4ed2f3f85e17b61a563328c85a5208cf34440 cycler==0.12.1 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 \ --hash=sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c @@ -706,12 +715,12 @@ jsonpointer==2.4 ; python_full_version >= "3.10.0" and python_version < "4" \ jsonschema-specifications==2023.12.1 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc \ --hash=sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c -jsonschema==4.21.0 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:3ba18e27f7491ea4a1b22edce00fb820eec968d397feb3f9cb61d5894bb38167 \ - --hash=sha256:70a09719d375c0a2874571b363c8a24be7df8071b80c9aa76bc4551e7297c63c -jsonschema[format-nongpl]==4.21.0 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:3ba18e27f7491ea4a1b22edce00fb820eec968d397feb3f9cb61d5894bb38167 \ - --hash=sha256:70a09719d375c0a2874571b363c8a24be7df8071b80c9aa76bc4551e7297c63c +jsonschema==4.21.1 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f \ + --hash=sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5 +jsonschema[format-nongpl]==4.21.1 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f \ + --hash=sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5 jupyter-client==8.6.0 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7 \ --hash=sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99 @@ -727,9 +736,9 @@ jupyter-events==0.9.0 ; python_full_version >= "3.10.0" and python_version < "4" jupyter-lsp==2.2.2 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:256d24620542ae4bba04a50fc1f6ffe208093a07d8e697fea0a8d1b8ca1b7e5b \ --hash=sha256:3b95229e4168355a8c91928057c1621ac3510ba98b2a925e82ebd77f078b1aa5 -jupyter-server-terminals==0.5.1 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:16d3be9cf48be6a1f943f3a6c93c033be259cf4779184c66421709cf63dccfea \ - --hash=sha256:5e63e947ddd97bb2832db5ef837a258d9ccd4192cd608c1270850ad947ae5dd7 +jupyter-server-terminals==0.5.2 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:1b80c12765da979513c42c90215481bbc39bd8ae7c0350b4f85bc3eb58d0fa80 \ + --hash=sha256:396b5ccc0881e550bf0ee7012c6ef1b53edbde69e67cab1d56e89711b46052e8 jupyter-server==2.12.5 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:0edb626c94baa22809be1323f9770cf1c00a952b17097592e40d03e6a3951689 \ --hash=sha256:184a0f82809a8522777cfb6b760ab6f4b1bb398664c5860a27cec696cb884923 @@ -899,67 +908,67 @@ lz4==4.3.3 ; python_full_version >= "3.10.0" and python_version < "4.0" \ markdown==3.5.2 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:d43323865d89fc0cb9b20c75fc8ad313af307cc087e84b657d9eec768eddeadd \ --hash=sha256:e1ac7b3dc550ee80e602e71c1d168002f062e49f1b11e26a36264dafd4df2ef8 -markupsafe==2.1.3 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e \ - --hash=sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e \ - --hash=sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431 \ - --hash=sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686 \ - --hash=sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c \ - --hash=sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559 \ - --hash=sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc \ - --hash=sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb \ - --hash=sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939 \ - --hash=sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c \ - --hash=sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0 \ - --hash=sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4 \ - --hash=sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9 \ - --hash=sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575 \ - --hash=sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba \ - --hash=sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d \ - --hash=sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd \ - --hash=sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3 \ - --hash=sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00 \ - --hash=sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155 \ - --hash=sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac \ - --hash=sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52 \ - --hash=sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f \ - --hash=sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8 \ - --hash=sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b \ - --hash=sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007 \ - --hash=sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24 \ - --hash=sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea \ - --hash=sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198 \ - --hash=sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0 \ - --hash=sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee \ - --hash=sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be \ - --hash=sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2 \ - --hash=sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1 \ - --hash=sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707 \ - --hash=sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6 \ - --hash=sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c \ - --hash=sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58 \ - --hash=sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823 \ - --hash=sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779 \ - --hash=sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636 \ - --hash=sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c \ - --hash=sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad \ - --hash=sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee \ - --hash=sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc \ - --hash=sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2 \ - --hash=sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48 \ - --hash=sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7 \ - --hash=sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e \ - --hash=sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b \ - --hash=sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa \ - --hash=sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5 \ - --hash=sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e \ - --hash=sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb \ - --hash=sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9 \ - --hash=sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57 \ - --hash=sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc \ - --hash=sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc \ - --hash=sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2 \ - --hash=sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11 +markupsafe==2.1.4 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:0042d6a9880b38e1dd9ff83146cc3c9c18a059b9360ceae207805567aacccc69 \ + --hash=sha256:0c26f67b3fe27302d3a412b85ef696792c4a2386293c53ba683a89562f9399b0 \ + --hash=sha256:0fbad3d346df8f9d72622ac71b69565e621ada2ce6572f37c2eae8dacd60385d \ + --hash=sha256:15866d7f2dc60cfdde12ebb4e75e41be862348b4728300c36cdf405e258415ec \ + --hash=sha256:1c98c33ffe20e9a489145d97070a435ea0679fddaabcafe19982fe9c971987d5 \ + --hash=sha256:21e7af8091007bf4bebf4521184f4880a6acab8df0df52ef9e513d8e5db23411 \ + --hash=sha256:23984d1bdae01bee794267424af55eef4dfc038dc5d1272860669b2aa025c9e3 \ + --hash=sha256:31f57d64c336b8ccb1966d156932f3daa4fee74176b0fdc48ef580be774aae74 \ + --hash=sha256:3583a3a3ab7958e354dc1d25be74aee6228938312ee875a22330c4dc2e41beb0 \ + --hash=sha256:36d7626a8cca4d34216875aee5a1d3d654bb3dac201c1c003d182283e3205949 \ + --hash=sha256:396549cea79e8ca4ba65525470d534e8a41070e6b3500ce2414921099cb73e8d \ + --hash=sha256:3a66c36a3864df95e4f62f9167c734b3b1192cb0851b43d7cc08040c074c6279 \ + --hash=sha256:3aae9af4cac263007fd6309c64c6ab4506dd2b79382d9d19a1994f9240b8db4f \ + --hash=sha256:3ab3a886a237f6e9c9f4f7d272067e712cdb4efa774bef494dccad08f39d8ae6 \ + --hash=sha256:47bb5f0142b8b64ed1399b6b60f700a580335c8e1c57f2f15587bd072012decc \ + --hash=sha256:49a3b78a5af63ec10d8604180380c13dcd870aba7928c1fe04e881d5c792dc4e \ + --hash=sha256:4df98d4a9cd6a88d6a585852f56f2155c9cdb6aec78361a19f938810aa020954 \ + --hash=sha256:5045e892cfdaecc5b4c01822f353cf2c8feb88a6ec1c0adef2a2e705eef0f656 \ + --hash=sha256:5244324676254697fe5c181fc762284e2c5fceeb1c4e3e7f6aca2b6f107e60dc \ + --hash=sha256:54635102ba3cf5da26eb6f96c4b8c53af8a9c0d97b64bdcb592596a6255d8518 \ + --hash=sha256:54a7e1380dfece8847c71bf7e33da5d084e9b889c75eca19100ef98027bd9f56 \ + --hash=sha256:55d03fea4c4e9fd0ad75dc2e7e2b6757b80c152c032ea1d1de487461d8140efc \ + --hash=sha256:698e84142f3f884114ea8cf83e7a67ca8f4ace8454e78fe960646c6c91c63bfa \ + --hash=sha256:6aa5e2e7fc9bc042ae82d8b79d795b9a62bd8f15ba1e7594e3db243f158b5565 \ + --hash=sha256:7653fa39578957bc42e5ebc15cf4361d9e0ee4b702d7d5ec96cdac860953c5b4 \ + --hash=sha256:765f036a3d00395a326df2835d8f86b637dbaf9832f90f5d196c3b8a7a5080cb \ + --hash=sha256:78bc995e004681246e85e28e068111a4c3f35f34e6c62da1471e844ee1446250 \ + --hash=sha256:7a07f40ef8f0fbc5ef1000d0c78771f4d5ca03b4953fc162749772916b298fc4 \ + --hash=sha256:8b570a1537367b52396e53325769608f2a687ec9a4363647af1cded8928af959 \ + --hash=sha256:987d13fe1d23e12a66ca2073b8d2e2a75cec2ecb8eab43ff5624ba0ad42764bc \ + --hash=sha256:9896fca4a8eb246defc8b2a7ac77ef7553b638e04fbf170bff78a40fa8a91474 \ + --hash=sha256:9e9e3c4020aa2dc62d5dd6743a69e399ce3de58320522948af6140ac959ab863 \ + --hash=sha256:a0b838c37ba596fcbfca71651a104a611543077156cb0a26fe0c475e1f152ee8 \ + --hash=sha256:a4d176cfdfde84f732c4a53109b293d05883e952bbba68b857ae446fa3119b4f \ + --hash=sha256:a76055d5cb1c23485d7ddae533229039b850db711c554a12ea64a0fd8a0129e2 \ + --hash=sha256:a76cd37d229fc385738bd1ce4cba2a121cf26b53864c1772694ad0ad348e509e \ + --hash=sha256:a7cc49ef48a3c7a0005a949f3c04f8baa5409d3f663a1b36f0eba9bfe2a0396e \ + --hash=sha256:abf5ebbec056817057bfafc0445916bb688a255a5146f900445d081db08cbabb \ + --hash=sha256:b0fe73bac2fed83839dbdbe6da84ae2a31c11cfc1c777a40dbd8ac8a6ed1560f \ + --hash=sha256:b6f14a9cd50c3cb100eb94b3273131c80d102e19bb20253ac7bd7336118a673a \ + --hash=sha256:b83041cda633871572f0d3c41dddd5582ad7d22f65a72eacd8d3d6d00291df26 \ + --hash=sha256:b835aba863195269ea358cecc21b400276747cc977492319fd7682b8cd2c253d \ + --hash=sha256:bf1196dcc239e608605b716e7b166eb5faf4bc192f8a44b81e85251e62584bd2 \ + --hash=sha256:c669391319973e49a7c6230c218a1e3044710bc1ce4c8e6eb71f7e6d43a2c131 \ + --hash=sha256:c7556bafeaa0a50e2fe7dc86e0382dea349ebcad8f010d5a7dc6ba568eaaa789 \ + --hash=sha256:c8f253a84dbd2c63c19590fa86a032ef3d8cc18923b8049d91bcdeeb2581fbf6 \ + --hash=sha256:d18b66fe626ac412d96c2ab536306c736c66cf2a31c243a45025156cc190dc8a \ + --hash=sha256:d5291d98cd3ad9a562883468c690a2a238c4a6388ab3bd155b0c75dd55ece858 \ + --hash=sha256:d5c31fe855c77cad679b302aabc42d724ed87c043b1432d457f4976add1c2c3e \ + --hash=sha256:d6e427c7378c7f1b2bef6a344c925b8b63623d3321c09a237b7cc0e77dd98ceb \ + --hash=sha256:dac1ebf6983148b45b5fa48593950f90ed6d1d26300604f321c74a9ca1609f8e \ + --hash=sha256:de8153a7aae3835484ac168a9a9bdaa0c5eee4e0bc595503c95d53b942879c84 \ + --hash=sha256:e1a0d1924a5013d4f294087e00024ad25668234569289650929ab871231668e7 \ + --hash=sha256:e7902211afd0af05fbadcc9a312e4cf10f27b779cf1323e78d52377ae4b72bea \ + --hash=sha256:e888ff76ceb39601c59e219f281466c6d7e66bd375b4ec1ce83bcdc68306796b \ + --hash=sha256:f06e5a9e99b7df44640767842f414ed5d7bedaaa78cd817ce04bbd6fd86e2dd6 \ + --hash=sha256:f6be2d708a9d0e9b0054856f07ac7070fbe1754be40ca8525d5adccdbda8f475 \ + --hash=sha256:f9917691f410a2e0897d1ef99619fd3f7dd503647c8ff2475bf90c3cf222ad74 \ + --hash=sha256:fc1a75aa8f11b87910ffd98de62b29d6520b6d6e8a3de69a70ca34dea85d2a8a \ + --hash=sha256:fe8512ed897d5daf089e5bd010c3dc03bb1bdae00b35588c49b98268d4a01e00 matplotlib-inline==0.1.6 ; python_version >= "3.10" and python_version < "4" \ --hash=sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311 \ --hash=sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304 @@ -1085,9 +1094,9 @@ nbconvert==7.14.2 ; python_full_version >= "3.10.0" and python_version < "4" \ nbformat==5.9.2 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:1c5172d786a41b82bcfd0c23f9e6b6f072e8fb49c39250219e4acfff1efe89e9 \ --hash=sha256:5f98b5ba1997dff175e77e0c17d5c10a96eaed2cbd1de3533d1fc35d5e111192 -nest-asyncio==1.5.9 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:61ec07ef052e72e3de22045b81b2cc7d71fceb04c568ba0b2e4b2f9f5231bec2 \ - --hash=sha256:d1e1144e9c6e3e6392e0fcf5211cb1c8374b5648a98f1ebe48e5336006b41907 +nest-asyncio==1.6.0 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe \ + --hash=sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c nodeenv==1.8.0 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2 \ --hash=sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec @@ -1137,40 +1146,44 @@ numpy==1.26.3 ; python_full_version >= "3.10.0" and python_version < "4" \ oauthlib==3.2.2 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca \ --hash=sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918 -overrides==7.4.0 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:3ad24583f86d6d7a49049695efe9933e67ba62f0c7625d53c59fa832ce4b8b7d \ - --hash=sha256:9502a3cca51f4fac40b5feca985b6703a5c1f6ad815588a7ca9e285b9dca6757 +overrides==7.6.0 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:01e15bbbf15b766f0675c275baa1878bd1c7dc9bc7b9ee13e677cdba93dc1bd9 \ + --hash=sha256:c36e6635519ea9c5b043b65c36d4b886aee8bd45b7d4681d2a6df0898df4b654 packaging==23.2 ; python_full_version >= "3.10.0" and python_version < "4.0" \ --hash=sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5 \ --hash=sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7 paginate==0.5.6 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:5e6007b6a9398177a7e1648d04fdd9f8c9766a1a945bceac82f1929e8c78af2d -pandas==2.1.4 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:00028e6737c594feac3c2df15636d73ace46b8314d236100b57ed7e4b9ebe8d9 \ - --hash=sha256:0aa6e92e639da0d6e2017d9ccff563222f4eb31e4b2c3cf32a2a392fc3103c0d \ - --hash=sha256:1ebfd771110b50055712b3b711b51bee5d50135429364d0498e1213a7adc2be8 \ - --hash=sha256:294d96cfaf28d688f30c918a765ea2ae2e0e71d3536754f4b6de0ea4a496d034 \ - --hash=sha256:3f06bda01a143020bad20f7a85dd5f4a1600112145f126bc9e3e42077c24ef34 \ - --hash=sha256:426dc0f1b187523c4db06f96fb5c8d1a845e259c99bda74f7de97bd8a3bb3139 \ - --hash=sha256:45d63d2a9b1b37fa6c84a68ba2422dc9ed018bdaa668c7f47566a01188ceeec1 \ - --hash=sha256:482d5076e1791777e1571f2e2d789e940dedd927325cc3cb6d0800c6304082f6 \ - --hash=sha256:6b728fb8deba8905b319f96447a27033969f3ea1fea09d07d296c9030ab2ed1d \ - --hash=sha256:8a706cfe7955c4ca59af8c7a0517370eafbd98593155b48f10f9811da440248b \ - --hash=sha256:8ea107e0be2aba1da619cc6ba3f999b2bfc9669a83554b1904ce3dd9507f0860 \ - --hash=sha256:ab5796839eb1fd62a39eec2916d3e979ec3130509930fea17fe6f81e18108f6a \ - --hash=sha256:b0513a132a15977b4a5b89aabd304647919bc2169eac4c8536afb29c07c23540 \ - --hash=sha256:b7d852d16c270e4331f6f59b3e9aa23f935f5c4b0ed2d0bc77637a8890a5d092 \ - --hash=sha256:bd7d5f2f54f78164b3d7a40f33bf79a74cdee72c31affec86bfcabe7e0789821 \ - --hash=sha256:bdec823dc6ec53f7a6339a0e34c68b144a7a1fd28d80c260534c39c62c5bf8c9 \ - --hash=sha256:d2d3e7b00f703aea3945995ee63375c61b2e6aa5aa7871c5d622870e5e137623 \ - --hash=sha256:d65148b14788b3758daf57bf42725caa536575da2b64df9964c563b015230984 \ - --hash=sha256:d797591b6846b9db79e65dc2d0d48e61f7db8d10b2a9480b4e3faaddc421a171 \ - --hash=sha256:dc9bf7ade01143cddc0074aa6995edd05323974e6e40d9dbde081021ded8510e \ - --hash=sha256:e9f17f2b6fc076b2a0078862547595d66244db0f41bf79fc5f64a5c4d635bead \ - --hash=sha256:edbaf9e8d3a63a9276d707b4d25930a262341bca9874fcb22eff5e3da5394732 \ - --hash=sha256:f237e6ca6421265643608813ce9793610ad09b40154a3344a088159590469e46 \ - --hash=sha256:f69b0c9bb174a2342818d3e2778584e18c740d56857fc5cdb944ec8bbe4082cf \ - --hash=sha256:fcb68203c833cc735321512e13861358079a96c174a61f5116a1de89c58c0ef7 +pandas==2.2.0 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1 \ + --hash=sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e \ + --hash=sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f \ + --hash=sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2 \ + --hash=sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18 \ + --hash=sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae \ + --hash=sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd \ + --hash=sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab \ + --hash=sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430 \ + --hash=sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a \ + --hash=sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106 \ + --hash=sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5 \ + --hash=sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670 \ + --hash=sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88 \ + --hash=sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b \ + --hash=sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d \ + --hash=sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71 \ + --hash=sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5 \ + --hash=sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e \ + --hash=sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc \ + --hash=sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30 \ + --hash=sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7 \ + --hash=sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3 \ + --hash=sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a \ + --hash=sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440 \ + --hash=sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a \ + --hash=sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042 \ + --hash=sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1 \ + --hash=sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9 pandocfilters==1.5.1 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e \ --hash=sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc @@ -1281,23 +1294,23 @@ prometheus-client==0.19.0 ; python_full_version >= "3.10.0" and python_version < prompt-toolkit==3.0.43 ; python_version >= "3.10" and python_version < "4" \ --hash=sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d \ --hash=sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6 -psutil==5.9.7 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:032f4f2c909818c86cea4fe2cc407f1c0f0cde8e6c6d702b28b8ce0c0d143340 \ - --hash=sha256:0bd41bf2d1463dfa535942b2a8f0e958acf6607ac0be52265ab31f7923bcd5e6 \ - --hash=sha256:1132704b876e58d277168cd729d64750633d5ff0183acf5b3c986b8466cd0284 \ - --hash=sha256:1d4bc4a0148fdd7fd8f38e0498639ae128e64538faa507df25a20f8f7fb2341c \ - --hash=sha256:3c4747a3e2ead1589e647e64aad601981f01b68f9398ddf94d01e3dc0d1e57c7 \ - --hash=sha256:3f02134e82cfb5d089fddf20bb2e03fd5cd52395321d1c8458a9e58500ff417c \ - --hash=sha256:44969859757f4d8f2a9bd5b76eba8c3099a2c8cf3992ff62144061e39ba8568e \ - --hash=sha256:4c03362e280d06bbbfcd52f29acd79c733e0af33d707c54255d21029b8b32ba6 \ - --hash=sha256:5794944462509e49d4d458f4dbfb92c47539e7d8d15c796f141f474010084056 \ - --hash=sha256:b27f8fdb190c8c03914f908a4555159327d7481dac2f01008d483137ef3311a9 \ - --hash=sha256:c727ca5a9b2dd5193b8644b9f0c883d54f1248310023b5ad3e92036c5e2ada68 \ - --hash=sha256:e469990e28f1ad738f65a42dcfc17adaed9d0f325d55047593cb9033a0ab63df \ - --hash=sha256:ea36cc62e69a13ec52b2f625c27527f6e4479bca2b340b7a452af55b34fcbe2e \ - --hash=sha256:f37f87e4d73b79e6c5e749440c3113b81d1ee7d26f21c19c47371ddea834f414 \ - --hash=sha256:fe361f743cb3389b8efda21980d93eb55c1f1e3898269bc9a2a1d0bb7b1f6508 \ - --hash=sha256:fe8b7f07948f1304497ce4f4684881250cd859b16d06a1dc4d7941eeb6233bfe +psutil==5.9.8 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d \ + --hash=sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73 \ + --hash=sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8 \ + --hash=sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2 \ + --hash=sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e \ + --hash=sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36 \ + --hash=sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7 \ + --hash=sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c \ + --hash=sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee \ + --hash=sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421 \ + --hash=sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf \ + --hash=sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81 \ + --hash=sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0 \ + --hash=sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631 \ + --hash=sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4 \ + --hash=sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8 ptyprocess==0.7.0 ; python_version >= "3.10" and python_version < "4.0" \ --hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \ --hash=sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220 @@ -1339,9 +1352,9 @@ pyreadline3==3.4.1 ; sys_platform == "win32" and python_full_version >= "3.10.0" python-dateutil==2.8.2 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86 \ --hash=sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 -python-dotenv==1.0.0 ; python_full_version >= "3.10.0" and python_version < "4" \ - --hash=sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba \ - --hash=sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a +python-dotenv==1.0.1 ; python_full_version >= "3.10.0" and python_version < "4" \ + --hash=sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca \ + --hash=sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a python-json-logger==2.0.7 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c \ --hash=sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd @@ -1406,6 +1419,7 @@ pyyaml==6.0.1 ; python_full_version >= "3.10.0" and python_version < "4" \ --hash=sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4 \ --hash=sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba \ --hash=sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8 \ + --hash=sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef \ --hash=sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5 \ --hash=sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd \ --hash=sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3 \