[package]
edition = "2024"
rust-version = "1.88"
name = "simple-unc"
version = "0.2.1"
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-unc/"
readme = "README.md"
keywords = [
"path",
"UNC",
"windows",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/kojiishi/simple-unc"
[lib]
name = "simple_unc"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[target."cfg(windows)".dependencies.dunce]
version = "1.0.5"
[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
]