Skip to content

Commit

Permalink
remove all native-tls (openssl) dependencies (#101)
Browse files Browse the repository at this point in the history
- remove `native-tls` (and therefore `openssl`) dependecy from `sentry`

This was the last crate that, with its features, required openssl. This
seems to overwrite the features of the other crates, enabling
`native-tls` for reqwest as a whole. This is not supported by the docker
image.
  • Loading branch information
wagpa authored Apr 29, 2024
1 parent d7c572d commit da96045
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 163 deletions.
218 changes: 56 additions & 162 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ futures-util = "0.3.30"
config = "0.14.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
sentry = { version = "0.32.2" }
sentry = { version = "0.32.2", default-features = false, features = ["backtrace", "contexts", "panic", "debug-images", "reqwest", "rustls", "tower"] }
sentry-tracing = "0.32.2"
moka = { version = "0.12.5", features = ["future"] }
axum = "0.7.5"
Expand Down

0 comments on commit da96045

Please sign in to comment.