Skip to content

v0.9.0

Choose a tag to compare

@github-actions github-actions released this 25 Mar 10:29

tui-file-explorer 0.9.0

What's New

Changes since v0.8.8:

[0.9.0] - 2026-03-25

Documentation

  • Document three API tiers in README — widget, dual-pane, full app

Features

  • Tfe opens directly in configured editor

Miscellaneous

  • Bump version to 0.9.0

Installation

Add to your Cargo.toml:

[dependencies]
tui-file-explorer = "0.9.0"

Or via cargo-add:

cargo add tui-file-explorer

Quick Start

use tui_file_explorer::{FileExplorer, ExplorerOutcome, render};

let mut explorer = FileExplorer::new(
    std::env::current_dir().unwrap(),
    vec!["iso".into(), "img".into()],
);