Skip to content

Commit

Permalink
fix(deps): update rust crate reqwest to 0.12.10
Browse files Browse the repository at this point in the history
  • Loading branch information
defelo-renovate[bot] authored Dec 26, 2024
1 parent f3c7957 commit 062e8e0
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 5 deletions.
26 changes: 24 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

117 changes: 115 additions & 2 deletions Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4984,9 +4984,9 @@ rec {
};
"reqwest" = rec {
crateName = "reqwest";
version = "0.12.9";
version = "0.12.10";
edition = "2021";
sha256 = "0vq40h75fmrkfjyyjxl84g0pzjzz0n989ag1cajy17g78spn4z57";
sha256 = "1509p2kqrb6vzh8b9i19g038ky333xg3s9ryrylblm7w3hr3cd9x";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
Expand Down Expand Up @@ -5151,6 +5151,12 @@ rec {
target = { target, features }: (!("wasm32" == target."arch" or null));
features = [ "tls12" ];
}
{
name = "tower";
packageId = "tower";
usesDefaultFeatures = false;
features = [ "timeout" "util" ];
}
{
name = "tower-service";
packageId = "tower-service";
Expand Down Expand Up @@ -5228,6 +5234,12 @@ rec {
target = {target, features}: (!("wasm32" == target."arch" or null));
features = [ "macros" "rt-multi-thread" ];
}
{
name = "tower";
packageId = "tower";
usesDefaultFeatures = false;
features = [ "limit" ];
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
Expand Down Expand Up @@ -7173,6 +7185,107 @@ rec {
};
resolvedDefaultFeatures = [ "default" "display" "parse" "serde" ];
};
"tower" = rec {
crateName = "tower";
version = "0.5.2";
edition = "2018";
sha256 = "1ybmd59nm4abl9bsvy6rx31m4zvzp5rja2slzpn712y9b68ssffh";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
optional = true;
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "sync_wrapper";
packageId = "sync_wrapper";
optional = true;
}
{
name = "tokio";
packageId = "tokio";
optional = true;
features = [ "sync" ];
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
];
devDependencies = [
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "sync" "test-util" "rt-multi-thread" ];
}
];
features = {
"__common" = [ "futures-core" "pin-project-lite" ];
"balance" = [ "discover" "load" "ready-cache" "make" "slab" "util" ];
"buffer" = [ "__common" "tokio/sync" "tokio/rt" "tokio-util" "tracing" ];
"discover" = [ "__common" ];
"filter" = [ "__common" "futures-util" ];
"full" = [ "balance" "buffer" "discover" "filter" "hedge" "limit" "load" "load-shed" "make" "ready-cache" "reconnect" "retry" "spawn-ready" "steer" "timeout" "util" ];
"futures-core" = [ "dep:futures-core" ];
"futures-util" = [ "dep:futures-util" ];
"hdrhistogram" = [ "dep:hdrhistogram" ];
"hedge" = [ "util" "filter" "futures-util" "hdrhistogram" "tokio/time" "tracing" ];
"indexmap" = [ "dep:indexmap" ];
"limit" = [ "__common" "tokio/time" "tokio/sync" "tokio-util" "tracing" ];
"load" = [ "__common" "tokio/time" "tracing" ];
"load-shed" = [ "__common" ];
"log" = [ "tracing/log" ];
"make" = [ "futures-util" "pin-project-lite" "tokio/io-std" ];
"pin-project-lite" = [ "dep:pin-project-lite" ];
"ready-cache" = [ "futures-core" "futures-util" "indexmap" "tokio/sync" "tracing" "pin-project-lite" ];
"reconnect" = [ "make" "tokio/io-std" "tracing" ];
"retry" = [ "__common" "tokio/time" "util" ];
"slab" = [ "dep:slab" ];
"spawn-ready" = [ "__common" "futures-util" "tokio/sync" "tokio/rt" "util" "tracing" ];
"sync_wrapper" = [ "dep:sync_wrapper" ];
"timeout" = [ "pin-project-lite" "tokio/time" ];
"tokio" = [ "dep:tokio" ];
"tokio-stream" = [ "dep:tokio-stream" ];
"tokio-util" = [ "dep:tokio-util" ];
"tracing" = [ "dep:tracing" ];
"util" = [ "__common" "futures-util" "pin-project-lite" "sync_wrapper" ];
};
resolvedDefaultFeatures = [ "__common" "futures-core" "futures-util" "pin-project-lite" "sync_wrapper" "timeout" "tokio" "util" ];
};
"tower-layer" = rec {
crateName = "tower-layer";
version = "0.3.3";
edition = "2018";
sha256 = "03kq92fdzxin51w8iqix06dcfgydyvx7yr6izjq0p626v9n2l70j";
libName = "tower_layer";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];

};
"tower-service" = rec {
crateName = "tower-service";
version = "0.3.3";
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ poem-openapi = ["dep:poem-openapi"]

[dependencies]
poem-openapi = { version = "5.1.4", default-features = false, optional = true, features = ["uuid"] }
reqwest = { version = "0.12.9", default-features = false, optional = true, features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.10", default-features = false, optional = true, features = ["json", "rustls-tls"] }
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand Down

0 comments on commit 062e8e0

Please sign in to comment.