[package]
edition = "2024"
rust-version = "1.88.0"
name = "libxcp"
version = "0.24.4"
authors = ["Steve Smith <tarkasteve@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`libxcp` is a high-level file-copy engine with support for multi-threading, fine-grained progress feedback, pluggable drivers, and `.gitignore` filters. `libxcp` provides the core functionality of `xcp`."
homepage = "https://github.com/tarka/xcp"
readme = "README.md"
keywords = [
"coreutils",
"cp",
"files",
"filesystem",
]
categories = ["filesystem"]
license = "GPL-3.0-only"
repository = "https://github.com/tarka/xcp"
resolver = "2"
[features]
default = [
"parblock",
"use_linux",
]
parblock = []
use_linux = ["libfs/use_linux"]
[lib]
name = "libxcp"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.blocking-threadpool]
version = "1.0.3"
[dependencies.cfg-if]
version = "1.0.4"
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.ignore]
version = "0.4.25"
[dependencies.libfs]
version = "0.9.3"
[dependencies.log]
version = "0.4.29"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.regex]
version = "1.12.3"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.tempfile]
version = "3.24.0"
[lints.clippy]
upper_case_acronyms = "allow"