-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add Rustls support #129
Add Rustls support #129
Conversation
.circleci/config.yml
Outdated
name: More unit testing | ||
name: Unit testing with ssl-rustls feature | ||
command: | | ||
RUST_BACKTRACE=1 cargo test -j 8 --verbose --features ssl |
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.
Is your intention to specify the ssl-rustls option?
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.
lol
docker load -i test-signal | ||
RUST_BACKTRACE=1 cargo test --verbose --features ssl -- --ignored | ||
- run: | ||
name: More unit testing with ssl-rustls feature | ||
command: | | ||
docker load -i test-iostream | ||
docker load -i test-signal |
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.
Same above (ssl-rustls?).
And in this point, test-iostrem and test-signal are loaded already at More unit testing with ssl feature
.
(Are you talking about the #128 ?) |
Rustls does not seem to support connecting to IP address. However, docker uses IP address. Thus we cannot use Rustls for now. See also |
fix
#812#128 . This patch bumps MSRV to 1.56.0 because rustls requires it.