[package]
edition = "2024"
name = "file-operation"
version = "0.8.19"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library providing comprehensive utilities for file operations with both sync/async support. Includes operations for copy, delete, move, read and write files. Simplifies file handling in Rust projects with safe and efficient methods for file manipulation and metadata querying."
readme = "README.md"
keywords = [
"time",
"hyperlane",
"day",
"format",
"lang",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/crates-dev/file-operation.git"
[lib]
name = "file_operation"
path = "src/lib.rs"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"