Skip to content

Commit

Permalink
test MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
RCasatta committed May 5, 2022
1 parent 8d8e3ae commit 4a5493c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ "1.41.1", "stable", "nightly" ]
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" ]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ env_logger = "0.8"
[build-dependencies]
bitcoin_hashes = "0.10"
tar = "0.4"

# allows to keep MSRV 1.41.1
ureq = "1.0"
filetime = "=0.2.15"
flate2 = "=1.0.22"
ureq = "2.0"
flate2 = "1.0"

[features]
"23_0" = []
Expand Down
1 change: 1 addition & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ fn main() {

let _size = ureq::get(&url)
.call()
.unwrap()
.into_reader()
.read_to_end(&mut downloaded_bytes)
.unwrap();
Expand Down

0 comments on commit 4a5493c

Please sign in to comment.