Skip to content

Commit fb29603

Browse files
committed
remove dependency pinning, increase MSRV to 1.53.0
1 parent 8d8e3ae commit fb29603

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-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.53.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" = []

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ let bitcoind = bitcoind::BitcoinD::new(bitcoind::downloaded_exe_path().unwrap())
3535

3636
## MSRV
3737

38+
### current 0.27+
39+
40+
1.53.0
41+
42+
### version 0.26.0
43+
3844
1.41.1
3945

4046
## Issues with traditional approach

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)