-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
71 lines (63 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "ftzz"
version = "3.0.0"
authors = ["Alex Saveau <saveau.alexandre@gmail.com>"]
edition = "2024"
description = "File Tree Fuzzer creates a pseudo-random directory hierarchy filled with some number of files."
repository = "https://github.com/SUPERCILEX/ftzz"
keywords = ["tools", "files", "fuzz"]
categories = ["command-line-utilities", "development-tools", "development-tools::testing", "filesystem"]
license = "Apache-2.0"
[dependencies]
bon = "3.3.1"
bytesize = "1.3.0"
cfg-if = "1.0.0"
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
clap-num = "1.1.1"
clap-verbosity-flag = { package = "clap-verbosity-flag2", version = "2.1.1" }
env_logger = { version = "0.11.6", default-features = false, features = ["auto-color"] }
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
io-adapters = "0.4.0"
itoa = "1.0.14"
log = { version = "0.4.22", features = ["release_max_level_info"] }
rand = { version = "0.8.5", default-features = false, features = ["std"] }
rand_distr = "0.4.3"
rand_xoshiro = "0.6.0"
sysexits = "0.8.5"
thiserror = "2.0.9"
thousands = "0.2.0"
tokio = { version = "1.42.0", features = ["rt"] }
tracing = { version = "0.1.41", features = ["log"], optional = true }
tracing-log = { version = "0.2.0", optional = true }
tracing-subscriber = { version = "0.3.19", optional = true }
tracing-tracy = { version = "0.11.4", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.18.0", optional = true }
[target.'cfg(unix)'.dependencies]
rustix = { version = "0.38.42", features = ["fs", "thread"] }
[dev-dependencies]
criterion = "0.5.1"
expect-test = "1.5.1"
more-asserts = "0.3.1"
rand = "0.8.5"
rstest = { version = "0.23.0", default-features = false }
supercilex-tests = "0.4.13"
tempfile = "3.14.0"
trycmd = "0.15.8"
[build-dependencies]
itoa = "1.0.14"
[features]
trace = ["tracing", "dep:tracing-log", "dep:tracing-subscriber", "dep:tracing-tracy", "dep:tracy-client"]
dry_run = []
[[bench]]
name = "generator"
harness = false
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dr]
inherits = "release"
debug = true
debug-assertions = true
strip = false