Files
windmill/backend/windmill-jseval/Cargo.toml
Ruben Fiszel 623407de6a chore: make rquickjs, kube, otel proxy deps optional behind feature flags
- rquickjs: gated behind `quickjs` feature in windmill-jseval, propagated through windmill-worker/windmill-api, added to oss_core
- windmill-autoscaling: made optional in windmill-api (was unconditional), enabled via enterprise feature
- opentelemetry-proto, prost, hudsucker, rcgen, hyper-http-proxy, hyper-tls, hyper-util: made optional in windmill-worker, enabled via enterprise feature

This significantly reduces compilation time for vanilla `cargo check` without features.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 16:13:16 +00:00

27 lines
572 B
TOML

[package]
name = "windmill-jseval"
version.workspace = true
authors.workspace = true
edition.workspace = true
[lib]
name = "windmill_jseval"
path = "src/lib.rs"
[features]
default = []
quickjs = ["dep:rquickjs"]
[dependencies]
windmill-common = { workspace = true, default-features = false }
rquickjs = { workspace = true, optional = true }
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
anyhow.workspace = true
regex.workspace = true
lazy_static.workspace = true
mappable-rc.workspace = true
futures.workspace = true
uuid.workspace = true