Skip to content

Commit bc9ed9f

Browse files
committed
chore: remove anyhow dependency
1 parent 792dd8f commit bc9ed9f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bacon.toml

+2
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,12 @@ command = [
108108

109109
[jobs.format]
110110
command = ["cargo", "+nightly", "fmt", "--", "--check"]
111+
on_success = "back"
111112

112113
[jobs.rdme]
113114
command = ["cargo", "rdme", "--force"]
114115
need_stdout = true
116+
on_success = "back"
115117

116118
[jobs.vhs]
117119
command = ["vhs", "tui-prompts/examples/text.tape"]

tui-big-text/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ render be rendered. The builder allows you to customize the [`Style`] of the wid
3131
## Examples
3232

3333
```rust
34-
use anyhow::Result;
35-
use ratatui::prelude::*;
34+
use ratatui::prelude::{Frame, Style, Stylize};
3635
use tui_big_text::{BigText, PixelSize};
3736

3837
fn render(frame: &mut Frame) {

tui-big-text/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
//! # Examples
2828
//!
2929
//! ```rust
30-
//! use anyhow::Result;
31-
//! use ratatui::prelude::*;
30+
//! use ratatui::prelude::{Frame, Style, Stylize};
3231
//! use tui_big_text::{BigText, PixelSize};
3332
//!
3433
//! fn render(frame: &mut Frame) {

0 commit comments

Comments
 (0)