From e439eafa57232ee142889f8b749e7c8150adf64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 25 Sep 2023 14:27:01 +0300 Subject: [PATCH] chore(gateway): add orchestrator as a dependency --- Cargo.lock | 1 + Cargo.toml | 1 + gateway/Cargo.toml | 3 +++ 3 files changed, 5 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 1f1104ed2..ed4174463 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5653,6 +5653,7 @@ dependencies = [ "serde", "serde_json", "shuttle-common", + "shuttle-orchestrator", "shuttle-proto", "snailquote", "sqlx", diff --git a/Cargo.toml b/Cargo.toml index 5c208b590..1a42309e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,6 +36,7 @@ repository = "https://github.com/shuttle-hq/shuttle" shuttle-codegen = { path = "codegen", version = "0.27.0" } shuttle-common = { path = "common", version = "0.27.0" } shuttle-common-tests = { path = "common-tests", version = "0.27.0" } +shuttle-orchestrator = { path = "orchestrator", version = "0.27.0" } shuttle-proto = { path = "proto", version = "0.27.0" } shuttle-service = { path = "service", version = "0.27.0" } diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index df1266a88..2acfd7a74 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -61,6 +61,9 @@ features = ["backend", "models", "openapi"] [dependencies.shuttle-proto] workspace = true +[dependencies.shuttle-orchestrator] +workspace = true + [dev-dependencies] anyhow = { workspace = true } colored = { workspace = true }