Cargo Features
[dependencies]
comfy-table = { version = "7.1.4", default-features = false, features = ["custom_styling", "reexport_crossterm", "tty", "debug", "integration_test"] }
- custom_styling = tty
-
For more info about these flags, please check the README.
Everything's explained over there.ansi-str:
Optional dependencies
- default = tty
-
The
tty
feature is set by default whenevercomfy-table
is added without
somewhere in the dependency tree.default-features = false - reexport_crossterm = tty
- tty default custom_styling? reexport_crossterm?
-
Enables crossterm
- debug
-
---- DEVELOPMENT FLAGS ----
This flag is for comfy-table development debugging!
You usually don't need this as a user of the library. - integration_test
-
This feature is used to for integration testing of comfy_table.
It exposes normally unexposed internal functionality for easier testing.
DON'T USE. You opt in for breaking changes, as the internal API might change on minor/patch versions.Affects
comfy-table::utils
…