summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8954a15c91cc5b45ae2be4c310424e1a43d606d2 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "broot"
version = "0.14.1"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
documentation = "https://dystroy.org/broot"
description = "Fuzzy Search + tree + cd"
edition = "2018"
keywords = ["cli", "fuzzy", "tree", "search", "regex"]
license = "MIT"
categories = ["command-line-utilities"]
readme = "README.md"
build = "build.rs"
exclude = ["website", "broot*.zip"]

[dependencies]
clap = "2.33"
chrono = "0.4"
crossbeam = "0.7"
crossterm = "0.17.5"
custom_error = "1.6"
directories = "2.0"
git2 = { version="0.11", default-features=false }
glob = "0.3"
id-arena = "2.2.1"
lazy-regex = "0.1.3"
lazy_static = "1.4"
log = "0.4"
minimad = "=0.6.4"
open = "1.4"
pathdiff = "0.1.0"
regex = "1.3"
secular = "0.2"
simplelog = "0.7"
strict = "0.1.3"
termimad = "0.8.23"
toml = "0.5"
umask = "1.0"

[dev-dependencies]
criterion = "0.3.1"

[target.'cfg(unix)'.dependencies]
users = "0.9"

[target.'cfg(windows)'.dependencies]
is_executable = "0.1"

[build-dependencies]
clap = "2.33"

[profile.release]
lto = true # link time optimization - roughly halves the size of the exec
codegen-units = 1 # this removes a few hundred bytes from the final exec size

[[bench]]
name = "fuzzy"
harness = false

[[bench]]
name = "path_normalization"
harness = false

[patch.crates-io]
# lazy-regex = { path = "../lazy-regex" }
# minimad = { path = "../minimad" }
# termimad = { path = "../termimad" }
# crossterm = { path = "../crossterm-rs/crossterm" }
# opener = { path = "../opener/opener" }
# umask = { path = "../umask" }
# secular = { path = "../secular" }
# strict = { path = "../strict" }