Skip to content

Commit 4a5493c

Browse files
committed
test MSRV
1 parent 8d8e3ae commit 4a5493c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
strategy:
6666
fail-fast: false
6767
matrix:
68-
toolchain: [ "1.41.1", "stable", "nightly" ]
68+
toolchain: [ "1.41.1", "1.42.0", "1.43.1", "1.44.1", "1.45.2", "1.46.0", "1.47.0", "1.48.0", "1.49.0", "1.50.0", "1.51.0", "1.52.1","1.53.0","1.54.0","1.55.0","1.56.1","1.57.0", "stable", "nightly" ]
6969

7070
steps:
7171
- uses: actions/checkout@v2

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ env_logger = "0.8"
2121
[build-dependencies]
2222
bitcoin_hashes = "0.10"
2323
tar = "0.4"
24-
25-
# allows to keep MSRV 1.41.1
26-
ureq = "1.0"
27-
filetime = "=0.2.15"
28-
flate2 = "=1.0.22"
24+
ureq = "2.0"
25+
flate2 = "1.0"
2926

3027
[features]
3128
"23_0" = []

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ fn main() {
8080

8181
let _size = ureq::get(&url)
8282
.call()
83+
.unwrap()
8384
.into_reader()
8485
.read_to_end(&mut downloaded_bytes)
8586
.unwrap();

0 commit comments

Comments
 (0)