-
Notifications
You must be signed in to change notification settings - Fork 76
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
Bump hyper-rustls from 0.25.0 to 0.27.3 #1110
base: main
Are you sure you want to change the base?
Changes from all commits
aeb7d64
b558b82
488fb8a
935a362
84c4293
700b26d
d0eb686
9382813
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ indexmap = "2.5.0" | |
multer = "3.1.0" | ||
paste = "1.0.15" | ||
percent-encoding = "2.3.1" | ||
rustls = "0.22.4" | ||
rustls = { version = "0.23.13", default-features = false } | ||
rustls-pemfile = "2.1.3" | ||
scopeguard = "1.2.0" | ||
serde_json = "1.0.128" | ||
|
@@ -42,7 +42,7 @@ slog-async = "2.8.0" | |
slog-bunyan = "2.5.0" | ||
slog-json = "2.6.1" | ||
slog-term = "2.9.1" | ||
tokio-rustls = "0.25.0" | ||
tokio-rustls = { version = "0.26.0", default-features = false } | ||
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. Another comment here maybe? |
||
toml = "0.8.19" | ||
waitgroup = "0.1.2" | ||
|
||
|
@@ -93,7 +93,7 @@ anyhow = "1.0.89" | |
async-channel = "2.3.1" | ||
buf-list = "1.0.3" | ||
expectorate = "1.1.0" | ||
hyper-rustls = "0.26.0" | ||
hyper-rustls = { version = "0.27.3", default-features = false, features = ["http1", "ring"] } | ||
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. this adds what we need for testing across platforms 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. Another comment here maybe? |
||
hyper-staticfile = "0.10" | ||
lazy_static = "1.5.0" | ||
libc = "0.2.159" | ||
|
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.
these remove the default dependency on aws-lc-rs... which does not build on illumos
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.
Maybe add a comment here explaining why we're disabling this? Whether it's the short-term reason that aws-lc-rs doesn't build on illumos or a long-term preference to avoid it.