Skip to content

Commit

Permalink
improvement: replace reqwest with attohttpc (#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkna committed Mar 15, 2020
1 parent 8479e72 commit fef8cc8
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 665 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,18 @@ jobs:
run: sudo apt-get install -y musl-tools

- name: Build target
if: matrix.target != 'x86_64-unknown-linux-musl'
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}

- name: Build target (musl)
if: matrix.target == 'x86_64-unknown-linux-musl'
uses: actions-rs/cargo@v1
with:
command: build
args: --release --features tls-vendored --target ${{ matrix.target }}

- name: Prepare build artifacts [Windows]
if: matrix.os == 'windows-latest'
Expand Down

0 comments on commit fef8cc8

Please sign in to comment.