summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8af25abcfb8dec4ad49ce61b7563e0020272183f (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 = "fselect"
version = "0.8.0"
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 = "2021"

[features]
default = ["users"]

[dependencies]
ansi_term = "0.12"
atty = "0.2"
base64 = "0.13"
bytecount = "0.6"
chrono = "0.4"
chrono-english = "0.1"
csv = "1.0"
directories = "4.0"
humansize = "1.1"
imagesize = "0.9"
kamadak-exif = "0.5"
lazy_static = "1.3"
lscolors = "0.9"
matroska = "0.12"
mp3-metadata = "0.3"
mp4parse = "0.12"
rand = "0.8"
regex = "1.1"
rustyline = "9.0.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha-1 = "0.10"
sha2 = "0.10"
sha3 = "0.10"
svg = "0.10"
toml = "0.5"
tree_magic = "0.2"
wana_kana = "2.0"
zip = "0.6"

[target.'cfg(unix)'.dependencies]
users = { version = "0.11", optional = true }
xattr = "0.2"

[profile.release]
lto = true

[package.metadata.deb]
section = "utility"
extended-description = """\
* SQL-like (not real SQL, but highly relaxed!) grammar easily understandable by humans
* complex queries
* aggregate, statistics, date, and other functions
* search within archives
* .gitignore, .hgignore, and .dockerignore support (experimental)
* search by width and height of images, EXIF metadata
* search by MP3 info
* search by extended file attributes
* search by file hashes
* search by MIME type
* shortcuts to common file types
* interactive mode
* various output formatting (CSV, JSON, and others)"""