Skip to content

Commit 348e2ab

Browse files
authored
1 parent 38636c8 commit 348e2ab

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/minimal.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on: [push]
2+
name: With dependencies at minimal versions
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions-rs/toolchain@v1
8+
with:
9+
profile: minimal
10+
toolchain: nightly
11+
- uses: actions-rs/toolchain@v1
12+
with:
13+
profile: minimal
14+
toolchain: stable
15+
- uses: actions/checkout@v2
16+
- name: cargo update -Zminimal-versions
17+
uses: actions-rs/cargo@v1
18+
with:
19+
command: update
20+
toolchain: nightly
21+
args: -Zminimal-versions
22+
- name: cargo test
23+
uses: actions-rs/cargo@v1
24+
with:
25+
command: test

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ default = [ "serialization", "sync" ]
2929
[dependencies]
3030
num-traits = "0.2"
3131
byteorder = "1.0.0"
32-
flate2 = { version = "1.0", optional = true }
32+
flate2 = { version = "1.0.3", optional = true }
3333
nom = { version = "7.0.0", optional = true }
3434
base64 = { version = "0.13", optional = true }
3535
crossbeam-channel = { version = "0.5", optional = true }

0 commit comments

Comments
 (0)