Skip to content

Commit b48d994

Browse files
committed
chore(api): formalize /metadata (#3563)
1 parent d6f0db0 commit b48d994

File tree

26 files changed

+263
-187
lines changed

26 files changed

+263
-187
lines changed

Cargo.lock

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ papaya = "0.2.1"
5252
pest_derive = "2.7"
5353
portpicker = "0.1"
5454
prettyplease = "0.2"
55-
protobuf = "2.28"
5655
quote = "1.0"
5756
rand = "0.8"
5857
regex = "1.4"

engine/artifacts/openapi.json

Lines changed: 60 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

engine/docker/engine/linux-aarch64.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ RUN apt-get update && apt-get install -y \
1313
clang-14 \
1414
libssl-dev \
1515
pkg-config \
16-
protobuf-compiler \
1716
ca-certificates \
1817
g++ \
1918
git-lfs \

engine/docker/engine/linux-x86_64.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ RUN apt-get update && apt-get install -y \
1313
clang-14 \
1414
libssl-dev \
1515
pkg-config \
16-
protobuf-compiler \
1716
ca-certificates \
1817
g++ \
1918
g++-multilib \

engine/docker/engine/macos-aarch64.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ ARG VITE_APP_API_URL=__SAME__
77
# Install dependencies
88
RUN apt-get update && apt-get install -y \
99
git-lfs \
10-
protobuf-compiler \
1110
clang \
1211
cmake \
1312
patch \

engine/docker/engine/macos-x86_64.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ ARG VITE_APP_API_URL=__SAME__
77
# Install dependencies
88
RUN apt-get update && apt-get install -y \
99
git-lfs \
10-
protobuf-compiler \
1110
clang \
1211
cmake \
1312
patch \

engine/docker/engine/windows.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ RUN apt-get update && apt-get install -y \
1010
libclang-14-dev \
1111
clang-14 \
1212
git-lfs \
13-
protobuf-compiler \
1413
gcc-mingw-w64-x86-64 \
1514
g++-mingw-w64-x86-64 \
1615
binutils-mingw-w64-x86-64 \

engine/docker/universal/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ RUN apt-get update -y && \
2121
libpq-dev \
2222
libssl-dev \
2323
pkg-config \
24-
protobuf-compiler \
2524
ca-certificates \
2625
gpg \
2726
openssl \

engine/packages/api-peer/src/actors/delete.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ pub struct DeletePath {
2323
}
2424

2525
#[utoipa::path(
26-
delete,
26+
delete,
2727
operation_id = "actors_delete",
28-
path = "/actors/{actor_id}",
29-
params(
30-
("actor_id" = Id, Path),
31-
DeleteQuery,
32-
),
33-
responses(
34-
(status = 200, body = DeleteResponse),
35-
),
28+
path = "/actors/{actor_id}",
29+
params(
30+
("actor_id" = Id, Path),
31+
DeleteQuery,
32+
),
33+
responses(
34+
(status = 200, body = DeleteResponse),
35+
),
3636
)]
3737
#[tracing::instrument(skip_all)]
3838
pub async fn delete(ctx: ApiCtx, path: DeletePath, query: DeleteQuery) -> Result<DeleteResponse> {

0 commit comments

Comments
 (0)