File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,7 @@ Json output:
244
244
By default, the SDK uses [ ` reqwest ` ] ( https://docs.rs/reqwest/latest/reqwest/ ) to make http calls.
245
245
The SDK lets you customize the http client by implementing the ` HttpClient ` trait yourself and
246
246
initializing the ` Client ` with the ` new_with_client ` method.
247
+ You may be interested by the ` futures-unsend ` feature which lets you specify a non-Send http client.
247
248
248
249
## 🌐 Running in the Browser with WASM <!-- omit in TOC -->
249
250
Original file line number Diff line number Diff line change 222
222
//! By default, the SDK uses [`reqwest`](https://docs.rs/reqwest/latest/reqwest/) to make http calls.
223
223
//! The SDK lets you customize the http client by implementing the `HttpClient` trait yourself and
224
224
//! initializing the `Client` with the `new_with_client` method.
225
+ //! You may be interested by the `futures-unsend` feature which lets you specify a non-Send http client.
225
226
#![ warn( clippy:: all) ]
226
227
#![ allow( clippy:: needless_doctest_main) ]
227
228
You can’t perform that action at this time.
0 commit comments