forked from github-starred/komodo
* BatchDestroyDeployment * periphery image pull api * Add Pull apis * Add PullStack / PullDeployment * improve init deploy from container * stacks + deployments update_available source * Fix deploy / destroy stack service * updates available indicator * add poll for updates and auto update options * use interval to handle waiting between resource refresh * stack auto update deploy whole stack * format * clean up the docs * update available alerts * update alerting format * fix most clippy
74 lines
1.8 KiB
TOML
74 lines
1.8 KiB
TOML
[package]
|
|
name = "komodo_core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "core"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# local
|
|
komodo_client = { workspace = true, features = ["mongo"] }
|
|
periphery_client.workspace = true
|
|
environment_file.workspace = true
|
|
formatting.workspace = true
|
|
command.workspace = true
|
|
logger.workspace = true
|
|
cache.workspace = true
|
|
git.workspace = true
|
|
# mogh
|
|
serror = { workspace = true, features = ["axum"] }
|
|
merge_config_files.workspace = true
|
|
async_timing_util.workspace = true
|
|
partial_derive2.workspace = true
|
|
derive_variants.workspace = true
|
|
mongo_indexed.workspace = true
|
|
resolver_api.workspace = true
|
|
toml_pretty.workspace = true
|
|
mungos.workspace = true
|
|
slack.workspace = true
|
|
svi.workspace = true
|
|
# external
|
|
axum-server.workspace = true
|
|
ordered_hash_map.workspace = true
|
|
openidconnect.workspace = true
|
|
urlencoding.workspace = true
|
|
aws-sdk-ec2.workspace = true
|
|
aws-config.workspace = true
|
|
tokio-util.workspace = true
|
|
axum-extra.workspace = true
|
|
tower-http.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml.workspace = true
|
|
typeshare.workspace = true
|
|
octorust.workspace = true
|
|
wildcard.workspace = true
|
|
dashmap.workspace = true
|
|
tracing.workspace = true
|
|
reqwest.workspace = true
|
|
futures.workspace = true
|
|
nom_pem.workspace = true
|
|
dotenvy.workspace = true
|
|
anyhow.workspace = true
|
|
bcrypt.workspace = true
|
|
base64.workspace = true
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
regex.workspace = true
|
|
axum.workspace = true
|
|
toml.workspace = true
|
|
uuid.workspace = true
|
|
envy.workspace = true
|
|
rand.workspace = true
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
jwt.workspace = true
|
|
hex.workspace = true
|