[Feature] Reduce speed of CLI moon emoji spinners
I really like the new moon emoji spinners! But currently, they spin too fast, and it actually makes me a little queasy to look at them in the terminal for too long
The spinners can be set to a fixed rate using [`with_tick_settings`](https://docs.rs/tracing-indicatif/latest/tracing_indicatif/struct.IndicatifLayer.html#method.with_tick_settings), and I would suggest doubling the default tick rate to 200ms (default is 100ms)
```rust
.with_tick_settings(tracing_indicatif::TickSettings {
term_draw_hz: 20,
default_tick_interval: Some(Duration::from_millis(200)),
footer_tick_interval: Some(Duration::from_millis(200)),
..Default::default()
});
```
关闭于 2026-07-22 0 条评论