Skip to content

Commit

Permalink
fix: exclude openssl from native build for musl versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Holshausen committed Jan 11, 2021
1 parent 7983363 commit 3db75af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 94 deletions.
92 changes: 0 additions & 92 deletions native/Cargo.lock

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

6 changes: 5 additions & 1 deletion native/Cargo.toml
Expand Up @@ -34,5 +34,9 @@ url = "2.2.0"
futures = "0.3"
sxd-document = "0.3.2"
async-trait = "0.1.24"
reqwest = "0.11.0"
either = "1.6.1"

[dependencies.reqwest]
version = "0.11.0"
default-features = false
features = ["rustls-tls"]
2 changes: 1 addition & 1 deletion native/src/lib.rs
Expand Up @@ -5,7 +5,7 @@
#[macro_use] extern crate serde_json;
#[macro_use] extern crate maplit;

use pact_matching::models::matchingrules::{MatchingRuleCategory, RuleList};
use pact_matching::models::matchingrules::MatchingRuleCategory;
use pact_mock_server::mock_server::MockServerConfig;
use pact_matching::models::content_types::ContentType;
use neon::prelude::*;
Expand Down

0 comments on commit 3db75af

Please sign in to comment.