pathkit 0.9.6

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
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "pathkit"
version = "0.9.6"
authors = ["kiki-kanri"]
build = false
include = [
    "Cargo.toml",
    "README.md",
    "src/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/kiki-kanri/rs-pathkit"
readme = "README.md"
keywords = [
    "filesystem",
    "path",
    "utils",
]
categories = ["filesystem"]
license = "MIT"
repository = "https://github.com/kiki-kanri/rs-pathkit"

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

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

[dependencies.anyhow]
version = "1.0.102"

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

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

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

[dependencies.serde_json]
version = "1.0.149"

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

[dev-dependencies.libc]
version = "0.2.183"

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

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