-
Notifications
You must be signed in to change notification settings - Fork 84
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
Introduce separate features for pki and tls functionalities of mbedtls #326
Conversation
Hi @s-arash , could you rebase your PR onto latest |
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.
Also, regarding the crate version. Do you want to update version number in this PR or create another one?
8ed37a4
to
4a33e4c
Compare
What's your preference? I can update the version in this PR. |
Sure let's do it. |
bors r+ |
326: Introduce separate features for pki and tls functionalities of mbedtls r=Taowyoo a=s-arash To statically guarantee that unwanted capabilities of this crate are not used (e.g., a client could only require the crypto functionality of this crate and not its ssl capabilities), this PR introduces two features: `x509` and `ssl`. `x509` enables the pki functionality of the crate and `ssl` enables its tls/ssl capabilities. Co-authored-by: Arash Sahebolamri <[email protected]>
Canceled. |
bors r+ |
Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
To statically guarantee that unwanted capabilities of this crate are not used (e.g., a client could only require the crypto functionality of this crate and not its ssl capabilities), this PR introduces two features:
x509
andssl
.x509
enables the pki functionality of the crate andssl
enables its tls/ssl capabilities.