[package]
edition = "2021"
rust-version = "1.60"
name = "copy-metadata"
version = "0.3.0"
authors = ["Absolutex <lxl66566@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Copy metadata from one file to another"
homepage = "https://github.com/lxl66566/copy-metadata"
readme = "README.md"
keywords = [
"copy",
"metadata",
"copy-metadata",
]
categories = ["filesystem"]
license = "MIT"
repository = "https://github.com/lxl66566/copy-metadata"
[features]
copy-time = ["filetime"]
default = ["copy-time"]
[lib]
name = "copy_metadata"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.filetime]
version = "0.2.27"
optional = true
[dev-dependencies.tap]
version = "1.0.1"
[dev-dependencies.tempfile]
version = "3.27.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies]