fix(markdown): restore ratatui bold assertions

Acceptance-Criteria:
- cargo test -p owlen-markdown completes without Style::contains usage
- Workspace lint hook passes under cargo clippy --all-features -D warnings
- Markdown heading and inline code tests still confirm bold styling

Test-Notes:
- cargo test -p owlen-markdown
- cargo clippy -p owlen-markdown --tests -- -D warnings
- cargo clippy --all-features -- -D warnings
This commit is contained in:
2025-10-25 01:10:17 +02:00
parent 8f9d601fdc
commit 02df6d893c
6 changed files with 20 additions and 29 deletions

View File

@@ -167,10 +167,7 @@ impl UsageLedger {
Err(_) => 0,
};
let entry = self
.providers
.entry(provider.to_string())
.or_insert_with(VecDeque::new);
let entry = self.providers.entry(provider.to_string()).or_default();
entry.push_back(UsageRecord {
timestamp: ts,