fpicker 0.1.3

ratatui-file-picker allows you to select multiple files from a tree and add their content or paths to clipboard. It also returns the absolute paths of selected files on exit.
Documentation
[[bin]]
name = "fpicker"
path = "src/main.rs"

[dependencies.copypasta]
version = "0.10.1"

[dependencies.crossterm]
optional = true
version = "0.28.1"

[dependencies.derivative]
version = "2.2"

[dependencies.ratatui]
features = ["unstable-widget-ref"]
version = "0.28.1"

[dependencies.termion]
optional = true
version = "4.0.2"

[dependencies.termwiz]
optional = true
version = "0.22"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "file_preview"
path = "examples/file_preview.rs"

[[example]]
name = "light_and_dark_theme"
path = "examples/light_and_dark_theme.rs"

[features]
crossterm = ["dep:crossterm"]
default = ["crossterm"]
termion = ["dep:termion"]
termwiz = ["dep:termwiz"]

[lib]
name = "fpicker"
path = "src/lib.rs"

[package]
authors = ["Daylan Nance"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-interface", "filesystem"]
description = "ratatui-file-picker allows you to select multiple files from a tree and add their content or paths to clipboard. It also returns the absolute paths of selected files on exit."
edition = "2021"
homepage = "https://github.com/confucianfighter/ratatui-file-picker.git"
keywords = ["picker", "ratatui", "terminal", "file", "explorer"]
license = "MIT"
name = "fpicker"
readme = "README.md"
repository = "https://github.com/confucianfighter/ratatui-file-picker.git"
version = "0.1.3"

[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]