aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yaml4
-rw-r--r--crates/api-core/Cargo.toml2
-rw-r--r--crates/sellershut/src/server/mod.rs1
3 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index e8ed1da..236d5d4 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -80,10 +80,6 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.msrv }}
- - name: Install protoc
- uses: arduino/setup-protoc@v3
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: cargo install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: cargo hack +${{ matrix.msrv }}
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