summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml20
-rw-r--r--rust-toolchain1
-rw-r--r--src/main.rs1
3 files changed, 14 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 278f2ea..c173b9a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,23 +1,29 @@
[package]
name = "hunter"
-version = "0.1.0"
-authors = ["project"]
+version = "1.0.1"
+authors = ["rabite"]
edition = "2018"
+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"]
[dependencies]
-termion = "*"
+termion = "1.5.1"
unicode-width = "0.1.5"
-lazy_static = "*"
-x11-clipboard = "*"
+lazy_static = "0.2.11"
+x11-clipboard = "0.3.1"
alphanumeric-sort = "1.0.6"
lscolors = { version = "0.5.0", features = [ "ansi_term" ] }
-mime-detective = "*"
tree_magic = "0.2.1"
rayon = "1.0.3"
dirs-2 = "1.1.0"
users = "0.8"
chrono = "0.4"
-libc = "*"
+libc = "0.2.51"
failure = "0.1.5"
failure_derive = "0.1.1"
notify = "4.0.9"
diff --git a/rust-toolchain b/rust-toolchain
new file mode 100644
index 0000000..11e142a
--- /dev/null
+++ b/rust-toolchain
@@ -0,0 +1 @@
+nightly-2019-03-15
diff --git a/src/main.rs b/src/main.rs
index 0b8a332..4a899ff 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -15,7 +15,6 @@ extern crate dirs_2;
extern crate lscolors;
extern crate users;
extern crate chrono;
-extern crate mime_detective;
extern crate rayon;
extern crate libc;
extern crate notify;