[package]
edition = "2021"
name = "xcom"
version = "0.1.4"
authors = ["Hadi Cahyadi <cumulus13@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Windows file operations utility with shell integration for copy and move operations"
homepage = "https://github.com/cumulus13/xcom"
documentation = "https://docs.rs/xcom"
readme = "README.md"
keywords = [
"windows",
"file",
"copy",
"move",
"shell",
]
categories = [
"command-line-utilities",
"filesystem",
"os::windows-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cumulus13/xcom"
[lib]
name = "xcom"
path = "src/lib.rs"
[[bin]]
name = "copyx"
path = "src/bin/xcopy.rs"
[[bin]]
name = "xmove"
path = "src/bin/xmove.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.clap-version-flag]
version = "1.0.7"
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.tempfile]
version = "3.8"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"shellapi",
"windef",
"winerror",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true