[package]
edition = "2021"
name = "pathkit"
version = "0.9.3"
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.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1.47.1"
features = ["macros"]