Files
windmill/backend/windmill-store/Cargo.toml
hugocasa ba4b368706 fix: prevent variable push from corrupting is_secret variables (#9705)
* fix: prevent variable push from corrupting is_secret variables

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* test(cli): unit-test looksLikeWorkspaceCiphertext shape detection

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(cli): scope is_secret downgrade to single-file push, not sync push

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(cli): warn when variable push stores a secret value as already-encrypted

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(cli): route workspace-resolution and auth diagnostics to stderr

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* docs(cli): rephrase comments to describe current behavior, not history

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-23 12:45:36 +02:00

60 lines
1.4 KiB
TOML

[package]
name = "windmill-store"
version.workspace = true
authors.workspace = true
edition.workspace = true
[lib]
name = "windmill_store"
path = "src/lib.rs"
[features]
default = []
enterprise = ["windmill-common/enterprise"]
cloud = ["windmill-common/cloud"]
private = ["windmill-common/private"]
no_auth = []
oauth2 = ["dep:windmill-oauth"]
mcp = ["dep:windmill-mcp", "windmill-mcp/server", "windmill-mcp/auth"]
http_trigger = []
postgres_trigger = []
mqtt_trigger = []
sqs_trigger = []
gcp_trigger = []
azure_trigger = []
kafka = []
nats = []
openidconnect = ["windmill-common/openidconnect"]
[dependencies]
windmill-common = { workspace = true, default-features = false }
windmill-api-auth.workspace = true
windmill-audit.workspace = true
windmill-dep-map.workspace = true
windmill-git-sync.workspace = true
windmill-mcp = { workspace = true, optional = true }
windmill-oauth = { workspace = true, optional = true }
axum.workspace = true
hyper.workspace = true
http.workspace = true
serde.workspace = true
serde_json.workspace = true
sqlx.workspace = true
tokio.workspace = true
tracing.workspace = true
uuid.workspace = true
quick_cache.workspace = true
lazy_static.workspace = true
sha2.workspace = true
hex.workspace = true
sql-builder.workspace = true
async-recursion.workspace = true
futures.workspace = true
chrono.workspace = true
reqwest.workspace = true
anyhow.workspace = true
base64.workspace = true
[dev-dependencies]
magic-crypt.workspace = true