[package]
edition = "2024"
rust-version = "1.88"
name = "simple-path"
version = "0.3.6"
authors = ["Koji Ishii <kojiishi@gmail.com>"]
build = false
exclude = [
".github",
".gitignore",
".vscode",
"Taskfile.yml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simplify Windows UNC path for `fs::canonicalize`"
documentation = "https://docs.rs/simple-path/"
readme = "README.md"
keywords = [
"path",
"UNC",
"windows",
"canonicalize",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/kojiishi/simple-path"
[lib]
name = "simple_path"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dev-dependencies.env_logger]
version = "0.11.10"
[target."cfg(windows)".dependencies.dunce]
version = "1.0.5"
[target."cfg(windows)".dependencies.log]
version = "0.4.32"
[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_NetworkManagement_WNet",
"Win32_Storage_FileSystem",
"Win32_System_WindowsProgramming",
]