Cargo Features
[dependencies]
ratatui-calloop = { version = "0.2.0", default-features = false, features = ["color-eyre"] }
- default = color-eyre
-
The
color-eyre
feature is set by default wheneverratatui-calloop
is added without
somewhere in the dependency tree.default-features = false - color-eyre default
-
Installs color-eyre panic and error hooks during terminal initialization to provide better error messages and backtraces. This feature is optional and can be disabled if you don't want to use it.
Enables color-eyre
Affects
error::install_hooks
…