[workspace] resolver = "2" members = [ "bin/*", "lib/*", "client/core/rs", "client/periphery/rs", ] [workspace.package] version = "2.0.0-dev-114" edition = "2024" authors = ["mbecker20 "] license = "GPL-3.0-or-later" repository = "https://github.com/moghtech/komodo" homepage = "https://komo.do" [profile.release] strip = "debuginfo" [workspace.dependencies] # LOCAL komodo_client = { path = "client/core/rs" } periphery_client = { path = "client/periphery/rs" } environment = { path = "lib/environment" } interpolate = { path = "lib/interpolate" } formatting = { path = "lib/formatting" } transport = { path = "lib/transport" } database = { path = "lib/database" } encoding = { path = "lib/encoding" } command = { path = "lib/command" } git = { path = "lib/git" } # MOGH slack = { version = "2.0.0", package = "slack_client_rs", default-features = false, features = ["rustls"] } mogh_error = { version = "1.0.3", default-features = false } derive_default_builder = "0.1.8" async_timing_util = "1.1.0" mogh_auth_client = "1.2.1" mogh_auth_server = "1.2.4" mogh_secret_file = "1.0.0" mogh_validations = "1.0.0" mogh_rate_limit = "1.0.0" partial_derive2 = "0.4.5" mongo_indexed = "2.0.2" mogh_resolver = "1.0.0" mogh_config = "1.0.1" mogh_logger = "1.3.0" mogh_server = "1.3.0" toml_pretty = "2.0.0" mogh_cache = "1.1.1" mogh_pki = "1.1.0" mungos = "3.2.2" svi = "1.2.0" # ASYNC reqwest = { version = "0.13.1", default-features = false, features = ["json", "stream", "form", "query", "rustls"] } tokio = { version = "1.49.0", features = ["full"] } tokio-util = { version = "0.7.18", features = ["io", "codec"] } tokio-stream = { version = "0.1.18", features = ["sync"] } pin-project-lite = "0.2.16" futures-util = "0.3.31" arc-swap = "1.8.0" # SERVER tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] } axum = { version = "0.8.8", features = ["ws", "json", "macros"] } axum-extra = { version = "0.12.5", features = ["typed-header"] } # OPENAPI utoipa-scalar = { version = "0.3.0", features = ["axum"] } utoipa = "5.4.0" # SER/DE ipnetwork = { version = "0.21.1", features = ["serde"] } indexmap = { version = "2.13.0", features = ["serde"] } serde = { version = "1.0.227", features = ["derive"] } strum = { version = "0.27.2", features = ["derive"] } bson = { version = "2.15.0" } # must keep in sync with mongodb version toml = "0.9.11" serde_yaml_ng = "0.10.0" serde_json = "1.0.148" serde_qs = "0.15.0" url = "2.5.7" # ERROR anyhow = "1.0.100" thiserror = "2.0.18" # LOGGING tracing = "0.1.44" # CONFIG clap = { version = "4.5.54", features = ["derive"] } dotenvy = "0.15.7" envy = "0.4.2" # CRYPTO / AUTH uuid = { version = "1.19.0", features = ["v4", "fast-rng", "serde"] } rustls = { version = "0.23.36", features = ["aws-lc-rs"] } data-encoding = "2.9.0" urlencoding = "2.1.3" bcrypt = "0.18.0" hmac = "0.12.1" sha1 = "0.10.6" sha2 = "0.10.9" rand = "0.9.2" hex = "0.4.3" # SYSTEM hickory-resolver = "0.25.2" portable-pty = "0.9.0" shell-escape = "0.1.5" crossterm = "0.29.0" bollard = "0.20.0" sysinfo = "0.37.1" shlex = "1.3.0" # CLOUD aws-config = "1.8.12" aws-sdk-ec2 = "1.200.0" aws-credential-types = "1.2.11" ## CRON english-to-cron = "0.1.7" chrono-tz = "0.10.4" chrono = "0.4.43" croner = "3.0.1" # MISC async-compression = { version = "0.4.37", features = ["tokio", "gzip"] } derive_builder = "0.20.2" comfy-table = "7.2.2" typeshare = "1.0.5" wildcard = "0.3.0" colored = "3.0.0" bytes = "1.11.0" regex = "1.12.2"