[package]
edition = "2024"
rust-version = "1.91"
name = "path-extra"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extra methods on `Path` for ergonomic and chainable `fs` operations."
readme = "README.md"
keywords = [
"ext",
"file",
"fs",
"path",
"tokio",
]
categories = [
"asynchronous",
"filesystem",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/shian15810/path-extra"
[package.metadata.docs.rs]
all-features = true
[features]
tokio = [
"dep:tokio",
"dep:trait-variant",
]
[lib]
name = "path_extra"
path = "src/lib.rs"
[dependencies.tokio]
version = "1.52.3"
features = [
"fs",
"io-util",
"rt",
]
optional = true
[dependencies.trait-variant]
version = "0.1.2"
optional = true
[target."cfg(unix)".dependencies.pathdiff]
version = "0.2.3"