From a4e60c9cce8831a12c7ad9c2d4855a8ebf95d64c Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sat, 11 Apr 2026 10:27:50 +0200 Subject: fix: tests --- crates/api-core/Cargo.toml | 2 +- crates/sellershut/src/server/mod.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/api-core/Cargo.toml b/crates/api-core/Cargo.toml index ae9f8f7..1283dce 100644 --- a/crates/api-core/Cargo.toml +++ b/crates/api-core/Cargo.toml @@ -9,7 +9,7 @@ homepage.workspace = true [dependencies] axum = { workspace = true, optional = true } -serde.workspace = true +serde = { workspace = true, features = ["derive"] } utoipa = { workspace = true, optional = true } [features] diff --git a/crates/sellershut/src/server/mod.rs b/crates/sellershut/src/server/mod.rs index f8ea2c5..32f88fa 100644 --- a/crates/sellershut/src/server/mod.rs +++ b/crates/sellershut/src/server/mod.rs @@ -40,6 +40,7 @@ mod boostrap { .log_handle(log_handle) .base_service(state) .auth_clients(auth_clients) + .http_client(reqwest::Client::new().into()) .build(); server::api::router(state, config).await -- cgit v1.2.3