Skip to content

Commit

Permalink
feat(orchestrator): initialize shuttle-orchestrator as a library (shu…
Browse files Browse the repository at this point in the history
…ttle-hq#1271)

* feat(orchestrator): initialize shuttle-orchestrator as a library

* chore(gateway): add orchestrator as a dependency
  • Loading branch information
orhun authored and iulianbarbu committed Sep 27, 2023
1 parent f1f41d0 commit 145114e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ members = [
"deployer",
"gateway",
"logger",
"orchestrator",
"proto",
"provisioner",
"resource-recorder",
Expand All @@ -35,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" }

Expand Down
3 changes: 3 additions & 0 deletions gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
8 changes: 8 additions & 0 deletions orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "shuttle-orchestrator"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
1 change: 1 addition & 0 deletions orchestrator/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//! shuttle-orchestrator: manages the services’ sandboxing, and state.

0 comments on commit 145114e

Please sign in to comment.