summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 4d8c225ae7d640674b0b885b2ed021bf1e132e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "broot"
version = "0.6.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
description = "Fuzzy Search + tree + cd"
edition = "2018"
keywords = ["cli", "fuzzy", "tree", "search", "regex"]
license = "MIT"
categories = ["command-line-utilities"]
readme = "README.md"

[dependencies]
termion = "1.5"
regex = "1"
lazy_static = "1.2"
directories = "1.0"
toml = "0.4"
custom_error = "1.3"
log = "0.4"
simplelog = "0.5"
clap = "2.32"
glob = "0.2"
users = "0.8"
jemallocator = "*"

[profile.release]
lto = true