parcopy 0.1.0

Parallel, atomic, and safe file/directory copying for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "parcopy"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel, atomic, and safe file/directory copying for Rust"
readme = "README.md"
keywords = [
    "copy",
    "parallel",
    "atomic",
    "filesystem",
    "nfs",
]
categories = [
    "filesystem",
    "concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lucifer1004/parcopy"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
full = [
    "progress",
    "tracing",
    "serde",
    "reflink",
]
progress = ["dep:indicatif"]
reflink = ["dep:reflink-copy"]
serde = ["dep:serde"]
tracing = ["dep:tracing"]

[lib]
name = "parcopy"
path = "src/lib.rs"

[dependencies.filetime]
version = "0.2"

[dependencies.indicatif]
version = "0.18"
optional = true

[dependencies.rayon]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.tempfile]
version = "3"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.tempfile]
version = "3"

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.reflink-copy]
version = "0.1"
optional = true

[target.'cfg(target_os = "macos")'.dependencies.reflink-copy]
version = "0.1"
optional = true