- 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>
27 lines
572 B
TOML
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
|