Skip to content

Commit

Permalink
moves app_services related code to tembo-stacks crate from control pl…
Browse files Browse the repository at this point in the history
…ane so it can be used at other places (#529)
  • Loading branch information
shahadarsh authored Feb 6, 2024
1 parent 6ec13c7 commit ea104f9
Show file tree
Hide file tree
Showing 11 changed files with 3,884 additions and 0 deletions.
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

0 comments on commit ea104f9

Please sign in to comment.