-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
70 lines (63 loc) · 1.78 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
[workspace]
members = [
".",
"libxcp",
"libfs",
]
default-members = [".", "libfs"]
resolver = "2"
[package]
name = "xcp"
description = "xcp is a (partial) clone of the Unix `cp` command, with more user-friendly feedback and some performance optimisations. See the README for features and limitations."
version = "0.23.0"
edition = "2021"
rust-version = "1.75.0"
authors = ["Steve Smith <[email protected]>"]
homepage = "https://github.com/tarka/xcp"
repository = "https://github.com/tarka/xcp"
readme = "README.md"
keywords = ["coreutils", "cp", "files", "filesystem"]
categories =["command-line-utilities"]
license = "GPL-3.0-only"
[features]
default = ["parblock", "use_linux"]
parblock = ["libxcp/parblock"]
use_linux = ["libfs/use_linux", "libxcp/use_linux"]
# For CI; disable feature testing on filesystems that don't support
# it. See .github/workflows/tests.yml
test_no_reflink = ["libfs/test_no_reflink"]
test_no_sparse = ["libfs/test_no_sparse"]
test_no_extents = ["libfs/test_no_extents"]
test_no_sockets = ["libfs/test_no_sockets"]
test_no_acl = ["libfs/test_no_acl"]
test_no_xattr = []
test_no_symlinks = []
test_no_perms = []
test_run_expensive = []
[dependencies]
anyhow = "1.0.95"
crossbeam-channel = "0.5.14"
clap = { version = "4.5.23", features = ["derive"] }
glob = "0.3.1"
ignore = "0.4.23"
indicatif = "0.17.9"
libfs = { version = "0.8.1", path = "libfs" }
libxcp = { version = "0.23.1", path = "libxcp" }
log = "0.4.22"
num_cpus = "1.16.0"
simplelog = "0.12.2"
unbytify = "0.2.0"
[dev-dependencies]
cfg-if = "1.0.0"
fslock = "0.2.1"
rand = "0.8.5"
rand_distr = "0.4.3"
rand_xorshift = "0.3.0"
rustix = "0.38.42"
tempfile = "3.14.0"
test-case = "3.3.1"
uuid = { version = "1.11.0", features = ["v4"] }
walkdir = "2.5.0"
xattr = "1.3.1"
[lints.clippy]
upper_case_acronyms = "allow"