xplr/Cargo.toml

52 lines
1.4 KiB
TOML
Raw Normal View History

2021-03-01 11:23:04 +00:00
[package]
name = "xplr"
2021-10-24 05:42:00 +00:00
version = "0.15.2" # Update lua.rs
2021-03-01 11:23:04 +00:00
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
2021-04-19 13:47:03 +00:00
description = "A hackable, minimal, fast TUI file explorer"
2021-03-01 16:34:19 +00:00
license = "MIT"
2021-03-02 03:12:35 +00:00
readme = "README.md"
repository = "https://github.com/sayanarijit/xplr"
homepage = "https://xplr.dev"
documentation = "https://xplr.dev/en"
2021-04-19 13:47:03 +00:00
keywords = ["terminal", "file", "explorer", "manager", "tui"]
categories = ["command-line-interface", "command-line-utilities"]
2021-10-24 09:57:54 +00:00
include = ["src/**/*", "docs/en/src/**/*", "LICENSE", "README.md"]
2021-03-01 11:23:04 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "xplr"
2021-03-01 11:23:04 +00:00
[dependencies]
tui = { version = "0.16.0", default-features = false, features = ['crossterm', 'serde'] }
2021-10-24 04:57:20 +00:00
crossterm = "0.22.1"
2021-10-05 10:15:18 +00:00
dirs = "4.0.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_yaml = "0.8.21"
2021-03-31 11:50:37 +00:00
mime_guess = "2.0.3"
2021-10-05 10:15:18 +00:00
anyhow = "1.0.44"
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"
2021-10-24 04:57:20 +00:00
mlua = { version = "0.6.6", features = ["luajit", "vendored", "serialize", "send"] }
2021-10-05 10:15:18 +00:00
ansi-to-tui = "0.4.1"
2021-10-24 04:57:20 +00:00
libc = "0.2.105"
2021-03-01 11:23:04 +00:00
[dev-dependencies]
criterion = "0.3.5"
2021-10-24 04:57:20 +00:00
assert_cmd = "2.0.2"
2021-03-01 11:23:04 +00:00
[[bench]]
name = "criterion"
2021-03-01 11:23:04 +00:00
harness = false
2021-10-24 05:42:00 +00:00
path = "./benches/criterion.rs"
# https://github.com/johnthagen/min-sized-rust
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'