Skip to content

Commit 0ee3a77

Browse files
authored
pass cargo check (#4949)
1 parent bded602 commit 0ee3a77

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

backend/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ lto = "thin"
4848
[features]
4949
default = []
5050
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"]
51-
enterprise_saml = ["windmill-api/enterprise_saml"]
52-
stripe = ["windmill-api/stripe"]
51+
enterprise_saml = ["windmill-api/enterprise_saml", "oauth2"]
52+
stripe = ["windmill-api/stripe", "enterprise"]
5353
benchmark = ["windmill-api/benchmark", "windmill-worker/benchmark", "windmill-queue/benchmark", "windmill-common/benchmark"]
5454
loki = ["windmill-common/loki"]
5555
embedding = ["windmill-api/embedding"]
@@ -59,7 +59,7 @@ flow_testing = ["windmill-worker/flow_testing"]
5959
openidconnect = ["windmill-api/openidconnect"]
6060
cloud = ["windmill-queue/cloud", "windmill-worker/cloud"]
6161
jemalloc = ["windmill-common/jemalloc", "dep:tikv-jemallocator", "dep:tikv-jemalloc-sys", "dep:tikv-jemalloc-ctl"]
62-
tantivy = ["dep:windmill-indexer", "windmill-api/tantivy", "windmill-indexer/enterprise", "windmill-indexer/parquet"]
62+
tantivy = ["dep:windmill-indexer", "windmill-api/tantivy", "windmill-indexer/enterprise", "windmill-indexer/parquet", "enterprise", "parquet"]
6363
sqlx = ["windmill-worker/sqlx"]
6464
deno_core = ["windmill-worker/deno_core", "dep:deno_core"]
6565
kafka = ["windmill-api/kafka"]

backend/ee-repo-ref.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
324617e19a5906fe57c911c8df4fb63786a1634a
1+
d83f0ad88f0c63a97ab5f30382d563db6112a998

backend/windmill-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = ["dep:rsa"]
2626
zip = ["dep:async_zip"]
2727
oauth2 = ["dep:async-oauth2"]
2828
http_trigger = ["dep:matchit"]
29-
static_frontend = ["dep:rust-embed", "dep:mime_guess"]
29+
static_frontend = ["dep:rust-embed"]
3030

3131
[dependencies]
3232
windmill-queue.workspace = true
@@ -61,7 +61,7 @@ base64.workspace = true
6161
base32.workspace = true
6262
serde_urlencoded.workspace = true
6363
cron.workspace = true
64-
mime_guess = { workspace = true, optional = true }
64+
mime_guess.workspace = true
6565
rust-embed = { workspace = true, optional = true }
6666
tracing-subscriber.workspace = true
6767
quick_cache.workspace = true

backend/windmill-queue/src/jobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const SCHEDULE_RECOVERY_HANDLER_USERNAME: &str = "schedule_recovery_handler";
119119
const ERROR_HANDLER_USER_GROUP: &str = "g/error_handler";
120120
const ERROR_HANDLER_USER_EMAIL: &str = "error_handler@windmill.dev";
121121
const SCHEDULE_ERROR_HANDLER_USER_EMAIL: &str = "schedule_error_handler@windmill.dev";
122-
#[cfg(feature = "enterprise")]
122+
#[cfg(any(feature = "enterprise", feature = "cloud"))]
123123
const SCHEDULE_RECOVERY_HANDLER_USER_EMAIL: &str = "schedule_recovery_handler@windmill.dev";
124124

125125
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)