-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
31 lines (26 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "ratatui-explorer"
version = "0.1.3"
edition = "2021"
authors = ["Tatounee"]
description = "ratatui-explorer is a small, but highly customizable, file explorer widget for ratatui."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tatounee/ratatui-explorer"
repository = "https://github.com/tatounee/ratatui-explorer.git"
keywords = ["tui", "ratatui", "terminal", "file", "explorer"]
categories = ["command-line-interface", "filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossterm = { version = "0.28.1", optional = true }
termion = { version = "4.0.2", optional = true }
termwiz = { version = "0.22", optional = true }
ratatui = { version = "0.29", features = ["unstable-widget-ref"] }
derivative = "2.2"
[features]
default = ["crossterm"]
crossterm = ["dep:crossterm"]
termion = ["dep:termion"]
termwiz = ["dep:termwiz"]
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]