-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathCargo.toml
47 lines (44 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "fselect"
version = "0.6.4"
authors = ["jhspetersson <jhspetersson@gmail.com>"]
description = "Find files with SQL-like queries"
keywords = ["find", "files", "sql", "query", "tool"]
categories = ["filesystem", "command-line-utilities", "command-line-interface"]
documentation = "https://github.com/jhspetersson/fselect/blob/master/docs/usage.md"
homepage = "https://github.com/jhspetersson/fselect"
repository = "https://github.com/jhspetersson/fselect"
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"
[features]
default = ["users"]
[dependencies]
ansi_term = "0.11"
app_dirs = "1.2"
atty = "0.2"
base64 = "0.10"
bytecount = "0.5"
chrono = "0.4"
chrono-english = "0.1"
csv = "1.0"
humansize = "1.1"
imagesize = "0.8"
kamadak-exif = "0.3"
lazy_static = "1.3"
lscolors = "0.5"
mp3-metadata = "0.3"
regex = "1.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha-1 = "0.8"
sha2 = "0.8"
sha3 = "0.8"
time = "0.1"
toml = "0.5"
tree_magic = "0.2"
zip = "0.4"
[target.'cfg(unix)'.dependencies]
users = { version = "0.9", optional = true }
xattr = "0.2"