Skip to content

Commit

Permalink
fix: remove linked openssl from application binary #47
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jun 7, 2022
1 parent 7333efe commit 4150660
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 98 deletions.
94 changes: 0 additions & 94 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ simplelog = "0.9.0"
log = "0.4.8"
maplit = "1.0.2"
itertools = "0.10.0"
native-tls = "0.2"
hyper-tls = "0.5.0"
hyper = { version = "0.14", features = ["full"] }
http = "0.2.0"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
base64 = "0.13.0"
regex = "1.4.3"
reqwest = { version = "0.11", features = ["json", "native-tls"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-native-roots"] }
tower-service = "0.3.0"

[dev-dependencies]
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ async fn pact_from_url(
let client = if insecure_tls {
warn!("Disabling TLS certificate validation");
reqwest::Client::builder()
.danger_accept_invalid_hostnames(true)
.danger_accept_invalid_certs(true)
.build()?
} else {
Expand Down

0 comments on commit 4150660

Please sign in to comment.