-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 986 Bytes
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 986 Bytes
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
[package]
name = "fc-userscan"
version = "0.4.9"
authors = ["Christian Kauhaus <kc@flyingcircus.io>", "Christian Theune <ct@flyingcircus.io>"]
description = """\
Scans files for Nix store references and registers them with the Nix garbage collector.
"""
repository = "https://github.com/flyingcircusio/userscan"
readme = "README.md"
categories = ["command-line-utilities", "filesystem", "os"]
license = "BSD-3-Clause"
edition = "2018"
[dependencies]
anyhow = "1"
atty = "0.2"
bytesize = "1.0"
chrono = "0.4"
clap = { version = "2.33", features = ["wrap_help"] }
colored = "1.6"
crossbeam = "0.7"
env_logger = "0.7"
fnv = "1.0"
ignore = "0.4"
lazy_static = "1.1"
log = "0.4"
memmap = "0.7"
minilzo = "0.2"
nix = "0.19"
num_cpus = "1"
probes = "0.4"
regex = "1"
rmp = "0.8"
rmp-serde = "0.14"
serde = { version = "1", features = ["derive"] }
structopt = "0.3"
thiserror = "1"
twoway = "0.1"
users = "0.11"
zip = "0.5"
[dev-dependencies]
tempfile = "3.1"
[profile.release]
lto = "thin"