* Render blog headers using a patched `ratatui-image` to export internal `Picker` fields which we use to construct our own picker based on guesses for what capabilities a terminal might have based on `$TERM_PROGRAM` values * Move truncate implementation into `content` module and have other modules import it * Add `terminal` module under `tui` for classifying different terminals and storing information regarding them * Update trait `Component::init` to supply a `TerminalInfo`, to help components adapt themselves to terminal emulator capabilities * Move rust toolchain back to stable, now version 1.87 * Increase rustfmt max width and chain width to 95
13 lines
229 B
TOML
13 lines
229 B
TOML
edition = "2021"
|
|
use_small_heuristics = "Max"
|
|
max_width = 95
|
|
newline_style = "Unix"
|
|
|
|
indent_style = "Block"
|
|
hard_tabs = false
|
|
|
|
format_strings = true
|
|
brace_style = "PreferSameLine"
|
|
chain_width = 95
|
|
|
|
imports_granularity = "Module"
|