pth 0.35.0

Collection of algorithms and structures to handle paths properly.
# 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 = "pth"
version = "0.35.0"
authors = ["Kostiantyn Wandalen <wandalen@obox.systems>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Collection of algorithms and structures to handle paths properly.
"""
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/pth"
documentation = "https://docs.rs/pth"
readme = "readme.md"
keywords = [
    "fundamental",
    "general-purpose",
]
categories = [
    "algorithms",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/pth"

[package.metadata.docs.rs]
features = ["full"]
all-features = false

[features]
default = ["enabled"]
derive_serde = ["serde"]
enabled = [
    "dep:mod_interface",
    "dep:mod_interface_meta",
    "dep:regex",
]
full = [
    "enabled",
    "derive_serde",
    "path_utf8",
    "path_unique_folder_name",
]
mod_interface_meta = ["dep:mod_interface_meta"]
no_std = []
path_unique_folder_name = []
path_utf8 = ["camino"]
use_alloc = ["no_std"]

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

[[test]]
name = "experiment"
path = "tests/experiment.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.camino]
version = "1.1.9"
optional = true

[dependencies.mod_interface]
version = "~0.58.0"
optional = true
default-features = false

[dependencies.mod_interface_meta]
version = "~0.56.0"
features = ["enabled"]
optional = true
default-features = false

[dependencies.regex]
version = "1.11.1"
optional = true

[dependencies.serde]
version = "1.0.219"
features = ["derive"]
optional = true

[dev-dependencies]

[lints]