mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-29 21:27:26 -05:00
* inc version * Komodo interp in ui compose file * fix auto update when image doesn't specify tag by defaulting to latest * Pull image buttons don't need safety dialog * WIP crosscompile * rename * entrypoint * fix copy * remove example/* from workspace * add targets * multiarch pkg config * use specific COPY * update deps * multiarch build command * pre compile deps * cross compile * enable-linger * remove spammed log when server doesn't have docker * add multiarch.Dockerfile * fix casing * fix tag * try not let COPY fail * try * ARG TARGETPLATFORM * use /app for consistency * try * delete cross-compile approach * add multiarch core build * multiarch Deno * single arch multi arch * typeshare cli note * new typeshare * remove note about aarch64 image * test configs * fix config file headers * binaries dockerfile * update cargo build * docs * simple * just simple * use -p * add configurable binaries tag * add multi-arch * allow copy to fail * fix binary paths * frontend Dockerfiel * use dedicated static frontend build * auto retry getting instance state from aws * retry 5 times * cleanup * simplify binary build * try alpine and musl * install alpine deps * back to debian, try rustls * move fully to rustls * single arch builds using single binary image * default IMAGE_TAG * cleanup * try caching deps * single arch add frontend build * rustls::crypto::ring::default_provider() * back to simple * comment dockerfile * add select options prop, render checkboxes if present * add allowSelectedIf to enable / disable rows where necessary * rename allowSelectIf to isSelectable, allow false as global disable, disable checkboxes when not allowed * rename isSelectable to disableRow (it works the oppsite way lol) * selected resources hook, start deployment batch execute component * add deployment group actions * add deployment group actions * add default (empty) group actions for other resources * fix checkbox header styles * explicitly check if disableRow is passed (this prop is cursed) * don't disable row selection for deployments table * don't need id for groupactions * add group actions to resources page * fix row checkbox (prop not cursed, i dumb) * re-implement group action list using dropdown menu * only make group actions clickable when at least one row selected * add loading indicator * gap betwen new resource and group actions * refactor group actions * remove "Batch" from action labels * add group actions for relevant resources * fix hardcode * add selectOptions to relevant tables * select by name not id * expect selected to be names * add note re selection state init for future reference * multi select working nicely for all resources * configure server health check timeout * config message * refresh processes remove dead processes * simplify the build args * default timeout seconds 3 --------- Co-authored-by: kv <karamvir.singh98@gmail.com>
120 lines
3.0 KiB
TOML
120 lines
3.0 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"bin/*",
|
|
"lib/*",
|
|
"client/core/rs",
|
|
"client/periphery/rs",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "1.16.12"
|
|
edition = "2021"
|
|
authors = ["mbecker20 <becker.maxh@gmail.com>"]
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/mbecker20/komodo"
|
|
homepage = "https://komo.do"
|
|
|
|
[patch.crates-io]
|
|
# komodo_client = { path = "client/core/rs" }
|
|
|
|
[workspace.dependencies]
|
|
# LOCAL
|
|
# komodo_client = "1.15.6"
|
|
komodo_client = { path = "client/core/rs" }
|
|
periphery_client = { path = "client/periphery/rs" }
|
|
environment_file = { path = "lib/environment_file" }
|
|
formatting = { path = "lib/formatting" }
|
|
command = { path = "lib/command" }
|
|
logger = { path = "lib/logger" }
|
|
cache = { path = "lib/cache" }
|
|
git = { path = "lib/git" }
|
|
|
|
# MOGH
|
|
run_command = { version = "0.0.6", features = ["async_tokio"] }
|
|
serror = { version = "0.4.7", default-features = false }
|
|
slack = { version = "0.3.0", package = "slack_client_rs", default-features = false, features = ["rustls"] }
|
|
derive_default_builder = "0.1.8"
|
|
derive_empty_traits = "0.1.0"
|
|
merge_config_files = "0.1.5"
|
|
async_timing_util = "1.0.0"
|
|
partial_derive2 = "0.4.3"
|
|
derive_variants = "1.0.0"
|
|
mongo_indexed = "2.0.1"
|
|
resolver_api = "1.1.1"
|
|
toml_pretty = "1.1.2"
|
|
mungos = "1.1.0"
|
|
svi = "1.0.1"
|
|
|
|
# ASYNC
|
|
reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"] }
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
tokio-util = "0.7.12"
|
|
futures = "0.3.31"
|
|
futures-util = "0.3.31"
|
|
|
|
# SERVER
|
|
axum-extra = { version = "0.9.6", features = ["typed-header"] }
|
|
tower-http = { version = "0.6.2", features = ["fs", "cors"] }
|
|
axum-server = { version = "0.7.1", features = ["tls-rustls"] }
|
|
axum = { version = "0.7.9", features = ["ws", "json"] }
|
|
tokio-tungstenite = "0.24.0"
|
|
|
|
# SER/DE
|
|
ordered_hash_map = { version = "0.4.0", features = ["serde"] }
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
serde_json = "1.0.133"
|
|
serde_yaml = "0.9.34"
|
|
toml = "0.8.19"
|
|
|
|
# ERROR
|
|
anyhow = "1.0.93"
|
|
thiserror = "2.0.3"
|
|
|
|
# LOGGING
|
|
opentelemetry-otlp = { version = "0.27.0", features = ["tls-roots", "reqwest-rustls"] }
|
|
opentelemetry_sdk = { version = "0.27.0", features = ["rt-tokio"] }
|
|
tracing-subscriber = { version = "0.3.18", features = ["json"] }
|
|
opentelemetry-semantic-conventions = "0.27.0"
|
|
tracing-opentelemetry = "0.28.0"
|
|
opentelemetry = "0.27.0"
|
|
tracing = "0.1.40"
|
|
|
|
# CONFIG
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
dotenvy = "0.15.7"
|
|
envy = "0.4.2"
|
|
|
|
# CRYPTO / AUTH
|
|
uuid = { version = "1.11.0", features = ["v4", "fast-rng", "serde"] }
|
|
openidconnect = "3.5.0"
|
|
urlencoding = "2.1.3"
|
|
nom_pem = "4.0.0"
|
|
bcrypt = "0.16.0"
|
|
base64 = "0.22.1"
|
|
rustls = "0.23.18"
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.8"
|
|
rand = "0.8.5"
|
|
jwt = "0.16.0"
|
|
hex = "0.4.3"
|
|
|
|
# SYSTEM
|
|
bollard = "0.18.1"
|
|
sysinfo = "0.32.0"
|
|
|
|
# CLOUD
|
|
aws-config = "1.5.10"
|
|
aws-sdk-ec2 = "1.91.0"
|
|
|
|
# MISC
|
|
derive_builder = "0.20.2"
|
|
typeshare = "1.0.4"
|
|
octorust = "0.7.0"
|
|
dashmap = "6.1.0"
|
|
wildcard = "0.3.0"
|
|
colored = "2.1.0"
|
|
regex = "1.11.1"
|
|
bson = "2.13.0"
|