-
Notifications
You must be signed in to change notification settings - Fork 244
Update dependencies #460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
LockedThread
wants to merge
6
commits into
durch:master
Choose a base branch
from
LockedThread:feat/update-deps
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Update dependencies #460
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1b355a8
update to sha 0.11 and hmac 0.13
LockedThread 24a0110
update quick-xml to 0.39
LockedThread b1c9c94
update minidom to 0.18
LockedThread 76b5601
update reqwest to 0.13
LockedThread b31bfac
update quick-xml to 0.39 in aws-creds
LockedThread 1b81656
Set MSRV to 1.88.0 per cargo-msrv search
LockedThread File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: durch/rust-s3
Length of output: 340
🌐 Web query:
For reqwest 0.13, what does therustls-no-providerfeature require at runtime, and does it require explicit CryptoProvider installation?💡 Result:
The
rustls-no-providerfeature in reqwest 0.13 enables rustls TLS without automatically including or activating a specific crypto provider (like aws-lc-rs or ring), unlike the defaultrustlsfeature which includesrustls-aws-lc-rs[1][2][3]. It still depends onrustls-platform-verifierfor platform root certificates[1][3]. At runtime, since no crypto provider is automatically installed by this feature, rustls requires aCryptoProviderto be available, either via a process-global default set byCryptoProvider::install_default()(called early in the application, e.g., usingrustls::crypto::ring::default_provider().install_default()or similar)[4][5], or by explicitly passing one when building theClientConfig(e.g., viaClientConfig::builder_with_provider())[4][6]. Without this, attempts to use TLS will panic with "no process-level CryptoProvider available -- call CryptoProvider::install_default before this point"[7][8]. Thus, yes, it requires explicitCryptoProviderinstallation (process-global or per-config) at runtime for correct operation[2][9][7][4].Citations:
rustlsdefault provider unless specified seanmonstar/reqwest#2423🏁 Script executed:
Repository: durch/rust-s3
Length of output: 2340
🏁 Script executed:
Repository: durch/rust-s3
Length of output: 692
🏁 Script executed:
Repository: durch/rust-s3
Length of output: 2506
🏁 Script executed:
Repository: durch/rust-s3
Length of output: 187
🏁 Script executed:
Repository: durch/rust-s3
Length of output: 988
The
tokio-rustls-tlsfeature requires explicit CryptoProvider initialization.Line 100 enables
reqwest/rustls-no-provider, which requires library users to callCryptoProvider::install_default()(e.g.,rustls::crypto::ring::default_provider().install_default()) before making any TLS connections. Without this, code usingtokio-rustls-tlswill panic at runtime with "no process-level CryptoProvider available." The example inexamples/tokio-backend.rsdoes not demonstrate this requirement. Add an example or documentation showing how users should initialize the provider when using this feature.🤖 Prompt for AI Agents