path-dedot 3.0.17

A library for extending `Path` and `PathBuf` in order to parse the path which contains dots.
Documentation
[package]
name = "path-dedot"
version = "3.0.17"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
repository = "https://github.com/magiclen/path-dedot"
homepage = "https://magiclen.org/path-dedot"
keywords = ["path", "dot", "dedot", "absolute", "canonical"]
categories = ["parser-implementations", "filesystem"]
description = "A library for extending `Path` and `PathBuf` in order to parse the path which contains dots."
readme = "README.md"
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE", "benches/bench.rs"]

[dependencies]
once_cell = "1.4"
lazy_static = { version = "1.4", optional = true }

[dev-dependencies]
bencher = "0.1.5"

[features]
once_cell_cache = []
lazy_static_cache = ["lazy_static"]
unsafe_cache = []

[[bench]]
name = "bench"
harness = false