2019-01-21 14:44:34 +01:00
|
|
|
[package]
|
|
|
|
name = "hunter"
|
2019-04-07 21:15:18 +02:00
|
|
|
version = "1.0.1"
|
|
|
|
authors = ["rabite"]
|
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-01-21 14:44:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
termion = "*"
|
|
|
|
unicode-width = "0.1.5"
|
|
|
|
lazy_static = "*"
|
2019-01-22 22:06:19 +01:00
|
|
|
x11-clipboard = "*"
|
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-02-01 00:21:16 +01:00
|
|
|
mime-detective = "*"
|
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-02-12 22:55:16 +01:00
|
|
|
libc = "*"
|
2019-02-16 15:01:46 +01:00
|
|
|
failure = "0.1.5"
|
|
|
|
failure_derive = "0.1.1"
|
2019-02-26 22:31:33 +01:00
|
|
|
notify = "4.0.9"
|
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-02-12 22:55:16 +01:00
|
|
|
|
|
|
|
#[profile.release]
|
|
|
|
#debug = true
|
|
|
|
#lto = false
|