Cargo Features

[dependencies]
zng-wgt = { version = "0.3.1", default-features = false, features = ["debug_default", "dyn_closure", "http"] }
default = debug_default

The debug_default feature is set by default whenever zng-wgt is added without default-features = false somewhere in the dependency tree.

debug_default default

Signal the build script to enable the "dyn_*", "inspector" and "trace_widget" features in debug builds.

Enables debug_default of zng-var

dyn_closure

Box closures at opportune places, such as Var::map, reducing the number of monomorphised types.

This speeds-up compilation time at the cost of runtime.

Enables dyn_closure of zng-var

http

Enable web tasks.

Enables http of zng-task