diff --git a/Cargo.lock b/Cargo.lock index ee3fcd1e..ffbfe90e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -3372,18 +3372,32 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.12.1" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" +checksum = "00432f493971db5d8e47a65aeb3b02f8226b9b11f1450ff86bb772776ebadd70" dependencies = [ "base64 0.22.1", "flate2", "log", - "once_cell", + "percent-encoding", "rustls 0.23.31", + "rustls-pemfile", "rustls-pki-types", - "url", - "webpki-roots 0.26.11", + "ureq-proto", + "utf-8", + "webpki-roots 1.0.2", +] + +[[package]] +name = "ureq-proto" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5b6cabebbecc4c45189ab06b52f956206cea7d8c8a20851c35a85cb169224cc" +dependencies = [ + "base64 0.22.1", + "http 1.3.1", + "httparse", + "log", ] [[package]] diff --git a/test_client/Cargo.toml b/test_client/Cargo.toml index 932b520b..d988f534 100644 --- a/test_client/Cargo.toml +++ b/test_client/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" [dependencies] tungstenite = { version = "0.26.2", features = ["rustls-tls-webpki-roots", "url"] } serde_json = "1.0.142" -ureq = "2.12.1" +ureq = "3.1.0" flexi_logger = { version = "0.29.8", features = ["colors"] } log = "0.4.27" base64 = "0.22.1"