From d5419daa1fa1ee101cb45ff8c35de0653bac02b0 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Tue, 20 May 2025 13:21:31 +0200 Subject: [PATCH] cargo tomls --- backend/Cargo.lock | 1 + backend/Cargo.toml | 2 ++ backend/windmill-api/Cargo.toml | 1 + backend/windmill-audit/Cargo.toml | 1 + backend/windmill-autoscaling/Cargo.toml | 1 + backend/windmill-common/Cargo.toml | 1 + backend/windmill-git-sync/Cargo.toml | 1 + backend/windmill-indexer/Cargo.toml | 1 + backend/windmill-queue/Cargo.toml | 1 + backend/windmill-worker/Cargo.toml | 1 + 10 files changed, 11 insertions(+) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 164c48393f..202dc67a27 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -14436,6 +14436,7 @@ dependencies = [ "v8", "windmill-api", "windmill-api-client", + "windmill-audit", "windmill-autoscaling", "windmill-common", "windmill-git-sync", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 0ed1c2b0e5..b5b68b0233 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -49,6 +49,7 @@ lto = "thin" [features] default = [] +private = ["windmill-api/private", "windmill-audit/private", "windmill-autoscaling/private", "windmill-common/private", "windmill-git-sync/private", "windmill-indexer/private", "windmill-queue/private", "windmill-worker/private"] agent_worker_server = ["windmill-api/agent_worker_server"] enterprise = ["windmill-worker/enterprise", "windmill-queue/enterprise", "windmill-api/enterprise", "dep:windmill-autoscaling", "windmill-autoscaling/enterprise", "windmill-git-sync/enterprise", "windmill-common/prometheus", "windmill-common/enterprise"] enterprise_saml = ["windmill-api/enterprise_saml", "oauth2"] @@ -108,6 +109,7 @@ windmill-queue.workspace = true windmill-common = { workspace = true, default-features = false } windmill-git-sync.workspace = true windmill-api = { workspace = true, default-features = false } +windmill-audit = { workspace = true } windmill-worker.workspace = true windmill-indexer = { workspace = true, optional = true } windmill-autoscaling = { workspace = true, optional = true } diff --git a/backend/windmill-api/Cargo.toml b/backend/windmill-api/Cargo.toml index 233fbeec54..421548e13f 100644 --- a/backend/windmill-api/Cargo.toml +++ b/backend/windmill-api/Cargo.toml @@ -36,6 +36,7 @@ deno_core = ["dep:deno_core", "dep:deno_error"] gcp_trigger = ["dep:thiserror", "dep:google-cloud-pubsub", "dep:google-cloud-googleapis", "dep:tonic"] cloud = ["windmill-common/cloud"] mcp = ["dep:rmcp"] +private = [] [dependencies] rmcp = { git = "https://github.com/windmill-labs/rust-sdk", features = ["transport-sse-server"], optional = true } diff --git a/backend/windmill-audit/Cargo.toml b/backend/windmill-audit/Cargo.toml index 8b202b4abf..5a9ea376b6 100644 --- a/backend/windmill-audit/Cargo.toml +++ b/backend/windmill-audit/Cargo.toml @@ -10,6 +10,7 @@ path = "./src/lib.rs" [features] enterprise = ["windmill-common/enterprise"] +private = [] [dependencies] serde.workspace = true diff --git a/backend/windmill-autoscaling/Cargo.toml b/backend/windmill-autoscaling/Cargo.toml index fbebaf0fd7..7e4bc623ad 100644 --- a/backend/windmill-autoscaling/Cargo.toml +++ b/backend/windmill-autoscaling/Cargo.toml @@ -10,6 +10,7 @@ path = "./src/lib.rs" [features] enterprise = ["windmill-queue/enterprise", "windmill-common/enterprise"] +private = [] default = [] [dependencies] diff --git a/backend/windmill-common/Cargo.toml b/backend/windmill-common/Cargo.toml index d3f7ed4c00..ff986d0b1c 100644 --- a/backend/windmill-common/Cargo.toml +++ b/backend/windmill-common/Cargo.toml @@ -19,6 +19,7 @@ otel = ["dep:opentelemetry-semantic-conventions", "dep:opentelemetry-otlp", "dep smtp = ["dep:mail-send"] scoped_cache = [] cloud = [] +private = [] [lib] name = "windmill_common" diff --git a/backend/windmill-git-sync/Cargo.toml b/backend/windmill-git-sync/Cargo.toml index d5a8412fae..76d338a2ff 100644 --- a/backend/windmill-git-sync/Cargo.toml +++ b/backend/windmill-git-sync/Cargo.toml @@ -10,6 +10,7 @@ path = "./src/lib.rs" [features] enterprise = ["windmill-queue/enterprise", "windmill-common/enterprise"] +private = [] default = [] [dependencies] diff --git a/backend/windmill-indexer/Cargo.toml b/backend/windmill-indexer/Cargo.toml index 14ab53beef..ea95d6237d 100644 --- a/backend/windmill-indexer/Cargo.toml +++ b/backend/windmill-indexer/Cargo.toml @@ -11,6 +11,7 @@ path = "src/lib.rs" [features] default = [] parquet = ["dep:object_store"] +private = [] enterprise = [] [dependencies] diff --git a/backend/windmill-queue/Cargo.toml b/backend/windmill-queue/Cargo.toml index a90fa6ccf7..b242d6bea3 100644 --- a/backend/windmill-queue/Cargo.toml +++ b/backend/windmill-queue/Cargo.toml @@ -13,6 +13,7 @@ default = [] enterprise = ["windmill-common/enterprise"] cloud = [] benchmark = ["windmill-common/benchmark"] +private = [] prometheus = ["dep:prometheus"] [dependencies] diff --git a/backend/windmill-worker/Cargo.toml b/backend/windmill-worker/Cargo.toml index c37e78d7cf..6d9293a36f 100644 --- a/backend/windmill-worker/Cargo.toml +++ b/backend/windmill-worker/Cargo.toml @@ -31,6 +31,7 @@ csharp = ["dep:windmill-parser-csharp"] rust = ["dep:windmill-parser-rust"] nu = ["dep:windmill-parser-nu"] java = ["dep:windmill-parser-java"] +private = [] [dependencies] windmill-queue.workspace = true