[dependencies]
[[example]]
name = "join"
path = "examples/join.rs"
[[example]]
name = "normalize"
path = "examples/normalize.rs"
[[example]]
name = "relative"
path = "examples/relative.rs"
[[example]]
name = "strip_root"
path = "examples/strip_root.rs"
[[example]]
name = "subpath"
path = "examples/subpath.rs"
[[example]]
name = "template"
path = "examples/template.rs"
[lib]
name = "pathx"
path = "src/lib.rs"
[package]
authors = ["Pjdur"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem"]
description = "A collection of utilities for working with paths."
edition = "2024"
homepage = "https://github.com/Pjdur/pathx"
keywords = ["path", "utilities", "filesystem"]
license = "MIT"
name = "pathx"
readme = "README.md"
repository = "https://github.com/Pjdur/pathx"
rust-version = "1.85"
version = "0.1.0"
[[test]]
name = "is_subpath"
path = "tests/is_subpath.rs"
[[test]]
name = "join"
path = "tests/join.rs"
[[test]]
name = "normalize"
path = "tests/normalize.rs"
[[test]]
name = "relative_to"
path = "tests/relative_to.rs"
[[test]]
name = "strip_root"
path = "tests/strip_root.rs"
[[test]]
name = "template"
path = "tests/template.rs"