-
-
Notifications
You must be signed in to change notification settings - Fork 182
fix: do not pull in aws-lc-rs by default
#1101
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,7 +57,7 @@ curl = ["dep:curl", "httpdate"] | |
| ureq = ["dep:ureq", "httpdate"] | ||
| # transport settings | ||
| native-tls = ["dep:native-tls", "reqwest?/native-tls", "ureq?/native-tls"] | ||
| rustls = ["dep:rustls", "reqwest?/rustls", "ureq?/rustls"] | ||
| rustls = ["dep:rustls", "reqwest?/rustls-no-provider", "ureq?/rustls"] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rustls feature causes runtime panic without crypto providerHigh Severity Changing Reviewed by Cursor Bugbot for commit d0ea483. Configure here. |
||
| embedded-svc-http = ["dep:embedded-svc", "dep:esp-idf-svc"] | ||
|
|
||
| [dependencies] | ||
|
|
||


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.
Bug: The
rustlsfeature now usesrustls-no-provider, requiring users to manually configure a crypto provider to avoid a runtime panic. This new requirement is not documented.Severity: MEDIUM
Suggested Fix
Update the documentation for the
rustlsfeature insentry/lib.rsandsentry/README.mdto explicitly state that users must install a crypto provider themselves. Provide a code example showing how to install a provider likeringoraws_lc_rs.Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.