Skip to content

Commit 345fc9a

Browse files
committed
Testing CI
1 parent fda978f commit 345fc9a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
rust:
1919
- version: stable # STABLE
20-
- version: 1.63.0 # MSRV
20+
- version: 1.71.0 # MSRV
2121
features:
2222
- default
2323
- blocking
@@ -52,13 +52,12 @@ jobs:
5252
- name: Update toolchain
5353
run: rustup update
5454
- name: Pin dependencies for MSRV
55-
if: matrix.rust.version == '1.63.0'
55+
if: matrix.rust.version == '1.71.0'
5656
run: |
5757
cargo update -p minreq --precise "2.13.2"
5858
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
5959
cargo update -p time --precise "0.3.20"
6060
cargo update -p home --precise "0.5.5"
61-
cargo update -p tokio --precise "1.38.1"
6261
cargo update -p security-framework-sys --precise "2.11.1"
6362
cargo update -p native-tls --precise "0.2.13"
6463
cargo update -p ring --precise "0.17.12"

Cargo.toml

Lines changed: 4 additions & 4 deletions
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-
async_minreq = { git = "https://github.com/BEULAHEVANJALIN/async-minreq.git" }
25+
async_minreq = { git = "https://github.com/psg-19/async-minreq.git", default-features = false, optional = true }
2626
serde_json = "1.0.140"
2727

2828
# default async runtime
@@ -43,8 +43,8 @@ blocking-https-native = ["blocking", "minreq/https-native"]
4343
blocking-https-bundled = ["blocking", "minreq/https-bundled"]
4444

4545
tokio = ["dep:tokio"]
46-
async = ["tokio?/time"]
46+
async = ["async_minreq", "tokio?/time"]
4747
async-https = ["async"]
48-
async-https-native = ["async"]
49-
async-https-rustls = ["async"]
48+
async-https-native = ["async", "async_minreq/native-tls"]
49+
async-https-rustls = ["async", "async_minreq/rustls"]
5050
async-https-rustls-manual-roots = ["async"]

0 commit comments

Comments
 (0)