tur-rs 0.9.2

A relentless, high-concurrency download manager built for speed and efficiency. Tur uses dynamic work-stealing and aligned storage to saturate your bandwidth while maintaining a minuscule memory footprint. Inspired by the legends, built for the modern Rust ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Terminal UI frontend for tur-rs.
//!
//! This module provides the interactive TUI (ratatui/crossterm) experience.
//! It is only compiled when the `tui` feature is enabled.

mod app;
mod input;
mod render;

pub use app::TuiApp;