Skip to content

chore(deps): update rust dependencies - #130

Open
red-hat-konflux[bot] wants to merge 1 commit into
developfrom
konflux/mintmaker/develop/rust-deps
Open

chore(deps): update rust dependencies#130
red-hat-konflux[bot] wants to merge 1 commit into
developfrom
konflux/mintmaker/develop/rust-deps

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Oct 30, 2025

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.971.0.104
assert_cmd dev-dependencies minor 2.0.162.2.2
async-trait dependencies patch 0.1.870.1.91
aws-config dependencies minor 1.5.61.10.1
aws-lc-rs dependencies minor 1.12.51.17.3
aws-sdk-kms dependencies minor 1.43.01.114.0
aws-sdk-ssm dependencies minor 1.47.01.118.0
aws-smithy-experimental dependencies minor 0.10.3
aws-smithy-http dev-dependencies minor 0.600.64
aws-smithy-runtime dev-dependencies minor 1.7.81.12.1
aws-smithy-types dev-dependencies minor 1.2.131.6.1
axum dependencies minor 0.60.8
base64 dependencies minor 0.220.23
base64 dev-dependencies minor 0.220.23
bytes dependencies minor 1.10.01.12.1
bytes dev-dependencies minor 1.10.01.12.1
chrono dependencies patch 0.4.400.4.45
clap dependencies minor 4.5.314.6.4
dyn-clone dependencies patch 1.0.191.0.20
filetime dependencies patch 0.2.260.2.29
futures dev-dependencies patch 0.3.310.3.33
futures dependencies patch 0.3.310.3.33
futures-core dev-dependencies patch 0.3.310.3.33
futures-core dependencies patch 0.3.310.3.33
futures-util dependencies patch 0.3.310.3.33
globset (source) dependencies patch 0.4.160.4.19
http dev-dependencies minor 1.2.01.4.2
httptest dev-dependencies patch 0.16.30.16.4
indexmap dependencies minor 2.7.12.14.0
itertools dependencies minor 0.13.00.15.0
log dependencies patch 0.4.260.4.33
openssl dependencies patch 0.10.710.10.81
pem (source) dependencies patch 3.0.53.0.6
percent-encoding dependencies patch 2.3.12.3.2
pki-types dependencies minor 1.12.01.15.1
prost-types dependencies minor 0.13.50.14.0
rand (source) dependencies minor 0.80.10
rayon dependencies minor 1.10.01.12.0
regex dependencies minor 1.11.11.13.1
reqwest dependencies minor 0.120.13
rstest dependencies minor 0.22.00.26.0
rustls dependencies patch 0.23.230.23.42
rustls-webpki dependencies minor 0.102.10.103.0
serde (source) dependencies patch 1.0.2191.0.229
serde (source) dev-dependencies patch 1.0.2191.0.229
serde_derive (source) dev-dependencies patch 1.0.2191.0.229
serde_json dependencies patch 1.0.1401.0.151
serde_json dev-dependencies patch 1.0.1401.0.151
serial_test dependencies minor 3.2.03.5.0
sigstore_protobuf_specs dependencies minor 0.40.5
snafu dependencies minor 0.80.9
tempfile (source) dependencies minor 3.17.13.27.0
tokio dependencies minor 1.43.01.53.1
tokio dev-dependencies minor 1.43.01.53.1
tokio-retry dependencies patch 0.3.00.3.2
tokio-test dev-dependencies patch 0.4.40.4.5
tokio-util dependencies patch 0.7.130.7.19
tower dependencies minor 0.40.5
tower-http dependencies minor 0.40.7
tracing dependencies patch 0.1.410.1.44
typed-path dependencies minor 0.90.12
unicode-normalization dependencies patch 0.1.240.1.25
untrusted dependencies minor 0.7.10.9.0
url dependencies patch 2.5.42.5.8

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

assert-rs/assert_cmd (assert_cmd)

v2.2.2

Compare Source

Fixes
  • Ensure #[track_caller] works for better panic messages

v2.2.1

Compare Source

Internal
  • Dependency update

v2.2.0

Compare Source

Compatibility
  • Change cargo_bin bad paths to panics

v2.1.3

Compare Source

Fixes
  • Un-deprecate cargo_bin

v2.1.2

Compare Source

Fixes
  • Add #[must_use] to help catch missing assertions

v2.1.1

Compare Source

v2.1.0

Compare Source

Compatibility
  • Deprecated crate_name!() in favor of pkg_name!()
  • Deprecated Command::cargo_bin, CommandCargoExt::cargo_bin, cargo_bin in favor of cargo_bin!, cargo_bin_cmd!
Features
  • Provide cargo_bin_cmd!()
  • Use pkg_name!() as a default parameter to cargo_bin!()

v2.0.17

Compare Source

Features
  • Add cargo::cargo_bin! which will work with Cargo's build-dir
aws/aws-lc-rs (aws-lc-rs)

v1.17.3: aws-lc-rs v1.17.3

Compare Source

What's Changed
  • Add public API to check AWS-LC and FIPS versions by @​prasden in #​1167
    • awslc_version() returns the linked AWS-LC library version (e.g., "5.1.0"), resolved at runtime. fips_version() returns the AWS-LC FIPS release-branch version as Some(version), or None when unavailable. Note that fips_version() is independent of try_fips_mode().
  • Clarify representations of PqdsaKeyPair in serialized forms by @​Mark-Simulacrum in #​1174
    • Documents how to use PqdsaKeyPair::from_seed in a FIPS setting, and notes that key pairs constructed from the expanded form cannot be re-serialized to PKCS#8 (which contains just the seed).
Build Improvements
  • Fix TARGET_* env leakage into host builds by @​justsmth in #​1171
    • Per the cc-rs convention, TARGET_CC/TARGET_CXX/TARGET_CFLAGS are now only applied when cross-compiling, and HOST_* variables are honored for native builds. Previously, when aws-lc-sys appeared as both a dependency and a build-dependency in a cross build, the cross toolchain's flags leaked into the host-side build.
  • Restore cc default flags in memcmp probe; only fail build on confirmed bug by @​justsmth in #​1173
    • Fixes build failures under RPM hardened build flags (Fedora/RHEL/Rocky rpmbuild defaults): the memcmp probe (GCC bug 95189 check) now retains cc's computed target default flags (e.g., -fPIC) while still excluding user CFLAGS. The check also only runs for GCC versions that may contain the bug, and a probe that fails to build only warns -- the build only fails when the miscompilation is actually demonstrated.
Issues Being Closed
  • Public API for FIPS status -- #​1166
  • memcmp probe fails under RPM hardened build flags -- #​1168
  • Cross-compilation failure: TARGET_CFLAGS applied to host builds -- #​1169
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.17.1...v1.17.3

[!NOTE]
aws-lc-rs v1.17.2 has been yanked. It failed to compile with the fips feature when aws-lc-fips-sys resolved to v0.13.15 (or earlier), since that version lacks functions needed by the new version APIs. v1.17.3 is identical to v1.17.2 aside from requiring aws-lc-fips-sys v0.13.16.

v1.17.2

Compare Source

v1.17.1: aws-lc-rs v1.17.1

Compare Source

🎉 AWS-LC FIPS v3 Module Has Been Validated

The AWS-LC FIPS v3 module has been awarded FIPS 140-3 validation by NIST's CMVP:

Seek guidance from a local FIPS compliance expert regarding requirements for your deployment environments. Please consult the Security Policies associated with our certificates if you have questions.

aws-lc-fips-sys (utilized via the fips feature of aws-lc-rs) currently uses the validated FIPS v3 module.

  • In the upcoming aws-lc-rs v1.18.0 release, we plan to switch aws-lc-fips-sys to our FIPS v4 branch.
What's Changed
  • Support linking against a system-installed AWS-LC:
    • Set AWS_LC_SYS_SYSTEM_DIR or let pkg-config / OPENSSL_* environment variables auto-detect an existing AWS-LC installation instead of building from source by @​justsmth in #​1129
    • Support system-installed AWS-LC FIPS library for aws-lc-fips-sys by @​justsmth in #​1143
    • Auto-detect system AWS-LC from OPENSSL_* and pkg-config by @​justsmth in #​1156
    • Gate system AWS-LC on a declared minimum version by @​justsmth in #​1152
  • Implement Send/Sync for RSA hazmat encryption key types by @​justsmth in #​1128
  • Add Salt::none constructor for HKDF by @​justsmth in #​1135
  • Add wasm32-unknown-emscripten build and test support by @​justsmth in #​1059
  • Report specific key rejection reasons for invalid RSA key sizes by @​justsmth in #​1153
Upstream AWS-LC (v5.1.0)

aws-lc-sys now aligns with AWS-LC v5.1.0 (previously v1.73.0). Notable upstream changes include:

Build Improvements
Issues Being Closed
  • RSA hazmat encryption key types missing Send/Sync -- #​1125
  • RSA key rejection reports generic Unspecified for invalid key sizes -- #​1082
  • Build failure when CFLAGS contains LTO flags (Windows/clang) -- #​1132
  • cargo-xwin (clang-cl) jitterentropy build failure on x86_64-pc-windows-msvc -- #​1146
  • Support system-provided AWS-LC library -- #​936
  • cpu_arm_linux.c assumes sys/auxv.h and getauxval (uclibc targets) -- #​1108
  • jitterentropy embeds absolute paths to files -- #​1137
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.17.0...v1.17.1

v1.17.0: aws-lc-rs v1.17.0

Compare Source

What's Changed
  • Add opt-in legacy DES cipher support behind a legacy-des feature by @​qzh0223 in #​1109 and #​1122
    • Provides 2TDEA, 3TDEA, and single DES support. This is gated behind the legacy-des feature flag and intended only for interoperability with legacy systems.
  • Add AsDer and ParsedPublicKey conversion for RSA PublicKeyComponents by @​MavenRain in #​1105
    • PublicKeyComponents<B> now implements AsDer<PublicKeyX509Der> and can be converted to ParsedPublicKey for use with signature verification APIs.
  • Add LessSafeKey::open_in_place_separate_tag by @​wpt-oai in #​1116
    • Enables AEAD decryption when the authentication tag is stored separately from the ciphertext, complementing the existing seal_in_place_separate_tag.
  • Add zig compiler support and CI coverage by @​justsmth in #​1103
    • Resolves long-standing issues with cross-compilation using cargo-zigbuild. The build script now correctly handles zig's compiler flags, and CI coverage has been added to prevent regressions.
Build Improvements
  • Fix jitterentropy CFLAGS filtering for HOST_CFLAGS and TARGET_CFLAGS by @​justsmth in #​1106
    • Fixes build failures (e.g., FreeBSD qdrant) where optimization flags leaked into the jitterentropy compilation, which must be built without optimizations.
  • Add ML-DSA x86_64 native assembly to CC builder scripts by @​jakemas in #​1110
  • Fix support for building with MinGW on Windows 7 by @​justsmth in #​1120
    • Fixes the x86_64-win7-windows-gnu target by addressing MinGW-specific compatibility issues.
Issues Being Closed
  • Add API to convert rsa::PublicKeyComponents into signature::ParsedPublicKey and/or DER encoded bytes -- #​1055
  • The CPU Jitter RNG must not be compiled with optimizations (FreeBSD qdrant build failure) -- #​1097
  • Windows 7 support for MinGW (x86_64-win7-windows-gnu target) -- #​1111
  • -Wp,-U breaks cross-builds using zig cc -- #​993
  • Failure to cross-compile for Windows on macOS with cargo-zigbuild -- #​512
  • Zigbuild: Unable to build using cargo-zigbuild for arm targets -- #​931
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.16.3...v1.17.0

v1.16.3: aws-lc-rs v1.16.3

Compare Source

What's Changed
  • Key length validation in UnboundCipherKey::new() now enforced at runtime by @​justsmth in #​1092
    • The documented error on key length mismatch was never actually checked. Streaming cipher constructors also relied on debug_assert_eq! which gets stripped in release builds — these are now runtime checks.
  • Support MSAN and TSAN sanitizer builds via AWS_LC_SYS_SANITIZER environment variable by @​justsmth in #​1100
    • Accepts asan, msan, or tsan. The existing asan feature flag continues to work.
Build Improvements
  • Follow symlinks when classifying include directory entries by @​cmtm in #​1071
    • Fixes builds under Bazel (and other build systems) where source files in CARGO_MANIFEST_DIR are symlinks into a content-addressable store.
  • Improve clang-cl discovery for Windows ARM64 builds by @​justsmth in #​1060
    • The build script now discovers clang-cl inside Visual Studio installations rather than requiring it on PATH.
  • Fix Windows ARM64 FIPS build: pass correct architecture to vcvarsall.bat by @​justsmth in #​1075
  • Strip LTO flags from CFLAGS for FIPS builds by @​skmcgrail in #​1087
    • Build environments like RPM mock chroots (e.g. AL2023) that export -flto=auto in CFLAGS would break the FIPS delocator pipeline.
  • MSVC: Fix builtin swap intrinsic check to avoid link-time failures by @​walter-zeromatter in #​1086
  • MSVC: Add jitterentropy src subdirectory to include search path by @​walter-zeromatter in #​1085
  • MSVC: Use 8.3 short paths on Windows to avoid MAX_PATH limits by @​walter-zeromatter in #​1081
Issues Being Closed
  • Clarify that build needs to run from VS Developer shell for Windows builds -- #​1056
  • Add MSAN (MemorySanitizer) support, matching existing ASAN support -- #​1077
  • aws-lc-sys fails to compile on iOS arm64 with Clang 15.0.7: undeclared ioctl in urandom.c -- #​1068
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.16.2...v1.16.3

v1.16.2: aws-lc-rs v1.16.2

Compare Source

What's Changed
  • Implement HMAC sign_to_buffer by @​fabrice102 in #​1058
  • Fix PublicEncryptingKey::from_der to reject undersized RSA keys by @​justsmth in #​1065
    • from_der() now correctly enforces the 2048-bit minimum key size, consistent with PrivateDecryptingKey::from_pkcs8. Users loading <2048-bit public keys for encryption will now receive KeyRejected.
  • Update licensing of aws-lc-sys to reflect third-party component licenses by @​justsmth in #​1062
  • Improved dev-tests-only documentation and docs.rs rendering by @​justsmth in #​1054
Build Improvements
Issues Being Closed
  • sys: license of s2n-bignum and fiat-crypto not reflected & license texts partially missing -- #​1044
  • Deterministic key agreement for testing -- #​1020
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.16.1...v1.16.2

v1.16.1: aws-lc-rs v1.16.1

Compare Source

What's Changed
Build Improvements
Other merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.16.0...v1.16.1

v1.16.0: aws-lc-rs v1.16.0

Compare Source

What's Changed
Build Improvements
Issues Being Closed
  • Clang compilation fails on Windows -- #​1031
  • Unable to build w/ rustc_codegen_cranelift compiler backend (on Windows) -- #​537
  • OpenWrt cross-compilation fails -- #​1009
  • Respect TARGET_CC over CC for cross-compilation -- #​1025
  • Provide unsealed SecureRandom for testing -- #​1020
  • ML-KEM DecapsulationKey serialization -- #​799
  • Large performance regression 1.14.0 -> 1.14.1 -- #​899
  • Request: Update the User Guide to mention more *nix systems -- #​643
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.15.4...v1.16.0

v1.15.4: aws-lc-rs v1.15.4

Compare Source

What's Changed
Build Improvements
Issues Being Closed
  • Android Build Failure with cc-builder -- #​1006
  • aws-lc-sys build faild on ghcr.io/cross-rs/x86_64-pc-windows-msvc-cross:local -- #​1004
  • Windows 7 support? Missing ProcessPrng -- aws/aws-lc#1997
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.15.3...v1.15.4

v1.15.3: aws-lc-rs v1.15.3

Compare Source

What's Changed
Build Improvements
Issues Being Closed
  • Disabling pre-built nasm binaries through feature flags (aws-lc-rs/disable-prebuilt-nasm) -- #​996
  • StreamingDecryptingKey and StreamingEncryptingKey need useless extra block in output -- #​990
  • build failure when targeting mips64el-unknown-linux-gnuabi64 or i686-win7-windows-msvc -- #​982
  • build failure when targeting x86_64-pc-windows-msvc -- #​981
  • aws-lc-sys on ppc64le: undefined reference to aws_lc_0_35_0_aes_hw_encrypt -- #​980
  • Can't send StreamingDecryptingKey between threads -- #​975
  • Remove cmake dependency for Windows -- #​828
  • Building aws-lc-sys under MSVC is brittle -- #​780
  • MSBUILD error MSB1009 install.vcxproj does not exist (but INSTALL.vcxproj does) -- #​772
  • Other libraries that rely on AWS LC SYS do not compile properly in a Windows environment -- #​771
  • Support aws-lc-sys on x86_64-unknown-freebsd without cmake -- #​766
  • Unable to build w/ rustc_codegen_cranelift compiler backend - #​537
  • No mips-unknown-linux-musl support -- #​522
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.15.2...v1.15.3

v1.15.2: aws-lc-rs v1.15.2

Compare Source

What's Changed
Build Improvements
Issues Being Closed
  • AWS_LC_SYS_CFLAGS is ignored when using default ccBuilder -- #​965
  • 1.15.1 docs.rs build failed due to doc_auto_cfg stabilization -- #​963
Other Merged PRs
New Contributors

Full Changelog: aws/aws-lc-rs@v1.15.1...v1.15.2

v1.15.1: aws-lc-rs v1.15.1

Compare Source

What's Changed
Build Improvements
Issues Being Closed
  • Build failure when targeting powerpc-unknown-linux-gnu -- #​950
  • Build script fails when using bazel -- #​858
Other Merged PRs

Full Changelog: aws/aws-lc-rs@v1.15.0...v1.15.1

v1.15.0: aws-lc-rs v1.15.0

Compare Source

What's Changed
  • Universal Binding in aws-lc-sys 🎉 by @​justsmth in #​896
    • Users of aws-lc-rs (non-FIPS) will no longer need to generate platform-specific bindings! This was previously a pain point for many as it added build latency and increased the tooling requirements on the build environment.
  • Support for AES-CBC mode w/ no padding by @​Elvrarin in #​895
  • New API supporting CMAC operations by @​Elvrarin in #​903
  • Previously pub static values in our API are now pub const by @​justsmth in #​905
Build Improvements
Issues Being Resolved
  • aws-lc-sys-0.32.3: build breaks on NetBSD -- #​932
  • Build failure when targeting aarch64-pc-windows-gnullvm -- #​919
  • digest::Algorithm definitions are defined as static instead of const -- #​904
  • Is it possible to support arm v7 32-bit compilation? -- #​890
  • Pregenerated bindings for riscv64gc-unknown-linux-musl -- #​874
  • ESP32 target error -- #​831
  • Add bindgen by default if the OS needs to rebuild it -- #​769
  • Consolidate FFI bindings -- #​371
Other Merged PRs

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@red-hat-konflux

red-hat-konflux Bot commented Oct 30, 2025

Copy link
Copy Markdown
Author

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path integ/failure-server/Cargo.toml --package anyhow@1.0.97 --precise 1.0.104
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/un/ic/unicode-normalization, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tough-kms/Cargo.toml --package aws-config@1.5.6 --precise 1.10.1
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/un/ic/unicode-normalization, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tough-ssm/Cargo.toml --package aws-config@1.5.6 --precise 1.10.1
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/as/yn/async-recursion, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tough/Cargo.toml --package async-trait@0.1.87 --precise 0.1.91
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/se/rd/serde, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path tuftool/Cargo.toml --package assert_cmd@2.0.16 --precise 2.2.2
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/as/yn/async-recursion, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path olpc-cjson/Cargo.toml --package serde@1.0.219 --precise 1.0.229
    Updating crates.io index
warning: failed to write cache, path: /home/renovate/.cargo/registry/index/index.crates.io-1949cf8c6b5b557f/.cache/un/ic/unicode-normalization, error: Permission denied (os error 13)
error: failed to select a version for `aws-smithy-experimental`.
    ... required by package `tough-ssm v0.14.0 (/tmp/renovate/repos/github/securesign/tough/tough-ssm)`
versions that meet the requirements `^0.3` are: 0.3.0

package `tough-ssm` depends on `aws-smithy-experimental` with feature `crypto-aws-lc` but `aws-smithy-experimental` does not have that feature.
help: available features: crypto-ring


failed to select a version for `aws-smithy-experimental` which could resolve this conflict

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 3 times, most recently from a3468db to b58b5f8 Compare November 4, 2025 12:34
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from b58b5f8 to 145d9b7 Compare November 20, 2025 17:44
@red-hat-konflux red-hat-konflux Bot changed the title Update Rust Dependencies chore(deps): update rust dependencies Nov 21, 2025
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 145d9b7 to 26e7891 Compare November 27, 2025 17:31
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update rust dependencies Update Rust Dependencies Nov 28, 2025
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 26e7891 to 10919a9 Compare December 9, 2025 09:27
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 10919a9 to 75f71ae Compare December 30, 2025 21:39
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 75f71ae to c2ad854 Compare January 12, 2026 13:25
@red-hat-konflux red-hat-konflux Bot changed the title Update Rust Dependencies chore(deps): update rust dependencies Jan 12, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 3 times, most recently from 1ab8d4c to 2e62a91 Compare January 30, 2026 13:27
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 6 times, most recently from b29f524 to 1c0774d Compare February 9, 2026 13:29
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 2 times, most recently from ddd6b85 to 6d19d74 Compare March 9, 2026 11:27
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 3 times, most recently from 7520d82 to 8b63ae3 Compare April 8, 2026 16:35
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 8b63ae3 to 52d3006 Compare April 14, 2026 20:17
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 2 times, most recently from 54a9d01 to e9fb417 Compare May 20, 2026 03:38
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from e9fb417 to 3a91fa1 Compare June 5, 2026 01:56
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 2 times, most recently from cefd102 to 5b1c0cd Compare June 20, 2026 02:28
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch 3 times, most recently from 55f334f to 132bd54 Compare July 17, 2026 13:25
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/develop/rust-deps branch from 132bd54 to 871af64 Compare July 26, 2026 17:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants