2019-06-29 23:33:25 +02:00
|
|
|
cargo-features = ["default-run"]
|
|
|
|
|
2019-01-21 14:44:34 +01:00
|
|
|
[package]
|
|
|
|
name = "hunter"
|
2019-07-02 00:52:49 +02:00
|
|
|
version = "1.3.4"
|
2019-04-20 13:05:46 +02:00
|
|
|
authors = ["rabite0"]
|
2019-01-21 14:44:34 +01:00
|
|
|
edition = "2018"
|
2019-04-07 21:15:18 +02:00
|
|
|
description = "Fast, lag-free terminal file browser"
|
|
|
|
homepage = "https://github.com/rabite0/hunter"
|
|
|
|
repository = "https://github.com/rabite0/hunter"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "WTFPL"
|
|
|
|
keywords = ["cli", "terminal", "file"]
|
|
|
|
categories = ["command-line-utilities"]
|
2019-06-29 23:33:25 +02:00
|
|
|
default-run = "hunter"
|
|
|
|
|
2019-01-21 14:44:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2019-07-08 12:53:44 +02:00
|
|
|
# Added terminal_size_pixels recently
|
|
|
|
termion = { git = "https://github.com/redox-os/termion" }
|
2019-01-21 14:44:34 +01:00
|
|
|
unicode-width = "0.1.5"
|
2019-04-08 16:38:37 +02:00
|
|
|
lazy_static = "0.2.11"
|
2019-01-25 11:14:41 +01:00
|
|
|
alphanumeric-sort = "1.0.6"
|
2019-01-30 15:26:24 +01:00
|
|
|
lscolors = { version = "0.5.0", features = [ "ansi_term" ] }
|
2019-03-31 03:28:07 +02:00
|
|
|
tree_magic = "0.2.1"
|
2019-02-01 00:21:16 +01:00
|
|
|
rayon = "1.0.3"
|
2019-02-06 00:55:10 +01:00
|
|
|
dirs-2 = "1.1.0"
|
|
|
|
users = "0.8"
|
2019-02-06 19:25:12 +01:00
|
|
|
chrono = "0.4"
|
2019-04-08 16:38:37 +02:00
|
|
|
libc = "0.2.51"
|
2019-02-16 15:01:46 +01:00
|
|
|
failure = "0.1.5"
|
|
|
|
failure_derive = "0.1.1"
|
2019-05-23 14:51:44 +02:00
|
|
|
notify = "4.0.12"
|
2019-03-15 14:22:05 +01:00
|
|
|
parse-ansi = "0.1.6"
|
2019-03-19 01:08:22 +01:00
|
|
|
signal-notify = "0.1.3"
|
2019-04-04 00:31:01 +02:00
|
|
|
systemstat = "0.1.4"
|
2019-05-21 20:50:54 +02:00
|
|
|
mime_guess = "2.0.0-alpha.6"
|
2019-05-21 21:03:50 +02:00
|
|
|
async_value = "0.2"
|
2019-06-16 12:33:23 +02:00
|
|
|
osstrtools = "0.1.9"
|
2019-04-20 18:59:41 +02:00
|
|
|
pathbuftools = "0.1"
|
2019-05-22 18:54:37 +02:00
|
|
|
clap = "2.33"
|
2019-05-28 00:50:15 +02:00
|
|
|
mime = "0.3.13"
|
2019-07-08 12:53:44 +02:00
|
|
|
# Updated to work with recent sixel-sys
|
|
|
|
sixel = { git = "https://github.com/rabite0/sixel-rs", tag="v0.3.0" }
|
|
|
|
base64 = { version = "0.10.1" }
|
2019-05-21 20:50:54 +02:00
|
|
|
|
2019-07-02 00:52:49 +02:00
|
|
|
image = { version = "0.21.1", optional = true }
|
|
|
|
gstreamer = { version = "0.11.2", optional = true }
|
|
|
|
gstreamer-app = { version = "0.11.2", optional = true }
|
|
|
|
|
2019-06-30 11:41:32 +02:00
|
|
|
[build-dependencies]
|
2019-07-08 12:53:44 +02:00
|
|
|
# Added terminal_size_pixels recently
|
|
|
|
termion = { git = "https://github.com/redox-os/termion" }
|
2019-06-30 11:41:32 +02:00
|
|
|
rustc_version = "0.2.3"
|
|
|
|
|
2019-05-21 20:50:54 +02:00
|
|
|
[features]
|
2019-07-02 00:52:49 +02:00
|
|
|
default = ["img", "video"]
|
|
|
|
video = ["gstreamer", "gstreamer-app"]
|
|
|
|
img = ["image"]
|
2019-06-29 23:33:25 +02:00
|
|
|
|
2019-07-02 00:52:49 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "hunter"
|
|
|
|
path = "src/main.rs"
|
2019-05-21 20:50:54 +02:00
|
|
|
|
2019-07-02 00:52:49 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "hunter-media"
|
|
|
|
path = "src/hunter-media.rs"
|
|
|
|
required-features = ["img"]
|
2019-05-21 20:50:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-04 00:31:01 +02:00
|
|
|
|
2019-05-09 20:12:23 +02:00
|
|
|
[patch.crates-io]
|
2019-05-23 15:17:58 +02:00
|
|
|
systemstat = { git = 'https://github.com/myfreeweb/systemstat', tag="v0.1.4" }
|
2019-02-12 22:55:16 +01:00
|
|
|
|
2019-04-27 14:34:41 +02:00
|
|
|
# These options increase performance and generate a smaller binary
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|