xplr/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2021-03-01 14:23:04 +03:00
[package]
name = "xplr"
version = "0.5.13" # Update config.yml, config.rs and default.nix
2021-03-01 14:23:04 +03:00
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
2021-04-19 16:47:03 +03:00
description = "A hackable, minimal, fast TUI file explorer"
2021-03-01 19:34:19 +03:00
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-04-19 16:47:03 +03:00
documentation = "https://github.com/sayanarijit/xplr/Wiki"
keywords = ["terminal", "file", "explorer", "manager", "tui"]
categories = ["command-line-interface", "command-line-utilities"]
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"
2021-04-01 17:04:45 +03:00
handlebars = "3.5"
2021-03-31 14:50:37 +03:00
mime_guess = "2.0.3"
2021-04-02 14:40:04 +03:00
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
notify = "4.0.12"
lazy_static = "1.4.0"
indexmap = { version = "1.6.2", features = ["serde"] }
natord = "1.0.9"
humansize = "1.1.0"
2021-03-01 14:23:04 +03:00
[dev-dependencies]
criterion = "0.3"
rspec = "1.0"
serde_json = "1.0"
2021-03-01 14:23:04 +03:00
[[bench]]
name = "navigation"
harness = false