[package]
edition = "2021"
name = "fcp"
version = "0.2.2"
authors = ["Kevin Svetlitski <kevin_svetlitski@berkeley.edu>"]
build = false
exclude = [
"/fixtures/",
"/.github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A significantly faster alternative to the classic Unix cp(1) command"
readme = "README.md"
keywords = [
"copy",
"unix",
"shell",
"utility",
"fast",
]
categories = [
"command-line-utilities",
"filesystem",
]
license-file = "LICENSE"
repository = "https://github.com/Svetlitski/fcp"
[lib]
name = "fcp"
path = "src/lib.rs"
[[bin]]
name = "fcp"
path = "src/main.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[bench]]
name = "fcp_benchmark"
path = "benches/fcp_benchmark.rs"
harness = false
[dependencies.nix]
version = "0.25.0"
[dependencies.rayon]
version = "1.5.3"
[dev-dependencies.criterion]
version = "0.3.6"
features = ["html_reports"]