Skip to content

Commit 2b0cd90

Browse files
committed
chore(deps): update reqwest to 0.12
1 parent 9c9e7a5 commit 2b0cd90

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/cont_integration.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,18 @@ jobs:
5454
- name: Pin dependencies for MSRV
5555
if: matrix.rust.version == '1.63.0'
5656
run: |
57+
cargo update -p reqwest --precise "0.12.4"
58+
cargo update -p minreq --precise "2.13.2"
5759
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
5860
cargo update -p time --precise "0.3.20"
59-
cargo update -p home --precise 0.5.5
61+
cargo update -p home --precise "0.5.5"
6062
cargo update -p url --precise "2.5.0"
6163
cargo update -p tokio --precise "1.38.1"
62-
cargo update -p tokio-util --precise "0.7.11"
63-
cargo update -p indexmap --precise "2.5.0"
6464
cargo update -p security-framework-sys --precise "2.11.1"
6565
cargo update -p native-tls --precise "0.2.13"
66+
cargo update -p ring --precise "0.17.12"
6667
cargo update -p flate2 --precise "1.0.35"
68+
cargo update -p once_cell --precise "1.20.3"
6769
- name: Build
6870
run: cargo build --features ${{ matrix.features }} --no-default-features
6971
- name: Test

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bitcoin = { version = "0.32", features = ["serde", "std"], default-features = fa
2222
hex = { version = "0.2", package = "hex-conservative" }
2323
log = "^0.4"
2424
minreq = { version = "2.11.0", features = ["json-using-serde"], optional = true }
25-
reqwest = { version = "0.11", features = ["json"], default-features = false, optional = true }
25+
reqwest = { version = "0.12", features = ["json"], default-features = false, optional = true }
2626

2727
# default async runtime
2828
tokio = { version = "1", features = ["time"], optional = true }

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ This library should compile with any combination of features with Rust 1.63.0.
1919
To build with the MSRV you will need to pin dependencies as follows:
2020

2121
```shell
22+
cargo update -p reqwest --precise "0.12.4"
23+
cargo update -p minreq --precise "2.13.2"
2224
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
2325
cargo update -p time --precise "0.3.20"
24-
cargo update -p home --precise 0.5.5
26+
cargo update -p home --precise "0.5.5"
2527
cargo update -p url --precise "2.5.0"
2628
cargo update -p tokio --precise "1.38.1"
27-
cargo update -p tokio-util --precise "0.7.11"
28-
cargo update -p indexmap --precise "2.5.0"
2929
cargo update -p security-framework-sys --precise "2.11.1"
3030
cargo update -p native-tls --precise "0.2.13"
31+
cargo update -p ring --precise "0.17.12"
3132
cargo update -p flate2 --precise "1.0.35"
32-
```
33+
cargo update -p once_cell --precise "1.20.3"
34+
```

0 commit comments

Comments
 (0)