* feat: google native triggers * nit skill * better native trigger abstraction * use resources for workspace integrations * better and better * better tests * update native trigger skill * sqlx * less tx and google update fix * refactor a bit the external logic * nits * fix * fix google native trigger update * fix oauth * review fixes * sqlx fix * nit * chore: update ee-repo-ref to a10eda4251610cceee67fbe05463b8be82ffa9e0 This commit updates the EE repository reference after PR #416 was merged in windmill-ee-private. Previous ee-repo-ref: bf3696d5f2a39a3cb84dbbee81e092155f2a8c75 New ee-repo-ref: a10eda4251610cceee67fbe05463b8be82ffa9e0 Automated by sync-ee-ref workflow. --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
39 lines
1.2 KiB
TOML
39 lines
1.2 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"]
|
|
enterprise = ["windmill-test-utils/enterprise", "dep:base64"]
|
|
deno_core = ["windmill-test-utils/deno_core"]
|
|
mcp = []
|
|
|
|
[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
|
|
sqlx.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
reqwest.workspace = true
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|
|
uuid.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 }
|