mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
139 lines
3.4 KiB
TOML
139 lines
3.4 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"bin/*",
|
|
"lib/*",
|
|
"client/core/rs",
|
|
"client/periphery/rs",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "2.0.0-dev-123"
|
|
edition = "2024"
|
|
authors = ["mbecker20 <becker.maxh@gmail.com>"]
|
|
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.2"
|
|
mogh_auth_server = "1.2.11"
|
|
mogh_secret_file = "1.0.1"
|
|
mogh_validations = "1.0.1"
|
|
mogh_rate_limit = "1.0.1"
|
|
partial_derive2 = "0.4.5"
|
|
mongo_indexed = "2.0.2"
|
|
mogh_resolver = "1.0.0"
|
|
mogh_config = "1.0.2"
|
|
mogh_logger = "1.3.1"
|
|
mogh_server = "1.4.5"
|
|
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.2", default-features = false, features = ["json", "stream", "form", "query", "rustls"] }
|
|
tokio = { version = "1.50.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.17"
|
|
futures-util = "0.3.32"
|
|
arc-swap = "1.8.2"
|
|
|
|
# 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.28.0", features = ["derive"] }
|
|
bson = { version = "2.15.0" } # must keep in sync with mongodb version
|
|
toml = "1.0.4"
|
|
serde_yaml_ng = "0.10.0"
|
|
serde_json = "1.0.149"
|
|
serde_qs = "1.0.0"
|
|
url = "2.5.8"
|
|
|
|
# ERROR
|
|
anyhow = "1.0.102"
|
|
thiserror = "2.0.18"
|
|
|
|
# LOGGING
|
|
tracing = "0.1.44"
|
|
|
|
# CONFIG
|
|
clap = { version = "4.5.60", features = ["derive"] }
|
|
dotenvy = "0.15.7"
|
|
envy = "0.4.2"
|
|
|
|
# CRYPTO / AUTH
|
|
uuid = { version = "1.21.0", features = ["v4", "fast-rng", "serde"] }
|
|
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
|
|
data-encoding = "2.10.0"
|
|
urlencoding = "2.1.3"
|
|
bcrypt = "0.19.0"
|
|
hmac = "0.12.1"
|
|
sha1 = "0.10.6"
|
|
sha2 = "0.10.9"
|
|
rand = "0.10.0"
|
|
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.1"
|
|
sysinfo = "0.38.3"
|
|
shlex = "1.3.0"
|
|
|
|
# CLOUD
|
|
aws-config = "1.8.15"
|
|
aws-sdk-ec2 = "1.216.0"
|
|
aws-credential-types = "1.2.14"
|
|
|
|
## CRON
|
|
english-to-cron = "0.1.7"
|
|
chrono-tz = "0.10.4"
|
|
chrono = "0.4.44"
|
|
croner = "3.0.1"
|
|
|
|
# MISC
|
|
async-compression = { version = "0.4.41", features = ["tokio", "gzip"] }
|
|
derive_builder = "0.20.2"
|
|
comfy-table = "7.2.2"
|
|
typeshare = "1.0.5"
|
|
wildcard = "0.3.0"
|
|
colored = "3.1.1"
|
|
bytes = "1.11.1"
|
|
regex = "1.12.3"
|