Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moves app_services related code to tembo-stacks crate from control plane so it can be used at other places #529

Merged
merged 3 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,125 changes: 3,125 additions & 0 deletions tembo-stacks/Cargo.lock

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions tembo-stacks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "tembo-stacks"
description = "Tembo Stacks for Postgres"
version = "0.1.0"
authors = ["tembo.io"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tembo-io/tembo"

[dependencies]
anyhow = "1.0.71"
futures = "0.3.28"
lazy_static = "1.4.0"
schemars = {version = "0.8.12", features = ["chrono"]}
k8s-openapi = { version = "0.18.0", features = ["v1_25", "schemars"], default-features = false } # This version has to be in line with the same version we use in the controller
serde = "1.0.152"
serde_yaml = "0.9.21"
tembo-controller = { package = "controller", version = "0.33.0" }
tracing = "0.1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }
3 changes: 3 additions & 0 deletions tembo-stacks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Tembo Stacks

Tembo Stacks Crate
Loading
Loading