Skip to content
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

[rust]: allow specifying TLS flavour to use #892

Merged
merged 1 commit into from
Apr 18, 2023
Merged

Conversation

marcoslopes
Copy link
Contributor

// only the default-tls
cargo tree

// both since features are additive
cargo tree --features rustls-tls

// only rustls-tls
cargo tree --features rustls-tls --no-default-features

closes #889

Motivation

Bellow is verbatim copy from issue #889 created by @msdinit

We are building our application against musl, cross-compiling it from regular libc Ubuntu. However, we are having issues with svix client, because it depends on system OpenSSL, which in our case would be linked against libc. There sfackler/rust-openssl#603, but they are a bit involved.

Solution

Added cargo features allowing users to choose which ssl version to use for svix reqwest http client, keeping backwards compatibility.

tasn
tasn previously approved these changes Apr 15, 2023
// only the default-tls
cargo tree

// both since features are additive
cargo tree --features rustls-tls

// only rustls-tls
cargo tree --features rustls-tls --no-default-features

closes svix#889
@svix-daniel svix-daniel merged commit 80e0cd3 into svix:main Apr 18, 2023
svix-gabriel pushed a commit that referenced this pull request Apr 18, 2023
// only the default-tls
cargo tree

// both since features are additive
cargo tree --features rustls-tls

// only rustls-tls
cargo tree --features rustls-tls --no-default-features

closes #889

## Motivation

Bellow is verbatim copy from issue #889 created by @msdinit

We are building our application against musl, cross-compiling it from
regular libc Ubuntu. However, we are having issues with svix client,
because it depends on system OpenSSL, which in our case would be linked
against libc. There sfackler/rust-openssl#603,
but they are a bit involved.

## Solution

Added cargo features allowing users to choose which ssl version to use
for svix reqwest http client, keeping backwards compatibility.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature request [rust]: allow specifying TLS flavour to use
3 participants