From 114d4f0172e2211fd437a08a67234af6a8f7aaaa Mon Sep 17 00:00:00 2001 From: edouardparis Date: Mon, 9 Sep 2024 12:43:27 +0200 Subject: [PATCH] fix reqwest msrv --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eea470b..653fd6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ serialport = { version = "4.3", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } serde_bytes = { version = "0.11.14", optional = true } serde_cbor = { version = "0.11", optional = true } -reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] , optional = true} +reqwest = { version = "0.11.26", default-features = false, features = ["json", "rustls-tls"] , optional = true} # bitbox bitbox-api = { version = "0.2.3", default-features = false, features = ["usb", "tokio", "multithreaded"], optional = true } @@ -62,7 +62,7 @@ hidapi = { version = "2.5.1", features = ["linux-static-hidraw"], default-featur regex = { version = "1.6.0", optional = true } # jade & specter & ledger & bitbox -tokio = { version = "1.21.0", features = ["net", "time", "io-util", "sync", "macros"], optional = true } +tokio = { version = "1.21", features = ["net", "time", "io-util", "sync", "macros"], optional = true } [dev-dependencies] tokio = { version = "1.21", features = ["macros", "net", "rt", "rt-multi-thread", "io-util", "sync"] }