Skip to content

Commit 7fefd90

Browse files
committed
Merge #341: Use minreq_http feature of jsonrpc
93e9af8 Use minreq_http feature of jsonrpc (Tobin C. Harding) Pull request description: Recently in `jsonrpc` we added an HTTP client that uses `minreq`. Since we now use a version of `jsonrpc` with this feature we can now use `minreq` here. ACKs for top commit: apoelstra: ACK 93e9af8 Tree-SHA512: ad23bb15a5f03f9f9d2e41bf88e4fdbd0fb470b18a708f88b1b7357152f9e9f869ea1791024c88155f6b1eeec9de7d916155564f611df24f69aede9044e2053e
2 parents 3df239b + 93e9af8 commit 7fefd90

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

Cargo-minimal.lock

+12
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
223223
checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf"
224224
dependencies = [
225225
"base64",
226+
"minreq",
226227
"serde",
227228
"serde_json",
228229
]
@@ -251,6 +252,17 @@ version = "0.4.18"
251252
source = "registry+https://github.com/rust-lang/crates.io-index"
252253
checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
253254

255+
[[package]]
256+
name = "minreq"
257+
version = "2.11.2"
258+
source = "registry+https://github.com/rust-lang/crates.io-index"
259+
checksum = "6fdef521c74c2884a4f3570bcdb6d2a77b3c533feb6b27ac2ae72673cc221c64"
260+
dependencies = [
261+
"log",
262+
"serde",
263+
"serde_json",
264+
]
265+
254266
[[package]]
255267
name = "ppv-lite86"
256268
version = "0.2.17"

Cargo-recent.lock

+12
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
223223
checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf"
224224
dependencies = [
225225
"base64",
226+
"minreq",
226227
"serde",
227228
"serde_json",
228229
]
@@ -251,6 +252,17 @@ version = "0.4.18"
251252
source = "registry+https://github.com/rust-lang/crates.io-index"
252253
checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
253254

255+
[[package]]
256+
name = "minreq"
257+
version = "2.11.2"
258+
source = "registry+https://github.com/rust-lang/crates.io-index"
259+
checksum = "6fdef521c74c2884a4f3570bcdb6d2a77b3c533feb6b27ac2ae72673cc221c64"
260+
dependencies = [
261+
"log",
262+
"serde",
263+
"serde_json",
264+
]
265+
254266
[[package]]
255267
name = "ppv-lite86"
256268
version = "0.2.17"

client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ path = "src/lib.rs"
2222
bitcoincore-rpc-json = { version = "0.18.0", path = "../json" }
2323

2424
log = "0.4.5"
25-
jsonrpc = { version = "0.18.0", features = [] }
25+
jsonrpc = { version = "0.18.0", features = ["minreq_http"] }
2626

2727
# Used for deserialization of JSON.
2828
serde = "1"

0 commit comments

Comments
 (0)