pathkit 0.9.2

Similar to the Path structure provided by python's pathlib, it provides various async/sync versions of file manipulation methods in addition to some of the std::Path built-in methods.
Documentation
[dependencies.anyhow]
version = "1.0.100"

[dependencies.async-trait]
optional = true
version = "0.1.89"

[dependencies.path-absolutize]
version = "3.1.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tokio]
features = ["fs", "rt"]
optional = true
version = "1.48.0"

[dev-dependencies.tempfile]
version = "3.23.0"

[dev-dependencies.tokio]
features = ["macros"]
version = "1.47.1"

[features]
all = ["async-fs-ops"]
async-fs-ops = ["dep:async-trait", "dep:tokio"]
default = []
full = ["all"]

[lib]
name = "pathkit"
path = "src/lib.rs"

[package]
authors = ["kiki-kanri"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem"]
description = "Similar to the Path structure provided by python's pathlib, it provides various async/sync versions of file manipulation methods in addition to some of the std::Path built-in methods."
edition = "2021"
homepage = "https://github.com/kiki-kanri/rs-pathkit"
include = ["Cargo.toml", "README.md", "src/**/*"]
keywords = ["filesystem", "path", "utils"]
license = "MIT"
name = "pathkit"
readme = "README.md"
repository = "https://github.com/kiki-kanri/rs-pathkit"
version = "0.9.2"