You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xplr/Cargo.toml

51 lines
1.4 KiB
TOML

[package]
name = "xplr"
version = "0.14.4" # Update lua.rs
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
description = "A hackable, minimal, fast TUI file explorer"
license = "MIT"
readme = "README.md"
repository = "https://github.com/sayanarijit/xplr"
homepage = "https://github.com/sayanarijit/xplr"
documentation = "https://arijitbasu.in/xplr/en"
keywords = ["terminal", "file", "explorer", "manager", "tui"]
categories = ["command-line-interface", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "xplr"
[dependencies]
tui = { version = "0.15.0", default-features = false, features = ['crossterm', 'serde'] }
crossterm = "0.20.0"
dirs = "3.0.2"
serde = { version = "1.0.126", features = ["derive"] }
serde_yaml = "0.8.17"
mime_guess = "2.0.3"
anyhow = "1.0.42"
chrono = { version = "0.4.19", features = ["serde"] }
lazy_static = "1.4.0"
indexmap = { version = "1.7.0", features = ["serde"] }
natord = "1.0.9"
humansize = "1.1.1"
mlua = { version = "0.6.2", features = ["luajit", "vendored", "serialize", "send"] }
ansi-to-tui = "0.3.0"
libc = "0.2.98"
[dev-dependencies]
criterion = "0.3.5"
assert_cmd = "1.0.7"
[[bench]]
name = "criterion"
harness = false
# https://github.com/johnthagen/min-sized-rust
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'