xplr/Cargo.toml

30 lines
820 B
TOML
Raw Normal View History

2021-03-01 14:23:04 +03:00
[package]
name = "xplr"
version = "0.1.11" # Update app.rs
2021-03-01 14:23:04 +03:00
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
2021-03-01 19:34:19 +03:00
description = "An experimental, minimal, configurable TUI file explorer, stealing ideas from nnn and fzf."
license = "MIT"
2021-03-02 06:12:35 +03:00
readme = "README.md"
repository = "https://github.com/sayanarijit/xplr"
homepage = "https://github.com/sayanarijit/xplr"
2021-03-01 14:23:04 +03:00
# 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.3"
2021-03-02 13:05:09 +03:00
shellwords = "1.0.0"
2021-03-01 14:23:04 +03:00
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "navigation"
harness = false