2021-06-05 06:08:51 +00:00
|
|
|
[[bin]]
|
2022-02-03 04:49:40 +00:00
|
|
|
name = 'xplr'
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = 'criterion'
|
|
|
|
harness = false
|
|
|
|
path = './benches/criterion.rs'
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = 'xplr'
|
2023-01-13 05:50:34 +00:00
|
|
|
version = '0.20.2'
|
2022-02-03 04:49:40 +00:00
|
|
|
authors = ['Arijit Basu <hi@arijitbasu.in>']
|
2022-04-14 03:35:36 +00:00
|
|
|
edition = '2021'
|
2022-02-03 04:49:40 +00:00
|
|
|
description = 'A hackable, minimal, fast TUI file explorer'
|
|
|
|
license = 'MIT'
|
|
|
|
readme = 'README.md'
|
|
|
|
repository = 'https://github.com/sayanarijit/xplr'
|
|
|
|
homepage = 'https://xplr.dev'
|
|
|
|
documentation = 'https://xplr.dev/en'
|
2022-04-14 03:35:36 +00:00
|
|
|
keywords = ['terminal', 'file', 'explorer', 'manager', 'tui']
|
|
|
|
categories = ['command-line-interface', 'command-line-utilities']
|
|
|
|
include = ['src/**/*', 'docs/en/src/**/*', 'LICENSE', 'README.md']
|
2021-06-05 06:08:51 +00:00
|
|
|
|
2021-03-01 11:23:04 +00:00
|
|
|
[dependencies]
|
2023-01-13 05:50:34 +00:00
|
|
|
libc = "0.2.139"
|
|
|
|
humansize = "2.1.3"
|
2022-04-14 03:35:36 +00:00
|
|
|
natord = "1.0.9"
|
2023-01-13 05:50:34 +00:00
|
|
|
anyhow = "1.0.68"
|
|
|
|
serde_yaml = "0.9.16"
|
2022-09-10 17:06:15 +00:00
|
|
|
crossterm = "0.25.0"
|
2022-04-14 03:35:36 +00:00
|
|
|
dirs = "4.0.0"
|
2022-09-25 07:22:24 +00:00
|
|
|
ansi-to-tui = "2.0.0"
|
2023-01-13 05:50:34 +00:00
|
|
|
regex = "1.7.1"
|
2022-12-04 09:26:16 +00:00
|
|
|
gethostname = "0.4.1"
|
2023-01-13 05:50:34 +00:00
|
|
|
serde_json = "1.0.91"
|
2022-10-27 09:03:21 +00:00
|
|
|
path-absolutize = "3.0.14"
|
2022-10-27 10:44:56 +00:00
|
|
|
which = "4.3.0"
|
2023-01-26 12:31:04 +00:00
|
|
|
nu-ansi-term = "0.46.0"
|
2023-01-27 06:44:10 +00:00
|
|
|
textwrap = "0.16"
|
2023-01-29 11:14:15 +00:00
|
|
|
snailquote = "0.3.1"
|
2023-02-07 18:45:53 +00:00
|
|
|
skim = "0.10.2"
|
2023-01-26 12:31:04 +00:00
|
|
|
|
|
|
|
[dependencies.lscolors]
|
|
|
|
version = "0.13.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["nu-ansi-term"]
|
2022-04-14 03:35:36 +00:00
|
|
|
|
|
|
|
[dependencies.lazy_static]
|
|
|
|
version = "1.4.0"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[dependencies.mime_guess]
|
|
|
|
version = "2.0.4"
|
|
|
|
features = ["rev-mappings"]
|
2021-03-01 11:23:04 +00:00
|
|
|
|
2022-02-03 04:49:40 +00:00
|
|
|
[dependencies.tui]
|
2022-09-25 07:22:24 +00:00
|
|
|
version = "0.19.0"
|
2022-02-03 04:49:40 +00:00
|
|
|
default-features = false
|
2022-04-14 03:35:36 +00:00
|
|
|
features = ['crossterm', 'serde']
|
2021-03-01 11:23:04 +00:00
|
|
|
|
2022-02-03 04:49:40 +00:00
|
|
|
[dependencies.serde]
|
2023-01-13 05:50:34 +00:00
|
|
|
version = "1.0.152"
|
2022-02-03 04:49:40 +00:00
|
|
|
features = ['derive']
|
|
|
|
|
|
|
|
[dependencies.chrono]
|
2022-11-18 17:43:25 +00:00
|
|
|
version = "0.4.23"
|
2022-02-03 04:49:40 +00:00
|
|
|
features = ['serde']
|
|
|
|
|
|
|
|
[dependencies.indexmap]
|
2022-11-18 17:43:25 +00:00
|
|
|
version = "1.9.2"
|
2022-02-03 04:49:40 +00:00
|
|
|
features = ['serde']
|
2021-05-10 20:36:15 +00:00
|
|
|
|
2022-02-03 04:49:40 +00:00
|
|
|
[dependencies.mlua]
|
2023-01-13 05:50:34 +00:00
|
|
|
version = "0.8.7"
|
2022-04-14 03:35:36 +00:00
|
|
|
features = ['luajit', 'vendored', 'serialize', 'send']
|
2022-02-03 04:49:40 +00:00
|
|
|
|
|
|
|
[dependencies.tui-input]
|
2022-11-18 17:43:25 +00:00
|
|
|
version = "0.6.1"
|
2022-02-03 04:49:40 +00:00
|
|
|
features = ['serde']
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-25 07:22:24 +00:00
|
|
|
criterion = "0.4.0"
|
2023-01-13 05:50:34 +00:00
|
|
|
assert_cmd = "2.0.8"
|
2022-04-14 03:35:36 +00:00
|
|
|
|
2021-05-10 20:36:15 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = 'abort'
|
2021-10-27 14:29:20 +00:00
|
|
|
|
|
|
|
[features]
|