[package]
edition = "2021"
rust-version = "1.71"
name = "junction"
version = "1.4.2"
authors = ["Lzu Tao <taolzu@gmail.com>"]
build = false
exclude = [
"/.github",
"/HOW-TO-RELEASE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "library for working with NTFS junctions"
readme = "README.md"
keywords = [
"junction",
"symlink",
]
categories = [
"api-bindings",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/tesuji/junction"
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc"]
[features]
default = ["unstable_admin"]
nightly = []
unstable_admin = []
[lib]
name = "junction"
path = "src/lib.rs"
[dev-dependencies.tempfile]
version = "3.21.0"
[target."cfg(windows)".dependencies.scopeguard]
version = "1"
default-features = false
[target."cfg(windows)".dependencies.windows-sys]
version = ">=0.59, <=0.61"
features = [
"Win32_System_Ioctl",
"Win32_System_SystemServices",
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Threading",
]
default-features = false