Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/actions-rs/grcov.yml

This file was deleted.

36 changes: 13 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md

name: CI

on: [push, pull_request]
Expand All @@ -17,11 +15,9 @@ jobs:
uses: actions/checkout@v1

- name: Install ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}

- name: Run cargo check
uses: actions-rs/cargo@v1
Expand All @@ -37,11 +33,9 @@ jobs:
uses: actions/checkout@v1

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
run: |
rustup update nightly
rustup default nightly

- name: Install cargo no-std-check
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -75,11 +69,9 @@ jobs:
uses: actions/checkout@v1

- name: Install ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}

- name: Run cargo test
uses: actions-rs/cargo@v1
Expand All @@ -99,12 +91,10 @@ jobs:
uses: actions/checkout@v1

- name: Install ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
rustup component add rustfmt clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
Expand Down
51 changes: 0 additions & 51 deletions .github/workflows/coverage.yml

This file was deleted.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ categories = ["compression", "no-std"]
license = "MIT"
edition = "2021"

[badges]
coveralls = {repository = "sile/libflate"}

[dependencies]
adler32 = { version = "1", default-features = false }
crc32fast = { version = "1.1.1", default-features = false }
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ libflate
[![libflate](https://img.shields.io/crates/v/libflate.svg)](https://crates.io/crates/libflate)
[![Documentation](https://docs.rs/libflate/badge.svg)](https://docs.rs/libflate)
[![Actions Status](https://github.com/sile/libflate/workflows/CI/badge.svg)](https://github.com/sile/libflate/actions)
[![Coverage Status](https://coveralls.io/repos/github/sile/libflate/badge.svg?branch=master)](https://coveralls.io/github/sile/libflate?branch=master)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP).
Expand Down
3 changes: 0 additions & 3 deletions libflate_lz77/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ keywords = ["lz77"]
categories = ["compression"]
license = "MIT"

[badges]
coveralls = {repository = "sile/libflate"}

[dependencies]
rle-decode-fast = "1.0.0"
core2 = { version = "0.4", default-features = false, features = ["alloc"] }
Expand Down