From ea5505625262d19b31ca503e0fe53e7bf7aa0b74 Mon Sep 17 00:00:00 2001 From: Stanislas Polu Date: Thu, 28 Nov 2024 11:47:31 +0100 Subject: [PATCH] remove dust-api definitively (#8989) --- core/Cargo.toml | 4 ---- core/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index a7dad8bc07d67..58fd09cd1e4b9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -9,10 +9,6 @@ edition = "2021" name = "core-api" path = "bin/core_api.rs" -[[bin]] -name = "dust-api" -path = "bin/core_api.rs" - [[bin]] name = "oauth" path = "bin/oauth.rs" diff --git a/core/Dockerfile b/core/Dockerfile index 3c0e5e6010f6c..bfd6124014345 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app COPY . . -RUN cargo build --release --bin core-api --bin dust-api --bin sqlite-worker +RUN cargo build --release --bin core-api --bin sqlite-worker EXPOSE 3001