Skip to content

Commit

Permalink
feat(releases): vendored ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleygwilliams committed Oct 8, 2018
1 parent 3d2c7f2 commit 47d920b
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -32,7 +32,7 @@ matrix:
- env: JOB=dist-linux TARGET=x86_64-unknown-linux-musl
rust: stable
before_script: rustup target add $TARGET
script: cargo build --release --target $TARGET --locked
script: cargo build --release --target $TARGET --locked --features vendored-openssl
addons:
apt:
packages:
Expand Down
40 changes: 40 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Expand Up @@ -23,8 +23,12 @@ liquid = "0.15.0"
walkdir = "2.1.4"
remove_dir_all = "0.5.1"
ignore = "0.4.3"
openssl = { version = '0.10.11', optional = true }

[dev-dependencies]
predicates = "0.5.0"
assert_cmd = "0.4"
tempfile = "3.0.2"

[features]
vendored-openssl = ['openssl/vendored']

0 comments on commit 47d920b

Please sign in to comment.