This commit is contained in:
2025-08-05 16:04:55 +02:00
parent dfd6931c5b
commit 56af312aad
3 changed files with 38 additions and 27 deletions

View File

@@ -98,29 +98,40 @@ postgres-types = "0.2.5"
r2d2 = "0.8.10"
# SAL dependencies
sal-git = { path = "packages/system/git" }
sal-kubernetes = { path = "packages/system/kubernetes" }
sal-redisclient = { path = "packages/clients/redisclient" }
sal-mycelium = { path = "packages/clients/myceliumclient" }
sal-text = { path = "packages/core/text" }
sal-os = { path = "packages/system/os" }
sal-net = { path = "packages/core/net" }
sal-zinit-client = { path = "packages/clients/zinitclient" }
sal-process = { path = "packages/system/process" }
sal-virt = { path = "packages/system/virt" }
sal-postgresclient = { path = "packages/clients/postgresclient" }
sal-vault = { path = "packages/crypt/vault" }
sal-rhai = { path = "rhai" }
sal-service-manager = { path = "_archive/service_manager" }
[dependencies]
thiserror = { workspace = true }
tokio = { workspace = true }
# Optional dependencies - users can choose which modules to include
sal-git = { path = "packages/system/git", optional = true }
sal-kubernetes = { path = "packages/system/kubernetes", optional = true }
sal-redisclient = { path = "packages/clients/redisclient", optional = true }
sal-mycelium = { path = "packages/clients/myceliumclient", optional = true }
sal-text = { path = "packages/core/text", optional = true }
sal-os = { path = "packages/system/os", optional = true }
sal-net = { path = "packages/core/net", optional = true }
sal-zinit-client = { path = "packages/clients/zinitclient", optional = true }
sal-process = { path = "packages/system/process", optional = true }
sal-virt = { path = "packages/system/virt", optional = true }
sal-postgresclient = { path = "packages/clients/postgresclient", optional = true }
sal-vault = { path = "packages/crypt/vault", optional = true }
sal-rhai = { path = "rhai", optional = true }
sal-git = { workspace = true, optional = true }
sal-kubernetes = { workspace = true, optional = true }
sal-redisclient = { workspace = true, optional = true }
sal-mycelium = { workspace = true, optional = true }
sal-text = { workspace = true, optional = true }
sal-os = { workspace = true, optional = true }
sal-net = { workspace = true, optional = true }
sal-zinit-client = { workspace = true, optional = true }
sal-process = { workspace = true, optional = true }
sal-virt = { workspace = true, optional = true }
sal-postgresclient = { workspace = true, optional = true }
sal-vault = { workspace = true, optional = true }
sal-rhai = { workspace = true, optional = true }
sal-service-manager = { workspace = true, optional = true }
[features]
default = []