-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moves app_services related code to tembo-stacks crate from control pl…
…ane so it can be used at other places (#529)
- Loading branch information
1 parent
6ec13c7
commit ea104f9
Showing
11 changed files
with
3,884 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Tembo Stacks | ||
|
||
Tembo Stacks Crate |
Oops, something went wrong.