-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.14 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
48
49
50
51
52
53
[package]
name = "siz"
version = "0.4.1-alpha.1"
edition = "2021"
license = "Apache-2.0"
authors = ["Chris Simpkins <chris@sourcefoundry.org>"]
description = """
A versatile, cross-platform command line file size reporting executable with default recursive file system traversal.
"""
documentation = "https://github.com/chrissimpkins/siz"
homepage = "https://github.com/chrissimpkins/siz"
repository = "https://github.com/chrissimpkins/siz"
readme = "README.md"
rust-version = "1.70.0"
keywords = ["file", "size", "commandline", "executable"]
categories = ["command-line-utilities", "filesystem"]
[[bin]]
name = "siz"
path = "src/main.rs"
[lib]
name = "siz"
path = "src/lib/lib.rs"
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.4", features = ["derive", "wrap_help"] }
colored = "2.1"
humansize = "2.0"
ignore = "0.4"
rayon = "1.10"
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
pretty_assertions = "1.4"
tempfile = "3.10.1"
[[bench]]
name = "siz_benches"
harness = false
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"
debug = false
strip = "symbols"
debug-assertions = false
overflow-checks = false
panic = "abort"
incremental = false