typed-path 0.12.1

Provides typed variants of Path and PathBuf for Unix and Windows
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"
rust-version = "1.65.0"
name = "typed-path"
version = "0.12.1"
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides typed variants of Path and PathBuf for Unix and Windows"
homepage = "https://github.com/chipsenkbeil/typed-path"
readme = "README.md"
keywords = [
    "unicode",
    "utf8",
    "paths",
    "filesystem",
]
categories = [
    "development-tools",
    "filesystem",
    "os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/chipsenkbeil/typed-path"

[features]
default = ["std"]
std = []

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

[[example]]
name = "platform"
path = "examples/platform.rs"

[[example]]
name = "platform_utf8"
path = "examples/platform_utf8.rs"

[[example]]
name = "typed"
path = "examples/typed.rs"
required-features = ["std"]

[[example]]
name = "typed_utf8"
path = "examples/typed_utf8.rs"
required-features = ["std"]

[[example]]
name = "unix"
path = "examples/unix.rs"
required-features = ["std"]

[[example]]
name = "unix_utf8"
path = "examples/unix_utf8.rs"
required-features = ["std"]

[[example]]
name = "windows"
path = "examples/windows.rs"
required-features = ["std"]

[[example]]
name = "windows_utf8"
path = "examples/windows_utf8.rs"
required-features = ["std"]

[dependencies]