Cargo Features

[dependencies]
termal_core = { version = "2.0.0", default-features = false, features = ["all", "term_image", "image", "raw", "events", "term_text", "proc", "readers"] }
default = all

The all feature is set by default whenever termal_core is added without default-features = false somewhere in the dependency tree.

all default = events, image, proc, raw, readers, term_image, term_text
term_image all image?

Affects termal_core::image

image all = term_image

Enables image

raw all events? readers?

Enables bitflags, libc, and winapi

Affects termal_core::raw

events all readers? = raw

Affects raw::events

term_text all readers?

Affects termal_core::term_text

proc all

Enables litrs and proc-macro2

Affects termal_core::proc

readers all = events, raw, term_text

Affects raw::readers