Cargo Features

[dependencies]
zng-view-api = { version = "0.4.1", default-features = false, features = ["ipc", "var"] }
default = ipc

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

ipc default

Enables creation of separate or pre-build view.

When this is enabled communication with the view is (de)serialized which can add a minor cost, something like a 1ms per 3MB frame request.

Enables duct and ipc-channel

Affects ipc::bytes_channel, ipc::connect_view_process

var

Implement IntoVar<T> for API types.

Enables zng-var