summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerguey Parkhomovsky <xindigo@gmail.com>2026-03-21 09:38:27 -0700
committerSerguey Parkhomovsky <xindigo@gmail.com>2026-03-21 09:38:27 -0700
commitd0b78cc12bae1614829b92a96dbe1dbccfb0bcfb (patch)
treeec854991e0855c1fbbe35315b410c10f0de8749d
parentcfaea8ec06f493cc3b8f8909d0acef65796da5bf (diff)
remove blocking from reqwest
-rw-r--r--Cargo.lock11
-rw-r--r--Cargo.toml2
2 files changed, 1 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 6760298..1c37fb4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -240,7 +240,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
dependencies = [
"futures-core",
- "futures-sink",
]
[[package]]
@@ -250,12 +249,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
[[package]]
-name = "futures-io"
-version = "0.3.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
-
-[[package]]
name = "futures-sink"
version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -274,10 +267,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
dependencies = [
"futures-core",
- "futures-io",
"futures-sink",
"futures-task",
- "memchr",
"pin-project-lite",
"slab",
]
@@ -897,9 +888,7 @@ dependencies = [
"base64",
"bytes",
"encoding_rs",
- "futures-channel",
"futures-core",
- "futures-util",
"h2",
"http",
"http-body",
diff --git a/Cargo.toml b/Cargo.toml
index 3e378d7..577883b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-reqwest = { version = "0.12", features = ["blocking", "json"] }
+reqwest = { version = "0.12", features = ["json"] }
rumqttc = { version = "0.25.1", default-features = false, features = ["use-native-tls"] }
native-tls = "0.2"
serde = { version = "1.0", features = ["derive"] }