Skip to content

Commit 0c8c885

Browse files
committed
ref: Remove openssl-probe
1 parent f45c652 commit 0c8c885

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

relay/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,5 @@ relay-config = { path = "../relay-config" }
2929
relay-log = { path = "../relay-log" }
3030
relay-server = { path = "../relay-server" }
3131

32-
[target."cfg(not(windows))".dependencies]
33-
openssl-probe = "0.1.2"
34-
3532
[build-dependencies]
3633
clap = { version = "2.33.1", default-features = false }

relay/src/main.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,6 @@ use std::process;
8686
use relay_log::Hub;
8787

8888
pub fn main() {
89-
// on non windows machines we want to initialize the openssl envvars based on
90-
// what openssl probe tells us. We will eventually stop doing that if we
91-
// kill openssl.
92-
#[cfg(not(windows))]
93-
{
94-
use openssl_probe::init_ssl_cert_env_vars;
95-
init_ssl_cert_env_vars();
96-
}
97-
9889
let exit_code = match cli::execute() {
9990
Ok(()) => 0,
10091
Err(err) => {

0 commit comments

Comments
 (0)