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 whenevertermal_core
is added without
somewhere in the dependency tree.default-features = false - 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
…