-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
42 lines (37 loc) · 1.56 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
[package]
name = "cpz"
version.workspace = true
authors.workspace = true
edition.workspace = true
description = "Fast cp provides an alternative to cp that focuses on maximizing performance."
repository.workspace = true
keywords = ["tools", "files", "cp"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true
[dependencies]
clap = { version = "4.5.13", features = ["derive", "wrap_help"] }
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
fuc_engine = { version = "1", path = "../fuc_engine" }
indicatif = { version = "0.17.8", optional = true }
thiserror = "1.0.63"
tracing = { version = "0.1.40", optional = true }
tracing-indicatif = { version = "0.3.6", optional = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }
tracing-tracy = { version = "0.11.1", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.17.1", optional = true }
[dev-dependencies]
cache-size = "0.7.0"
criterion = "0.5.1"
memmap2 = "0.9.4"
rand = "0.8.5"
supercilex-tests = { version = "0.4.8", default-features = false, features = ["clap"] }
tempfile = "3.11.0"
trycmd = "0.15.6"
[target.'cfg(unix)'.dev-dependencies]
rustix = { version = "0.38.34", features = ["fs", "pipe"] }
[features]
trace = ["fuc_engine/tracing", "dep:tracing", "dep:tracing-subscriber", "dep:tracing-tracy", "dep:tracy-client"]
progress = ["fuc_engine/tracing", "dep:tracing", "dep:tracing-subscriber", "dep:tracing-indicatif", "dep:indicatif"]
[[bench]]
name = "copy_methods"
harness = false