mirror of
https://github.com/sayanarijit/xplr
synced 2024-10-31 21:20:30 +00:00
32 lines
885 B
TOML
32 lines
885 B
TOML
[package]
|
|
name = "xplr"
|
|
version = "0.3.7" # Update app.rs and default.nix
|
|
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
|
|
edition = "2018"
|
|
description = "A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/sayanarijit/xplr"
|
|
homepage = "https://github.com/sayanarijit/xplr"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }
|
|
termion = "1.5"
|
|
crossterm = "0.18"
|
|
dirs = "3.0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.8"
|
|
handlebars = "3.5"
|
|
mime_guess = "2.0.3"
|
|
anyhow = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "navigation"
|
|
harness = false
|