mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
489337d533
* feat: cli diff & deploy no-op handling + promotion debouncing Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: bump ee-repo-ref Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: update ee-repo-ref to ed842061576c3ac9b9eb89bb87f6db5b67904474 This commit updates the EE repository reference after PR #551 was merged in windmill-ee-private. Previous ee-repo-ref: 1210d9f63de8eea4c3a210a10c60fe6382df477b New ee-repo-ref: ed842061576c3ac9b9eb89bb87f6db5b67904474 Automated by sync-ee-ref workflow. * test(git-sync): e2e tests for promotion-mode debounce keys Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
46 lines
1.6 KiB
TOML
46 lines
1.6 KiB
TOML
[package]
|
|
name = "windmill-api-integration-tests"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_api_integration_tests"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
private = ["windmill-test-utils/private", "dep:aws-config", "dep:aws-credential-types", "dep:aws-sdk-sqs", "windmill-git-sync/private", "windmill-queue/private"]
|
|
enterprise = ["windmill-test-utils/enterprise", "dep:base64", "windmill-git-sync/enterprise"]
|
|
deno_core = ["windmill-test-utils/deno_core"]
|
|
mcp = ["windmill-test-utils/mcp", "dep:rmcp"]
|
|
run_inline = ["dep:windmill-worker", "windmill-test-utils/run_inline", "windmill-test-utils/duckdb"]
|
|
|
|
[dependencies]
|
|
windmill-test-utils.workspace = true
|
|
windmill-api-client.workspace = true
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-native-triggers = { workspace = true, features = ["native_trigger"] }
|
|
windmill-api-auth.workspace = true
|
|
windmill-git-sync.workspace = true
|
|
windmill-queue.workspace = true
|
|
windmill-worker = { workspace = true, optional = true }
|
|
sqlx.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
reqwest.workspace = true
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|
|
uuid.workspace = true
|
|
futures.workspace = true
|
|
rand.workspace = true
|
|
rumqttc.workspace = true
|
|
rdkafka.workspace = true
|
|
async-nats.workspace = true
|
|
aws-config = { workspace = true, optional = true }
|
|
aws-credential-types = { workspace = true, optional = true }
|
|
aws-sdk-sqs = { workspace = true, optional = true }
|
|
base64 = { workspace = true, optional = true }
|
|
axum.workspace = true
|
|
rmcp = { workspace = true, optional = true }
|